xml_element.h 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202
  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. #ifndef __XML_ELEMENT_H__
  26. #define __XML_ELEMENT_H__
  27. /* includes */
  28. #include <stdio.h>
  29. #include "queue.h"
  30. #include "simplestring.h"
  31. #include "encodings.h"
  32. #ifdef __cplusplus
  33. extern "C" {
  34. #endif
  35. /****d* enum/XML_ELEM_VERBOSITY
  36. * NAME
  37. * XML_ELEM_VERBOSITY
  38. * NOTES
  39. * verbosity/readability options for generated xml
  40. * SEE ALSO
  41. * XML_ELEM_OUTPUT_OPTIONS
  42. * SOURCE
  43. */
  44. typedef enum _xml_elem_verbosity {
  45. xml_elem_no_white_space, /* compact xml with no white space */
  46. xml_elem_newlines_only, /* add newlines for enhanced readability */
  47. xml_elem_pretty /* add newlines and indent accordint to depth */
  48. } XML_ELEM_VERBOSITY;
  49. /******/
  50. /****d* enum/XML_ELEM_ESCAPING
  51. * NAME
  52. * XML_ELEM_ESCAPING
  53. * NOTES
  54. * xml escaping options for generated xml
  55. * SEE ALSO
  56. * XML_ELEM_OUTPUT_OPTIONS
  57. * SOURCE
  58. */
  59. typedef enum _xml_elem_escaping {
  60. xml_elem_no_escaping = 0x000,
  61. xml_elem_markup_escaping = 0x002, /* entity escape xml special chars */
  62. xml_elem_non_ascii_escaping = 0x008, /* entity escape chars above 127 */
  63. xml_elem_non_print_escaping = 0x010, /* entity escape non print (illegal) chars */
  64. xml_elem_cdata_escaping = 0x020, /* wrap in cdata section */
  65. } XML_ELEM_ESCAPING;
  66. /******/
  67. /****s* struct/XML_ELEM_OUTPUT_OPTIONS
  68. * NAME
  69. * XML_ELEM_OUTPUT_OPTIONS
  70. * NOTES
  71. * defines various output options
  72. * SOURCE
  73. */
  74. typedef struct _xml_output_options {
  75. XML_ELEM_VERBOSITY verbosity; /* length/verbosity of xml */
  76. XML_ELEM_ESCAPING escaping; /* how to escape special chars */
  77. const char* encoding; /* <?xml encoding="<encoding>" ?> */
  78. } STRUCT_XML_ELEM_OUTPUT_OPTIONS, *XML_ELEM_OUTPUT_OPTIONS;
  79. /******/
  80. /****s* struct/XML_ELEM_INPUT_OPTIONS
  81. * NAME
  82. * XML_ELEM_INPUT_OPTIONS
  83. * NOTES
  84. * defines various input options
  85. * SOURCE
  86. */
  87. typedef struct _xml_input_options {
  88. ENCODING_ID encoding; /* which encoding to use. */
  89. } STRUCT_XML_ELEM_INPUT_OPTIONS, *XML_ELEM_INPUT_OPTIONS;
  90. /******/
  91. /****s* struct/XML_ELEM_ERROR
  92. * NAME
  93. * XML_ELEM_ERROR
  94. * NOTES
  95. * defines an xml parser error
  96. * SOURCE
  97. */
  98. typedef struct _xml_elem_error {
  99. int parser_code;
  100. const char* parser_error;
  101. long line;
  102. long column;
  103. long byte_index;
  104. } STRUCT_XML_ELEM_ERROR, *XML_ELEM_ERROR;
  105. /******/
  106. /*-************************
  107. * begin xml element stuff *
  108. **************************/
  109. /****s* struct/xml_elem_attr
  110. * NAME
  111. * xml_elem_attr
  112. * NOTES
  113. * representation of an xml attribute, foo="bar"
  114. * SOURCE
  115. */
  116. typedef struct _xml_element_attr {
  117. char* key; /* attribute key */
  118. char* val; /* attribute value */
  119. } xml_element_attr;
  120. /******/
  121. /****s* struct/xml_elem_attr
  122. * NAME
  123. * xml_elem_attr
  124. * NOTES
  125. * representation of an xml element, eg <candidate name="Harry Browne" party="Libertarian"/>
  126. * SOURCE
  127. */
  128. typedef struct _xml_element {
  129. const char* name; /* element identifier */
  130. simplestring text; /* text contained between element begin/end pairs */
  131. struct _xml_element* parent; /* element's parent */
  132. queue attrs; /* attribute list */
  133. queue children; /* child element list */
  134. } xml_element;
  135. /******/
  136. void xml_elem_free(xml_element* root);
  137. void xml_elem_free_non_recurse(xml_element* root);
  138. xml_element* xml_elem_new(void);
  139. char* xml_elem_serialize_to_string(xml_element *el, XML_ELEM_OUTPUT_OPTIONS options, int *buf_len);
  140. void xml_elem_serialize_to_stream(xml_element *el, FILE *output, XML_ELEM_OUTPUT_OPTIONS options);
  141. xml_element* xml_elem_parse_buf(const char* in_buf, int len, XML_ELEM_INPUT_OPTIONS options, XML_ELEM_ERROR error);
  142. /*-**********************
  143. * end xml element stuff *
  144. ************************/
  145. /*-**********************
  146. * Begin xml_element API *
  147. ************************/
  148. /****d* VALUE/XMLRPC_MACROS
  149. * NAME
  150. * Some Helpful Macros
  151. * NOTES
  152. * Some macros for making life easier. Should be self-explanatory.
  153. * SEE ALSO
  154. * XMLRPC_AddValueToVector ()
  155. * XMLRPC_VectorGetValueWithID_Case ()
  156. * XMLRPC_VALUE
  157. * SOURCE
  158. */
  159. #define xml_elem_next_element(el) ((el) ? (xml_element *)Q_Next(&el->children) : NULL)
  160. #define xml_elem_head_element(el) ((el) ? (xml_element *)Q_Head(&el->children) : NULL)
  161. #define xml_elem_next_attr(el) ((el) ? (xml_element_attr *)Q_Next(&el->attrs) : NULL)
  162. #define xml_elem_head_attr(el) ((el) ? (xml_element_attr *)Q_Head(&el->attrs) : NULL)
  163. #define xml_elem_get_name(el) (char *)((el) ? el->name : NULL)
  164. #define xml_elem_get_val(el) (char *)((el) ? el->text.str : NULL)
  165. /******/
  166. /*-********************
  167. * End xml_element API *
  168. **********************/
  169. #ifdef __cplusplus
  170. }
  171. #endif
  172. #endif /* __XML_ELEMENT_H__ */