Kannel: Open Source WAP and SMS gateway
svn-r5336
|
Go to the source code of this file.
Macros | |
#define | WS_UPDATE_DATA |
#define | WS_CHECK_STRING(idx) |
Functions | |
static WsBcPragma * | add_pragma (WsBc *bc, WsBcPragmaType type) |
WsBc * | ws_bc_alloc (WsBcStringEncoding string_encoding) |
void | ws_bc_free (WsBc *bc) |
WsBool | ws_bc_encode (WsBc *bc, unsigned char **data_return, size_t *data_len_return) |
void | ws_bc_data_free (unsigned char *data) |
WsBc * | ws_bc_decode (const unsigned char *data, size_t data_len) |
WsBool | ws_bc_add_const_int (WsBc *bc, WsUInt16 *index_return, WsInt32 value) |
WsBool | ws_bc_add_const_float (WsBc *bc, WsUInt16 *index_return, WsFloat value) |
WsBool | ws_bc_add_const_utf8_string (WsBc *bc, WsUInt16 *index_return, const unsigned char *data, size_t len) |
WsBool | ws_bc_add_const_empty_string (WsBc *bc, WsUInt16 *index_return) |
WsBool | ws_bc_add_pragma_access_domain (WsBc *bc, const unsigned char *domain, size_t domain_len) |
WsBool | ws_bc_add_pragma_access_path (WsBc *bc, const unsigned char *path, size_t path_len) |
WsBool | ws_bc_add_pragma_user_agent_property (WsBc *bc, const unsigned char *name, size_t name_len, const unsigned char *property, size_t property_len) |
WsBool | ws_bc_add_pragma_user_agent_property_and_scheme (WsBc *bc, const unsigned char *name, size_t name_len, const unsigned char *property, size_t property_len, const unsigned char *scheme, size_t scheme_len) |
WsBool | ws_bc_add_function (WsBc *bc, WsUInt8 *index_return, char *name, WsUInt8 num_arguments, WsUInt8 num_locals, WsUInt32 code_size, unsigned char *code) |
#define WS_CHECK_STRING | ( | idx | ) |
Definition at line 449 of file wsbc.c.
Referenced by ws_bc_decode().
#define WS_UPDATE_DATA |
Definition at line 443 of file wsbc.c.
Referenced by ws_bc_decode().
|
static |
Definition at line 1108 of file wsbc.c.
References WsBcRec::num_pragmas, WsBcRec::pragmas, WsBcPragmaRec::type, type, and ws_realloc().
Referenced by ws_bc_add_pragma_access_domain(), ws_bc_add_pragma_access_path(), ws_bc_add_pragma_user_agent_property(), and ws_bc_add_pragma_user_agent_property_and_scheme().
Definition at line 951 of file wsbc.c.
References WsBcRec::constants, WsBcRec::num_constants, WsBcConstantRec::type, WS_BC_CONST_TYPE_EMPTY_STRING, WS_FALSE, ws_realloc(), and WS_TRUE.
Definition at line 881 of file wsbc.c.
References WsBcRec::constants, WsBcRec::num_constants, WsBcConstantRec::type, WsBcConstantRec::u, WsBcConstantRec::v_float, WS_BC_CONST_TYPE_FLOAT32, WS_FALSE, ws_realloc(), and WS_TRUE.
Referenced by ws_expr_linearize().
Definition at line 850 of file wsbc.c.
References WsBcRec::constants, WsBcRec::num_constants, WsBcConstantRec::type, WsBcConstantRec::u, WsBcConstantRec::v_int, WS_BC_CONST_TYPE_INT, WS_FALSE, ws_realloc(), and WS_TRUE.
Referenced by ws_expr_linearize().
WsBool ws_bc_add_const_utf8_string | ( | WsBc * | bc, |
WsUInt16 * | index_return, | ||
const unsigned char * | data, | ||
size_t | len | ||
) |
Definition at line 912 of file wsbc.c.
References WsBcRec::constants, WsUtf8StringRec::data, WsUtf8StringRec::len, WsBcRec::num_constants, WsBcConstantRec::type, WsBcConstantRec::u, WsBcConstantRec::v_string, WS_BC_CONST_TYPE_UTF8_STRING, WS_FALSE, ws_memdup(), ws_realloc(), and WS_TRUE.
Referenced by ws_bc_add_pragma_access_domain(), ws_bc_add_pragma_access_path(), ws_bc_add_pragma_user_agent_property(), ws_bc_add_pragma_user_agent_property_and_scheme(), ws_expr_linearize(), and ws_pragma_use().
WsBool ws_bc_add_function | ( | WsBc * | bc, |
WsUInt8 * | index_return, | ||
char * | name, | ||
WsUInt8 | num_arguments, | ||
WsUInt8 | num_locals, | ||
WsUInt32 | code_size, | ||
unsigned char * | code | ||
) |
Definition at line 1056 of file wsbc.c.
References WsBcFunctionRec::code, code, WsBcFunctionRec::code_size, WsBcRec::function_names, WsBcRec::functions, WsBcFunctionNameRec::index, WsBcFunctionNameRec::name, name, WsBcFunctionRec::num_arguments, WsBcRec::num_function_names, WsBcRec::num_functions, WsBcFunctionRec::num_locals, WS_FALSE, ws_memdup(), ws_realloc(), ws_strdup(), and WS_TRUE.
Referenced by compile_stream().
WsBool ws_bc_add_pragma_access_domain | ( | WsBc * | bc, |
const unsigned char * | domain, | ||
size_t | domain_len | ||
) |
Definition at line 981 of file wsbc.c.
References add_pragma(), WsBcPragmaRec::index_1, ws_bc_add_const_utf8_string(), WS_BC_PRAGMA_TYPE_ACCESS_DOMAIN, WS_FALSE, and WS_TRUE.
Referenced by yyparse().
Definition at line 996 of file wsbc.c.
References add_pragma(), WsBcPragmaRec::index_1, ws_bc_add_const_utf8_string(), WS_BC_PRAGMA_TYPE_ACCESS_PATH, WS_FALSE, and WS_TRUE.
Referenced by yyparse().
WsBool ws_bc_add_pragma_user_agent_property | ( | WsBc * | bc, |
const unsigned char * | name, | ||
size_t | name_len, | ||
const unsigned char * | property, | ||
size_t | property_len | ||
) |
Definition at line 1011 of file wsbc.c.
References add_pragma(), WsBcPragmaRec::index_1, WsBcPragmaRec::index_2, name, name_len, ws_bc_add_const_utf8_string(), WS_BC_PRAGMA_TYPE_USER_AGENT_PROPERTY, WS_FALSE, and WS_TRUE.
Referenced by yyparse().
WsBool ws_bc_add_pragma_user_agent_property_and_scheme | ( | WsBc * | bc, |
const unsigned char * | name, | ||
size_t | name_len, | ||
const unsigned char * | property, | ||
size_t | property_len, | ||
const unsigned char * | scheme, | ||
size_t | scheme_len | ||
) |
Definition at line 1030 of file wsbc.c.
References add_pragma(), WsBcPragmaRec::index_1, WsBcPragmaRec::index_2, WsBcPragmaRec::index_3, name, name_len, ws_bc_add_const_utf8_string(), WS_BC_PRAGMA_TYPE_USER_AGENT_PROPERTY_AND_SCHEME, WS_FALSE, and WS_TRUE.
Referenced by yyparse().
WsBc* ws_bc_alloc | ( | WsBcStringEncoding | string_encoding | ) |
Definition at line 84 of file wsbc.c.
References WsBcRec::string_encoding, and ws_calloc().
Referenced by compile_stream(), and ws_bc_decode().
void ws_bc_data_free | ( | unsigned char * | data | ) |
Definition at line 426 of file wsbc.c.
References ws_decode_mb_uint32(), ws_free(), and WS_MB_UINT32_MAX_ENCODED_LEN.
Referenced by ws_compile_file(), and ws_free_byte_code().
WsBc* ws_bc_decode | ( | const unsigned char * | data, |
size_t | data_len | ||
) |
Definition at line 457 of file wsbc.c.
References WsBcFunctionRec::code, WsBcFunctionRec::code_size, WsBcRec::constants, WsUtf8StringRec::data, error(), WsBcRec::function_names, WsBcRec::functions, WsBcFunctionNameRec::index, WsBcPragmaRec::index_1, WsBcPragmaRec::index_2, WsBcPragmaRec::index_3, WsUtf8StringRec::len, WsBcFunctionNameRec::name, WsBcFunctionRec::num_arguments, WsUtf8StringRec::num_chars, WsBcRec::num_constants, WsBcRec::num_function_names, WsBcRec::num_functions, WsBcFunctionRec::num_locals, WsBcRec::num_pragmas, WsBcRec::pragmas, WsBcRec::string_encoding, WsBcConstantRec::type, WsBcPragmaRec::type, WsBcConstantRec::u, WsBcConstantRec::v_float, WsBcConstantRec::v_int, WsBcConstantRec::v_string, ws_bc_alloc(), WS_BC_CONST_EMPTY_STRING, WS_BC_CONST_EXT_ENC_STRING, WS_BC_CONST_FLOAT32, WS_BC_CONST_INT16, WS_BC_CONST_INT32, WS_BC_CONST_INT8, WS_BC_CONST_TYPE_EMPTY_STRING, WS_BC_CONST_TYPE_FLOAT32, WS_BC_CONST_TYPE_FLOAT32_NAN, WS_BC_CONST_TYPE_FLOAT32_NEGATIVE_INF, WS_BC_CONST_TYPE_FLOAT32_POSITIVE_INF, WS_BC_CONST_TYPE_INT, WS_BC_CONST_TYPE_UTF8_STRING, WS_BC_CONST_UTF8_STRING, ws_bc_free(), WS_BC_PRAGMA_ACCESS_DOMAIN, WS_BC_PRAGMA_ACCESS_PATH, WS_BC_PRAGMA_USER_AGENT_PROPERTY, WS_BC_PRAGMA_USER_AGENT_PROPERTY_AND_SCHEME, WS_BC_STRING_ENC_ISO_8859_1, WS_BC_VERSION, ws_calloc(), WS_CHECK_STRING, ws_decode_buffer(), WS_ENC_BYTE, WS_ENC_DATA, WS_ENC_END, WS_ENC_INT16, WS_ENC_INT32, WS_ENC_INT8, WS_ENC_MB_UINT16, WS_ENC_MB_UINT32, WS_ENC_UINT8, ws_fatal(), ws_ieee754_decode_single(), WS_IEEE754_NAN, WS_IEEE754_NEGATIVE_INF, WS_IEEE754_OK, WS_IEEE754_POSITIVE_INF, ws_memdup(), WS_UPDATE_DATA, and ws_utf8_verify().
Referenced by main().
Definition at line 132 of file wsbc.c.
References WsBcFunctionRec::code, WsBcFunctionRec::code_size, WsBcRec::constants, WsUtf8StringRec::data, error(), WsBcRec::function_names, WsBcRec::functions, WsBcFunctionNameRec::index, WsBcPragmaRec::index_1, WsBcPragmaRec::index_2, WsBcPragmaRec::index_3, latin1, WsUtf8StringRec::len, WsBcFunctionNameRec::name, name_len, WsBcFunctionRec::num_arguments, WsBcRec::num_constants, WsBcRec::num_function_names, WsBcRec::num_functions, WsBcFunctionRec::num_locals, WsBcRec::num_pragmas, WsBcRec::pragmas, WsBcRec::string_encoding, WsBcConstantRec::type, WsBcPragmaRec::type, WsBcConstantRec::u, WsAsmInsRec::u, WsBcConstantRec::v_float, WsBcConstantRec::v_int, WsBcConstantRec::v_string, WS_BC_CONST_EMPTY_STRING, WS_BC_CONST_EXT_ENC_STRING, WS_BC_CONST_FLOAT32, WS_BC_CONST_INT16, WS_BC_CONST_INT32, WS_BC_CONST_INT8, WS_BC_CONST_TYPE_EMPTY_STRING, WS_BC_CONST_TYPE_FLOAT32, WS_BC_CONST_TYPE_FLOAT32_NAN, WS_BC_CONST_TYPE_FLOAT32_NEGATIVE_INF, WS_BC_CONST_TYPE_FLOAT32_POSITIVE_INF, WS_BC_CONST_TYPE_INT, WS_BC_CONST_TYPE_UTF8_STRING, WS_BC_CONST_UTF8_STRING, WS_BC_MAX_HEADER_LEN, WS_BC_PRAGMA_ACCESS_DOMAIN, WS_BC_PRAGMA_ACCESS_PATH, WS_BC_PRAGMA_TYPE_ACCESS_DOMAIN, WS_BC_PRAGMA_TYPE_ACCESS_PATH, WS_BC_PRAGMA_TYPE_USER_AGENT_PROPERTY, WS_BC_PRAGMA_TYPE_USER_AGENT_PROPERTY_AND_SCHEME, WS_BC_PRAGMA_USER_AGENT_PROPERTY, WS_BC_PRAGMA_USER_AGENT_PROPERTY_AND_SCHEME, WS_BC_STRING_ENC_ISO_8859_1, WS_BC_STRING_ENC_UTF8, WS_BC_VERSION, ws_buffer_append_space(), ws_buffer_init(), ws_buffer_len(), ws_buffer_ptr(), ws_buffer_uninit(), WS_ENC_DATA, WS_ENC_END, WS_ENC_INT16, WS_ENC_INT32, WS_ENC_INT8, WS_ENC_MB_UINT16, WS_ENC_MB_UINT32, WS_ENC_UINT8, ws_encode_buffer(), ws_encode_mb_uint32(), WS_FALSE, ws_fatal(), ws_ieee754_encode_single(), ws_ieee754_nan, ws_ieee754_negative_inf, ws_ieee754_positive_inf, WS_INT16_MAX, WS_INT8_MAX, WS_PUT_UINT8, WS_TRUE, ws_utf8_alloc(), ws_utf8_free(), ws_utf8_free_data(), ws_utf8_set_data(), and ws_utf8_to_latin1().
Referenced by compile_stream().
void ws_bc_free | ( | WsBc * | bc | ) |
Definition at line 97 of file wsbc.c.
References WsBcFunctionRec::code, WsBcRec::constants, WsUtf8StringRec::data, WsBcRec::function_names, WsBcRec::functions, WsBcFunctionNameRec::name, WsBcRec::num_constants, WsBcRec::num_function_names, WsBcRec::num_functions, WsBcRec::pragmas, WsBcConstantRec::type, WsBcConstantRec::u, WsBcConstantRec::v_string, WS_BC_CONST_TYPE_UTF8_STRING, and ws_free().
Referenced by compile_stream(), main(), and ws_bc_decode().