xml_shared.h
上传用户:gzpyjq
上传日期:2013-01-31
资源大小:1852k
文件大小:3k
源码类别:

手机WAP编程

开发平台:

WINDOWS

  1. /*
  2.  * xml_shared.h - Common xml tokenizer interface
  3.  * This file contains mainly character set functions and binary manipulating
  4.  * functions used with a binary without a string table.
  5.  *
  6.  * Tuomas Luttinen for Wapit Ltd and Aarno Syv鋘en for Wiral Ltd.
  7.  */
  8. #ifndef XML_SHARED_H
  9. #define XML_SHARED_H
  10. /*
  11.  * Charset type is used by WML, SI and SL.
  12.  */
  13. typedef struct charset_t charset_t;
  14. /*
  15.  * XML binary type not containing a string table. This is used for SI and SL.
  16.  */
  17. typedef struct simple_binary_t simple_binary_t;
  18. #include "gwlib/gwlib.h"
  19. /*
  20.  * XML binary type not containing a string table. This is used for SI and SL.
  21.  */
  22. struct simple_binary_t {
  23.     unsigned char wbxml_version;
  24.     unsigned char public_id;
  25.     unsigned long charset;
  26.     Octstr *binary;
  27. };
  28. /*
  29.  * Prototypes of common functions. First functions common with wml, si and sl
  30.  * compilers.
  31.  *
  32.  * set_charset - set the charset of the http headers into the document, if 
  33.  * it has no encoding set.
  34.  */
  35. void set_charset(Octstr *document, Octstr *charset);
  36. /*
  37.  * element_check_content - a helper function for checking if an element has 
  38.  * content or attributes. Returns status bit for attributes (0x80) and another
  39.  * for content (0x40) added into one octet.
  40.  */
  41. unsigned char element_check_content(xmlNodePtr node);
  42. /*
  43.  * only_blanks - checks if a text node contains only white space, when it can 
  44.  * be left out as a element content.
  45.  */
  46. int only_blanks(const char *text);
  47. /*
  48.  * Parses the character set of the document. 
  49.  */
  50. int parse_charset(Octstr *charset);
  51. /*
  52.  * Return the character sets supported by the WML compiler, as a List
  53.  * of Octstrs, where each string is the MIME identifier for one charset.
  54.  */
  55. List *wml_charsets(void);
  56. /*
  57.  * Macro for creating an octet string from a node content. This has two 
  58.  * versions for different libxml node content implementation methods. 
  59.  */
  60. #ifdef XML_USE_BUFFER_CONTENT
  61. #define create_octstr_from_node(node) (octstr_create(node->content->content))
  62. #else
  63. #define create_octstr_from_node(node) (octstr_create(node->content))
  64. #endif
  65. #endif
  66. /*
  67.  * Functions working with simple binary type (no string table)
  68.  */
  69. simple_binary_t *simple_binary_create(void);
  70. void simple_binary_destroy(simple_binary_t *bxml);
  71. /*
  72.  * Output the sibxml content field after field into octet string os. We add 
  73.  * string table length 0 (no string table) before the content.
  74.  */
  75. void simple_binary_output(Octstr *os, simple_binary_t *bxml);
  76. void parse_end(simple_binary_t **bxml);
  77. void output_char(int byte, simple_binary_t **bxml);
  78. void parse_octet_string(Octstr *os, simple_binary_t **bxml);
  79. /*
  80.  * Add global tokens to the start and to the end of an inline string.
  81.  */ 
  82. void parse_inline_string(Octstr *temp, simple_binary_t **bxml);
  83. void output_octet_string(Octstr *os, simple_binary_t **bxml);