xmlparse.h
上传用户:dangjiwu
上传日期:2013-07-19
资源大小:42019k
文件大小:21k
源码类别:

Symbian

开发平台:

Visual C++

  1. /*
  2. Copyright (c) 1998, 1999, 2000 Thai Open Source Software Center Ltd
  3. See the file copying.txt for copying permission.
  4. */
  5. #ifndef XmlParse_INCLUDED
  6. #define XmlParse_INCLUDED 1
  7. #ifdef __cplusplus
  8. extern "C" {
  9. #endif
  10. #ifndef XMLPARSEAPI
  11. #define XMLPARSEAPI /* as nothing */
  12. #endif
  13. typedef void *XML_Parser;
  14. #ifdef XML_UNICODE_WCHAR_T
  15. /* XML_UNICODE_WCHAR_T will work only if sizeof(wchar_t) == 2 and wchar_t
  16. uses Unicode. */
  17. /* Information is UTF-16 encoded as wchar_ts */
  18. #ifndef XML_UNICODE
  19. #define XML_UNICODE
  20. #endif
  21. #include <stddef.h>
  22. typedef wchar_t XML_Char;
  23. typedef wchar_t XML_LChar;
  24. #else /* not XML_UNICODE_WCHAR_T */
  25. #ifdef XML_UNICODE
  26. /* Information is UTF-16 encoded as unsigned shorts */
  27. typedef unsigned short XML_Char;
  28. typedef char XML_LChar;
  29. #else /* not XML_UNICODE */
  30. /* Information is UTF-8 encoded. */
  31. typedef char XML_Char;
  32. typedef char XML_LChar;
  33. #endif /* not XML_UNICODE */
  34. #endif /* not XML_UNICODE_WCHAR_T */
  35. /* Constructs a new parser; encoding is the encoding specified by the external
  36. protocol or null if there is none specified. */
  37. XML_Parser XMLPARSEAPI
  38. XML_ParserCreate(const XML_Char *encoding);
  39. /* Constructs a new parser and namespace processor.  Element type names
  40. and attribute names that belong to a namespace will be expanded;
  41. unprefixed attribute names are never expanded; unprefixed element type
  42. names are expanded only if there is a default namespace. The expanded
  43. name is the concatenation of the namespace URI, the namespace separator character,
  44. and the local part of the name.  If the namespace separator is '' then
  45. the namespace URI and the local part will be concatenated without any
  46. separator.  When a namespace is not declared, the name and prefix will be
  47. passed through without expansion. */
  48. XML_Parser XMLPARSEAPI
  49. XML_ParserCreateNS(const XML_Char *encoding, XML_Char namespaceSeparator);
  50. /* atts is array of name/value pairs, terminated by 0;
  51.    names and values are 0 terminated. */
  52. typedef void (*XML_StartElementHandler)(void *userData,
  53. const XML_Char *name,
  54. const XML_Char **atts);
  55. typedef void (*XML_EndElementHandler)(void *userData,
  56.       const XML_Char *name);
  57. /* s is not 0 terminated. */
  58. typedef void (*XML_CharacterDataHandler)(void *userData,
  59.  const XML_Char *s,
  60.  int len);
  61. /* target and data are 0 terminated */
  62. typedef void (*XML_ProcessingInstructionHandler)(void *userData,
  63.  const XML_Char *target,
  64.  const XML_Char *data);
  65. /* data is 0 terminated */
  66. typedef void (*XML_CommentHandler)(void *userData, const XML_Char *data);
  67. typedef void (*XML_StartCdataSectionHandler)(void *userData);
  68. typedef void (*XML_EndCdataSectionHandler)(void *userData);
  69. /* This is called for any characters in the XML document for
  70. which there is no applicable handler.  This includes both
  71. characters that are part of markup which is of a kind that is
  72. not reported (comments, markup declarations), or characters
  73. that are part of a construct which could be reported but
  74. for which no handler has been supplied. The characters are passed
  75. exactly as they were in the XML document except that
  76. they will be encoded in UTF-8.  Line boundaries are not normalized.
  77. Note that a byte order mark character is not passed to the default handler.
  78. There are no guarantees about how characters are divided between calls
  79. to the default handler: for example, a comment might be split between
  80. multiple calls. */
  81. typedef void (*XML_DefaultHandler)(void *userData,
  82.    const XML_Char *s,
  83.    int len);
  84. /* This is called for the start of the DOCTYPE declaration when the
  85. name of the DOCTYPE is encountered. */
  86. typedef void (*XML_StartDoctypeDeclHandler)(void *userData,
  87.     const XML_Char *doctypeName);
  88. /* This is called for the start of the DOCTYPE declaration when the
  89. closing > is encountered, but after processing any external subset. */
  90. typedef void (*XML_EndDoctypeDeclHandler)(void *userData);
  91. /* This is called for a declaration of an unparsed (NDATA)
  92. entity.  The base argument is whatever was set by XML_SetBase.
  93. The entityName, systemId and notationName arguments will never be null.
  94. The other arguments may be. */
  95. typedef void (*XML_UnparsedEntityDeclHandler)(void *userData,
  96.       const XML_Char *entityName,
  97.       const XML_Char *base,
  98.       const XML_Char *systemId,
  99.       const XML_Char *publicId,
  100.       const XML_Char *notationName);
  101. /* This is called for a declaration of notation.
  102. The base argument is whatever was set by XML_SetBase.
  103. The notationName will never be null.  The other arguments can be. */
  104. typedef void (*XML_NotationDeclHandler)(void *userData,
  105. const XML_Char *notationName,
  106. const XML_Char *base,
  107. const XML_Char *systemId,
  108. const XML_Char *publicId);
  109. typedef void (*XML_ExternalParsedEntityDeclHandler)(void *userData,
  110.     const XML_Char *entityName,
  111.     const XML_Char *base,
  112.     const XML_Char *systemId,
  113.     const XML_Char *publicId);
  114. typedef void (*XML_InternalParsedEntityDeclHandler)(void *userData,
  115.     const XML_Char *entityName,
  116.     const XML_Char *replacementText,
  117.     int replacementTextLength);
  118. /* When namespace processing is enabled, these are called once for
  119. each namespace declaration. The call to the start and end element
  120. handlers occur between the calls to the start and end namespace
  121. declaration handlers. For an xmlns attribute, prefix will be null.
  122. For an xmlns="" attribute, uri will be null. */
  123. typedef void (*XML_StartNamespaceDeclHandler)(void *userData,
  124.       const XML_Char *prefix,
  125.       const XML_Char *uri);
  126. typedef void (*XML_EndNamespaceDeclHandler)(void *userData,
  127.     const XML_Char *prefix);
  128. /* This is called if the document is not standalone (it has an
  129. external subset or a reference to a parameter entity, but does not
  130. have standalone="yes"). If this handler returns 0, then processing
  131. will not continue, and the parser will return a
  132. XML_ERROR_NOT_STANDALONE error. */
  133. typedef int (*XML_NotStandaloneHandler)(void *userData);
  134. /* This is called for a reference to an external parsed general entity.
  135. The referenced entity is not automatically parsed.
  136. The application can parse it immediately or later using
  137. XML_ExternalEntityParserCreate.
  138. The parser argument is the parser parsing the entity containing the reference;
  139. it can be passed as the parser argument to XML_ExternalEntityParserCreate.
  140. The systemId argument is the system identifier as specified in the entity declaration;
  141. it will not be null.
  142. The base argument is the system identifier that should be used as the base for
  143. resolving systemId if systemId was relative; this is set by XML_SetBase;
  144. it may be null.
  145. The publicId argument is the public identifier as specified in the entity declaration,
  146. or null if none was specified; the whitespace in the public identifier
  147. will have been normalized as required by the XML spec.
  148. The context argument specifies the parsing context in the format
  149. expected by the context argument to
  150. XML_ExternalEntityParserCreate; context is valid only until the handler
  151. returns, so if the referenced entity is to be parsed later, it must be copied.
  152. The handler should return 0 if processing should not continue because of
  153. a fatal error in the handling of the external entity.
  154. In this case the calling parser will return an XML_ERROR_EXTERNAL_ENTITY_HANDLING
  155. error.
  156. Note that unlike other handlers the first argument is the parser, not userData. */
  157. typedef int (*XML_ExternalEntityRefHandler)(XML_Parser parser,
  158.     const XML_Char *context,
  159.     const XML_Char *base,
  160.     const XML_Char *systemId,
  161.     const XML_Char *publicId);
  162. /* This structure is filled in by the XML_UnknownEncodingHandler
  163. to provide information to the parser about encodings that are unknown
  164. to the parser.
  165. The map[b] member gives information about byte sequences
  166. whose first byte is b.
  167. If map[b] is c where c is >= 0, then b by itself encodes the Unicode scalar value c.
  168. If map[b] is -1, then the byte sequence is malformed.
  169. If map[b] is -n, where n >= 2, then b is the first byte of an n-byte
  170. sequence that encodes a single Unicode scalar value.
  171. The data member will be passed as the first argument to the convert function.
  172. The convert function is used to convert multibyte sequences;
  173. s will point to a n-byte sequence where map[(unsigned char)*s] == -n.
  174. The convert function must return the Unicode scalar value
  175. represented by this byte sequence or -1 if the byte sequence is malformed.
  176. The convert function may be null if the encoding is a single-byte encoding,
  177. that is if map[b] >= -1 for all bytes b.
  178. When the parser is finished with the encoding, then if release is not null,
  179. it will call release passing it the data member;
  180. once release has been called, the convert function will not be called again.
  181. Expat places certain restrictions on the encodings that are supported
  182. using this mechanism.
  183. 1. Every ASCII character that can appear in a well-formed XML document,
  184. other than the characters
  185.   $@^`{}~
  186. must be represented by a single byte, and that byte must be the
  187. same byte that represents that character in ASCII.
  188. 2. No character may require more than 4 bytes to encode.
  189. 3. All characters encoded must have Unicode scalar values <= 0xFFFF,
  190. (ie characters that would be encoded by surrogates in UTF-16
  191. are  not allowed).  Note that this restriction doesn't apply to
  192. the built-in support for UTF-8 and UTF-16.
  193. 4. No Unicode character may be encoded by more than one distinct sequence
  194. of bytes. */
  195. typedef struct {
  196.   int map[256];
  197.   void *data;
  198.   int (*convert)(void *data, const char *s);
  199.   void (*release)(void *data);
  200. } XML_Encoding;
  201. /* This is called for an encoding that is unknown to the parser.
  202. The encodingHandlerData argument is that which was passed as the
  203. second argument to XML_SetUnknownEncodingHandler.
  204. The name argument gives the name of the encoding as specified in
  205. the encoding declaration.
  206. If the callback can provide information about the encoding,
  207. it must fill in the XML_Encoding structure, and return 1.
  208. Otherwise it must return 0.
  209. If info does not describe a suitable encoding,
  210. then the parser will return an XML_UNKNOWN_ENCODING error. */
  211. typedef int (*XML_UnknownEncodingHandler)(void *encodingHandlerData,
  212.   const XML_Char *name,
  213.   XML_Encoding *info);
  214. void XMLPARSEAPI
  215. XML_SetElementHandler(XML_Parser parser,
  216.       XML_StartElementHandler start,
  217.       XML_EndElementHandler end);
  218. void XMLPARSEAPI
  219. XML_SetCharacterDataHandler(XML_Parser parser,
  220.     XML_CharacterDataHandler handler);
  221. void XMLPARSEAPI
  222. XML_SetProcessingInstructionHandler(XML_Parser parser,
  223.     XML_ProcessingInstructionHandler handler);
  224. void XMLPARSEAPI
  225. XML_SetCommentHandler(XML_Parser parser,
  226.                       XML_CommentHandler handler);
  227. void XMLPARSEAPI
  228. XML_SetCdataSectionHandler(XML_Parser parser,
  229.    XML_StartCdataSectionHandler start,
  230.    XML_EndCdataSectionHandler end);
  231. /* This sets the default handler and also inhibits expansion of internal entities.
  232. The entity reference will be passed to the default handler. */
  233. void XMLPARSEAPI
  234. XML_SetDefaultHandler(XML_Parser parser,
  235.       XML_DefaultHandler handler);
  236. /* This sets the default handler but does not inhibit expansion of internal entities.
  237. The entity reference will not be passed to the default handler. */
  238. void XMLPARSEAPI
  239. XML_SetDefaultHandlerExpand(XML_Parser parser,
  240.             XML_DefaultHandler handler);
  241. void XMLPARSEAPI
  242. XML_SetDoctypeDeclHandler(XML_Parser parser,
  243.   XML_StartDoctypeDeclHandler start,
  244.   XML_EndDoctypeDeclHandler end);
  245. void XMLPARSEAPI
  246. XML_SetUnparsedEntityDeclHandler(XML_Parser parser,
  247.  XML_UnparsedEntityDeclHandler handler);
  248. void XMLPARSEAPI
  249. XML_SetNotationDeclHandler(XML_Parser parser,
  250.    XML_NotationDeclHandler handler);
  251. void XMLPARSEAPI
  252. XML_SetExternalParsedEntityDeclHandler(XML_Parser parser,
  253.        XML_ExternalParsedEntityDeclHandler handler);
  254. void XMLPARSEAPI
  255. XML_SetInternalParsedEntityDeclHandler(XML_Parser parser,
  256.        XML_InternalParsedEntityDeclHandler handler);
  257. void XMLPARSEAPI
  258. XML_SetNamespaceDeclHandler(XML_Parser parser,
  259.     XML_StartNamespaceDeclHandler start,
  260.     XML_EndNamespaceDeclHandler end);
  261. void XMLPARSEAPI
  262. XML_SetNotStandaloneHandler(XML_Parser parser,
  263.     XML_NotStandaloneHandler handler);
  264. void XMLPARSEAPI
  265. XML_SetExternalEntityRefHandler(XML_Parser parser,
  266. XML_ExternalEntityRefHandler handler);
  267. /* If a non-null value for arg is specified here, then it will be passed
  268. as the first argument to the external entity ref handler instead
  269. of the parser object. */
  270. void XMLPARSEAPI
  271. XML_SetExternalEntityRefHandlerArg(XML_Parser, void *arg);
  272. void XMLPARSEAPI
  273. XML_SetUnknownEncodingHandler(XML_Parser parser,
  274.       XML_UnknownEncodingHandler handler,
  275.       void *encodingHandlerData);
  276. /* This can be called within a handler for a start element, end element,
  277. processing instruction or character data.  It causes the corresponding
  278. markup to be passed to the default handler. */
  279. void XMLPARSEAPI XML_DefaultCurrent(XML_Parser parser);
  280. /* This value is passed as the userData argument to callbacks. */
  281. void XMLPARSEAPI
  282. XML_SetUserData(XML_Parser parser, void *userData);
  283. /* Returns the last value set by XML_SetUserData or null. */
  284. #define XML_GetUserData(parser) (*(void **)(parser))
  285. /* This is equivalent to supplying an encoding argument
  286. to XML_ParserCreate. It must not be called after XML_Parse
  287. or XML_ParseBuffer. */
  288. int XMLPARSEAPI
  289. XML_SetEncoding(XML_Parser parser, const XML_Char *encoding);
  290. /* If this function is called, then the parser will be passed
  291. as the first argument to callbacks instead of userData.
  292. The userData will still be accessible using XML_GetUserData. */
  293. void XMLPARSEAPI
  294. XML_UseParserAsHandlerArg(XML_Parser parser);
  295. /* Sets the base to be used for resolving relative URIs in system identifiers in
  296. declarations.  Resolving relative identifiers is left to the application:
  297. this value will be passed through as the base argument to the
  298. XML_ExternalEntityRefHandler, XML_NotationDeclHandler
  299. and XML_UnparsedEntityDeclHandler. The base argument will be copied.
  300. Returns zero if out of memory, non-zero otherwise. */
  301. int XMLPARSEAPI
  302. XML_SetBase(XML_Parser parser, const XML_Char *base);
  303. const XML_Char XMLPARSEAPI *
  304. XML_GetBase(XML_Parser parser);
  305. /* Returns the number of the attribute/value pairs passed in last call
  306. to the XML_StartElementHandler that were specified in the start-tag
  307. rather than defaulted. Each attribute/value pair counts as 2; thus
  308. this correspondds to an index into the atts array passed to the
  309. XML_StartElementHandler. */
  310. int XMLPARSEAPI XML_GetSpecifiedAttributeCount(XML_Parser parser);
  311. /* Returns the index of the ID attribute passed in the last call to
  312. XML_StartElementHandler, or -1 if there is no ID attribute.  Each
  313. attribute/value pair counts as 2; thus this correspondds to an index
  314. into the atts array passed to the XML_StartElementHandler. */
  315. int XMLPARSEAPI XML_GetIdAttributeIndex(XML_Parser parser);
  316. /* Parses some input. Returns 0 if a fatal error is detected.
  317. The last call to XML_Parse must have isFinal true;
  318. len may be zero for this call (or any other). */
  319. int XMLPARSEAPI
  320. XML_Parse(XML_Parser parser, const char *s, int len, int isFinal);
  321. void XMLPARSEAPI *
  322. XML_GetBuffer(XML_Parser parser, int len);
  323. int XMLPARSEAPI
  324. XML_ParseBuffer(XML_Parser parser, int len, int isFinal);
  325. /* Creates an XML_Parser object that can parse an external general entity;
  326. context is a ''-terminated string specifying the parse context;
  327. encoding is a ''-terminated string giving the name of the externally specified encoding,
  328. or null if there is no externally specified encoding.
  329. The context string consists of a sequence of tokens separated by formfeeds (f);
  330. a token consisting of a name specifies that the general entity of the name
  331. is open; a token of the form prefix=uri specifies the namespace for a particular
  332. prefix; a token of the form =uri specifies the default namespace.
  333. This can be called at any point after the first call to an ExternalEntityRefHandler
  334. so longer as the parser has not yet been freed.
  335. The new parser is completely independent and may safely be used in a separate thread.
  336. The handlers and userData are initialized from the parser argument.
  337. Returns 0 if out of memory.  Otherwise returns a new XML_Parser object. */
  338. XML_Parser XMLPARSEAPI
  339. XML_ExternalEntityParserCreate(XML_Parser parser,
  340.        const XML_Char *context,
  341.        const XML_Char *encoding);
  342. enum XML_ParamEntityParsing {
  343.   XML_PARAM_ENTITY_PARSING_NEVER,
  344.   XML_PARAM_ENTITY_PARSING_UNLESS_STANDALONE,
  345.   XML_PARAM_ENTITY_PARSING_ALWAYS
  346. };
  347. /* Controls parsing of parameter entities (including the external DTD
  348. subset). If parsing of parameter entities is enabled, then references
  349. to external parameter entities (including the external DTD subset)
  350. will be passed to the handler set with
  351. XML_SetExternalEntityRefHandler.  The context passed will be 0.
  352. Unlike external general entities, external parameter entities can only
  353. be parsed synchronously.  If the external parameter entity is to be
  354. parsed, it must be parsed during the call to the external entity ref
  355. handler: the complete sequence of XML_ExternalEntityParserCreate,
  356. XML_Parse/XML_ParseBuffer and XML_ParserFree calls must be made during
  357. this call.  After XML_ExternalEntityParserCreate has been called to
  358. create the parser for the external parameter entity (context must be 0
  359. for this call), it is illegal to make any calls on the old parser
  360. until XML_ParserFree has been called on the newly created parser.  If
  361. the library has been compiled without support for parameter entity
  362. parsing (ie without XML_DTD being defined), then
  363. XML_SetParamEntityParsing will return 0 if parsing of parameter
  364. entities is requested; otherwise it will return non-zero. */
  365. int XMLPARSEAPI
  366. XML_SetParamEntityParsing(XML_Parser parser,
  367.   enum XML_ParamEntityParsing parsing);
  368. enum XML_Error {
  369.   XML_ERROR_NONE,
  370.   XML_ERROR_NO_MEMORY,
  371.   XML_ERROR_SYNTAX,
  372.   XML_ERROR_NO_ELEMENTS,
  373. /*  XML_ERROR_INVALID_TOKEN, */
  374.   XML_ERROR_INVALID_NAME,
  375.   XML_ERROR_INVALID_CHAR_IN_DOC,
  376.   XML_ERROR_TWO_DASHES_NOT_ALLOWED_IN_COMMENT,
  377.   XML_ERROR_INVALID_DECL,
  378.   XML_ERROR_INVALID_PI,
  379.   XML_ERROR_INVALID_PI_TARGET,
  380.   XML_ERROR_INVALID_CDATA,
  381.   XML_ERROR_NO_CLOSING_GT,
  382.   XML_ERROR_INVALID_HEX_CHAR_REF,
  383.   XML_ERROR_INVALID_CHAR_REF,
  384.   XML_ERROR_INVALID_REF,
  385.   XML_ERROR_MISSING_EQUALS,
  386.   XML_ERROR_MISSING_QUOT_APOS,
  387.   XML_ERROR_MISSING_REQ_SPACE,
  388.   XML_ERROR_LT_NOT_ALLOWED,
  389.   XML_ERROR_EXPECTED_GT,
  390.   XML_ERROR_INVALID_GT_AFFT_2_RSQB_IN_CONTENT,
  391.   XML_ERROR_INVALID_COMMENT,
  392. /*****/
  393.   XML_ERROR_UNCLOSED_TOKEN,
  394.   XML_ERROR_PARTIAL_CHAR,
  395.   XML_ERROR_TAG_MISMATCH,
  396.   XML_ERROR_DUPLICATE_ATTRIBUTE,
  397.   XML_ERROR_JUNK_AFTER_DOC_ELEMENT,
  398.   XML_ERROR_PARAM_ENTITY_REF,
  399.   XML_ERROR_UNDEFINED_ENTITY,
  400.   XML_ERROR_RECURSIVE_ENTITY_REF,
  401.   XML_ERROR_ASYNC_ENTITY,
  402.   XML_ERROR_BAD_CHAR_REF,
  403.   XML_ERROR_BINARY_ENTITY_REF,
  404.   XML_ERROR_ATTRIBUTE_EXTERNAL_ENTITY_REF,
  405.   XML_ERROR_MISPLACED_XML_PI,
  406.   XML_ERROR_UNKNOWN_ENCODING,
  407.   XML_ERROR_INCORRECT_ENCODING,
  408.   XML_ERROR_UNCLOSED_CDATA_SECTION,
  409.   XML_ERROR_EXTERNAL_ENTITY_HANDLING,
  410.   XML_ERROR_NOT_STANDALONE
  411. };
  412. /* If XML_Parse or XML_ParseBuffer have returned 0, then XML_GetErrorCode
  413. returns information about the error. */
  414. enum XML_Error XMLPARSEAPI XML_GetErrorCode(XML_Parser parser);
  415. /* These functions return information about the current parse location.
  416. They may be called when XML_Parse or XML_ParseBuffer return 0;
  417. in this case the location is the location of the character at which
  418. the error was detected.
  419. They may also be called from any other callback called to report
  420. some parse event; in this the location is the location of the first
  421. of the sequence of characters that generated the event. */
  422. int XMLPARSEAPI XML_GetCurrentLineNumber(XML_Parser parser);
  423. int XMLPARSEAPI XML_GetCurrentColumnNumber(XML_Parser parser);
  424. long XMLPARSEAPI XML_GetCurrentByteIndex(XML_Parser parser);
  425. /* Return the number of bytes in the current event.
  426. Returns 0 if the event is in an internal entity. */
  427. int XMLPARSEAPI XML_GetCurrentByteCount(XML_Parser parser);
  428. /* For backwards compatibility with previous versions. */
  429. #define XML_GetErrorLineNumber XML_GetCurrentLineNumber
  430. #define XML_GetErrorColumnNumber XML_GetCurrentColumnNumber
  431. #define XML_GetErrorByteIndex XML_GetCurrentByteIndex
  432. /* Frees memory used by the parser. */
  433. void XMLPARSEAPI
  434. XML_ParserFree(XML_Parser parser);
  435. /* Returns a string describing the error. */
  436. const XML_LChar XMLPARSEAPI *XML_ErrorString(int code);
  437. #ifdef __cplusplus
  438. }
  439. #endif
  440. #endif /* not XmlParse_INCLUDED */