xml_element.c 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770
  1. /*
  2. This file is part of libXMLRPC - a C library for xml-encoded function calls.
  3. Author: Dan Libby (dan@libby.com)
  4. Epinions.com may be contacted at feedback@epinions-inc.com
  5. */
  6. /*
  7. Copyright 2000 Epinions, Inc.
  8. Subject to the following 3 conditions, Epinions, Inc. permits you, free
  9. of charge, to (a) use, copy, distribute, modify, perform and display this
  10. software and associated documentation files (the "Software"), and (b)
  11. permit others to whom the Software is furnished to do so as well.
  12. 1) The above copyright notice and this permission notice shall be included
  13. without modification in all copies or substantial portions of the
  14. Software.
  15. 2) THE SOFTWARE IS PROVIDED "AS IS", WITHOUT ANY WARRANTY OR CONDITION OF
  16. ANY KIND, EXPRESS, IMPLIED OR STATUTORY, INCLUDING WITHOUT LIMITATION ANY
  17. IMPLIED WARRANTIES OF ACCURACY, MERCHANTABILITY, FITNESS FOR A PARTICULAR
  18. PURPOSE OR NONINFRINGEMENT.
  19. 3) IN NO EVENT SHALL EPINIONS, INC. BE LIABLE FOR ANY DIRECT, INDIRECT,
  20. SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES OR LOST PROFITS ARISING OUT
  21. OF OR IN CONNECTION WITH THE SOFTWARE (HOWEVER ARISING, INCLUDING
  22. NEGLIGENCE), EVEN IF EPINIONS, INC. IS AWARE OF THE POSSIBILITY OF SUCH
  23. DAMAGES.
  24. */
  25. static const char rcsid[] = "#(@) $Id$";
  26. /****h* ABOUT/xml_element
  27. * NAME
  28. * xml_element
  29. * AUTHOR
  30. * Dan Libby, aka danda (dan@libby.com)
  31. * CREATION DATE
  32. * 06/2000
  33. * HISTORY
  34. * $Log$
  35. * Revision 1.9.4.1.2.1 2008/12/09 17:22:12 iliaa
  36. *
  37. * MFH: Fixed bug #46746 (xmlrpc_decode_request outputs non-suppressable error
  38. * when given bad data).
  39. *
  40. * Revision 1.9.4.1 2006/07/30 11:34:02 tony2001
  41. * MFH: fix compile warnings (#38257)
  42. *
  43. * Revision 1.9 2005/04/22 11:06:53 jorton
  44. * Fixed bug #32797 (invalid C code in xmlrpc extension).
  45. *
  46. * Revision 1.8 2005/03/28 00:07:24 edink
  47. * Reshufle includes to make it compile on windows
  48. *
  49. * Revision 1.7 2005/03/26 03:13:58 sniper
  50. * - Made it possible to build ext/xmlrpc with libxml2
  51. *
  52. * Revision 1.6 2004/06/01 20:16:06 iliaa
  53. * Fixed bug #28597 (xmlrpc_encode_request() incorrectly encodes chars in
  54. * 200-210 range).
  55. * Patch by: fernando dot nemec at folha dot com dot br
  56. *
  57. * Revision 1.5 2003/12/16 21:00:21 sniper
  58. * Fix some compile warnings (patch by Joe Orton)
  59. *
  60. * Revision 1.4 2002/11/26 23:01:16 fmk
  61. * removing unused variables
  62. *
  63. * Revision 1.3 2002/07/05 04:43:53 danda
  64. * merged in updates from SF project. bring php repository up to date with xmlrpc-epi version 0.51
  65. *
  66. * Revision 1.9 2002/07/03 20:54:30 danda
  67. * root element should not have a parent. patch from anon SF user
  68. *
  69. * Revision 1.8 2002/05/23 17:46:51 danda
  70. * patch from mukund - fix non utf-8 encoding conversions
  71. *
  72. * Revision 1.7 2002/02/13 20:58:50 danda
  73. * patch to make source more windows friendly, contributed by Jeff Lawson
  74. *
  75. * Revision 1.6 2002/01/08 01:06:55 danda
  76. * enable <?xml version="1.0"?> format for parsers that are very picky.
  77. *
  78. * Revision 1.5 2001/09/29 21:58:05 danda
  79. * adding cvs log to history section
  80. *
  81. * 10/15/2000 -- danda -- adding robodoc documentation
  82. * TODO
  83. * Nicer external API. Get rid of macros. Make opaque types, etc.
  84. * PORTABILITY
  85. * Coded on RedHat Linux 6.2. Builds on Solaris x86. Should build on just
  86. * about anything with minor mods.
  87. * NOTES
  88. * This code incorporates ideas from expat-ensor from http://xml.ensor.org.
  89. *
  90. * It was coded primarily to act as a go-between for expat and xmlrpc. To this
  91. * end, it stores xml elements, their sub-elements, and their attributes in an
  92. * in-memory tree. When expat is done parsing, the tree can be walked, thus
  93. * retrieving the values. The code can also be used to build a tree via API then
  94. * write out the tree to a buffer, thus "serializing" the xml.
  95. *
  96. * It turns out this is useful for other purposes, such as parsing config files.
  97. * YMMV.
  98. *
  99. * Some Features:
  100. * - output option for xml escaping data. Choices include no escaping, entity escaping,
  101. * or CDATA sections.
  102. * - output option for character encoding. Defaults to (none) utf-8.
  103. * - output option for verbosity/readability. ultra-compact, newlines, pretty/level indented.
  104. *
  105. * BUGS
  106. * there must be some.
  107. ******/
  108. #include "ext/xml/expat_compat.h"
  109. #ifdef _WIN32
  110. #include "xmlrpc_win32.h"
  111. #endif
  112. #include <stdlib.h>
  113. #include <string.h>
  114. #include <ctype.h>
  115. #include "xml_element.h"
  116. #include "queue.h"
  117. #include "encodings.h"
  118. #define my_free(thing) if(thing) {free(thing); thing = NULL;}
  119. #define XML_DECL_START "<?xml"
  120. #define XML_DECL_START_LEN sizeof(XML_DECL_START) - 1
  121. #define XML_DECL_VERSION "version=\"1.0\""
  122. #define XML_DECL_VERSION_LEN sizeof(XML_DECL_VERSION) - 1
  123. #define XML_DECL_ENCODING_ATTR "encoding"
  124. #define XML_DECL_ENCODING_ATTR_LEN sizeof(XML_DECL_ENCODING_ATTR) - 1
  125. #define XML_DECL_ENCODING_DEFAULT "utf-8"
  126. #define XML_DECL_ENCODING_DEFAULT_LEN sizeof(XML_DECL_ENCODING_DEFAULT) - 1
  127. #define XML_DECL_END "?>"
  128. #define XML_DECL_END_LEN sizeof(XML_DECL_END) - 1
  129. #define START_TOKEN_BEGIN "<"
  130. #define START_TOKEN_BEGIN_LEN sizeof(START_TOKEN_BEGIN) - 1
  131. #define START_TOKEN_END ">"
  132. #define START_TOKEN_END_LEN sizeof(START_TOKEN_END) - 1
  133. #define EMPTY_START_TOKEN_END "/>"
  134. #define EMPTY_START_TOKEN_END_LEN sizeof(EMPTY_START_TOKEN_END) - 1
  135. #define END_TOKEN_BEGIN "</"
  136. #define END_TOKEN_BEGIN_LEN sizeof(END_TOKEN_BEGIN) - 1
  137. #define END_TOKEN_END ">"
  138. #define END_TOKEN_END_LEN sizeof(END_TOKEN_END) - 1
  139. #define ATTR_DELIMITER "\""
  140. #define ATTR_DELIMITER_LEN sizeof(ATTR_DELIMITER) - 1
  141. #define CDATA_BEGIN "<![CDATA["
  142. #define CDATA_BEGIN_LEN sizeof(CDATA_BEGIN) - 1
  143. #define CDATA_END "]]>"
  144. #define CDATA_END_LEN sizeof(CDATA_END) - 1
  145. #define EQUALS "="
  146. #define EQUALS_LEN sizeof(EQUALS) - 1
  147. #define WHITESPACE " "
  148. #define WHITESPACE_LEN sizeof(WHITESPACE) - 1
  149. #define NEWLINE "\n"
  150. #define NEWLINE_LEN sizeof(NEWLINE) - 1
  151. #define MAX_VAL_BUF 144
  152. #define SCALAR_STR "SCALAR"
  153. #define SCALAR_STR_LEN sizeof(SCALAR_STR) - 1
  154. #define VECTOR_STR "VECTOR"
  155. #define VECTOR_STR_LEN sizeof(VECTOR_STR) - 1
  156. #define RESPONSE_STR "RESPONSE"
  157. #define RESPONSE_STR_LEN sizeof(RESPONSE_STR) - 1
  158. /*-----------------------------
  159. - Begin xml_element Functions -
  160. -----------------------------*/
  161. /****f* xml_element/xml_elem_free_non_recurse
  162. * NAME
  163. * xml_elem_free_non_recurse
  164. * SYNOPSIS
  165. * void xml_elem_free_non_recurse(xml_element* root)
  166. * FUNCTION
  167. * free a single xml element. child elements will not be freed.
  168. * INPUTS
  169. * root - the element to free
  170. * RESULT
  171. * void
  172. * NOTES
  173. * SEE ALSO
  174. * xml_elem_free ()
  175. * xml_elem_new ()
  176. * SOURCE
  177. */
  178. void xml_elem_free_non_recurse(xml_element* root) {
  179. if(root) {
  180. xml_element_attr* attrs = Q_Head(&root->attrs);
  181. while(attrs) {
  182. my_free(attrs->key);
  183. my_free(attrs->val);
  184. my_free(attrs);
  185. attrs = Q_Next(&root->attrs);
  186. }
  187. Q_Destroy(&root->children);
  188. Q_Destroy(&root->attrs);
  189. if(root->name) {
  190. free((char *)root->name);
  191. root->name = NULL;
  192. }
  193. simplestring_free(&root->text);
  194. my_free(root);
  195. }
  196. }
  197. /******/
  198. /****f* xml_element/xml_elem_free
  199. * NAME
  200. * xml_elem_free
  201. * SYNOPSIS
  202. * void xml_elem_free(xml_element* root)
  203. * FUNCTION
  204. * free an xml element and all of its child elements
  205. * INPUTS
  206. * root - the root of an xml tree you would like to free
  207. * RESULT
  208. * void
  209. * NOTES
  210. * SEE ALSO
  211. * xml_elem_free_non_recurse ()
  212. * xml_elem_new ()
  213. * SOURCE
  214. */
  215. void xml_elem_free(xml_element* root) {
  216. if(root) {
  217. xml_element* kids = Q_Head(&root->children);
  218. while(kids) {
  219. xml_elem_free(kids);
  220. kids = Q_Next(&root->children);
  221. }
  222. xml_elem_free_non_recurse(root);
  223. }
  224. }
  225. /******/
  226. /****f* xml_element/xml_elem_new
  227. * NAME
  228. * xml_elem_new
  229. * SYNOPSIS
  230. * xml_element* xml_elem_new()
  231. * FUNCTION
  232. * allocates and initializes a new xml_element
  233. * INPUTS
  234. * none
  235. * RESULT
  236. * xml_element* or NULL. NULL indicates an out-of-memory condition.
  237. * NOTES
  238. * SEE ALSO
  239. * xml_elem_free ()
  240. * xml_elem_free_non_recurse ()
  241. * SOURCE
  242. */
  243. xml_element* xml_elem_new() {
  244. xml_element* elem = calloc(1, sizeof(xml_element));
  245. if(elem) {
  246. Q_Init(&elem->children);
  247. Q_Init(&elem->attrs);
  248. simplestring_init(&elem->text);
  249. /* init empty string in case we don't find any char data */
  250. simplestring_addn(&elem->text, "", 0);
  251. }
  252. return elem;
  253. }
  254. /******/
  255. static int xml_elem_writefunc(int (*fptr)(void *data, const char *text, int size), const char *text, void *data, int len)
  256. {
  257. return fptr && text ? fptr(data, text, len ? len : strlen(text)) : 0;
  258. }
  259. static int create_xml_escape(char *pString, unsigned char c)
  260. {
  261. int counter = 0;
  262. pString[counter++] = '&';
  263. pString[counter++] = '#';
  264. if(c >= 100) {
  265. pString[counter++] = c / 100 + '0';
  266. c = c % 100;
  267. }
  268. pString[counter++] = c / 10 + '0';
  269. c = c % 10;
  270. pString[counter++] = c + '0';
  271. pString[counter++] = ';';
  272. return counter;
  273. }
  274. #define non_ascii(c) (c > 127)
  275. #define non_print(c) (!isprint(c))
  276. #define markup(c) (c == '&' || c == '\"' || c == '>' || c == '<')
  277. #define entity_length(c) ( (c >= 100) ? 3 : ((c >= 10) ? 2 : 1) ) + 3; /* "&#" + c + ";" */
  278. /*
  279. * xml_elem_entity_escape
  280. *
  281. * Purpose:
  282. * escape reserved xml chars and non utf-8 chars as xml entities
  283. * Comments:
  284. * The return value may be a new string, or null if no
  285. * conversion was performed. In the latter case, *newlen will
  286. * be 0.
  287. * Flags (to escape)
  288. * xml_elem_no_escaping = 0x000,
  289. * xml_elem_entity_escaping = 0x002, // escape xml special chars as entities
  290. * xml_elem_non_ascii_escaping = 0x008, // escape chars above 127
  291. * xml_elem_cdata_escaping = 0x010, // wrap in cdata
  292. */
  293. static char* xml_elem_entity_escape(const char* buf, int old_len, int *newlen, XML_ELEM_ESCAPING flags) {
  294. char *pRetval = 0;
  295. int iNewBufLen=0;
  296. #define should_escape(c, flag) ( ((flag & xml_elem_markup_escaping) && markup(c)) || \
  297. ((flag & xml_elem_non_ascii_escaping) && non_ascii(c)) || \
  298. ((flag & xml_elem_non_print_escaping) && non_print(c)) )
  299. if(buf && *buf) {
  300. const unsigned char *bufcopy;
  301. char *NewBuffer;
  302. int ToBeXmlEscaped=0;
  303. int iLength;
  304. bufcopy = buf;
  305. iLength= old_len ? old_len : strlen(buf);
  306. while(*bufcopy) {
  307. if( should_escape(*bufcopy, flags) ) {
  308. /* the length will increase by length of xml escape - the character length */
  309. iLength += entity_length(*bufcopy);
  310. ToBeXmlEscaped=1;
  311. }
  312. bufcopy++;
  313. }
  314. if(ToBeXmlEscaped) {
  315. NewBuffer= malloc(iLength+1);
  316. if(NewBuffer) {
  317. bufcopy=buf;
  318. while(*bufcopy) {
  319. if(should_escape(*bufcopy, flags)) {
  320. iNewBufLen += create_xml_escape(NewBuffer+iNewBufLen,*bufcopy);
  321. }
  322. else {
  323. NewBuffer[iNewBufLen++]=*bufcopy;
  324. }
  325. bufcopy++;
  326. }
  327. NewBuffer[iNewBufLen] = 0;
  328. pRetval = NewBuffer;
  329. }
  330. }
  331. }
  332. if(newlen) {
  333. *newlen = iNewBufLen;
  334. }
  335. return pRetval;
  336. }
  337. static void xml_element_serialize(xml_element *el, int (*fptr)(void *data, const char *text, int size), void *data, XML_ELEM_OUTPUT_OPTIONS options, int depth)
  338. {
  339. int i;
  340. static STRUCT_XML_ELEM_OUTPUT_OPTIONS default_opts = {xml_elem_pretty, xml_elem_markup_escaping | xml_elem_non_print_escaping, XML_DECL_ENCODING_DEFAULT};
  341. static char whitespace[] = " "
  342. " "
  343. " ";
  344. depth++;
  345. if(!el) {
  346. /* fprintf(stderr, "Nothing to write\n"); */
  347. return;
  348. }
  349. if(!options) {
  350. options = &default_opts;
  351. }
  352. /* print xml declaration if at root level */
  353. if(depth == 1) {
  354. xml_elem_writefunc(fptr, XML_DECL_START, data, XML_DECL_START_LEN);
  355. xml_elem_writefunc(fptr, WHITESPACE, data, WHITESPACE_LEN);
  356. xml_elem_writefunc(fptr, XML_DECL_VERSION, data, XML_DECL_VERSION_LEN);
  357. if(options->encoding && *options->encoding) {
  358. xml_elem_writefunc(fptr, WHITESPACE, data, WHITESPACE_LEN);
  359. xml_elem_writefunc(fptr, XML_DECL_ENCODING_ATTR, data, XML_DECL_ENCODING_ATTR_LEN);
  360. xml_elem_writefunc(fptr, EQUALS, data, EQUALS_LEN);
  361. xml_elem_writefunc(fptr, ATTR_DELIMITER, data, ATTR_DELIMITER_LEN);
  362. xml_elem_writefunc(fptr, options->encoding, data, 0);
  363. xml_elem_writefunc(fptr, ATTR_DELIMITER, data, ATTR_DELIMITER_LEN);
  364. }
  365. xml_elem_writefunc(fptr, XML_DECL_END, data, XML_DECL_END_LEN);
  366. if(options->verbosity != xml_elem_no_white_space) {
  367. xml_elem_writefunc(fptr, NEWLINE, data, NEWLINE_LEN);
  368. }
  369. }
  370. if(options->verbosity == xml_elem_pretty && depth > 2) {
  371. xml_elem_writefunc(fptr, whitespace, data, depth - 2);
  372. }
  373. /* begin element */
  374. xml_elem_writefunc(fptr,START_TOKEN_BEGIN, data, START_TOKEN_BEGIN_LEN);
  375. if(el->name) {
  376. xml_elem_writefunc(fptr, el->name, data, 0);
  377. /* write attrs, if any */
  378. if(Q_Size(&el->attrs)) {
  379. xml_element_attr* iter = Q_Head(&el->attrs);
  380. while( iter ) {
  381. xml_elem_writefunc(fptr, WHITESPACE, data, WHITESPACE_LEN);
  382. xml_elem_writefunc(fptr, iter->key, data, 0);
  383. xml_elem_writefunc(fptr, EQUALS, data, EQUALS_LEN);
  384. xml_elem_writefunc(fptr, ATTR_DELIMITER, data, ATTR_DELIMITER_LEN);
  385. xml_elem_writefunc(fptr, iter->val, data, 0);
  386. xml_elem_writefunc(fptr, ATTR_DELIMITER, data, ATTR_DELIMITER_LEN);
  387. iter = Q_Next(&el->attrs);
  388. }
  389. }
  390. }
  391. else {
  392. xml_elem_writefunc(fptr, "None", data, 0);
  393. }
  394. /* if no text and no children, use abbreviated form, eg: <foo/> */
  395. if(!el->text.len && !Q_Size(&el->children)) {
  396. xml_elem_writefunc(fptr, EMPTY_START_TOKEN_END, data, EMPTY_START_TOKEN_END_LEN);
  397. }
  398. /* otherwise, print element contents */
  399. else {
  400. xml_elem_writefunc(fptr, START_TOKEN_END, data, START_TOKEN_END_LEN);
  401. /* print text, if any */
  402. if(el->text.len) {
  403. char* escaped_str = el->text.str;
  404. int buflen = el->text.len;
  405. if(options->escaping && options->escaping != xml_elem_cdata_escaping) {
  406. escaped_str = xml_elem_entity_escape(el->text.str, buflen, &buflen, options->escaping );
  407. if(!escaped_str) {
  408. escaped_str = el->text.str;
  409. }
  410. }
  411. if(options->escaping & xml_elem_cdata_escaping) {
  412. xml_elem_writefunc(fptr, CDATA_BEGIN, data, CDATA_BEGIN_LEN);
  413. }
  414. xml_elem_writefunc(fptr, escaped_str, data, buflen);
  415. if(escaped_str != el->text.str) {
  416. my_free(escaped_str);
  417. }
  418. if(options->escaping & xml_elem_cdata_escaping) {
  419. xml_elem_writefunc(fptr, CDATA_END, data, CDATA_END_LEN);
  420. }
  421. }
  422. /* no text, so print child elems */
  423. else {
  424. xml_element *kids = Q_Head(&el->children);
  425. i = 0;
  426. while( kids ) {
  427. if(i++ == 0) {
  428. if(options->verbosity != xml_elem_no_white_space) {
  429. xml_elem_writefunc(fptr, NEWLINE, data, NEWLINE_LEN);
  430. }
  431. }
  432. xml_element_serialize(kids, fptr, data, options, depth);
  433. kids = Q_Next(&el->children);
  434. }
  435. if(i) {
  436. if(options->verbosity == xml_elem_pretty && depth > 2) {
  437. xml_elem_writefunc(fptr, whitespace, data, depth - 2);
  438. }
  439. }
  440. }
  441. xml_elem_writefunc(fptr, END_TOKEN_BEGIN, data, END_TOKEN_BEGIN_LEN);
  442. xml_elem_writefunc(fptr,el->name ? el->name : "None", data, 0);
  443. xml_elem_writefunc(fptr, END_TOKEN_END, data, END_TOKEN_END_LEN);
  444. }
  445. if(options->verbosity != xml_elem_no_white_space) {
  446. xml_elem_writefunc(fptr, NEWLINE, data, NEWLINE_LEN);
  447. }
  448. }
  449. /* print buf to file */
  450. static int file_out_fptr(void *f, const char *text, int size)
  451. {
  452. fputs(text, (FILE *)f);
  453. return 0;
  454. }
  455. /* print buf to simplestring */
  456. static int simplestring_out_fptr(void *f, const char *text, int size)
  457. {
  458. simplestring* buf = (simplestring*)f;
  459. if(buf) {
  460. simplestring_addn(buf, text, size);
  461. }
  462. return 0;
  463. }
  464. /****f* xml_element/xml_elem_serialize_to_string
  465. * NAME
  466. * xml_elem_serialize_to_string
  467. * SYNOPSIS
  468. * void xml_element_serialize_to_string(xml_element *el, XML_ELEM_OUTPUT_OPTIONS options, int *buf_len)
  469. * FUNCTION
  470. * writes element tree as XML into a newly allocated buffer
  471. * INPUTS
  472. * el - root element of tree
  473. * options - options determining how output is written. see XML_ELEM_OUTPUT_OPTIONS
  474. * buf_len - length of returned buffer, if not null.
  475. * RESULT
  476. * char* or NULL. Must be free'd by caller.
  477. * NOTES
  478. * SEE ALSO
  479. * xml_elem_serialize_to_stream ()
  480. * xml_elem_parse_buf ()
  481. * SOURCE
  482. */
  483. char* xml_elem_serialize_to_string(xml_element *el, XML_ELEM_OUTPUT_OPTIONS options, int *buf_len)
  484. {
  485. simplestring buf;
  486. simplestring_init(&buf);
  487. xml_element_serialize(el, simplestring_out_fptr, (void *)&buf, options, 0);
  488. if(buf_len) {
  489. *buf_len = buf.len;
  490. }
  491. return buf.str;
  492. }
  493. /******/
  494. /****f* xml_element/xml_elem_serialize_to_stream
  495. * NAME
  496. * xml_elem_serialize_to_stream
  497. * SYNOPSIS
  498. * void xml_elem_serialize_to_stream(xml_element *el, FILE *output, XML_ELEM_OUTPUT_OPTIONS options)
  499. * FUNCTION
  500. * writes element tree as XML into a stream (typically an opened file)
  501. * INPUTS
  502. * el - root element of tree
  503. * output - stream handle
  504. * options - options determining how output is written. see XML_ELEM_OUTPUT_OPTIONS
  505. * RESULT
  506. * void
  507. * NOTES
  508. * SEE ALSO
  509. * xml_elem_serialize_to_string ()
  510. * xml_elem_parse_buf ()
  511. * SOURCE
  512. */
  513. void xml_elem_serialize_to_stream(xml_element *el, FILE *output, XML_ELEM_OUTPUT_OPTIONS options)
  514. {
  515. xml_element_serialize(el, file_out_fptr, (void *)output, options, 0);
  516. }
  517. /******/
  518. /*--------------------------*
  519. * End xml_element Functions *
  520. *--------------------------*/
  521. /*----------------------
  522. * Begin Expat Handlers *
  523. *---------------------*/
  524. typedef struct _xml_elem_data {
  525. xml_element* root;
  526. xml_element* current;
  527. XML_ELEM_INPUT_OPTIONS input_options;
  528. int needs_enc_conversion;
  529. } xml_elem_data;
  530. /* expat start of element handler */
  531. static void _xmlrpc_startElement(void *userData, const char *name, const char **attrs)
  532. {
  533. xml_element *c;
  534. xml_elem_data* mydata = (xml_elem_data*)userData;
  535. const char** p = attrs;
  536. if(mydata) {
  537. c = mydata->current;
  538. mydata->current = xml_elem_new();
  539. mydata->current->name = (char*)strdup(name);
  540. mydata->current->parent = c;
  541. /* init attrs */
  542. while(p && *p) {
  543. xml_element_attr* attr = malloc(sizeof(xml_element_attr));
  544. if(attr) {
  545. attr->key = strdup(*p);
  546. attr->val = strdup(*(p+1));
  547. Q_PushTail(&mydata->current->attrs, attr);
  548. p += 2;
  549. }
  550. }
  551. }
  552. }
  553. /* expat end of element handler */
  554. static void _xmlrpc_endElement(void *userData, const char *name)
  555. {
  556. xml_elem_data* mydata = (xml_elem_data*)userData;
  557. if(mydata && mydata->current && mydata->current->parent) {
  558. Q_PushTail(&mydata->current->parent->children, mydata->current);
  559. mydata->current = mydata->current->parent;
  560. }
  561. }
  562. /* expat char data handler */
  563. static void _xmlrpc_charHandler(void *userData,
  564. const char *s,
  565. int len)
  566. {
  567. xml_elem_data* mydata = (xml_elem_data*)userData;
  568. if(mydata && mydata->current) {
  569. /* Check if we need to decode utf-8 parser output to another encoding */
  570. if(mydata->needs_enc_conversion && mydata->input_options->encoding) {
  571. int new_len = 0;
  572. char* add_text = utf8_decode(s, len, &new_len, mydata->input_options->encoding);
  573. if(add_text) {
  574. len = new_len;
  575. simplestring_addn(&mydata->current->text, add_text, len);
  576. free(add_text);
  577. return;
  578. }
  579. }
  580. simplestring_addn(&mydata->current->text, s, len);
  581. }
  582. }
  583. /******/
  584. /*-------------------*
  585. * End Expat Handlers *
  586. *-------------------*/
  587. /*-------------------*
  588. * xml_elem_parse_buf *
  589. *-------------------*/
  590. /****f* xml_element/xml_elem_parse_buf
  591. * NAME
  592. * xml_elem_parse_buf
  593. * SYNOPSIS
  594. * xml_element* xml_elem_parse_buf(const char* in_buf, int len, XML_ELEM_INPUT_OPTIONS options, XML_ELEM_ERROR error)
  595. * FUNCTION
  596. * parse a buffer containing XML into an xml_element in-memory tree
  597. * INPUTS
  598. * in_buf - buffer containing XML document
  599. * len - length of buffer
  600. * options - input options. optional
  601. * error - error result data. optional. check if result is null.
  602. * RESULT
  603. * void
  604. * NOTES
  605. * The returned data must be free'd by caller
  606. * SEE ALSO
  607. * xml_elem_serialize_to_string ()
  608. * xml_elem_free ()
  609. * SOURCE
  610. */
  611. xml_element* xml_elem_parse_buf(const char* in_buf, int len, XML_ELEM_INPUT_OPTIONS options, XML_ELEM_ERROR error)
  612. {
  613. xml_element* xReturn = NULL;
  614. char buf[100] = "";
  615. static STRUCT_XML_ELEM_INPUT_OPTIONS default_opts = {encoding_utf_8};
  616. if(!options) {
  617. options = &default_opts;
  618. }
  619. if(in_buf) {
  620. XML_Parser parser;
  621. xml_elem_data mydata = {0};
  622. parser = XML_ParserCreate(NULL);
  623. mydata.root = xml_elem_new();
  624. mydata.current = mydata.root;
  625. mydata.input_options = options;
  626. mydata.needs_enc_conversion = options->encoding && strcmp(options->encoding, encoding_utf_8);
  627. XML_SetElementHandler(parser, (XML_StartElementHandler)_xmlrpc_startElement, (XML_EndElementHandler)_xmlrpc_endElement);
  628. XML_SetCharacterDataHandler(parser, (XML_CharacterDataHandler)_xmlrpc_charHandler);
  629. /* pass the xml_elem_data struct along */
  630. XML_SetUserData(parser, (void*)&mydata);
  631. if(!len) {
  632. len = strlen(in_buf);
  633. }
  634. /* parse the XML */
  635. if(XML_Parse(parser, in_buf, len, 1) == 0) {
  636. enum XML_Error err_code = XML_GetErrorCode(parser);
  637. int line_num = XML_GetCurrentLineNumber(parser);
  638. int col_num = XML_GetCurrentColumnNumber(parser);
  639. long byte_idx = XML_GetCurrentByteIndex(parser);
  640. /* int byte_total = XML_GetCurrentByteCount(parser); */
  641. const char * error_str = XML_ErrorString(err_code);
  642. if(byte_idx > len) {
  643. byte_idx = len;
  644. }
  645. if(byte_idx >= 0) {
  646. snprintf(buf,
  647. sizeof(buf),
  648. "\n\tdata beginning %ld before byte index: %s\n",
  649. byte_idx > 10 ? 10 : byte_idx,
  650. in_buf + (byte_idx > 10 ? byte_idx - 10 : byte_idx));
  651. }
  652. /*
  653. fprintf(stderr, "expat reports error code %i\n"
  654. "\tdescription: %s\n"
  655. "\tline: %i\n"
  656. "\tcolumn: %i\n"
  657. "\tbyte index: %ld\n"
  658. "\ttotal bytes: %i\n%s ",
  659. err_code, error_str, line_num,
  660. col_num, byte_idx, byte_total, buf);
  661. */
  662. /* error condition */
  663. if(error) {
  664. error->parser_code = (long)err_code;
  665. error->line = line_num;
  666. error->column = col_num;
  667. error->byte_index = byte_idx;
  668. error->parser_error = error_str;
  669. }
  670. }
  671. else {
  672. xReturn = (xml_element*)Q_Head(&mydata.root->children);
  673. xReturn->parent = NULL;
  674. }
  675. XML_ParserFree(parser);
  676. xml_elem_free_non_recurse(mydata.root);
  677. }
  678. return xReturn;
  679. }
  680. /******/