ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/radiance/ray/src/common/ezxml.c
Revision: 2.5
Committed: Sat Feb 25 01:15:02 2012 UTC (12 years, 2 months ago) by greg
Content type: text/plain
Branch: MAIN
CVS Tags: rad4R2, rad4R2P1
Changes since 2.4: +11 -7 lines
Log Message:
Fixed long loop for DOS source files

File Contents

# User Rev Content
1 greg 2.1 #ifndef lint
2 greg 2.5 static const char RCSid[] = "$Id: ezxml.c,v 2.4 2011/06/11 01:04:08 greg Exp $";
3 greg 2.1 #endif
4     /* ezxml.c
5     *
6     * Copyright 2004-2006 Aaron Voisine <[email protected]>
7     *
8     * Permission is hereby granted, free of charge, to any person obtaining
9     * a copy of this software and associated documentation files (the
10     * "Software"), to deal in the Software without restriction, including
11     * without limitation the rights to use, copy, modify, merge, publish,
12     * distribute, sublicense, and/or sell copies of the Software, and to
13     * permit persons to whom the Software is furnished to do so, subject to
14     * the following conditions:
15     *
16     * The above copyright notice and this permission notice shall be included
17     * in all copies or substantial portions of the Software.
18     *
19     * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
20     * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
21     * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
22     * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
23     * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
24     * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
25     * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
26     */
27    
28     #include <stdlib.h>
29     #include <stdio.h>
30     #include <stdarg.h>
31     #include <string.h>
32     #include <ctype.h>
33     #include <sys/types.h>
34     #ifndef EZXML_NOMMAP
35     #include <unistd.h>
36     #include <sys/mman.h>
37 greg 2.2 #endif /* EZXML_NOMMAP */
38 greg 2.1 #include <sys/stat.h>
39     #include "ezxml.h"
40    
41 greg 2.3 #ifdef _WIN32
42     #include <io.h>
43     #define read _read
44     #define open _open
45     #define close _close
46     #endif
47    
48 greg 2.2 #define EZXML_WS "\t\r\n " /* whitespace */
49     #define EZXML_ERRL 128 /* maximum error string length */
50 greg 2.1
51     typedef struct ezxml_root *ezxml_root_t;
52 greg 2.2 struct ezxml_root { /* additional data for the root tag */
53     struct ezxml xml; /* is a super-struct built on top of ezxml struct */
54     ezxml_t cur; /* current xml tree insertion point */
55     char *m; /* original xml string */
56     size_t len; /* length of allocated memory for mmap, -1 for malloc */
57     char *u; /* UTF-8 conversion of string if original was UTF-16 */
58     char *s; /* start of work area */
59     char *e; /* end of work area */
60     char **ent; /* general entities (ampersand sequences) */
61     char ***attr; /* default attributes */
62     char ***pi; /* processing instructions */
63     short standalone; /* non-zero if <?xml standalone="yes"?> */
64     char err[EZXML_ERRL]; /* error string */
65 greg 2.1 };
66    
67 greg 2.2 char *EZXML_NIL[] = { NULL }; /* empty, null terminated array of strings */
68 greg 2.1
69 greg 2.2 /* returns the first child tag with the given name or NULL if not found */
70 greg 2.1 ezxml_t ezxml_child(ezxml_t xml, const char *name)
71     {
72     xml = (xml) ? xml->child : NULL;
73     while (xml && strcmp(name, xml->name)) xml = xml->sibling;
74     return xml;
75     }
76    
77 greg 2.2 /* returns the Nth tag with the same name in the same subsection or NULL if not */
78     /* found */
79 greg 2.1 ezxml_t ezxml_idx(ezxml_t xml, int idx)
80     {
81     for (; xml && idx; idx--) xml = xml->next;
82     return xml;
83     }
84    
85 greg 2.2 /* returns the value of the requested tag attribute or NULL if not found */
86 greg 2.1 const char *ezxml_attr(ezxml_t xml, const char *attr)
87     {
88     int i = 0, j = 1;
89     ezxml_root_t root = (ezxml_root_t)xml;
90    
91     if (! xml || ! xml->attr) return NULL;
92     while (xml->attr[i] && strcmp(attr, xml->attr[i])) i += 2;
93 greg 2.2 if (xml->attr[i]) return xml->attr[i + 1]; /* found attribute */
94 greg 2.1
95 greg 2.2 while (root->xml.parent) root = (ezxml_root_t)root->xml.parent; /* root tag */
96 greg 2.1 for (i = 0; root->attr[i] && strcmp(xml->name, root->attr[i][0]); i++);
97 greg 2.2 if (! root->attr[i]) return NULL; /* no matching default attributes */
98 greg 2.1 while (root->attr[i][j] && strcmp(attr, root->attr[i][j])) j += 3;
99 greg 2.2 return (root->attr[i][j]) ? root->attr[i][j + 1] : NULL; /* found default */
100 greg 2.1 }
101    
102 greg 2.2 /* same as ezxml_get but takes an already initialized va_list */
103 greg 2.1 ezxml_t ezxml_vget(ezxml_t xml, va_list ap)
104     {
105     char *name = va_arg(ap, char *);
106     int idx = -1;
107    
108     if (name && *name) {
109     idx = va_arg(ap, int);
110     xml = ezxml_child(xml, name);
111     }
112     return (idx < 0) ? xml : ezxml_vget(ezxml_idx(xml, idx), ap);
113     }
114    
115 greg 2.2 /* Traverses the xml tree to retrieve a specific subtag. Takes a variable */
116     /* length list of tag names and indexes. The argument list must be terminated */
117     /* by either an index of -1 or an empty string tag name. Example: */
118     /* title = ezxml_get(library, "shelf", 0, "book", 2, "title", -1); */
119     /* This retrieves the title of the 3rd book on the 1st shelf of library. */
120     /* Returns NULL if not found. */
121 greg 2.1 ezxml_t ezxml_get(ezxml_t xml, ...)
122     {
123     va_list ap;
124     ezxml_t r;
125    
126     va_start(ap, xml);
127     r = ezxml_vget(xml, ap);
128     va_end(ap);
129     return r;
130     }
131    
132 greg 2.2 /* returns a null terminated array of processing instructions for the given */
133     /* target */
134 greg 2.1 const char **ezxml_pi(ezxml_t xml, const char *target)
135     {
136     ezxml_root_t root = (ezxml_root_t)xml;
137     int i = 0;
138    
139     if (! root) return (const char **)EZXML_NIL;
140 greg 2.2 while (root->xml.parent) root = (ezxml_root_t)root->xml.parent; /* root tag */
141     while (root->pi[i] && strcmp(target, root->pi[i][0])) i++; /* find target */
142 greg 2.1 return (const char **)((root->pi[i]) ? root->pi[i] + 1 : EZXML_NIL);
143     }
144    
145 greg 2.2 /* set an error string and return root */
146 greg 2.1 ezxml_t ezxml_err(ezxml_root_t root, char *s, const char *err, ...)
147     {
148     va_list ap;
149     int line = 1;
150     char *t, fmt[EZXML_ERRL];
151    
152     for (t = root->s; t < s; t++) if (*t == '\n') line++;
153 greg 2.4 sprintf(fmt, "[error near line %d]: %s", line, err);
154 greg 2.1
155     va_start(ap, err);
156     vsnprintf(root->err, EZXML_ERRL, fmt, ap);
157     va_end(ap);
158    
159     return &root->xml;
160     }
161    
162 greg 2.2 /* Recursively decodes entity and character references and normalizes new lines */
163     /* ent is a null terminated array of alternating entity names and values. set t */
164     /* to '&' for general entity decoding, '%' for parameter entity decoding, 'c' */
165     /* for cdata sections, ' ' for attribute normalization, or '*' for non-cdata */
166     /* attribute normalization. Returns s, or if the decoded string is longer than */
167     /* s, returns a malloced string that must be freed. */
168 greg 2.1 char *ezxml_decode(char *s, char **ent, char t)
169     {
170     char *e, *r = s, *m = s;
171     long b, c, d, l;
172    
173 greg 2.5 for (; *s; s++) /* normalize line endings */
174     if (*s == '\r') {
175     char *s2 = s+1;
176     do {
177     while (*s2 == '\r')
178     ++s2;
179     *s++ = *s2;
180     } while (*s2++);
181     break;
182     }
183 greg 2.1
184     for (s = r; ; ) {
185     while (*s && *s != '&' && (*s != '%' || t != '%') && !isspace(*s)) s++;
186    
187     if (! *s) break;
188 greg 2.2 else if (t != 'c' && ! strncmp(s, "&#", 2)) { /* character reference */
189     if (s[2] == 'x') c = strtol(s + 3, &e, 16); /* base 16 */
190     else c = strtol(s + 2, &e, 10); /* base 10 */
191     if (! c || *e != ';') { s++; continue; } /* not a character ref */
192    
193     if (c < 0x80) *(s++) = c; /* US-ASCII subset */
194     else { /* multi-byte UTF-8 sequence */
195     for (b = 0, d = c; d; d /= 2) b++; /* number of bits in c */
196     b = (b - 2) / 5; /* number of bytes in payload */
197     *(s++) = (0xFF << (7 - b)) | (c >> (6 * b)); /* head */
198     while (b) *(s++) = 0x80 | ((c >> (6 * --b)) & 0x3F); /* payload */
199 greg 2.1 }
200    
201     memmove(s, strchr(s, ';') + 1, strlen(strchr(s, ';')));
202     }
203     else if ((*s == '&' && (t == '&' || t == ' ' || t == '*')) ||
204 greg 2.2 (*s == '%' && t == '%')) { /* entity reference */
205 greg 2.1 for (b = 0; ent[b] && strncmp(s + 1, ent[b], strlen(ent[b]));
206 greg 2.2 b += 2); /* find entity in entity list */
207 greg 2.1
208 greg 2.2 if (ent[b++]) { /* found a match */
209 greg 2.1 if ((c = strlen(ent[b])) - 1 > (e = strchr(s, ';')) - s) {
210 greg 2.2 l = (d = (s - r)) + c + strlen(e); /* new length */
211 greg 2.1 r = (r == m) ? strcpy(malloc(l), r) : realloc(r, l);
212 greg 2.2 e = strchr((s = r + d), ';'); /* fix up pointers */
213 greg 2.1 }
214    
215 greg 2.2 memmove(s + c, e + 1, strlen(e)); /* shift rest of string */
216     strncpy(s, ent[b], c); /* copy in replacement text */
217 greg 2.1 }
218 greg 2.2 else s++; /* not a known entity */
219 greg 2.1 }
220     else if ((t == ' ' || t == '*') && isspace(*s)) *(s++) = ' ';
221 greg 2.2 else s++; /* no decoding needed */
222 greg 2.1 }
223    
224 greg 2.2 if (t == '*') { /* normalize spaces for non-cdata attributes */
225 greg 2.1 for (s = r; *s; s++) {
226     if ((l = strspn(s, " "))) memmove(s, s + l, strlen(s + l) + 1);
227     while (*s && *s != ' ') s++;
228     }
229 greg 2.2 if (--s >= r && *s == ' ') *s = '\0'; /* trim any trailing space */
230 greg 2.1 }
231     return r;
232     }
233    
234 greg 2.2 /* called when parser finds start of new tag */
235 greg 2.1 void ezxml_open_tag(ezxml_root_t root, char *name, char **attr)
236     {
237     ezxml_t xml = root->cur;
238    
239     if (xml->name) xml = ezxml_add_child(xml, name, strlen(xml->txt));
240 greg 2.2 else xml->name = name; /* first open tag */
241 greg 2.1
242     xml->attr = attr;
243 greg 2.2 root->cur = xml; /* update tag insertion point */
244 greg 2.1 }
245    
246 greg 2.2 /* called when parser finds character content between open and closing tag */
247 greg 2.1 void ezxml_char_content(ezxml_root_t root, char *s, size_t len, char t)
248     {
249     ezxml_t xml = root->cur;
250     char *m = s;
251     size_t l;
252    
253 greg 2.2 if (! xml || ! xml->name || ! len) return; /* sanity check */
254 greg 2.1
255 greg 2.2 s[len] = '\0'; /* null terminate text (calling functions anticipate this) */
256 greg 2.1 len = strlen(s = ezxml_decode(s, root->ent, t)) + 1;
257    
258 greg 2.2 if (! *(xml->txt)) xml->txt = s; /* initial character content */
259     else { /* allocate our own memory and make a copy */
260     xml->txt = (xml->flags & EZXML_TXTM) /* allocate some space */
261 greg 2.1 ? realloc(xml->txt, (l = strlen(xml->txt)) + len)
262     : strcpy(malloc((l = strlen(xml->txt)) + len), xml->txt);
263 greg 2.2 strcpy(xml->txt + l, s); /* add new char content */
264     if (s != m) free(s); /* free s if it was malloced by ezxml_decode() */
265 greg 2.1 }
266    
267     if (xml->txt != m) ezxml_set_flag(xml, EZXML_TXTM);
268     }
269    
270 greg 2.2 /* called when parser finds closing tag */
271 greg 2.1 ezxml_t ezxml_close_tag(ezxml_root_t root, char *name, char *s)
272     {
273     if (! root->cur || ! root->cur->name || strcmp(name, root->cur->name))
274     return ezxml_err(root, s, "unexpected closing tag </%s>", name);
275    
276     root->cur = root->cur->parent;
277     return NULL;
278     }
279    
280 greg 2.2 /* checks for circular entity references, returns non-zero if no circular */
281     /* references are found, zero otherwise */
282 greg 2.1 int ezxml_ent_ok(char *name, char *s, char **ent)
283     {
284     int i;
285    
286     for (; ; s++) {
287 greg 2.2 while (*s && *s != '&') s++; /* find next entity reference */
288 greg 2.1 if (! *s) return 1;
289 greg 2.2 if (! strncmp(s + 1, name, strlen(name))) return 0; /* circular ref. */
290 greg 2.1 for (i = 0; ent[i] && strncmp(ent[i], s + 1, strlen(ent[i])); i += 2);
291     if (ent[i] && ! ezxml_ent_ok(name, ent[i + 1], ent)) return 0;
292     }
293     }
294    
295 greg 2.2 /* called when the parser finds a processing instruction */
296 greg 2.1 void ezxml_proc_inst(ezxml_root_t root, char *s, size_t len)
297     {
298     int i = 0, j = 1;
299     char *target = s;
300    
301 greg 2.2 s[len] = '\0'; /* null terminate instruction */
302 greg 2.1 if (*(s += strcspn(s, EZXML_WS))) {
303 greg 2.2 *s = '\0'; /* null terminate target */
304     s += strspn(s + 1, EZXML_WS) + 1; /* skip whitespace after target */
305 greg 2.1 }
306    
307 greg 2.2 if (! strcmp(target, "xml")) { /* <?xml ... ?> */
308 greg 2.1 if ((s = strstr(s, "standalone")) && ! strncmp(s + strspn(s + 10,
309     EZXML_WS "='\"") + 10, "yes", 3)) root->standalone = 1;
310     return;
311     }
312    
313 greg 2.2 if (! root->pi[0]) *(root->pi = malloc(sizeof(char **))) = NULL; /*first pi */
314 greg 2.1
315 greg 2.2 while (root->pi[i] && strcmp(target, root->pi[i][0])) i++; /* find target */
316     if (! root->pi[i]) { /* new target */
317 greg 2.1 root->pi = realloc(root->pi, sizeof(char **) * (i + 2));
318     root->pi[i] = malloc(sizeof(char *) * 3);
319     root->pi[i][0] = target;
320 greg 2.2 root->pi[i][1] = (char *)(root->pi[i + 1] = NULL); /* terminate pi list */
321     root->pi[i][2] = strdup(""); /* empty document position list */
322 greg 2.1 }
323    
324 greg 2.2 while (root->pi[i][j]) j++; /* find end of instruction list for this target */
325 greg 2.1 root->pi[i] = realloc(root->pi[i], sizeof(char *) * (j + 3));
326     root->pi[i][j + 2] = realloc(root->pi[i][j + 1], j + 1);
327     strcpy(root->pi[i][j + 2] + j - 1, (root->xml.name) ? ">" : "<");
328 greg 2.2 root->pi[i][j + 1] = NULL; /* null terminate pi list for this target */
329     root->pi[i][j] = s; /* set instruction */
330 greg 2.1 }
331    
332 greg 2.2 /* called when the parser finds an internal doctype subset */
333 greg 2.1 short ezxml_internal_dtd(ezxml_root_t root, char *s, size_t len)
334     {
335     char q, *c, *t, *n = NULL, *v, **ent, **pe;
336     int i, j;
337    
338     pe = memcpy(malloc(sizeof(EZXML_NIL)), EZXML_NIL, sizeof(EZXML_NIL));
339    
340     for (s[len] = '\0'; s; ) {
341 greg 2.2 while (*s && *s != '<' && *s != '%') s++; /* find next declaration */
342 greg 2.1
343     if (! *s) break;
344 greg 2.2 else if (! strncmp(s, "<!ENTITY", 8)) { /* parse entity definitions */
345     c = s += strspn(s + 8, EZXML_WS) + 8; /* skip white space separator */
346     n = s + strspn(s, EZXML_WS "%"); /* find name */
347     *(s = n + strcspn(n, EZXML_WS)) = ';'; /* append ; to name */
348 greg 2.1
349 greg 2.2 v = s + strspn(s + 1, EZXML_WS) + 1; /* find value */
350     if ((q = *(v++)) != '"' && q != '\'') { /* skip externals */
351 greg 2.1 s = strchr(s, '>');
352     continue;
353     }
354    
355     for (i = 0, ent = (*c == '%') ? pe : root->ent; ent[i]; i++);
356 greg 2.2 ent = realloc(ent, (i + 3) * sizeof(char *)); /* space for next ent */
357 greg 2.1 if (*c == '%') pe = ent;
358     else root->ent = ent;
359    
360 greg 2.2 *(++s) = '\0'; /* null terminate name */
361     if ((s = strchr(v, q))) *(s++) = '\0'; /* null terminate value */
362     ent[i + 1] = ezxml_decode(v, pe, '%'); /* set value */
363     ent[i + 2] = NULL; /* null terminate entity list */
364     if (! ezxml_ent_ok(n, ent[i + 1], ent)) { /* circular reference */
365 greg 2.1 if (ent[i + 1] != v) free(ent[i + 1]);
366     ezxml_err(root, v, "circular entity declaration &%s", n);
367     break;
368     }
369 greg 2.2 else ent[i] = n; /* set entity name */
370 greg 2.1 }
371 greg 2.2 else if (! strncmp(s, "<!ATTLIST", 9)) { /* parse default attributes */
372     t = s + strspn(s + 9, EZXML_WS) + 9; /* skip whitespace separator */
373 greg 2.1 if (! *t) { ezxml_err(root, t, "unclosed <!ATTLIST"); break; }
374     if (*(s = t + strcspn(t, EZXML_WS ">")) == '>') continue;
375 greg 2.2 else *s = '\0'; /* null terminate tag name */
376 greg 2.1 for (i = 0; root->attr[i] && strcmp(n, root->attr[i][0]); i++);
377    
378     while (*(n = ++s + strspn(s, EZXML_WS)) && *n != '>') {
379 greg 2.2 if (*(s = n + strcspn(n, EZXML_WS))) *s = '\0'; /* attr name */
380 greg 2.1 else { ezxml_err(root, t, "malformed <!ATTLIST"); break; }
381    
382 greg 2.2 s += strspn(s + 1, EZXML_WS) + 1; /* find next token */
383     c = (strncmp(s, "CDATA", 5)) ? "*" : " "; /* is it cdata? */
384 greg 2.1 if (! strncmp(s, "NOTATION", 8))
385     s += strspn(s + 8, EZXML_WS) + 8;
386     s = (*s == '(') ? strchr(s, ')') : s + strcspn(s, EZXML_WS);
387     if (! s) { ezxml_err(root, t, "malformed <!ATTLIST"); break; }
388    
389 greg 2.2 s += strspn(s, EZXML_WS ")"); /* skip white space separator */
390 greg 2.1 if (! strncmp(s, "#FIXED", 6))
391     s += strspn(s + 6, EZXML_WS) + 6;
392 greg 2.2 if (*s == '#') { /* no default value */
393 greg 2.1 s += strcspn(s, EZXML_WS ">") - 1;
394 greg 2.2 if (*c == ' ') continue; /* cdata is default, nothing to do */
395 greg 2.1 v = NULL;
396     }
397 greg 2.2 else if ((*s == '"' || *s == '\'') && /* default value */
398 greg 2.1 (s = strchr(v = s + 1, *s))) *s = '\0';
399     else { ezxml_err(root, t, "malformed <!ATTLIST"); break; }
400    
401 greg 2.2 if (! root->attr[i]) { /* new tag name */
402 greg 2.1 root->attr = (! i) ? malloc(2 * sizeof(char **))
403     : realloc(root->attr,
404     (i + 2) * sizeof(char **));
405     root->attr[i] = malloc(2 * sizeof(char *));
406 greg 2.2 root->attr[i][0] = t; /* set tag name */
407 greg 2.1 root->attr[i][1] = (char *)(root->attr[i + 1] = NULL);
408     }
409    
410 greg 2.2 for (j = 1; root->attr[i][j]; j += 3); /* find end of list */
411 greg 2.1 root->attr[i] = realloc(root->attr[i],
412     (j + 4) * sizeof(char *));
413    
414 greg 2.2 root->attr[i][j + 3] = NULL; /* null terminate list */
415     root->attr[i][j + 2] = c; /* is it cdata? */
416 greg 2.1 root->attr[i][j + 1] = (v) ? ezxml_decode(v, root->ent, *c)
417     : NULL;
418 greg 2.2 root->attr[i][j] = n; /* attribute name */
419 greg 2.1 }
420     }
421 greg 2.2 else if (! strncmp(s, "<!--", 4)) s = strstr(s + 4, "-->"); /* comments */
422     else if (! strncmp(s, "<?", 2)) { /* processing instructions */
423 greg 2.1 if ((s = strstr(c = s + 2, "?>")))
424     ezxml_proc_inst(root, c, s++ - c);
425     }
426 greg 2.2 else if (*s == '<') s = strchr(s, '>'); /* skip other declarations */
427 greg 2.1 else if (*(s++) == '%' && ! root->standalone) break;
428     }
429    
430     free(pe);
431     return ! *root->err;
432     }
433    
434 greg 2.2 /* Converts a UTF-16 string to UTF-8. Returns a new string that must be freed */
435     /* or NULL if no conversion was needed. */
436 greg 2.1 char *ezxml_str2utf8(char **s, size_t *len)
437     {
438     char *u;
439     size_t l = 0, sl, max = *len;
440     long c, d;
441     int b, be = (**s == '\xFE') ? 1 : (**s == '\xFF') ? 0 : -1;
442    
443 greg 2.2 if (be == -1) return NULL; /* not UTF-16 */
444 greg 2.1
445     u = malloc(max);
446     for (sl = 2; sl < *len - 1; sl += 2) {
447 greg 2.2 c = (be) ? (((*s)[sl] & 0xFF) << 8) | ((*s)[sl + 1] & 0xFF) /*UTF-16BE */
448     : (((*s)[sl + 1] & 0xFF) << 8) | ((*s)[sl] & 0xFF); /*UTF-16LE */
449     if (c >= 0xD800 && c <= 0xDFFF && (sl += 2) < *len - 1) { /* high-half */
450 greg 2.1 d = (be) ? (((*s)[sl] & 0xFF) << 8) | ((*s)[sl + 1] & 0xFF)
451     : (((*s)[sl + 1] & 0xFF) << 8) | ((*s)[sl] & 0xFF);
452     c = (((c & 0x3FF) << 10) | (d & 0x3FF)) + 0x10000;
453     }
454    
455     while (l + 6 > max) u = realloc(u, max += EZXML_BUFSIZE);
456 greg 2.2 if (c < 0x80) u[l++] = c; /* US-ASCII subset */
457     else { /* multi-byte UTF-8 sequence */
458     for (b = 0, d = c; d; d /= 2) b++; /* bits in c */
459     b = (b - 2) / 5; /* bytes in payload */
460     u[l++] = (0xFF << (7 - b)) | (c >> (6 * b)); /* head */
461     while (b) u[l++] = 0x80 | ((c >> (6 * --b)) & 0x3F); /* payload */
462 greg 2.1 }
463     }
464     return *s = realloc(u, *len = l);
465     }
466    
467 greg 2.2 /* frees a tag attribute list */
468 greg 2.1 void ezxml_free_attr(char **attr) {
469     int i = 0;
470     char *m;
471    
472 greg 2.2 if (! attr || attr == EZXML_NIL) return; /* nothing to free */
473     while (attr[i]) i += 2; /* find end of attribute list */
474     m = attr[i + 1]; /* list of which names and values are malloced */
475 greg 2.1 for (i = 0; m[i]; i++) {
476     if (m[i] & EZXML_NAMEM) free(attr[i * 2]);
477     if (m[i] & EZXML_TXTM) free(attr[(i * 2) + 1]);
478     }
479     free(m);
480     free(attr);
481     }
482    
483 greg 2.2 /* parse the given xml string and return an ezxml structure */
484 greg 2.1 ezxml_t ezxml_parse_str(char *s, size_t len)
485     {
486     ezxml_root_t root = (ezxml_root_t)ezxml_new(NULL);
487 greg 2.2 char q, e, *d, **attr, **a = NULL; /* initialize a to avoid compile warning */
488 greg 2.1 int l, i, j;
489    
490     root->m = s;
491     if (! len) return ezxml_err(root, NULL, "root tag missing");
492 greg 2.2 root->u = ezxml_str2utf8(&s, &len); /* convert utf-16 to utf-8 */
493     root->e = (root->s = s) + len; /* record start and end of work area */
494 greg 2.1
495 greg 2.2 e = s[len - 1]; /* save end char */
496     s[len - 1] = '\0'; /* turn end char into null terminator */
497 greg 2.1
498 greg 2.2 while (*s && *s != '<') s++; /* find first tag */
499 greg 2.1 if (! *s) return ezxml_err(root, s, "root tag missing");
500    
501     for (; ; ) {
502     attr = (char **)EZXML_NIL;
503     d = ++s;
504    
505 greg 2.2 if (isalpha(*s) || *s == '_' || *s == ':' || *s < '\0') { /* new tag */
506 greg 2.1 if (! root->cur)
507     return ezxml_err(root, d, "markup outside of root element");
508    
509     s += strcspn(s, EZXML_WS "/>");
510 greg 2.2 while (isspace(*s)) *(s++) = '\0'; /* null terminate tag name */
511 greg 2.1
512 greg 2.2 if (*s && *s != '/' && *s != '>') /* find tag in default attr list */
513 greg 2.1 for (i = 0; (a = root->attr[i]) && strcmp(a[0], d); i++);
514    
515 greg 2.2 for (l = 0; *s && *s != '/' && *s != '>'; l += 2) { /* new attrib */
516 greg 2.1 attr = (l) ? realloc(attr, (l + 4) * sizeof(char *))
517 greg 2.2 : malloc(4 * sizeof(char *)); /* allocate space */
518 greg 2.1 attr[l + 3] = (l) ? realloc(attr[l + 1], (l / 2) + 2)
519 greg 2.2 : malloc(2); /* mem for list of maloced vals */
520     strcpy(attr[l + 3] + (l / 2), " "); /* value is not malloced */
521     attr[l + 2] = NULL; /* null terminate list */
522     attr[l + 1] = ""; /* temporary attribute value */
523     attr[l] = s; /* set attribute name */
524 greg 2.1
525     s += strcspn(s, EZXML_WS "=/>");
526     if (*s == '=' || isspace(*s)) {
527 greg 2.2 *(s++) = '\0'; /* null terminate tag attribute name */
528 greg 2.1 q = *(s += strspn(s, EZXML_WS "="));
529 greg 2.2 if (q == '"' || q == '\'') { /* attribute value */
530 greg 2.1 attr[l + 1] = ++s;
531     while (*s && *s != q) s++;
532 greg 2.2 if (*s) *(s++) = '\0'; /* null terminate attribute val */
533 greg 2.1 else {
534     ezxml_free_attr(attr);
535     return ezxml_err(root, d, "missing %c", q);
536     }
537    
538     for (j = 1; a && a[j] && strcmp(a[j], attr[l]); j +=3);
539     attr[l + 1] = ezxml_decode(attr[l + 1], root->ent, (a
540     && a[j]) ? *a[j + 2] : ' ');
541     if (attr[l + 1] < d || attr[l + 1] > s)
542 greg 2.2 attr[l + 3][l / 2] = EZXML_TXTM; /* value malloced */
543 greg 2.1 }
544     }
545     while (isspace(*s)) s++;
546     }
547    
548 greg 2.2 if (*s == '/') { /* self closing tag */
549 greg 2.1 *(s++) = '\0';
550     if ((*s && *s != '>') || (! *s && e != '>')) {
551     if (l) ezxml_free_attr(attr);
552     return ezxml_err(root, d, "missing >");
553     }
554     ezxml_open_tag(root, d, attr);
555     ezxml_close_tag(root, d, s);
556     }
557 greg 2.2 else if ((q = *s) == '>' || (! *s && e == '>')) { /* open tag */
558     *s = '\0'; /* temporarily null terminate tag name */
559 greg 2.1 ezxml_open_tag(root, d, attr);
560     *s = q;
561     }
562     else {
563     if (l) ezxml_free_attr(attr);
564     return ezxml_err(root, d, "missing >");
565     }
566     }
567 greg 2.2 else if (*s == '/') { /* close tag */
568 greg 2.1 s += strcspn(d = s + 1, EZXML_WS ">") + 1;
569     if (! (q = *s) && e != '>') return ezxml_err(root, d, "missing >");
570 greg 2.2 *s = '\0'; /* temporarily null terminate tag name */
571 greg 2.1 if (ezxml_close_tag(root, d, s)) return &root->xml;
572     if (isspace(*s = q)) s += strspn(s, EZXML_WS);
573     }
574 greg 2.2 else if (! strncmp(s, "!--", 3)) { /* xml comment */
575 greg 2.1 if (! (s = strstr(s + 3, "--")) || (*(s += 2) != '>' && *s) ||
576     (! *s && e != '>')) return ezxml_err(root, d, "unclosed <!--");
577     }
578 greg 2.2 else if (! strncmp(s, "![CDATA[", 8)) { /* cdata */
579 greg 2.1 if ((s = strstr(s, "]]>")))
580     ezxml_char_content(root, d + 8, (s += 2) - d - 10, 'c');
581     else return ezxml_err(root, d, "unclosed <![CDATA[");
582     }
583 greg 2.2 else if (! strncmp(s, "!DOCTYPE", 8)) { /* dtd */
584 greg 2.1 for (l = 0; *s && ((! l && *s != '>') || (l && (*s != ']' ||
585     *(s + strspn(s + 1, EZXML_WS) + 1) != '>')));
586     l = (*s == '[') ? 1 : l) s += strcspn(s + 1, "[]>") + 1;
587     if (! *s && e != '>')
588     return ezxml_err(root, d, "unclosed <!DOCTYPE");
589     d = (l) ? strchr(d, '[') + 1 : d;
590     if (l && ! ezxml_internal_dtd(root, d, s++ - d)) return &root->xml;
591     }
592 greg 2.2 else if (*s == '?') { /* <?...?> processing instructions */
593 greg 2.1 do { s = strchr(s, '?'); } while (s && *(++s) && *s != '>');
594     if (! s || (! *s && e != '>'))
595     return ezxml_err(root, d, "unclosed <?");
596     else ezxml_proc_inst(root, d + 1, s - d - 2);
597     }
598     else return ezxml_err(root, d, "unexpected <");
599    
600     if (! s || ! *s) break;
601     *s = '\0';
602     d = ++s;
603 greg 2.2 if (*s && *s != '<') { /* tag character content */
604 greg 2.1 while (*s && *s != '<') s++;
605     if (*s) ezxml_char_content(root, d, s - d, '&');
606     else break;
607     }
608     else if (! *s) break;
609     }
610    
611     if (! root->cur) return &root->xml;
612     else if (! root->cur->name) return ezxml_err(root, d, "root tag missing");
613     else return ezxml_err(root, d, "unclosed tag <%s>", root->cur->name);
614     }
615    
616 greg 2.2 /* Wrapper for ezxml_parse_str() that accepts a file stream. Reads the entire */
617     /* stream into memory and then parses it. For xml files, use ezxml_parse_file() */
618     /* or ezxml_parse_fd() */
619 greg 2.1 ezxml_t ezxml_parse_fp(FILE *fp)
620     {
621     ezxml_root_t root;
622     size_t l, len = 0;
623     char *s;
624    
625     if (! (s = malloc(EZXML_BUFSIZE))) return NULL;
626     do {
627     len += (l = fread((s + len), 1, EZXML_BUFSIZE, fp));
628     if (l == EZXML_BUFSIZE) s = realloc(s, len + EZXML_BUFSIZE);
629     } while (s && l == EZXML_BUFSIZE);
630    
631     if (! s) return NULL;
632     root = (ezxml_root_t)ezxml_parse_str(s, len);
633 greg 2.2 root->len = -1; /* so we know to free s in ezxml_free() */
634 greg 2.1 return &root->xml;
635     }
636    
637 greg 2.2 /* A wrapper for ezxml_parse_str() that accepts a file descriptor. First */
638     /* attempts to mem map the file. Failing that, reads the file into memory. */
639     /* Returns NULL on failure. */
640 greg 2.1 ezxml_t ezxml_parse_fd(int fd)
641     {
642     ezxml_root_t root;
643     struct stat st;
644     size_t l;
645     void *m;
646    
647     if (fd < 0) return NULL;
648     fstat(fd, &st);
649    
650     #ifndef EZXML_NOMMAP
651     l = (st.st_size + sysconf(_SC_PAGESIZE) - 1) & ~(sysconf(_SC_PAGESIZE) -1);
652     if ((m = mmap(NULL, l, PROT_READ|PROT_WRITE, MAP_PRIVATE, fd, 0))
653     != MAP_FAILED) {
654 greg 2.2 madvise(m, l, MADV_SEQUENTIAL); /* optimize for sequential access */
655 greg 2.1 root = (ezxml_root_t)ezxml_parse_str(m, st.st_size);
656 greg 2.2 madvise(m, root->len = l, MADV_NORMAL); /* put it back to normal */
657 greg 2.1 }
658 greg 2.2 else { /* mmap failed, read file into memory */
659     #endif /* EZXML_NOMMAP */
660 greg 2.1 l = read(fd, m = malloc(st.st_size), st.st_size);
661     root = (ezxml_root_t)ezxml_parse_str(m, l);
662 greg 2.2 root->len = -1; /* so we know to free s in ezxml_free() */
663 greg 2.1 #ifndef EZXML_NOMMAP
664     }
665 greg 2.2 #endif /* EZXML_NOMMAP */
666 greg 2.1 return &root->xml;
667     }
668    
669 greg 2.2 /* a wrapper for ezxml_parse_fd that accepts a file name */
670 greg 2.1 ezxml_t ezxml_parse_file(const char *file)
671     {
672     int fd = open(file, O_RDONLY, 0);
673     ezxml_t xml = ezxml_parse_fd(fd);
674    
675     if (fd >= 0) close(fd);
676     return xml;
677     }
678    
679 greg 2.2 /* Encodes ampersand sequences appending the results to *dst, reallocating *dst */
680     /* if length excedes max. a is non-zero for attribute encoding. Returns *dst */
681 greg 2.1 char *ezxml_ampencode(const char *s, size_t len, char **dst, size_t *dlen,
682     size_t *max, short a)
683     {
684     const char *e;
685    
686     for (e = s + len; s != e; s++) {
687     while (*dlen + 10 > *max) *dst = realloc(*dst, *max += EZXML_BUFSIZE);
688    
689     switch (*s) {
690     case '\0': return *dst;
691     case '&': *dlen += sprintf(*dst + *dlen, "&amp;"); break;
692     case '<': *dlen += sprintf(*dst + *dlen, "&lt;"); break;
693     case '>': *dlen += sprintf(*dst + *dlen, "&gt;"); break;
694     case '"': *dlen += sprintf(*dst + *dlen, (a) ? "&quot;" : "\""); break;
695     case '\n': *dlen += sprintf(*dst + *dlen, (a) ? "&#xA;" : "\n"); break;
696     case '\t': *dlen += sprintf(*dst + *dlen, (a) ? "&#x9;" : "\t"); break;
697     case '\r': *dlen += sprintf(*dst + *dlen, "&#xD;"); break;
698     default: (*dst)[(*dlen)++] = *s;
699     }
700     }
701     return *dst;
702     }
703    
704 greg 2.2 /* Recursively converts each tag to xml appending it to *s. Reallocates *s if */
705     /* its length excedes max. start is the location of the previous tag in the */
706     /* parent tag's character content. Returns *s. */
707 greg 2.1 char *ezxml_toxml_r(ezxml_t xml, char **s, size_t *len, size_t *max,
708     size_t start, char ***attr)
709     {
710     int i, j;
711     char *txt = (xml->parent) ? xml->parent->txt : "";
712     size_t off = 0;
713    
714 greg 2.2 /* parent character content up to this tag */
715 greg 2.1 *s = ezxml_ampencode(txt + start, xml->off - start, s, len, max, 0);
716    
717 greg 2.2 while (*len + strlen(xml->name) + 4 > *max) /* reallocate s */
718 greg 2.1 *s = realloc(*s, *max += EZXML_BUFSIZE);
719    
720 greg 2.2 *len += sprintf(*s + *len, "<%s", xml->name); /* open tag */
721     for (i = 0; xml->attr[i]; i += 2) { /* tag attributes */
722 greg 2.1 if (ezxml_attr(xml, xml->attr[i]) != xml->attr[i + 1]) continue;
723 greg 2.2 while (*len + strlen(xml->attr[i]) + 7 > *max) /* reallocate s */
724 greg 2.1 *s = realloc(*s, *max += EZXML_BUFSIZE);
725    
726     *len += sprintf(*s + *len, " %s=\"", xml->attr[i]);
727     ezxml_ampencode(xml->attr[i + 1], -1, s, len, max, 1);
728     *len += sprintf(*s + *len, "\"");
729     }
730    
731     for (i = 0; attr[i] && strcmp(attr[i][0], xml->name); i++);
732 greg 2.2 for (j = 1; attr[i] && attr[i][j]; j += 3) { /* default attributes */
733 greg 2.1 if (! attr[i][j + 1] || ezxml_attr(xml, attr[i][j]) != attr[i][j + 1])
734 greg 2.2 continue; /* skip duplicates and non-values */
735     while (*len + strlen(attr[i][j]) + 7 > *max) /* reallocate s */
736 greg 2.1 *s = realloc(*s, *max += EZXML_BUFSIZE);
737    
738     *len += sprintf(*s + *len, " %s=\"", attr[i][j]);
739     ezxml_ampencode(attr[i][j + 1], -1, s, len, max, 1);
740     *len += sprintf(*s + *len, "\"");
741     }
742     *len += sprintf(*s + *len, ">");
743    
744 greg 2.2 *s = (xml->child) ? ezxml_toxml_r(xml->child, s, len, max, 0, attr) /*child */
745     : ezxml_ampencode(xml->txt, -1, s, len, max, 0); /*data */
746 greg 2.1
747 greg 2.2 while (*len + strlen(xml->name) + 4 > *max) /* reallocate s */
748 greg 2.1 *s = realloc(*s, *max += EZXML_BUFSIZE);
749    
750 greg 2.2 *len += sprintf(*s + *len, "</%s>", xml->name); /* close tag */
751 greg 2.1
752 greg 2.2 while (txt[off] && off < xml->off) off++; /* make sure off is within bounds */
753 greg 2.1 return (xml->ordered) ? ezxml_toxml_r(xml->ordered, s, len, max, off, attr)
754     : ezxml_ampencode(txt + off, -1, s, len, max, 0);
755     }
756    
757 greg 2.2 /* Converts an ezxml structure back to xml. Returns a string of xml data that */
758     /* must be freed. */
759 greg 2.1 char *ezxml_toxml(ezxml_t xml)
760     {
761     ezxml_t p = (xml) ? xml->parent : NULL, o = (xml) ? xml->ordered : NULL;
762     ezxml_root_t root = (ezxml_root_t)xml;
763     size_t len = 0, max = EZXML_BUFSIZE;
764     char *s = strcpy(malloc(max), ""), *t, *n;
765     int i, j, k;
766    
767     if (! xml || ! xml->name) return realloc(s, len + 1);
768 greg 2.2 while (root->xml.parent) root = (ezxml_root_t)root->xml.parent; /* root tag */
769 greg 2.1
770 greg 2.2 for (i = 0; ! p && root->pi[i]; i++) { /* pre-root processing instructions */
771 greg 2.1 for (k = 2; root->pi[i][k - 1]; k++);
772     for (j = 1; (n = root->pi[i][j]); j++) {
773 greg 2.2 if (root->pi[i][k][j - 1] == '>') continue; /* not pre-root */
774 greg 2.1 while (len + strlen(t = root->pi[i][0]) + strlen(n) + 7 > max)
775     s = realloc(s, max += EZXML_BUFSIZE);
776     len += sprintf(s + len, "<?%s%s%s?>\n", t, *n ? " " : "", n);
777     }
778     }
779    
780     xml->parent = xml->ordered = NULL;
781     s = ezxml_toxml_r(xml, &s, &len, &max, 0, root->attr);
782     xml->parent = p;
783     xml->ordered = o;
784    
785 greg 2.2 for (i = 0; ! p && root->pi[i]; i++) { /* post-root processing instructions */
786 greg 2.1 for (k = 2; root->pi[i][k - 1]; k++);
787     for (j = 1; (n = root->pi[i][j]); j++) {
788 greg 2.2 if (root->pi[i][k][j - 1] == '<') continue; /* not post-root */
789 greg 2.1 while (len + strlen(t = root->pi[i][0]) + strlen(n) + 7 > max)
790     s = realloc(s, max += EZXML_BUFSIZE);
791     len += sprintf(s + len, "\n<?%s%s%s?>", t, *n ? " " : "", n);
792     }
793     }
794     return realloc(s, len + 1);
795     }
796    
797 greg 2.2 /* free the memory allocated for the ezxml structure */
798 greg 2.1 void ezxml_free(ezxml_t xml)
799     {
800     ezxml_root_t root = (ezxml_root_t)xml;
801     int i, j;
802     char **a, *s;
803    
804     if (! xml) return;
805     ezxml_free(xml->child);
806     ezxml_free(xml->ordered);
807    
808 greg 2.2 if (! xml->parent) { /* free root tag allocations */
809     for (i = 10; root->ent[i]; i += 2) /* 0 - 9 are default entites (<>&"') */
810 greg 2.1 if ((s = root->ent[i + 1]) < root->s || s > root->e) free(s);
811 greg 2.2 free(root->ent); /* free list of general entities */
812 greg 2.1
813     for (i = 0; (a = root->attr[i]); i++) {
814 greg 2.2 for (j = 1; a[j++]; j += 2) /* free malloced attribute values */
815 greg 2.1 if (a[j] && (a[j] < root->s || a[j] > root->e)) free(a[j]);
816     free(a);
817     }
818 greg 2.2 if (root->attr[0]) free(root->attr); /* free default attribute list */
819 greg 2.1
820     for (i = 0; root->pi[i]; i++) {
821     for (j = 1; root->pi[i][j]; j++);
822     free(root->pi[i][j + 1]);
823     free(root->pi[i]);
824     }
825 greg 2.2 if (root->pi[0]) free(root->pi); /* free processing instructions */
826 greg 2.1
827 greg 2.2 if (root->len == -1) free(root->m); /* malloced xml data */
828 greg 2.1 #ifndef EZXML_NOMMAP
829 greg 2.2 else if (root->len) munmap(root->m, root->len); /* mem mapped xml data */
830     #endif /* EZXML_NOMMAP */
831     if (root->u) free(root->u); /* utf8 conversion */
832 greg 2.1 }
833    
834 greg 2.2 ezxml_free_attr(xml->attr); /* tag attributes */
835     if ((xml->flags & EZXML_TXTM)) free(xml->txt); /* character content */
836     if ((xml->flags & EZXML_NAMEM)) free(xml->name); /* tag name */
837 greg 2.1 free(xml);
838     }
839    
840 greg 2.2 /* return parser error message or empty string if none */
841 greg 2.1 const char *ezxml_error(ezxml_t xml)
842     {
843 greg 2.2 while (xml && xml->parent) xml = xml->parent; /* find root tag */
844 greg 2.1 return (xml) ? ((ezxml_root_t)xml)->err : "";
845     }
846    
847 greg 2.2 /* returns a new empty ezxml structure with the given root tag name */
848 greg 2.1 ezxml_t ezxml_new(const char *name)
849     {
850     static char *ent[] = { "lt;", "&#60;", "gt;", "&#62;", "quot;", "&#34;",
851     "apos;", "&#39;", "amp;", "&#38;", NULL };
852     ezxml_root_t root = (ezxml_root_t)memset(malloc(sizeof(struct ezxml_root)),
853     '\0', sizeof(struct ezxml_root));
854     root->xml.name = (char *)name;
855     root->cur = &root->xml;
856     strcpy(root->err, root->xml.txt = "");
857     root->ent = memcpy(malloc(sizeof(ent)), ent, sizeof(ent));
858     root->attr = root->pi = (char ***)(root->xml.attr = EZXML_NIL);
859     return &root->xml;
860     }
861    
862 greg 2.2 /* inserts an existing tag into an ezxml structure */
863 greg 2.1 ezxml_t ezxml_insert(ezxml_t xml, ezxml_t dest, size_t off)
864     {
865     ezxml_t cur, prev, head;
866    
867     xml->next = xml->sibling = xml->ordered = NULL;
868     xml->off = off;
869     xml->parent = dest;
870    
871 greg 2.2 if ((head = dest->child)) { /* already have sub tags */
872     if (head->off <= off) { /* not first subtag */
873 greg 2.1 for (cur = head; cur->ordered && cur->ordered->off <= off;
874     cur = cur->ordered);
875     xml->ordered = cur->ordered;
876     cur->ordered = xml;
877     }
878 greg 2.2 else { /* first subtag */
879 greg 2.1 xml->ordered = head;
880     dest->child = xml;
881     }
882    
883     for (cur = head, prev = NULL; cur && strcmp(cur->name, xml->name);
884 greg 2.2 prev = cur, cur = cur->sibling); /* find tag type */
885     if (cur && cur->off <= off) { /* not first of type */
886 greg 2.1 while (cur->next && cur->next->off <= off) cur = cur->next;
887     xml->next = cur->next;
888     cur->next = xml;
889     }
890 greg 2.2 else { /* first tag of this type */
891     if (prev && cur) prev->sibling = cur->sibling; /* remove old first */
892     xml->next = cur; /* old first tag is now next */
893 greg 2.1 for (cur = head, prev = NULL; cur && cur->off <= off;
894 greg 2.2 prev = cur, cur = cur->sibling); /* new sibling insert point */
895 greg 2.1 xml->sibling = cur;
896     if (prev) prev->sibling = xml;
897     }
898     }
899 greg 2.2 else dest->child = xml; /* only sub tag */
900 greg 2.1
901     return xml;
902     }
903    
904 greg 2.2 /* Adds a child tag. off is the offset of the child tag relative to the start */
905     /* of the parent tag's character content. Returns the child tag. */
906 greg 2.1 ezxml_t ezxml_add_child(ezxml_t xml, const char *name, size_t off)
907     {
908     ezxml_t child;
909    
910     if (! xml) return NULL;
911     child = (ezxml_t)memset(malloc(sizeof(struct ezxml)), '\0',
912     sizeof(struct ezxml));
913     child->name = (char *)name;
914     child->attr = EZXML_NIL;
915     child->txt = "";
916    
917     return ezxml_insert(child, xml, off);
918     }
919    
920 greg 2.2 /* sets the character content for the given tag and returns the tag */
921 greg 2.1 ezxml_t ezxml_set_txt(ezxml_t xml, const char *txt)
922     {
923     if (! xml) return NULL;
924 greg 2.2 if (xml->flags & EZXML_TXTM) free(xml->txt); /* existing txt was malloced */
925 greg 2.1 xml->flags &= ~EZXML_TXTM;
926     xml->txt = (char *)txt;
927     return xml;
928     }
929    
930 greg 2.2 /* Sets the given tag attribute or adds a new attribute if not found. A value */
931     /* of NULL will remove the specified attribute. Returns the tag given. */
932 greg 2.1 ezxml_t ezxml_set_attr(ezxml_t xml, const char *name, const char *value)
933     {
934     int l = 0, c;
935    
936     if (! xml) return NULL;
937     while (xml->attr[l] && strcmp(xml->attr[l], name)) l += 2;
938 greg 2.2 if (! xml->attr[l]) { /* not found, add as new attribute */
939     if (! value) return xml; /* nothing to do */
940     if (xml->attr == EZXML_NIL) { /* first attribute */
941 greg 2.1 xml->attr = malloc(4 * sizeof(char *));
942 greg 2.2 xml->attr[1] = strdup(""); /* empty list of malloced names/vals */
943 greg 2.1 }
944     else xml->attr = realloc(xml->attr, (l + 4) * sizeof(char *));
945    
946 greg 2.2 xml->attr[l] = (char *)name; /* set attribute name */
947     xml->attr[l + 2] = NULL; /* null terminate attribute list */
948 greg 2.1 xml->attr[l + 3] = realloc(xml->attr[l + 1],
949     (c = strlen(xml->attr[l + 1])) + 2);
950 greg 2.2 strcpy(xml->attr[l + 3] + c, " "); /* set name/value as not malloced */
951 greg 2.1 if (xml->flags & EZXML_DUP) xml->attr[l + 3][c] = EZXML_NAMEM;
952     }
953 greg 2.2 else if (xml->flags & EZXML_DUP) free((char *)name); /* name was strduped */
954 greg 2.1
955 greg 2.2 for (c = l; xml->attr[c]; c += 2); /* find end of attribute list */
956     if (xml->attr[c + 1][l / 2] & EZXML_TXTM) free(xml->attr[l + 1]); /*old val */
957 greg 2.1 if (xml->flags & EZXML_DUP) xml->attr[c + 1][l / 2] |= EZXML_TXTM;
958     else xml->attr[c + 1][l / 2] &= ~EZXML_TXTM;
959    
960 greg 2.2 if (value) xml->attr[l + 1] = (char *)value; /* set attribute value */
961     else { /* remove attribute */
962 greg 2.1 if (xml->attr[c + 1][l / 2] & EZXML_NAMEM) free(xml->attr[l]);
963     memmove(xml->attr + l, xml->attr + l + 2, (c - l + 2) * sizeof(char*));
964     xml->attr = realloc(xml->attr, (c + 2) * sizeof(char *));
965     memmove(xml->attr[c + 1] + (l / 2), xml->attr[c + 1] + (l / 2) + 1,
966 greg 2.2 (c / 2) - (l / 2)); /* fix list of which name/vals are malloced */
967 greg 2.1 }
968 greg 2.2 xml->flags &= ~EZXML_DUP; /* clear strdup() flag */
969 greg 2.1 return xml;
970     }
971    
972 greg 2.2 /* sets a flag for the given tag and returns the tag */
973 greg 2.1 ezxml_t ezxml_set_flag(ezxml_t xml, short flag)
974     {
975     if (xml) xml->flags |= flag;
976     return xml;
977     }
978    
979 greg 2.2 /* removes a tag along with its subtags without freeing its memory */
980 greg 2.1 ezxml_t ezxml_cut(ezxml_t xml)
981     {
982     ezxml_t cur;
983    
984 greg 2.2 if (! xml) return NULL; /* nothing to do */
985     if (xml->next) xml->next->sibling = xml->sibling; /* patch sibling list */
986 greg 2.1
987 greg 2.2 if (xml->parent) { /* not root tag */
988     cur = xml->parent->child; /* find head of subtag list */
989     if (cur == xml) xml->parent->child = xml->ordered; /* first subtag */
990     else { /* not first subtag */
991 greg 2.1 while (cur->ordered != xml) cur = cur->ordered;
992 greg 2.2 cur->ordered = cur->ordered->ordered; /* patch ordered list */
993 greg 2.1
994 greg 2.2 cur = xml->parent->child; /* go back to head of subtag list */
995     if (strcmp(cur->name, xml->name)) { /* not in first sibling list */
996 greg 2.1 while (strcmp(cur->sibling->name, xml->name))
997     cur = cur->sibling;
998 greg 2.2 if (cur->sibling == xml) { /* first of a sibling list */
999 greg 2.1 cur->sibling = (xml->next) ? xml->next
1000     : cur->sibling->sibling;
1001     }
1002 greg 2.2 else cur = cur->sibling; /* not first of a sibling list */
1003 greg 2.1 }
1004    
1005     while (cur->next && cur->next != xml) cur = cur->next;
1006 greg 2.2 if (cur->next) cur->next = cur->next->next; /* patch next list */
1007 greg 2.1 }
1008     }
1009     xml->ordered = xml->sibling = xml->next = NULL;
1010     return xml;
1011     }
1012    
1013 greg 2.2 #ifdef EZXML_TEST /* test harness */
1014 greg 2.1 int main(int argc, char **argv)
1015     {
1016     ezxml_t xml;
1017     char *s;
1018     int i;
1019    
1020     if (argc != 2) return fprintf(stderr, "usage: %s xmlfile\n", argv[0]);
1021    
1022     xml = ezxml_parse_file(argv[1]);
1023     printf("%s\n", (s = ezxml_toxml(xml)));
1024     free(s);
1025     i = fprintf(stderr, "%s", ezxml_error(xml));
1026     ezxml_free(xml);
1027     return (i) ? 1 : 0;
1028     }
1029 greg 2.2 #endif /* EZXML_TEST */