2010-09-28 00:32:31 -07:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2008-2010 Mozilla Foundation
|
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a
|
|
|
|
* copy of this software and associated documentation files (the "Software"),
|
|
|
|
* to deal in the Software without restriction, including without limitation
|
|
|
|
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
|
|
|
* and/or sell copies of the Software, and to permit persons to whom the
|
|
|
|
* Software is furnished to do so, subject to the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice shall be included in
|
|
|
|
* all copies or substantial portions of the Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
|
|
|
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
|
|
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
|
|
* DEALINGS IN THE SOFTWARE.
|
|
|
|
*/
|
|
|
|
|
2010-06-24 01:54:33 -07:00
|
|
|
#define nsHtml5NamedCharacters_cpp_
|
2009-06-28 15:44:22 -07:00
|
|
|
#include "prtypes.h"
|
|
|
|
#include "jArray.h"
|
|
|
|
#include "nscore.h"
|
2010-03-29 04:01:18 -07:00
|
|
|
#include "nsDebug.h"
|
|
|
|
#include "prlog.h"
|
|
|
|
#include "nsMemory.h"
|
2009-06-28 15:44:22 -07:00
|
|
|
|
|
|
|
#include "nsHtml5NamedCharacters.h"
|
|
|
|
|
2010-02-10 01:23:35 -08:00
|
|
|
const PRUnichar nsHtml5NamedCharacters::VALUES[][2] = {
|
2010-03-29 04:01:18 -07:00
|
|
|
#define NAMED_CHARACTER_REFERENCE(N, CHARS, LEN, FLAG, VALUE) \
|
2010-02-10 01:23:35 -08:00
|
|
|
{ VALUE },
|
|
|
|
#include "nsHtml5NamedCharactersInclude.h"
|
|
|
|
#undef NAMED_CHARACTER_REFERENCE
|
|
|
|
{0, 0} };
|
|
|
|
|
2009-08-20 10:37:48 -07:00
|
|
|
PRUnichar** nsHtml5NamedCharacters::WINDOWS_1252;
|
2009-06-28 15:44:22 -07:00
|
|
|
static PRUnichar const WINDOWS_1252_DATA[] = {
|
|
|
|
0x20AC,
|
2009-11-30 07:34:51 -08:00
|
|
|
0x0081,
|
2009-06-28 15:44:22 -07:00
|
|
|
0x201A,
|
|
|
|
0x0192,
|
|
|
|
0x201E,
|
|
|
|
0x2026,
|
|
|
|
0x2020,
|
|
|
|
0x2021,
|
|
|
|
0x02C6,
|
|
|
|
0x2030,
|
|
|
|
0x0160,
|
|
|
|
0x2039,
|
|
|
|
0x0152,
|
2009-11-30 07:34:51 -08:00
|
|
|
0x008D,
|
2009-06-28 15:44:22 -07:00
|
|
|
0x017D,
|
2009-11-30 07:34:51 -08:00
|
|
|
0x008F,
|
|
|
|
0x0090,
|
2009-06-28 15:44:22 -07:00
|
|
|
0x2018,
|
|
|
|
0x2019,
|
|
|
|
0x201C,
|
|
|
|
0x201D,
|
|
|
|
0x2022,
|
|
|
|
0x2013,
|
|
|
|
0x2014,
|
|
|
|
0x02DC,
|
|
|
|
0x2122,
|
|
|
|
0x0161,
|
|
|
|
0x203A,
|
|
|
|
0x0153,
|
2009-11-30 07:34:51 -08:00
|
|
|
0x009D,
|
2009-06-28 15:44:22 -07:00
|
|
|
0x017E,
|
|
|
|
0x0178
|
|
|
|
};
|
2009-08-20 10:37:48 -07:00
|
|
|
|
2010-03-29 04:01:18 -07:00
|
|
|
/**
|
|
|
|
* To avoid having lots of pointers in the |charData| array, below,
|
|
|
|
* which would cause us to have to do lots of relocations at library
|
|
|
|
* load time, store all the string data for the names in one big array.
|
|
|
|
* Then use tricks with enums to help us build an array that contains
|
|
|
|
* the positions of each within the big arrays.
|
|
|
|
*/
|
2010-02-10 01:23:35 -08:00
|
|
|
|
2010-03-29 04:01:18 -07:00
|
|
|
static const PRInt8 ALL_NAMES[] = {
|
|
|
|
#define NAMED_CHARACTER_REFERENCE(N, CHARS, LEN, FLAG, VALUE) \
|
|
|
|
CHARS ,
|
2009-08-20 10:37:48 -07:00
|
|
|
#include "nsHtml5NamedCharactersInclude.h"
|
|
|
|
#undef NAMED_CHARACTER_REFERENCE
|
2010-03-29 04:01:18 -07:00
|
|
|
};
|
2009-08-20 10:37:48 -07:00
|
|
|
|
2010-03-29 04:01:18 -07:00
|
|
|
enum NamePositions {
|
|
|
|
DUMMY_INITIAL_NAME_POSITION = 0,
|
|
|
|
/* enums don't take up space, so generate _START and _END */
|
|
|
|
#define NAMED_CHARACTER_REFERENCE(N, CHARS, LEN, FLAG, VALUE) \
|
|
|
|
NAME_##N##_DUMMY, /* automatically one higher than previous */ \
|
|
|
|
NAME_##N##_START = NAME_##N##_DUMMY - 1, \
|
|
|
|
NAME_##N##_END = NAME_##N##_START + LEN + FLAG,
|
2009-08-20 10:37:48 -07:00
|
|
|
#include "nsHtml5NamedCharactersInclude.h"
|
|
|
|
#undef NAMED_CHARACTER_REFERENCE
|
2010-03-29 04:01:18 -07:00
|
|
|
DUMMY_FINAL_NAME_VALUE
|
|
|
|
};
|
|
|
|
|
|
|
|
/* check that the start positions will fit in 16 bits */
|
|
|
|
PR_STATIC_ASSERT(NS_ARRAY_LENGTH(ALL_NAMES) < 0x10000);
|
2009-06-29 01:54:40 -07:00
|
|
|
|
2010-09-28 00:32:31 -07:00
|
|
|
const nsHtml5CharacterName nsHtml5NamedCharacters::NAMES[] = {
|
2010-03-29 04:01:18 -07:00
|
|
|
#ifdef DEBUG
|
|
|
|
#define NAMED_CHARACTER_REFERENCE(N, CHARS, LEN, FLAG, VALUE) \
|
|
|
|
{ NAME_##N##_START, LEN, N },
|
|
|
|
#else
|
|
|
|
#define NAMED_CHARACTER_REFERENCE(N, CHARS, LEN, FLAG, VALUE) \
|
|
|
|
{ NAME_##N##_START, LEN, },
|
|
|
|
#endif
|
|
|
|
#include "nsHtml5NamedCharactersInclude.h"
|
|
|
|
#undef NAMED_CHARACTER_REFERENCE
|
|
|
|
};
|
2009-06-29 01:54:40 -07:00
|
|
|
|
2010-09-28 00:32:31 -07:00
|
|
|
PRInt32
|
|
|
|
nsHtml5CharacterName::length() const
|
|
|
|
{
|
|
|
|
return nameLen;
|
|
|
|
}
|
|
|
|
|
|
|
|
PRUnichar
|
|
|
|
nsHtml5CharacterName::charAt(PRInt32 index) const
|
|
|
|
{
|
|
|
|
return static_cast<PRUnichar> (ALL_NAMES[nameStart + index]);
|
|
|
|
}
|
|
|
|
|
2009-06-28 15:44:22 -07:00
|
|
|
void
|
|
|
|
nsHtml5NamedCharacters::initializeStatics()
|
|
|
|
{
|
|
|
|
WINDOWS_1252 = new PRUnichar*[32];
|
|
|
|
for (PRInt32 i = 0; i < 32; ++i) {
|
|
|
|
WINDOWS_1252[i] = (PRUnichar*)&(WINDOWS_1252_DATA[i]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
nsHtml5NamedCharacters::releaseStatics()
|
|
|
|
{
|
2009-06-30 03:53:58 -07:00
|
|
|
delete[] WINDOWS_1252;
|
2009-06-28 15:44:22 -07:00
|
|
|
}
|