Geant4.10
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
Data Structures | Macros | Enumerations | Functions
xmltok.cc File Reference
#include <stddef.h>
#include "expat_external.h"
#include "internal.h"
#include "xmltok.h"
#include "nametab.h"
#include "xmltok_impl.h"
#include "ascii.h"
#include "xmltok_impl.c"
#include "asciitab.h"
#include "utf8tab.h"
#include "iasciitab.h"
#include "latin1tab.h"
#include "xmltok_ns.c"

Go to the source code of this file.

Data Structures

struct  normal_encoding
 
struct  unknown_encoding
 

Macros

#define IGNORE_SECTION_TOK_VTABLE   /* as nothing */
 
#define VTABLE1
 
#define VTABLE   VTABLE1, PREFIX(toUtf8), PREFIX(toUtf16)
 
#define UCS2_GET_NAMING(pages, hi, lo)   (namingBitmap[(pages[hi] << 3) + ((lo) >> 5)] & (1 << ((lo) & 0x1F)))
 
#define UTF8_GET_NAMING2(pages, byte)
 
#define UTF8_GET_NAMING3(pages, byte)
 
#define UTF8_GET_NAMING(pages, p, n)
 
#define UTF8_INVALID2(p)   ((*p) < 0xC2 || ((p)[1] & 0x80) == 0 || ((p)[1] & 0xC0) == 0xC0)
 
#define UTF8_INVALID3(p)
 
#define UTF8_INVALID4(p)
 
#define utf8_isName4   isNever
 
#define utf8_isNmstrt4   isNever
 
#define AS_NORMAL_ENCODING(enc)   ((const struct normal_encoding *) (enc))
 
#define STANDARD_VTABLE(E)   /* as nothing */
 
#define NORMAL_VTABLE(E)
 
#define MINBPC(enc)   1
 
#define SB_BYTE_TYPE(enc, p)   (((struct normal_encoding *)(enc))->type[(unsigned char)*(p)])
 
#define BYTE_TYPE(enc, p)   SB_BYTE_TYPE(enc, p)
 
#define BYTE_TO_ASCII(enc, p)   (*(p))
 
#define IS_NAME_CHAR(enc, p, n)   (AS_NORMAL_ENCODING(enc)->isName ## n(enc, p))
 
#define IS_NMSTRT_CHAR(enc, p, n)   (AS_NORMAL_ENCODING(enc)->isNmstrt ## n(enc, p))
 
#define IS_INVALID_CHAR(enc, p, n)   (AS_NORMAL_ENCODING(enc)->isInvalid ## n(enc, p))
 
#define IS_NAME_CHAR_MINBPC(enc, p)   (0)
 
#define IS_NMSTRT_CHAR_MINBPC(enc, p)   (0)
 
#define CHAR_MATCHES(enc, p, c)   (*(p) == c)
 
#define PREFIX(ident)   normal_ ## ident
 
#define XML_TOK_IMPL_C
 
#define BT_COLON   BT_NMSTRT
 
#define BT_COLON   BT_NMSTRT
 
#define BT_COLON   BT_NMSTRT
 
#define BT_COLON   BT_NMSTRT
 
#define DEFINE_UTF16_TO_UTF8(E)
 
#define DEFINE_UTF16_TO_UTF16(E)
 
#define SET2(ptr, ch)   (((ptr)[0] = ((ch) & 0xff)), ((ptr)[1] = ((ch) >> 8)))
 
#define GET_LO(ptr)   ((unsigned char)(ptr)[0])
 
#define GET_HI(ptr)   ((unsigned char)(ptr)[1])
 
#define SET2(ptr, ch)   (((ptr)[0] = ((ch) >> 8)), ((ptr)[1] = ((ch) & 0xFF)))
 
#define GET_LO(ptr)   ((unsigned char)(ptr)[1])
 
#define GET_HI(ptr)   ((unsigned char)(ptr)[0])
 
#define LITTLE2_BYTE_TYPE(enc, p)
 
#define LITTLE2_BYTE_TO_ASCII(enc, p)   ((p)[1] == 0 ? (p)[0] : -1)
 
#define LITTLE2_CHAR_MATCHES(enc, p, c)   ((p)[1] == 0 && (p)[0] == c)
 
#define LITTLE2_IS_NAME_CHAR_MINBPC(enc, p)   UCS2_GET_NAMING(namePages, (unsigned char)p[1], (unsigned char)p[0])
 
#define LITTLE2_IS_NMSTRT_CHAR_MINBPC(enc, p)   UCS2_GET_NAMING(nmstrtPages, (unsigned char)p[1], (unsigned char)p[0])
 
#define PREFIX(ident)   little2_ ## ident
 
#define MINBPC(enc)   2
 
#define BYTE_TYPE(enc, p)   LITTLE2_BYTE_TYPE(enc, p)
 
#define BYTE_TO_ASCII(enc, p)   LITTLE2_BYTE_TO_ASCII(enc, p)
 
#define CHAR_MATCHES(enc, p, c)   LITTLE2_CHAR_MATCHES(enc, p, c)
 
#define IS_NAME_CHAR(enc, p, n)   0
 
#define IS_NAME_CHAR_MINBPC(enc, p)   LITTLE2_IS_NAME_CHAR_MINBPC(enc, p)
 
#define IS_NMSTRT_CHAR(enc, p, n)   (0)
 
#define IS_NMSTRT_CHAR_MINBPC(enc, p)   LITTLE2_IS_NMSTRT_CHAR_MINBPC(enc, p)
 
#define XML_TOK_IMPL_C
 
#define BT_COLON   BT_NMSTRT
 
#define BT_COLON   BT_NMSTRT
 
#define BIG2_BYTE_TYPE(enc, p)
 
#define BIG2_BYTE_TO_ASCII(enc, p)   ((p)[0] == 0 ? (p)[1] : -1)
 
#define BIG2_CHAR_MATCHES(enc, p, c)   ((p)[0] == 0 && (p)[1] == c)
 
#define BIG2_IS_NAME_CHAR_MINBPC(enc, p)   UCS2_GET_NAMING(namePages, (unsigned char)p[0], (unsigned char)p[1])
 
#define BIG2_IS_NMSTRT_CHAR_MINBPC(enc, p)   UCS2_GET_NAMING(nmstrtPages, (unsigned char)p[0], (unsigned char)p[1])
 
#define PREFIX(ident)   big2_ ## ident
 
#define MINBPC(enc)   2
 
#define BYTE_TYPE(enc, p)   BIG2_BYTE_TYPE(enc, p)
 
#define BYTE_TO_ASCII(enc, p)   BIG2_BYTE_TO_ASCII(enc, p)
 
#define CHAR_MATCHES(enc, p, c)   BIG2_CHAR_MATCHES(enc, p, c)
 
#define IS_NAME_CHAR(enc, p, n)   0
 
#define IS_NAME_CHAR_MINBPC(enc, p)   BIG2_IS_NAME_CHAR_MINBPC(enc, p)
 
#define IS_NMSTRT_CHAR(enc, p, n)   (0)
 
#define IS_NMSTRT_CHAR_MINBPC(enc, p)   BIG2_IS_NMSTRT_CHAR_MINBPC(enc, p)
 
#define XML_TOK_IMPL_C
 
#define BT_COLON   BT_NMSTRT
 
#define BT_COLON   BT_NMSTRT
 
#define AS_UNKNOWN_ENCODING(enc)   ((const struct unknown_encoding *) (enc))
 
#define INIT_ENC_INDEX(enc)   ((int)(enc)->initEnc.isUtf16)
 
#define SET_INIT_ENC_INDEX(enc, i)   ((enc)->initEnc.isUtf16 = (char)i)
 
#define NS(x)   x
 
#define ns(x)   x
 
#define XML_TOK_NS_C
 

Enumerations

enum  { UTF8_cval1 = 0x00, UTF8_cval2 = 0xc0, UTF8_cval3 = 0xe0, UTF8_cval4 = 0xf0 }
 
enum  {
  UNKNOWN_ENC = -1, ISO_8859_1_ENC = 0, US_ASCII_ENC, UTF_8_ENC,
  UTF_16_ENC, UTF_16BE_ENC, UTF_16LE_ENC, NO_ENC
}
 

Functions

int FASTCALL XmlUtf8Encode (int c, char *buf)
 
int FASTCALL XmlUtf16Encode (int charNum, unsigned short *buf)
 
int XmlSizeOfUnknownEncoding (void)
 
ENCODINGXmlInitUnknownEncoding (void *mem, int *table, CONVERTER convert, void *userData)
 

Macro Definition Documentation

#define AS_NORMAL_ENCODING (   enc)    ((const struct normal_encoding *) (enc))

Definition at line 197 of file xmltok.cc.

#define AS_UNKNOWN_ENCODING (   enc)    ((const struct unknown_encoding *) (enc))

Definition at line 1255 of file xmltok.cc.

#define BIG2_BYTE_TO_ASCII (   enc,
  p 
)    ((p)[0] == 0 ? (p)[1] : -1)

Definition at line 784 of file xmltok.cc.

#define BIG2_BYTE_TYPE (   enc,
  p 
)
Value:
((p)[0] == 0 \
? ((struct normal_encoding *)(enc))->type[(unsigned char)(p)[1]] \
: unicode_byte_type((p)[0], (p)[1]))
const char * p
Definition: xmltok.h:285

Definition at line 780 of file xmltok.cc.

#define BIG2_CHAR_MATCHES (   enc,
  p,
 
)    ((p)[0] == 0 && (p)[1] == c)

Definition at line 785 of file xmltok.cc.

#define BIG2_IS_NAME_CHAR_MINBPC (   enc,
  p 
)    UCS2_GET_NAMING(namePages, (unsigned char)p[0], (unsigned char)p[1])

Definition at line 786 of file xmltok.cc.

#define BIG2_IS_NMSTRT_CHAR_MINBPC (   enc,
  p 
)    UCS2_GET_NAMING(nmstrtPages, (unsigned char)p[0], (unsigned char)p[1])

Definition at line 788 of file xmltok.cc.

#define BT_COLON   BT_NMSTRT
#define BT_COLON   BT_NMSTRT
#define BT_COLON   BT_NMSTRT
#define BT_COLON   BT_NMSTRT
#define BT_COLON   BT_NMSTRT
#define BT_COLON   BT_NMSTRT
#define BT_COLON   BT_NMSTRT
#define BT_COLON   BT_NMSTRT
#define BYTE_TO_ASCII (   enc,
  p 
)    (*(p))

Definition at line 833 of file xmltok.cc.

#define BYTE_TO_ASCII (   enc,
  p 
)    LITTLE2_BYTE_TO_ASCII(enc, p)

Definition at line 833 of file xmltok.cc.

#define BYTE_TO_ASCII (   enc,
  p 
)    BIG2_BYTE_TO_ASCII(enc, p)

Definition at line 833 of file xmltok.cc.

#define BYTE_TYPE (   enc,
  p 
)    SB_BYTE_TYPE(enc, p)

Definition at line 832 of file xmltok.cc.

#define BYTE_TYPE (   enc,
  p 
)    LITTLE2_BYTE_TYPE(enc, p)

Definition at line 832 of file xmltok.cc.

#define BYTE_TYPE (   enc,
  p 
)    BIG2_BYTE_TYPE(enc, p)

Definition at line 832 of file xmltok.cc.

#define CHAR_MATCHES (   enc,
  p,
 
)    (*(p) == c)

Definition at line 834 of file xmltok.cc.

#define CHAR_MATCHES (   enc,
  p,
 
)    LITTLE2_CHAR_MATCHES(enc, p, c)

Definition at line 834 of file xmltok.cc.

#define CHAR_MATCHES (   enc,
  p,
 
)    BIG2_CHAR_MATCHES(enc, p, c)

Definition at line 834 of file xmltok.cc.

#define DEFINE_UTF16_TO_UTF16 (   E)
Value:
static void PTRCALL \
E ## toUtf16(const ENCODING *enc, \
const char **fromP, const char *fromLim, \
unsigned short **toP, const unsigned short *toLim) \
{ \
/* Avoid copying first half only of surrogate */ \
if (fromLim - *fromP > ((toLim - *toP) << 1) \
&& (GET_HI(fromLim - 2) & 0xF8) == 0xD8) \
fromLim -= 2; \
for (; *fromP != fromLim && *toP != toLim; *fromP += 2) \
*(*toP)++ = (GET_HI(*fromP) << 8) | GET_LO(*fromP); \
}
#define GET_HI(ptr)
Definition: xmltok.cc:630
#define GET_LO(ptr)
Definition: xmltok.cc:629

Definition at line 601 of file xmltok.cc.

#define DEFINE_UTF16_TO_UTF8 (   E)

Definition at line 538 of file xmltok.cc.

#define GET_HI (   ptr)    ((unsigned char)(ptr)[1])

Definition at line 630 of file xmltok.cc.

#define GET_HI (   ptr)    ((unsigned char)(ptr)[0])

Definition at line 630 of file xmltok.cc.

#define GET_LO (   ptr)    ((unsigned char)(ptr)[0])

Definition at line 629 of file xmltok.cc.

#define GET_LO (   ptr)    ((unsigned char)(ptr)[1])

Definition at line 629 of file xmltok.cc.

#define IGNORE_SECTION_TOK_VTABLE   /* as nothing */

Definition at line 29 of file xmltok.cc.

#define INIT_ENC_INDEX (   enc)    ((int)(enc)->initEnc.isUtf16)

Definition at line 1485 of file xmltok.cc.

#define IS_INVALID_CHAR (   enc,
  p,
  n 
)    (AS_NORMAL_ENCODING(enc)->isInvalid ## n(enc, p))

Definition at line 273 of file xmltok.cc.

#define IS_NAME_CHAR (   enc,
  p,
  n 
)    (AS_NORMAL_ENCODING(enc)->isName ## n(enc, p))

Definition at line 835 of file xmltok.cc.

#define IS_NAME_CHAR (   enc,
  p,
  n 
)    0

Definition at line 835 of file xmltok.cc.

#define IS_NAME_CHAR (   enc,
  p,
  n 
)    0

Definition at line 835 of file xmltok.cc.

#define IS_NAME_CHAR_MINBPC (   enc,
  p 
)    (0)

Definition at line 836 of file xmltok.cc.

#define IS_NAME_CHAR_MINBPC (   enc,
  p 
)    LITTLE2_IS_NAME_CHAR_MINBPC(enc, p)

Definition at line 836 of file xmltok.cc.

#define IS_NAME_CHAR_MINBPC (   enc,
  p 
)    BIG2_IS_NAME_CHAR_MINBPC(enc, p)

Definition at line 836 of file xmltok.cc.

#define IS_NMSTRT_CHAR (   enc,
  p,
  n 
)    (AS_NORMAL_ENCODING(enc)->isNmstrt ## n(enc, p))

Definition at line 837 of file xmltok.cc.

#define IS_NMSTRT_CHAR (   enc,
  p,
  n 
)    (0)

Definition at line 837 of file xmltok.cc.

#define IS_NMSTRT_CHAR (   enc,
  p,
  n 
)    (0)

Definition at line 837 of file xmltok.cc.

#define IS_NMSTRT_CHAR_MINBPC (   enc,
  p 
)    (0)

Definition at line 838 of file xmltok.cc.

#define IS_NMSTRT_CHAR_MINBPC (   enc,
  p 
)    LITTLE2_IS_NMSTRT_CHAR_MINBPC(enc, p)

Definition at line 838 of file xmltok.cc.

#define IS_NMSTRT_CHAR_MINBPC (   enc,
  p 
)    BIG2_IS_NMSTRT_CHAR_MINBPC(enc, p)

Definition at line 838 of file xmltok.cc.

#define LITTLE2_BYTE_TO_ASCII (   enc,
  p 
)    ((p)[1] == 0 ? (p)[0] : -1)

Definition at line 643 of file xmltok.cc.

#define LITTLE2_BYTE_TYPE (   enc,
  p 
)
Value:
((p)[1] == 0 \
? ((struct normal_encoding *)(enc))->type[(unsigned char)*(p)] \
: unicode_byte_type((p)[1], (p)[0]))
const char * p
Definition: xmltok.h:285

Definition at line 639 of file xmltok.cc.

#define LITTLE2_CHAR_MATCHES (   enc,
  p,
 
)    ((p)[1] == 0 && (p)[0] == c)

Definition at line 644 of file xmltok.cc.

#define LITTLE2_IS_NAME_CHAR_MINBPC (   enc,
  p 
)    UCS2_GET_NAMING(namePages, (unsigned char)p[1], (unsigned char)p[0])

Definition at line 645 of file xmltok.cc.

#define LITTLE2_IS_NMSTRT_CHAR_MINBPC (   enc,
  p 
)    UCS2_GET_NAMING(nmstrtPages, (unsigned char)p[1], (unsigned char)p[0])

Definition at line 647 of file xmltok.cc.

#define MINBPC (   enc)    1

Definition at line 830 of file xmltok.cc.

#define MINBPC (   enc)    2

Definition at line 830 of file xmltok.cc.

#define MINBPC (   enc)    2

Definition at line 830 of file xmltok.cc.

#define NORMAL_VTABLE (   E)
Value:
E ## isName2, \
E ## isName3, \
E ## isName4, \
E ## isNmstrt2, \
E ## isNmstrt3, \
E ## isNmstrt4, \
E ## isInvalid2, \
E ## isInvalid3, \
E ## isInvalid4

Definition at line 214 of file xmltok.cc.

#define NS (   x)    x

Definition at line 1619 of file xmltok.cc.

#define ns (   x)    x

Definition at line 1620 of file xmltok.cc.

#define PREFIX (   ident)    normal_ ## ident

Definition at line 829 of file xmltok.cc.

#define PREFIX (   ident)    little2_ ## ident

Definition at line 829 of file xmltok.cc.

#define PREFIX (   ident)    big2_ ## ident

Definition at line 829 of file xmltok.cc.

#define SB_BYTE_TYPE (   enc,
  p 
)    (((struct normal_encoding *)(enc))->type[(unsigned char)*(p)])

Definition at line 242 of file xmltok.cc.

#define SET2 (   ptr,
  ch 
)    (((ptr)[0] = ((ch) & 0xff)), ((ptr)[1] = ((ch) >> 8)))

Definition at line 627 of file xmltok.cc.

#define SET2 (   ptr,
  ch 
)    (((ptr)[0] = ((ch) >> 8)), ((ptr)[1] = ((ch) & 0xFF)))

Definition at line 627 of file xmltok.cc.

#define SET_INIT_ENC_INDEX (   enc,
 
)    ((enc)->initEnc.isUtf16 = (char)i)

Definition at line 1486 of file xmltok.cc.

#define STANDARD_VTABLE (   E)    /* as nothing */

Definition at line 210 of file xmltok.cc.

#define UCS2_GET_NAMING (   pages,
  hi,
  lo 
)    (namingBitmap[(pages[hi] << 3) + ((lo) >> 5)] & (1 << ((lo) & 0x1F)))

Definition at line 48 of file xmltok.cc.

Referenced by XmlInitUnknownEncoding().

#define UTF8_GET_NAMING (   pages,
  p,
  n 
)
Value:
((n) == 2 \
? UTF8_GET_NAMING2(pages, (const unsigned char *)(p)) \
: ((n) == 3 \
? UTF8_GET_NAMING3(pages, (const unsigned char *)(p)) \
: 0))
const char * p
Definition: xmltok.h:285
#define UTF8_GET_NAMING2(pages, byte)
Definition: xmltok.cc:55
const G4int n
#define UTF8_GET_NAMING3(pages, byte)
Definition: xmltok.cc:66

Definition at line 74 of file xmltok.cc.

#define UTF8_GET_NAMING2 (   pages,
  byte 
)
Value:
(namingBitmap[((pages)[(((byte)[0]) >> 2) & 7] << 3) \
+ ((((byte)[0]) & 3) << 1) \
+ ((((byte)[1]) >> 5) & 1)] \
& (1 << (((byte)[1]) & 0x1F)))

Definition at line 55 of file xmltok.cc.

#define UTF8_GET_NAMING3 (   pages,
  byte 
)
Value:
(namingBitmap[((pages)[((((byte)[0]) & 0xF) << 4) \
+ ((((byte)[1]) >> 2) & 0xF)] \
<< 3) \
+ ((((byte)[1]) & 3) << 1) \
+ ((((byte)[2]) >> 5) & 1)] \
& (1 << (((byte)[2]) & 0x1F)))

Definition at line 66 of file xmltok.cc.

#define UTF8_INVALID2 (   p)    ((*p) < 0xC2 || ((p)[1] & 0x80) == 0 || ((p)[1] & 0xC0) == 0xC0)

Definition at line 91 of file xmltok.cc.

#define UTF8_INVALID3 (   p)
Value:
(((p)[2] & 0x80) == 0 \
|| \
((*p) == 0xEF && (p)[1] == 0xBF \
? \
(p)[2] > 0xBD \
: \
((p)[2] & 0xC0) == 0xC0) \
|| \
((*p) == 0xE0 \
? \
(p)[1] < 0xA0 || ((p)[1] & 0xC0) == 0xC0 \
: \
((p)[1] & 0x80) == 0 \
|| \
((*p) == 0xED ? (p)[1] > 0x9F : ((p)[1] & 0xC0) == 0xC0)))
const char * p
Definition: xmltok.h:285

Definition at line 94 of file xmltok.cc.

#define UTF8_INVALID4 (   p)
Value:
(((p)[3] & 0x80) == 0 || ((p)[3] & 0xC0) == 0xC0 \
|| \
((p)[2] & 0x80) == 0 || ((p)[2] & 0xC0) == 0xC0 \
|| \
((*p) == 0xF0 \
? \
(p)[1] < 0x90 || ((p)[1] & 0xC0) == 0xC0 \
: \
((p)[1] & 0x80) == 0 \
|| \
((*p) == 0xF4 ? (p)[1] > 0x8F : ((p)[1] & 0xC0) == 0xC0)))
const char * p
Definition: xmltok.h:285

Definition at line 111 of file xmltok.cc.

#define utf8_isName4   isNever

Definition at line 142 of file xmltok.cc.

#define utf8_isNmstrt4   isNever

Definition at line 156 of file xmltok.cc.

#define VTABLE   VTABLE1, PREFIX(toUtf8), PREFIX(toUtf16)

Definition at line 46 of file xmltok.cc.

#define VTABLE1
Value:
{ PREFIX(prologTok), PREFIX(contentTok), \
PREFIX(cdataSectionTok) IGNORE_SECTION_TOK_VTABLE }, \
{ PREFIX(attributeValueTok), PREFIX(entityValueTok) }, \
PREFIX(sameName), \
PREFIX(nameMatchesAscii), \
PREFIX(nameLength), \
PREFIX(skipS), \
PREFIX(getAtts), \
PREFIX(charRefNumber), \
PREFIX(predefinedEntityName), \
PREFIX(updatePosition), \
PREFIX(isPublicId)
#define IGNORE_SECTION_TOK_VTABLE
Definition: xmltok.cc:29
#define PREFIX(ident)
Definition: xmltok.cc:829

Definition at line 32 of file xmltok.cc.

#define XML_TOK_IMPL_C

Definition at line 840 of file xmltok.cc.

#define XML_TOK_IMPL_C

Definition at line 840 of file xmltok.cc.

#define XML_TOK_IMPL_C

Definition at line 840 of file xmltok.cc.

#define XML_TOK_NS_C

Definition at line 1621 of file xmltok.cc.

Enumeration Type Documentation

anonymous enum
Enumerator
UTF8_cval1 
UTF8_cval2 
UTF8_cval3 
UTF8_cval4 

Definition at line 314 of file xmltok.cc.

314  { /* UTF8_cvalN is value of masked first byte of N byte sequence */
315  UTF8_cval1 = 0x00,
316  UTF8_cval2 = 0xc0,
317  UTF8_cval3 = 0xe0,
318  UTF8_cval4 = 0xf0
319 };
anonymous enum
Enumerator
UNKNOWN_ENC 
ISO_8859_1_ENC 
US_ASCII_ENC 
UTF_8_ENC 
UTF_16_ENC 
UTF_16BE_ENC 
UTF_16LE_ENC 
NO_ENC 

Definition at line 1426 of file xmltok.cc.

1426  {
1427  UNKNOWN_ENC = -1,
1428  ISO_8859_1_ENC = 0,
1429  US_ASCII_ENC,
1430  UTF_8_ENC,
1431  UTF_16_ENC,
1432  UTF_16BE_ENC,
1433  UTF_16LE_ENC,
1434  /* must match encodingNames up to here */
1435  NO_ENC
1436 };

Function Documentation

ENCODING* XmlInitUnknownEncoding ( void mem,
int table,
CONVERTER  convert,
void userData 
)

Definition at line 1346 of file xmltok.cc.

References BT_LEAD2, BT_MALFORM, BT_NAME, BT_NMSTRT, BT_NONXML, BT_OTHER, test::c, unknown_encoding::convert, normal_encoding::enc, int(), unknown_encoding::normal, normal_encoding::type, UCS2_GET_NAMING, userData, unknown_encoding::userData, unknown_encoding::utf16, unknown_encoding::utf8, and XmlUtf8Encode().

Referenced by XML_GetFeatureList().

1350 {
1351  int i;
1352  struct unknown_encoding *e = (struct unknown_encoding *)mem;
1353  for (i = 0; i < (int)sizeof(struct normal_encoding); i++)
1354  ((char *)mem)[i] = ((char *)&latin1_encoding)[i];
1355  for (i = 0; i < 128; i++)
1356  if (latin1_encoding.type[i] != BT_OTHER
1357  && latin1_encoding.type[i] != BT_NONXML
1358  && table[i] != i)
1359  return 0;
1360  for (i = 0; i < 256; i++) {
1361  int c = table[i];
1362  if (c == -1) {
1363  e->normal.type[i] = BT_MALFORM;
1364  /* This shouldn't really get used. */
1365  e->utf16[i] = 0xFFFF;
1366  e->utf8[i][0] = 1;
1367  e->utf8[i][1] = 0;
1368  }
1369  else if (c < 0) {
1370  if (c < -4)
1371  return 0;
1372  e->normal.type[i] = (unsigned char)(BT_LEAD2 - (c + 2));
1373  e->utf8[i][0] = 0;
1374  e->utf16[i] = 0;
1375  }
1376  else if (c < 0x80) {
1377  if (latin1_encoding.type[c] != BT_OTHER
1378  && latin1_encoding.type[c] != BT_NONXML
1379  && c != i)
1380  return 0;
1381  e->normal.type[i] = latin1_encoding.type[c];
1382  e->utf8[i][0] = 1;
1383  e->utf8[i][1] = (char)c;
1384  e->utf16[i] = (unsigned short)(c == 0 ? 0xFFFF : c);
1385  }
1386  else if (checkCharRefNumber(c) < 0) {
1387  e->normal.type[i] = BT_NONXML;
1388  /* This shouldn't really get used. */
1389  e->utf16[i] = 0xFFFF;
1390  e->utf8[i][0] = 1;
1391  e->utf8[i][1] = 0;
1392  }
1393  else {
1394  if (c > 0xFFFF)
1395  return 0;
1396  if (UCS2_GET_NAMING(nmstrtPages, c >> 8, c & 0xff))
1397  e->normal.type[i] = BT_NMSTRT;
1398  else if (UCS2_GET_NAMING(namePages, c >> 8, c & 0xff))
1399  e->normal.type[i] = BT_NAME;
1400  else
1401  e->normal.type[i] = BT_OTHER;
1402  e->utf8[i][0] = (char)XmlUtf8Encode(c, e->utf8[i] + 1);
1403  e->utf16[i] = (unsigned short)c;
1404  }
1405  }
1406  e->userData = userData;
1407  e->convert = convert;
1408  if (convert) {
1409  e->normal.isName2 = unknown_isName;
1410  e->normal.isName3 = unknown_isName;
1411  e->normal.isName4 = unknown_isName;
1412  e->normal.isNmstrt2 = unknown_isNmstrt;
1413  e->normal.isNmstrt3 = unknown_isNmstrt;
1414  e->normal.isNmstrt4 = unknown_isNmstrt;
1415  e->normal.isInvalid2 = unknown_isInvalid;
1416  e->normal.isInvalid3 = unknown_isInvalid;
1417  e->normal.isInvalid4 = unknown_isInvalid;
1418  }
1419  e->normal.enc.utf8Convert = unknown_toUtf8;
1420  e->normal.enc.utf16Convert = unknown_toUtf16;
1421  return &(e->normal.enc);
1422 }
CONVERTER convert
Definition: xmltok.cc:1249
typedef int(XMLCALL *XML_NotStandaloneHandler)(void *userData)
#define UCS2_GET_NAMING(pages, hi, lo)
Definition: xmltok.cc:48
#define userData
Definition: xmlparse.cc:555
int FASTCALL XmlUtf8Encode(int c, char *buf)
Definition: xmltok.cc:1193
void * userData
Definition: xmltok.cc:1250
char utf8[256][4]
Definition: xmltok.cc:1252
ENCODING enc
Definition: xmltok.cc:177
struct normal_encoding normal
Definition: xmltok.cc:1248
unsigned short utf16[256]
Definition: xmltok.cc:1251
unsigned char type[256]
Definition: xmltok.cc:178
int XmlSizeOfUnknownEncoding ( void  )

Definition at line 1258 of file xmltok.cc.

Referenced by XML_GetFeatureList().

1259 {
1260  return sizeof(struct unknown_encoding);
1261 }
int FASTCALL XmlUtf16Encode ( int  charNum,
unsigned short *  buf 
)

Definition at line 1230 of file xmltok.cc.

1231 {
1232  if (charNum < 0)
1233  return 0;
1234  if (charNum < 0x10000) {
1235  buf[0] = (unsigned short)charNum;
1236  return 1;
1237  }
1238  if (charNum < 0x110000) {
1239  charNum -= 0x10000;
1240  buf[0] = (unsigned short)((charNum >> 10) + 0xD800);
1241  buf[1] = (unsigned short)((charNum & 0x3FF) + 0xDC00);
1242  return 2;
1243  }
1244  return 0;
1245 }
int FASTCALL XmlUtf8Encode ( int  c,
char *  buf 
)

Definition at line 1193 of file xmltok.cc.

References UTF8_cval1, UTF8_cval2, UTF8_cval3, and UTF8_cval4.

Referenced by XmlInitUnknownEncoding().

1194 {
1195  enum {
1196  /* minN is minimum legal resulting value for N byte sequence */
1197  min2 = 0x80,
1198  min3 = 0x800,
1199  min4 = 0x10000
1200  };
1201 
1202  if (c < 0)
1203  return 0;
1204  if (c < min2) {
1205  buf[0] = (char)(c | UTF8_cval1);
1206  return 1;
1207  }
1208  if (c < min3) {
1209  buf[0] = (char)((c >> 6) | UTF8_cval2);
1210  buf[1] = (char)((c & 0x3f) | 0x80);
1211  return 2;
1212  }
1213  if (c < min4) {
1214  buf[0] = (char)((c >> 12) | UTF8_cval3);
1215  buf[1] = (char)(((c >> 6) & 0x3f) | 0x80);
1216  buf[2] = (char)((c & 0x3f) | 0x80);
1217  return 3;
1218  }
1219  if (c < 0x110000) {
1220  buf[0] = (char)((c >> 18) | UTF8_cval4);
1221  buf[1] = (char)(((c >> 12) & 0x3f) | 0x80);
1222  buf[2] = (char)(((c >> 6) & 0x3f) | 0x80);
1223  buf[3] = (char)((c & 0x3f) | 0x80);
1224  return 4;
1225  }
1226  return 0;
1227 }