]> mj.ucw.cz Git - libucw.git/blob - sherlock/xml/xml.h
a608bfb8ef6015e85b6af3f75b1bc7e3cad75c15
[libucw.git] / sherlock / xml / xml.h
1 /*
2  *      Sherlock Library -- A simple XML parser
3  *
4  *      (c) 2007 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 _SHERLOCK_XML_XML_H
11 #define _SHERLOCK_XML_XML_H
12
13 #include "lib/clists.h"
14 #include "lib/slists.h"
15 #include "lib/mempool.h"
16 #include "lib/fastbuf.h"
17
18 enum xml_error {
19   // FIXME
20   XML_ERR_OK = 0,
21   XML_ERR_WARN = 1000,                                  /* Warning */
22   XML_ERR_ERROR = 2000,                                 /* Recoverable error */
23   XML_ERR_FATAL = 3000,                                 /* Unrecoverable error */
24   XML_ERR_EOF,
25 };
26
27 enum xml_state {
28   XML_STATE_EOF,                                        /* EOF or a fatal error */
29   XML_STATE_START,                                      /* Initial state */
30   XML_STATE_XML_DECL,                                   /* XML_PULL_XML_DECL */
31   XML_STATE_DOCTYPE_DECL,                               /* XML_PULL_DOCTYPE_DECL */
32   XML_STATE_CHARS,                                      /* XML_PULL_CHARS */
33   XML_STATE_CDATA,                                      /* XML_PULL_CDATA */
34   XML_STATE_STAG,                                       /* XML_PULL_STAG */
35   XML_STATE_ETAG,                                       /* XML_PULL_ETAG */
36   XML_STATE_COMMENT,                                    /* XML_PULL_COMMENT */
37   XML_STATE_PI,                                         /* XML_PULL_PI */
38
39   /* Internal states */
40   XML_STATE_CHARS_BEFORE_STAG,
41   XML_STATE_CHARS_BEFORE_ETAG,
42   XML_STATE_CHARS_BEFORE_CDATA,
43   XML_STATE_CHARS_BEFORE_COMMENT,
44   XML_STATE_CHARS_BEFORE_PI,
45   XML_STATE_PROLOG_COMMENT,
46   XML_STATE_PROLOG_PI,
47   XML_STATE_EPILOG_COMMENT,
48   XML_STATE_EPILOG_PI,
49 };
50
51 enum xml_pull {
52   XML_PULL_XML_DECL =                   0x00000001,     /* Stop after the XML declaration */
53   XML_PULL_DOCTYPE_DECL =               0x00000002,     /* Stop in the doctype declaration (before optional internal subset) */
54   XML_PULL_CHARS =                      0x00000004,
55   XML_PULL_CDATA =                      0x00000008,
56   XML_PULL_STAG =                       0x00000010,
57   XML_PULL_ETAG =                       0x00000020,
58   XML_PULL_COMMENT =                    0x00000040,
59   XML_PULL_PI =                         0x00000080,
60   XML_PULL_ALL =                        0xffffffff,
61 };
62
63 enum xml_flags {
64   /* Enable reporting of various events via SAX and/or PUSH interface */
65   XML_REPORT_COMMENTS =                 0x00000001,     /* Report comments */
66   XML_REPORT_PIS =                      0x00000002,     /* Report processing instructions */
67   XML_REPORT_CHARS =                    0x00000004,     /* Report characters */
68   XML_REPORT_TAGS =                     0x00000008,     /* Report element starts/ends */
69   XML_REPORT_MISC = XML_REPORT_COMMENTS | XML_REPORT_PIS,
70   XML_REPORT_ALL = XML_REPORT_MISC | XML_REPORT_CHARS | XML_REPORT_TAGS,
71
72   /* Enable construction of DOM for these types */
73   XML_ALLOC_COMMENTS =                  0x00000010,     /* Create comment nodes */
74   XML_ALLOC_PIS =                       0x00000020,     /* Create processing instruction nodes */
75   XML_ALLOC_CHARS =                     0x00000040,     /* Create character nodes */
76   XML_ALLOC_TAGS =                      0x00000080,     /* Create element nodes */
77   XML_ALLOC_MISC = XML_ALLOC_COMMENTS | XML_ALLOC_PIS,
78   XML_ALLOC_ALL = XML_ALLOC_MISC | XML_ALLOC_CHARS | XML_ALLOC_TAGS,
79
80   /* Other parameters */
81   XML_UNFOLD_CDATA =                    0x00000100,     /* Unfold CDATA sections */
82   XML_VALIDATING =                      0x00000200,     /* Validate everything (not fully implemented!) */
83   XML_PARSE_DTD =                       0x00000400,     /* Enable parsing of DTD */
84
85   /* Internals, do not change! */
86   XML_EMPTY_ELEM_TAG =                  0x00010000,     /* The current element match EmptyElemTag */
87   XML_VERSION_1_1 =                     0x00020000,     /* XML version is 1.1, otherwise 1.0 */
88   XML_HAS_EXTERNAL_SUBSET =             0x00040000,     /* The document contains a reference to external DTD subset */
89   XML_HAS_INTERNAL_SUBSET =             0x00080000,     /* The document contains an internal subset */
90   XML_SRC_EOF =                         0x00100000,     /* EOF reached */
91   XML_SRC_EXPECTED_DECL =               0x00200000,     /* Just before optional or required XMLDecl/TextDecl */
92   XML_SRC_NEW_LINE =                    0x00400000,     /* The last read character is 0xD */
93   XML_SRC_SURROUND =                    0x00800000,     /* Surround the text with 0x20 (references to parameter entities) */
94   XML_SRC_DOCUMENT =                    0x01000000,     /* The document entity */
95   XML_SRC_EXTERNAL =                    0x02000000,     /* An external entity */
96 };
97
98 enum xml_node_type {
99   XML_NODE_ELEM,
100   XML_NODE_COMMENT,
101   XML_NODE_CHARS,
102   XML_NODE_PI,
103 };
104
105 #define XML_NODE_FOR_EACH(var, node) CLIST_FOR_EACH(struct xml_node *, var, (node)->sons)
106 #define XML_ATTR_FOR_EACH(var, node) SLIST_FOR_EACH(struct xml_attr *, var, (node)->attrs)
107
108 struct xml_node {
109   cnode n;                                              /* Node for list of parent's sons */
110   uns type;                                             /* XML_NODE_x */
111   struct xml_node *parent;                              /* Parent node */
112   char *name;                                           /* Element name / PI target */
113   clist sons;                                           /* Children nodes */
114   union {
115     struct {
116       char *text;                                       /* PI text / Comment / CDATA */
117       uns len;                                          /* Text length in bytes */
118     };
119     struct {
120       struct xml_dtd_elem *dtd;                         /* Element DTD */
121       slist attrs;                                      /* Link list of element attributes */
122     };
123   };
124 };
125
126 struct xml_attr {
127   snode n;                                              /* Node for elem->attrs */
128   struct xml_node *elem;                                /* Parent element */
129   char *name;                                           /* Attribute name */
130   char *val;                                            /* Attribute value */
131 };
132
133 struct xml_context {
134   /* Error handling */
135   char *err_msg;                                        /* Last error message */
136   enum xml_error err_code;                              /* Last error code */
137   void *throw_buf;                                      /* Where to jump on error */
138   void (*h_warn)(struct xml_context *ctx);              /* Warning callback */
139   void (*h_error)(struct xml_context *ctx);             /* Recoverable error callback */
140   void (*h_fatal)(struct xml_context *ctx);             /* Unrecoverable error callback */
141
142   /* Memory management */
143   struct mempool *pool;                                 /* DOM pool */
144   struct mempool *stack;                                /* Stack pool (free as soon as possible) */
145   struct xml_stack *stack_list;                         /* See xml_push(), xml_pop() */
146   uns flags;                                            /* XML_FLAG_x (restored on xml_pop()) */
147   uns depth;                                            /* Nesting level */
148   struct fastbuf chars;                                 /* Character data / attribute value */
149   void *tab_attrs;                                      /* Hash table of element attributes */
150
151   /* Input */
152   struct xml_source *src;                               /* Current source */
153   u32 *bptr, *bstop;                                    /* Buffer with preprocessed characters (validated UCS-4 + category flags) */
154   uns cat_chars;                                        /* Unicode range of supported characters (cdata, attribute values, ...) */
155   uns cat_unrestricted;                                 /* Unrestricted characters (may appear in document/external entities) */
156   uns cat_new_line;                                     /* New line characters */
157   uns cat_name;                                         /* Characters that may appear in names */
158   uns cat_sname;                                        /* Characters that may begin a name */
159
160   /* SAX-like interface */
161   void (*h_document_start)(struct xml_context *ctx);    /* Called before entering prolog */
162   void (*h_document_end)(struct xml_context *ctx);      /* Called after leaving epilog */
163   void (*h_xml_decl)(struct xml_context *ctx);          /* Called after the XML declaration */
164   void (*h_doctype_decl)(struct xml_context *ctx);      /* Called in the doctype declaration (before optional internal subset) */
165   void (*h_comment)(struct xml_context *ctx);           /* Called after a comment (only with XML_REPORT_COMMENTS) */
166   void (*h_pi)(struct xml_context *ctx);                /* Called after a processing instruction (only with XML_REPORT_PIS) */
167   void (*h_stag)(struct xml_context *ctx);              /* Called after STag or EmptyElemTag (only with XML_REPORT_TAGS) */
168   void (*h_etag)(struct xml_context *ctx);              /* Called before ETag or after EmptyElemTag (only with XML_REPORT_TAGS) */
169   void (*h_chars)(struct xml_context *ctx);             /* Called after some characters (only with XML_REPORT_CHARS) */
170   void (*h_cdata)(struct xml_context *ctx);             /* Called after a CDATA section (only with XML_REPORT_CHARS and XML_UNFOLD_CDATA) */
171   void (*h_dtd_start)(struct xml_context *ctx);         /* Called just after the DTD structure is initialized */
172   void (*h_dtd_end)(struct xml_context *ctx);           /* Called after DTD subsets subsets */
173
174   /* DOM */
175   struct xml_node *root;                                /* DOM root */
176   struct xml_node *node;                                /* Current DOM node */
177
178   char *version_str;
179   uns standalone;
180   char *doctype;                                        /* The document type (or NULL if unknown) */
181   char *system_id;                                      /* DTD external id */
182   char *public_id;                                      /* DTD public id */
183   struct xml_dtd *dtd;                                  /* The DTD structure (or NULL) */
184   uns state;                                            /* Current state for the PULL interface (XML_STATE_x) */
185   uns pull;                                             /* Parameters for the PULL interface (XML_PULL_x) */
186
187   void (*start_entity)(struct xml_context *ctx);
188   void (*end_entity)(struct xml_context *ctx);
189   struct fastbuf *(*resolve_entity)(struct xml_context *ctx);
190   void (*notation_decl)(struct xml_context *ctx);
191   void (*unparsed_entity_decl)(struct xml_context *ctx);
192 };
193
194 /* Initialize XML context */
195 void xml_init(struct xml_context *ctx);
196
197 /* Clean up all internal structures */
198 void xml_cleanup(struct xml_context *ctx);
199
200 /* Reuse XML context */
201 void xml_reset(struct xml_context *ctx);
202
203 /* Setup XML source (fastbuf will be automatically closed) */
204 void xml_set_source(struct xml_context *ctx, struct fastbuf *fb);
205
206 /* Parse without the PUSH interface, return XML_ERR_x code (zero on success) */
207 uns xml_parse(struct xml_context *ctx);
208
209 /* Parse with the PUSH interface, return XML_STATE_x (zero on EOF or fatal error) */
210 uns xml_next(struct xml_context *ctx);
211
212 uns xml_row(struct xml_context *ctx);
213 struct xml_attr *xml_attr_find(struct xml_context *ctx, struct xml_node *node, char *name);
214
215 #endif