]> mj.ucw.cz Git - libucw.git/blob - xml/xml.h
XML: ABI cleanup
[libucw.git] / xml / xml.h
1 /*
2  *      UCW Library -- A simple XML parser
3  *
4  *      (c) 2007--2008 Pavel Charvat <pchar@ucw.cz>
5  *
6  *      This software may be freely distributed and used according to the terms
7  *      of the GNU Lesser General Public License.
8  */
9
10 #ifndef _UCW_XML_XML_H
11 #define _UCW_XML_XML_H
12
13 #include <ucw/clists.h>
14 #include <ucw/slists.h>
15 #include <ucw/mempool.h>
16 #include <ucw/fastbuf.h>
17
18 #ifdef CONFIG_UCW_CLEAN_ABI
19 #define xml_attr_find ucw_xml_attr_find
20 #define xml_attr_value ucw_xml_attr_value
21 #define xml_cleanup ucw_xml_cleanup
22 #define xml_def_find_entity ucw_xml_def_find_entity
23 #define xml_def_resolve_entity ucw_xml_def_resolve_entity
24 #define xml_error ucw_xml_error
25 #define xml_fatal ucw_xml_fatal
26 #define xml_init ucw_xml_init
27 #define xml_merge_chars ucw_xml_merge_chars
28 #define xml_merge_dom_chars ucw_xml_merge_dom_chars
29 #define xml_next ucw_xml_next
30 #define xml_next_state ucw_xml_next_state
31 #define xml_normalize_white ucw_xml_normalize_white
32 #define xml_parse ucw_xml_parse
33 #define xml_push_fastbuf ucw_xml_push_fastbuf
34 #define xml_reset ucw_xml_reset
35 #define xml_row ucw_xml_row
36 #define xml_skip_element ucw_xml_skip_element
37 #define xml_warn ucw_xml_warn
38 #endif
39
40 struct xml_context;
41 struct xml_dtd_entity;
42
43 enum xml_error {
44   XML_ERR_OK = 0,
45   XML_ERR_WARN = 1000,                                  /* Warning */
46   XML_ERR_ERROR = 2000,                                 /* Recoverable error */
47   XML_ERR_FATAL = 3000,                                 /* Unrecoverable error */
48   XML_ERR_EOF,
49 };
50
51 enum xml_state {
52   XML_STATE_EOF,                                        /* EOF or a fatal error */
53   XML_STATE_START,                                      /* Initial state */
54   XML_STATE_XML_DECL,                                   /* XML_PULL_XML_DECL */
55   XML_STATE_DOCTYPE_DECL,                               /* XML_PULL_DOCTYPE_DECL */
56   XML_STATE_CHARS,                                      /* XML_PULL_CHARS */
57   XML_STATE_STAG,                                       /* XML_PULL_STAG */
58   XML_STATE_ETAG,                                       /* XML_PULL_ETAG */
59   XML_STATE_COMMENT,                                    /* XML_PULL_COMMENT */
60   XML_STATE_PI,                                         /* XML_PULL_PI */
61
62   /* Internal states */
63   XML_STATE_CHARS_BEFORE_STAG,
64   XML_STATE_CHARS_BEFORE_ETAG,
65   XML_STATE_CHARS_BEFORE_CDATA,
66   XML_STATE_CHARS_BEFORE_COMMENT,
67   XML_STATE_CHARS_BEFORE_PI,
68   XML_STATE_PROLOG_COMMENT,
69   XML_STATE_PROLOG_PI,
70   XML_STATE_EPILOG_COMMENT,
71   XML_STATE_EPILOG_PI,
72 };
73
74 enum xml_pull {
75   XML_PULL_XML_DECL =                   0x00000001,     /* Stop after the XML declaration */
76   XML_PULL_DOCTYPE_DECL =               0x00000002,     /* Stop in the doctype declaration (before optional internal subset) */
77   XML_PULL_CHARS =                      0x00000004,
78   XML_PULL_STAG =                       0x00000008,
79   XML_PULL_ETAG =                       0x00000010,
80   XML_PULL_COMMENT =                    0x00000020,
81   XML_PULL_PI =                         0x00000040,
82   XML_PULL_ALL =                        0xffffffff,
83 };
84
85 enum xml_flags {
86   /* Enable reporting of various events via SAX and/or PULL interface */
87   XML_REPORT_COMMENTS =                 0x00000001,     /* Report comments */
88   XML_REPORT_PIS =                      0x00000002,     /* Report processing instructions */
89   XML_REPORT_CHARS =                    0x00000004,     /* Report characters */
90   XML_REPORT_TAGS =                     0x00000008,     /* Report element starts/ends */
91   XML_REPORT_MISC = XML_REPORT_COMMENTS | XML_REPORT_PIS,
92   XML_REPORT_ALL = XML_REPORT_MISC | XML_REPORT_CHARS | XML_REPORT_TAGS,
93
94   /* Enable construction of DOM for these types */
95   XML_ALLOC_COMMENTS =                  0x00000010,     /* Create comment nodes */
96   XML_ALLOC_PIS =                       0x00000020,     /* Create processing instruction nodes */
97   XML_ALLOC_CHARS =                     0x00000040,     /* Create character nodes */
98   XML_ALLOC_TAGS =                      0x00000080,     /* Create element nodes */
99   XML_ALLOC_MISC = XML_ALLOC_COMMENTS | XML_ALLOC_PIS,
100   XML_ALLOC_ALL = XML_ALLOC_MISC | XML_ALLOC_CHARS | XML_ALLOC_TAGS,
101
102   /* Other parameters */
103   XML_VALIDATING =                      0x00000100,     /* Validate everything (not fully implemented!) */
104   XML_PARSE_DTD =                       0x00000200,     /* Enable parsing of DTD */
105   XML_NO_CHARS =                        0x00000400,     /* The current element must not contain character data (filled automaticaly if using DTD) */
106   XML_ALLOC_DEFAULT_ATTRS =             0x00000800,     /* Allocate default attribute values so they can be found by XML_ATTR_FOR_EACH */
107
108   /* Internals, do not change! */
109   XML_EMPTY_ELEM_TAG =                  0x00010000,     /* The current element match EmptyElemTag */
110   XML_VERSION_1_1 =                     0x00020000,     /* XML version is 1.1, otherwise 1.0 */
111   XML_HAS_EXTERNAL_SUBSET =             0x00040000,     /* The document contains a reference to external DTD subset */
112   XML_HAS_INTERNAL_SUBSET =             0x00080000,     /* The document contains an internal subset */
113   XML_HAS_DTD = XML_HAS_EXTERNAL_SUBSET | XML_HAS_INTERNAL_SUBSET,
114   XML_SRC_EOF =                         0x00100000,     /* EOF reached */
115   XML_SRC_EXPECTED_DECL =               0x00200000,     /* Just before optional or required XMLDecl/TextDecl */
116   XML_SRC_DOCUMENT =                    0x00400000,     /* The document entity */
117   XML_SRC_EXTERNAL =                    0x00800000,     /* An external entity */
118 };
119
120 enum xml_node_type {
121   XML_NODE_ELEM,
122   XML_NODE_COMMENT,
123   XML_NODE_CHARS,
124   XML_NODE_PI,
125 };
126
127 #define XML_NODE_FOR_EACH(var, node) CLIST_FOR_EACH(struct xml_node *, var, (node)->sons)
128 #define XML_ATTR_FOR_EACH(var, node) SLIST_FOR_EACH(struct xml_attr *, var, (node)->attrs)
129
130 struct xml_node {
131   cnode n;                                              /* Node for list of parent's sons */
132   uint type;                                            /* XML_NODE_x */
133   struct xml_node *parent;                              /* Parent node */
134   char *name;                                           /* Element name / PI target */
135   clist sons;                                           /* Children nodes */
136   union {
137     struct {
138       char *text;                                       /* PI text / Comment / CDATA */
139       uint len;                                         /* Text length in bytes */
140     };
141     struct {
142       struct xml_dtd_elem *dtd;                         /* Element DTD */
143       slist attrs;                                      /* Link list of element attributes */
144     };
145   };
146   void *user;                                           /* User-defined (initialized to NULL) */
147 };
148
149 struct xml_attr {
150   snode n;                                              /* Node for elem->attrs */
151   struct xml_node *elem;                                /* Parent element */
152   struct xml_dtd_attr *dtd;                             /* Attribute DTD */
153   char *name;                                           /* Attribute name */
154   char *val;                                            /* Attribute value */
155   void *user;                                           /* User-defined (initialized to NULL) */
156 };
157
158 #define XML_BUF_SIZE 32                                 /* At least 8 -- hardcoded */
159
160 struct xml_source {
161   struct xml_source *next;                              /* Link list of pending fastbufs (xml_context.sources) */
162   struct fastbuf *fb;                                   /* Source fastbuf */
163   struct fastbuf *wrapped_fb;                           /* Original wrapped fastbuf (needed for cleanup) */
164   struct fastbuf wrap_fb;                               /* Fbmem wrapper */
165   u32 buf[2 * XML_BUF_SIZE];                            /* Read buffer with Unicode values and categories */
166   u32 *bptr, *bstop;                                    /* Current state of the buffer */
167   uint row;                                             /* File position */
168   char *expected_encoding;                              /* Initial encoding before any transformation has been made (expected in XMLDecl/TextDecl) */
169   char *fb_encoding;                                    /* Encoding of the source fastbuf */
170   char *decl_encoding;                                  /* Encoding read from the XMLDecl/TextDecl */
171   uint refill_cat1;                                     /* Character categories, which should be directly passed to the buffer */
172   uint refill_cat2;                                     /* Character categories, which should be processed as newlines (possibly in some built-in
173                                                            sequences) */
174   void (*refill)(struct xml_context *ctx);              /* Callback to decode source characters to the buffer */
175   unsigned short *refill_in_to_x;                       /* Libucw-charset input table */
176   uint saved_depth;                                     /* Saved ctx->depth */
177   uint pending_0xd;                                     /* The last read character is 0xD */
178 };
179
180 struct xml_context {
181   /* Error handling */
182   char *err_msg;                                        /* Last error message */
183   enum xml_error err_code;                              /* Last error code */
184   void *throw_buf;                                      /* Where to jump on error */
185   void (*h_warn)(struct xml_context *ctx);              /* Warning callback */
186   void (*h_error)(struct xml_context *ctx);             /* Recoverable error callback */
187   void (*h_fatal)(struct xml_context *ctx);             /* Unrecoverable error callback */
188
189   /* Memory management */
190   struct mempool *pool;                                 /* DOM pool */
191   struct mempool *stack;                                /* Stack pool (freed as soon as possible) */
192   struct xml_stack *stack_list;                         /* See xml_push(), xml_pop() */
193   uint flags;                                           /* XML_FLAG_x (restored on xml_pop()) */
194   uint depth;                                           /* Nesting level (for checking of valid source nesting -> valid pushes/pops on memory pools) */
195   struct fastbuf chars;                                 /* Character data / attribute value */
196   struct mempool_state chars_state;                     /* Mempool state before the current character block has started */
197   char *chars_trivial;                                  /* If not empty, it will be appended to chars */
198   void *tab_attrs;                                      /* Hash table of element attributes */
199
200   /* Input */
201   struct xml_source *src;                               /* Current source */
202   u32 *bptr, *bstop;                                    /* Buffer with preprocessed characters (validated UCS-4 + category flags) */
203   uint cat_chars;                                       /* Unicode range of supported characters (cdata, attribute values, ...) */
204   uint cat_unrestricted;                                /* Unrestricted characters (may appear in document/external entities) */
205   uint cat_new_line;                                    /* New line characters */
206   uint cat_name;                                        /* Characters that may appear in names */
207   uint cat_sname;                                       /* Characters that may begin a name */
208
209   /* SAX-like interface */
210   void (*h_document_start)(struct xml_context *ctx);    /* Called before entering prolog */
211   void (*h_document_end)(struct xml_context *ctx);      /* Called after leaving epilog */
212   void (*h_xml_decl)(struct xml_context *ctx);          /* Called after the XML declaration */
213   void (*h_doctype_decl)(struct xml_context *ctx);      /* Called in the doctype declaration (before optional internal subset) */
214   void (*h_comment)(struct xml_context *ctx);           /* Called after a comment (only with XML_REPORT_COMMENTS) */
215   void (*h_pi)(struct xml_context *ctx);                /* Called after a processing instruction (only with XML_REPORT_PIS) */
216   void (*h_stag)(struct xml_context *ctx);              /* Called after STag or EmptyElemTag (only with XML_REPORT_TAGS) */
217   void (*h_etag)(struct xml_context *ctx);              /* Called before ETag or after EmptyElemTag (only with XML_REPORT_TAGS) */
218   void (*h_chars)(struct xml_context *ctx);             /* Called after some characters (only with XML_REPORT_CHARS) */
219   void (*h_block)(struct xml_context *ctx, char *text, uint len);       /* Called for each continuous block of characters not reported by h_cdata() (only with XML_REPORT_CHARS) */
220   void (*h_cdata)(struct xml_context *ctx, char *text, uint len);       /* Called for each CDATA section (only with XML_REPORT_CHARS) */
221   void (*h_ignorable)(struct xml_context *ctx, char *text, uint len);   /* Called for ignorable whitespace (content in tags without #PCDATA) */
222   void (*h_dtd_start)(struct xml_context *ctx);         /* Called just after the DTD structure is initialized */
223   void (*h_dtd_end)(struct xml_context *ctx);           /* Called after DTD subsets subsets */
224   struct xml_dtd_entity *(*h_find_entity)(struct xml_context *ctx, char *name);         /* Called when needed to resolve a general entity */
225   void (*h_resolve_entity)(struct xml_context *ctx, struct xml_dtd_entity *ent);        /* User should push source fastbuf for a parsed external entity (either general or parameter) */
226
227   /* DOM */
228   struct xml_node *dom;                                 /* DOM root */
229   struct xml_node *node;                                /* Current DOM node */
230
231   char *version_str;
232   uint standalone;
233   char *doctype;                                        /* The document type (or NULL if unknown) */
234   char *system_id;                                      /* DTD external id */
235   char *public_id;                                      /* DTD public id */
236   struct xml_dtd *dtd;                                  /* The DTD structure (or NULL) */
237   uint state;                                           /* Current state for the PULL interface (XML_STATE_x) */
238   uint pull;                                            /* Parameters for the PULL interface (XML_PULL_x) */
239 };
240
241 /* Initialize XML context */
242 void xml_init(struct xml_context *ctx);
243
244 /* Clean up all internal structures */
245 void xml_cleanup(struct xml_context *ctx);
246
247 /* Reuse XML context, equivalent to xml_cleanup() and xml_init() */
248 void xml_reset(struct xml_context *ctx);
249
250 /* Add XML source (fastbuf will be automatically closed) */
251 struct xml_source *xml_push_fastbuf(struct xml_context *ctx, struct fastbuf *fb);
252
253 /* Parse without the PULL interface, return XML_ERR_x code (zero on success) */
254 uint xml_parse(struct xml_context *ctx);
255
256 /* Parse with the PULL interface, return XML_STATE_x (zero on EOF or fatal error) */
257 uint xml_next(struct xml_context *ctx);
258
259 /* Equivalent to xml_next, but with temporarily changed ctx->pull value */
260 uint xml_next_state(struct xml_context *ctx, uint pull);
261
262 /* May be called on XML_STATE_STAG to skip it's content; can return XML_STATE_ETAG or XML_STATE_EOF on fatal error */
263 uint xml_skip_element(struct xml_context *ctx);
264
265 /* Returns the current row number in the document entity */
266 uint xml_row(struct xml_context *ctx);
267
268 /* Finds a given attribute value in a XML_NODE_ELEM node */
269 struct xml_attr *xml_attr_find(struct xml_context *ctx, struct xml_node *node, char *name);
270
271 /* Similar to xml_attr_find, but it deals also with default values */
272 char *xml_attr_value(struct xml_context *ctx, struct xml_node *node, char *name);
273
274 /* The default value of h_find_entity(), knows &lt;, &gt;, &amp;, &apos; and &quot; */
275 struct xml_dtd_entity *xml_def_find_entity(struct xml_context *ctx, char *name);
276
277 /* The default value of h_resolve_entity(), throws an error */
278 void xml_def_resolve_entity(struct xml_context *ctx, struct xml_dtd_entity *ent);
279
280 /* Remove leading/trailing spaces and replaces sequences of spaces to a single space character (non-CDATA attribute normalization) */
281 uint xml_normalize_white(struct xml_context *ctx, char *value);
282
283 /* Merge character contents of a given element to a single string (not recursive) */
284 char *xml_merge_chars(struct xml_context *ctx, struct xml_node *node, struct mempool *pool);
285
286 /* Merge character contents of a given subtree to a single string */
287 char *xml_merge_dom_chars(struct xml_context *ctx, struct xml_node *node, struct mempool *pool);
288
289 /* Public part of error handling */
290 void xml_warn(struct xml_context *ctx, const char *format, ...);
291 void xml_error(struct xml_context *ctx, const char *format, ...);
292 void NONRET xml_fatal(struct xml_context *ctx, const char *format, ...);
293
294 #endif