Kannel: Open Source WAP and SMS gateway
svn-r5336
|
#include <time.h>
#include <unistd.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <string.h>
#include <math.h>
#include <ctype.h>
#include <inttypes.h>
#include <libxml/xmlmemory.h>
#include <libxml/tree.h>
#include <libxml/debugXML.h>
#include <libxml/encoding.h>
#include <libxml/parser.h>
#include <libxml/xmlerror.h>
#include "gwlib/gwlib.h"
#include "wml_compiler.h"
#include "xml_definitions.h"
#include "wbxml_tokens.def"
#include "xml_shared.h"
#include "wml_definitions.h"
Go to the source code of this file.
Data Structures | |
struct | wml_externalid_t |
struct | wbxml_version_t |
struct | wml_table_t |
struct | wml_table3_t |
struct | wml_binary_t |
struct | string_table_t |
struct | string_table_proposal_t |
struct | wml_hash_t |
struct | wml_attribute_t |
Macros | |
#define | NUMBERED(name, strings) static const wml_externalid_t name##_strings[] = { strings }; |
#define | ASSIGN(string, number) { string, number }, |
#define | NUMBER_OF_WML_EXTERNALID ((long) sizeof(public_ids_strings)/sizeof(public_ids_strings[0])) |
#define | NUMBER_OF_WBXML_VERSION sizeof(wbxml_version)/sizeof(wbxml_version[0]) |
Typedefs | |
typedef struct wml_externalid_t | wml_externalid_t |
typedef struct wbxml_version_t | wbxml_version_t |
Enumerations | |
enum | var_esc_t { NOESC, ESC, UNESC, FAILED } |
Functions | |
static int | parse_document (xmlDocPtr document, Octstr *charset, wml_binary_t **wbxml, Octstr *version) |
static int | parse_node (xmlNodePtr node, wml_binary_t **wbxml) |
static int | parse_element (xmlNodePtr node, wml_binary_t **wbxml) |
static int | parse_attribute (xmlAttrPtr attr, wml_binary_t **wbxml) |
static int | parse_attr_value (Octstr *attr_value, List *tokens, wml_binary_t **wbxml, int charset, var_esc_t default_esc) |
static int | parse_text (xmlNodePtr node, wml_binary_t **wbxml) |
static int | parse_cdata (xmlNodePtr node, wml_binary_t **wbxml) |
static int | parse_st_octet_string (Octstr *ostr, int cdata, var_esc_t default_esc, wml_binary_t **wbxml) |
static void | parse_st_end (wml_binary_t **wbxml) |
static void | parse_entities (Octstr *wml_source) |
static int | parse_variable (Octstr *text, int start, var_esc_t default_esc, Octstr **output, wml_binary_t **wbxml) |
static Octstr * | get_variable (Octstr *text, int start) |
static var_esc_t | check_variable_syntax (Octstr *variable, var_esc_t default_esc) |
static wml_binary_t * | wml_binary_create (void) |
static void | wml_binary_destroy (wml_binary_t *wbxml) |
static void | wml_binary_output (Octstr *ostr, wml_binary_t *wbxml) |
static void | output_st_char (int byte, wml_binary_t **wbxml) |
static void | output_st_octet_string (Octstr *ostr, wml_binary_t **wbxml) |
static void | output_variable (Octstr *variable, Octstr **output, var_esc_t escaped, wml_binary_t **wbxml) |
static wml_hash_t * | hash_create (char *text, unsigned char token) |
static wml_attribute_t * | attribute_create (void) |
static void | attr_dict_construct (wml_table3_t *attributes, Dict *attr_dict) |
static void | hash_destroy (void *p) |
static void | attribute_destroy (void *p) |
static int | hash_cmp (void *hash1, void *hash2) |
static int | check_do_elements (xmlNodePtr node) |
static var_esc_t | check_variable_name (xmlNodePtr node) |
static Octstr * | get_do_element_name (xmlNodePtr node) |
static int | check_if_url (int hex) |
static int | check_if_emphasis (xmlNodePtr node) |
static int | wml_table_len (wml_table_t *table) |
static int | wml_table3_len (wml_table3_t *table) |
static string_table_t * | string_table_create (int offset, Octstr *ostr) |
static void | string_table_destroy (string_table_t *node) |
static string_table_proposal_t * | string_table_proposal_create (Octstr *ostr) |
static void | string_table_proposal_destroy (string_table_proposal_t *node) |
static void | string_table_build (xmlNodePtr node, wml_binary_t **wbxml) |
static void | string_table_collect_strings (xmlNodePtr node, List *strings) |
static List * | string_table_collect_words (List *strings) |
static List * | string_table_sort_list (List *start) |
static List * | string_table_add_many (List *sorted, wml_binary_t **wbxml) |
static unsigned long | string_table_add (Octstr *ostr, wml_binary_t **wbxml) |
static void | string_table_apply (Octstr *ostr, wml_binary_t **wbxml) |
static void | string_table_output (Octstr *ostr, wml_binary_t **wbxml) |
static void | xml_error (void) |
int | wml_compile (Octstr *wml_text, Octstr *charset, Octstr **wml_binary, Octstr *version) |
void | wml_init (int wml_xml_strict) |
void | wml_shutdown () |
Variables | |
static wbxml_version_t | wbxml_version [] |
Dict * | wml_elements_dict |
Dict * | wml_attributes_dict |
List * | wml_attr_values_list |
List * | wml_URL_values_list |
int | wml_xml_parser_opt |
Definition at line 105 of file wml_compiler.c.
#define NUMBER_OF_WBXML_VERSION sizeof(wbxml_version)/sizeof(wbxml_version[0]) |
Definition at line 125 of file wml_compiler.c.
Referenced by parse_document().
#define NUMBER_OF_WML_EXTERNALID ((long) sizeof(public_ids_strings)/sizeof(public_ids_strings[0])) |
Definition at line 108 of file wml_compiler.c.
Referenced by parse_document().
#define NUMBERED | ( | name, | |
strings | |||
) | static const wml_externalid_t name##_strings[] = { strings }; |
Definition at line 103 of file wml_compiler.c.
typedef struct wbxml_version_t wbxml_version_t |
Definition at line 115 of file wml_compiler.c.
typedef struct wml_externalid_t wml_externalid_t |
Definition at line 101 of file wml_compiler.c.
enum var_esc_t |
Enumerator | |
---|---|
NOESC | |
ESC | |
UNESC | |
FAILED |
Definition at line 128 of file wml_compiler.c.
|
static |
Definition at line 1422 of file wml_compiler.c.
References wml_attribute_t::attribute, attribute_create(), wml_attribute_t::binary, dict_put(), gwlist_append(), hash_create(), octstr_create, wml_table3_t::token, token, and wml_attribute_t::value_list.
Referenced by wml_init().
|
static |
Definition at line 1403 of file wml_compiler.c.
References wml_attribute_t::attribute, wml_attribute_t::binary, gwlist_create, and wml_attribute_t::value_list.
Referenced by attr_dict_construct().
|
static |
Definition at line 1476 of file wml_compiler.c.
References wml_attribute_t::attribute, gwlist_destroy(), hash_destroy(), octstr_destroy(), and wml_attribute_t::value_list.
Referenced by wml_init().
|
static |
Definition at line 1517 of file wml_compiler.c.
References error(), get_do_element_name(), gwlist_append(), gwlist_create, gwlist_destroy(), gwlist_get(), gwlist_len(), name, octstr_compare(), octstr_destroy(), and octstr_destroy_item().
Referenced by parse_element().
|
static |
|
static |
Definition at line 1634 of file wml_compiler.c.
Referenced by parse_attribute().
|
static |
Definition at line 1563 of file wml_compiler.c.
References check_variable_syntax(), create_octstr_from_node, error(), FAILED, name, NOESC, and octstr_destroy().
Referenced by parse_element().
Definition at line 1095 of file wml_compiler.c.
References error(), ESC, FAILED, NOESC, octstr_convert_range(), octstr_copy, octstr_destroy(), octstr_get_char(), octstr_len(), octstr_search_char(), octstr_str_compare(), octstr_truncate(), UNESC, and warning().
Referenced by check_variable_name(), and parse_variable().
|
static |
Definition at line 1598 of file wml_compiler.c.
References create_octstr_from_node, and name.
Referenced by check_do_elements().
Definition at line 1054 of file wml_compiler.c.
References error(), gw_assert(), octstr_copy, octstr_create, octstr_get_char(), octstr_len(), octstr_search_char(), start, and text.
Referenced by parse_variable().
|
static |
Definition at line 1497 of file wml_compiler.c.
References gw_assert(), and octstr_search().
Referenced by parse_attribute().
|
static |
Definition at line 1384 of file wml_compiler.c.
References wml_hash_t::binary, wml_hash_t::item, octstr_create, text, and token.
Referenced by attr_dict_construct(), and wml_init().
|
static |
Definition at line 1457 of file wml_compiler.c.
References wml_hash_t::item, and octstr_destroy().
Referenced by attribute_destroy(), wml_init(), and wml_shutdown().
|
static |
Definition at line 1335 of file wml_compiler.c.
References octstr_append_char().
Referenced by parse_attr_value(), parse_attribute(), parse_element(), parse_st_end(), and string_table_apply().
|
static |
Definition at line 1347 of file wml_compiler.c.
References octstr_insert(), and octstr_len().
Referenced by parse_st_octet_string(), and string_table_apply().
|
static |
Definition at line 1359 of file wml_compiler.c.
References ESC, octstr_append_char(), octstr_append_uintvar(), string_table_add(), UNESC, WBXML_EXT_T_0, WBXML_EXT_T_1, and WBXML_EXT_T_2.
Referenced by parse_variable().
|
static |
Definition at line 834 of file wml_compiler.c.
References wml_hash_t::binary, charset, charset_convert(), error(), gw_assert(), gwlist_get(), gwlist_len(), wml_hash_t::item, octstr_copy, octstr_delete(), octstr_destroy(), octstr_len(), octstr_search(), octstr_search_char(), output_st_char(), and parse_st_octet_string().
Referenced by parse_attribute().
|
static |
Definition at line 740 of file wml_compiler.c.
References wml_attribute_t::attribute, wml_hash_t::binary, wml_attribute_t::binary, check_if_url(), create_octstr_from_node, dict_get(), error(), ESC, gwlist_search(), hash_cmp(), wml_hash_t::item, name, NOESC, octstr_append_uintvar(), octstr_copy, octstr_create, octstr_destroy(), octstr_duplicate, octstr_get_cstr, octstr_len(), octstr_str_compare(), output_st_char(), parse_attr_value(), string_table_add(), wml_attribute_t::value_list, warning(), WBXML_LITERAL, wml_attr_values_list, wml_attributes_dict, and wml_URL_values_list.
Referenced by parse_element().
|
static |
Definition at line 986 of file wml_compiler.c.
References create_octstr_from_node, NOESC, octstr_destroy(), and parse_st_octet_string().
Referenced by parse_node().
|
static |
Definition at line 571 of file wml_compiler.c.
References charset, debug(), error(), info(), NUMBER_OF_WBXML_VERSION, NUMBER_OF_WML_EXTERNALID, octstr_compare(), octstr_create, octstr_destroy(), octstr_get_cstr, octstr_imm(), parse_charset(), parse_node(), string_table_build(), wbxml_version_t::value, warning(), wbxml_version, and xml_error().
Referenced by wml_compile().
|
static |
Definition at line 660 of file wml_compiler.c.
References check_do_elements(), check_variable_name(), dict_get(), element_check_content(), error(), FAILED, name, octstr_append_uintvar(), octstr_create, octstr_destroy(), octstr_duplicate, octstr_get_cstr, output_st_char(), parse_attribute(), parse_st_end(), string_table_add(), warning(), WBXML_CONTENT_BIT, WBXML_LITERAL, and wml_elements_dict.
Referenced by parse_node().
|
static |
Definition at line 1237 of file wml_compiler.c.
References octstr_create, octstr_delete(), octstr_destroy(), octstr_imm(), octstr_insert(), and octstr_search().
Referenced by wml_compile().
|
static |
Definition at line 502 of file wml_compiler.c.
References error(), parse_cdata(), parse_element(), parse_st_end(), and parse_text().
Referenced by parse_document().
|
static |
Definition at line 928 of file wml_compiler.c.
References output_st_char(), and WBXML_END.
Referenced by parse_element(), and parse_node().
|
static |
Definition at line 1152 of file wml_compiler.c.
References octstr_copy, octstr_create, octstr_destroy(), octstr_get_char(), octstr_insert(), octstr_len(), octstr_search_char(), octstr_truncate(), output_st_octet_string(), parse_variable(), start, and string_table_apply().
Referenced by parse_attr_value(), parse_cdata(), and parse_text().
|
static |
Definition at line 940 of file wml_compiler.c.
References charset_convert(), check_if_emphasis(), create_octstr_from_node, error(), NOESC, octstr_destroy(), octstr_len(), octstr_shrink_blanks(), octstr_strip_blanks(), and parse_st_octet_string().
Referenced by parse_node().
|
static |
Definition at line 1014 of file wml_compiler.c.
References check_variable_syntax(), FAILED, get_variable(), octstr_append_char(), octstr_destroy(), octstr_get_char(), octstr_len(), octstr_truncate(), output_variable(), start, and text.
Referenced by parse_st_octet_string().
|
static |
Definition at line 1972 of file wml_compiler.c.
References gwlist_append(), gwlist_get(), gwlist_len(), octstr_compare(), octstr_destroy(), octstr_len(), string_table_t::offset, string_table_t::string, and string_table_create().
Referenced by output_variable(), parse_attribute(), parse_element(), and string_table_add_many().
|
static |
Definition at line 1905 of file wml_compiler.c.
References string_table_proposal_t::count, gwlist_append(), gwlist_create, gwlist_destroy(), gwlist_extract_first(), gwlist_len(), octstr_duplicate, octstr_len(), string_table_proposal_t::string, string_table_add(), string_table_proposal_destroy(), and WBXML_STRING_TABLE_MIN.
Referenced by string_table_build().
|
static |
Definition at line 2006 of file wml_compiler.c.
References gwlist_get(), gwlist_len(), octstr_append_char(), octstr_append_uintvar(), octstr_compare(), octstr_create, octstr_delete(), octstr_destroy(), octstr_get_char(), octstr_insert(), octstr_len(), octstr_search(), octstr_truncate(), string_table_t::offset, output_st_char(), output_st_octet_string(), string_table_t::string, WBXML_STR_END, WBXML_STR_I, WBXML_STR_T, and WBXML_STRING_TABLE_MIN.
Referenced by parse_st_octet_string().
|
static |
Definition at line 1780 of file wml_compiler.c.
References gwlist_create, gwlist_destroy(), gwlist_extract_first(), gwlist_len(), string_table_add_many(), string_table_collect_strings(), string_table_collect_words(), string_table_proposal_destroy(), and string_table_sort_list().
Referenced by parse_document().
|
static |
Definition at line 1815 of file wml_compiler.c.
References create_octstr_from_node, gwlist_append(), octstr_destroy(), octstr_len(), octstr_shrink_blanks(), octstr_strip_blanks(), octstr_strip_nonalphanums(), and WBXML_STRING_TABLE_MIN.
Referenced by string_table_build().
Definition at line 1935 of file wml_compiler.c.
References gwlist_append(), gwlist_destroy(), gwlist_extract_first(), gwlist_len(), octstr_split_words(), string_table_proposal_t::string, and string_table_proposal_destroy().
Referenced by string_table_build().
|
static |
Definition at line 1713 of file wml_compiler.c.
References string_table_t::offset, and string_table_t::string.
Referenced by string_table_add().
|
static |
Definition at line 1730 of file wml_compiler.c.
References octstr_destroy(), and string_table_t::string.
Referenced by string_table_output().
|
static |
Definition at line 2077 of file wml_compiler.c.
References gwlist_extract_first(), octstr_append_char(), octstr_insert(), octstr_len(), string_table_t::string, string_table_destroy(), and WBXML_STR_END.
Referenced by wml_binary_output().
|
static |
Definition at line 1745 of file wml_compiler.c.
References string_table_proposal_t::count, and string_table_proposal_t::string.
Referenced by string_table_sort_list().
|
static |
Definition at line 1763 of file wml_compiler.c.
References octstr_destroy(), and string_table_proposal_t::string.
Referenced by string_table_add_many(), string_table_build(), and string_table_collect_words().
Definition at line 1863 of file wml_compiler.c.
References string_table_proposal_t::count, gwlist_append(), gwlist_create, gwlist_destroy(), gwlist_extract_first(), gwlist_get(), gwlist_len(), octstr_compare(), octstr_destroy(), start, string_table_proposal_t::string, and string_table_proposal_create().
Referenced by string_table_build().
|
static |
Definition at line 1279 of file wml_compiler.c.
References wml_binary_t::character_set, gwlist_create, octstr_create, wml_binary_t::string_table, wml_binary_t::string_table_length, wml_binary_t::wbxml_string, wml_binary_t::wbxml_version, and wml_binary_t::wml_public_id.
Referenced by wml_compile().
|
static |
Definition at line 1300 of file wml_compiler.c.
References gwlist_destroy(), octstr_destroy(), wml_binary_t::string_table, and wml_binary_t::wbxml_string.
Referenced by wml_compile().
|
static |
Definition at line 1315 of file wml_compiler.c.
References wml_binary_t::character_set, octstr_append_char(), octstr_append_uintvar(), octstr_insert(), octstr_len(), wml_binary_t::string_table_length, string_table_output(), wml_binary_t::wbxml_string, wml_binary_t::wbxml_version, and wml_binary_t::wml_public_id.
Referenced by wml_compile().
Definition at line 360 of file wml_compiler.c.
References charset, debug(), error(), octstr_create, octstr_get_cstr, octstr_len(), octstr_search_char(), octstr_strip_blanks(), parse_document(), parse_entities(), size, wml_binary_create(), wml_binary_destroy(), wml_binary_output(), wml_xml_parser_opt, and xml_error().
Referenced by convert_wml_to_wmlc(), and main().
void wml_init | ( | int | wml_xml_strict | ) |
Definition at line 429 of file wml_compiler.c.
References attr_dict_construct(), attribute_destroy(), dict_create(), dict_put(), gwlist_append(), gwlist_create, hash_create(), hash_destroy(), wml_hash_t::item, text, token, wml_attr_values_list, wml_attribute_values, wml_attributes, wml_attributes_dict, wml_elements, wml_elements_dict, wml_table3_len(), wml_table_len(), wml_URL_values, wml_URL_values_list, wml_xml_parser_opt, and wml_xml_strict.
Referenced by main().
void wml_shutdown | ( | void | ) |
Definition at line 479 of file wml_compiler.c.
References dict_destroy(), gwlist_destroy(), hash_destroy(), wml_attr_values_list, wml_attributes_dict, wml_elements_dict, and wml_URL_values_list.
Referenced by main().
|
static |
Definition at line 1696 of file wml_compiler.c.
Referenced by wml_init().
|
static |
Definition at line 1680 of file wml_compiler.c.
References text.
Referenced by wml_init().
|
static |
Definition at line 334 of file wml_compiler.c.
References error(), msg, octstr_destroy(), octstr_format(), octstr_get_cstr, octstr_imm(), and octstr_replace().
Referenced by parse_document(), and wml_compile().
|
static |
Definition at line 117 of file wml_compiler.c.
Referenced by parse_document().
List* wml_attr_values_list |
Definition at line 222 of file wml_compiler.c.
Referenced by parse_attribute(), wml_init(), and wml_shutdown().
Dict* wml_attributes_dict |
Definition at line 220 of file wml_compiler.c.
Referenced by parse_attribute(), wml_init(), and wml_shutdown().
Dict* wml_elements_dict |
Definition at line 218 of file wml_compiler.c.
Referenced by parse_element(), wml_init(), and wml_shutdown().
List* wml_URL_values_list |
Definition at line 224 of file wml_compiler.c.
Referenced by parse_attribute(), wml_init(), and wml_shutdown().
int wml_xml_parser_opt |
Definition at line 226 of file wml_compiler.c.
Referenced by wml_compile(), and wml_init().