- Notifications
You must be signed in to change notification settings - Fork 7.8k
/
Copy pathphp_json_parser.h
86 lines (73 loc) · 3.1 KB
/
php_json_parser.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
/*
+----------------------------------------------------------------------+
| Copyright (c) The PHP Group |
+----------------------------------------------------------------------+
| This source file is subject to version 3.01 of the PHP license, |
| that is bundled with this package in the file LICENSE, and is |
| available through the world-wide-web at the following url: |
| https://www.php.net/license/3_01.txt |
| If you did not receive a copy of the PHP license and are unable to |
| obtain it through the world-wide-web, please send a note to |
| license@php.net so we can mail you a copy immediately. |
+----------------------------------------------------------------------+
| Author: Jakub Zelenka <bukka@php.net> |
+----------------------------------------------------------------------+
*/
#ifndefPHP_JSON_PARSER_H
#definePHP_JSON_PARSER_H
#include"php.h"
#include"php_json_scanner.h"
typedefstruct_php_json_parserphp_json_parser;
typedefint (*php_json_parser_func_array_create_t)(
php_json_parser*parser, zval*array);
typedefint (*php_json_parser_func_array_append_t)(
php_json_parser*parser, zval*array, zval*zvalue);
typedefint (*php_json_parser_func_array_start_t)(
php_json_parser*parser);
typedefint (*php_json_parser_func_array_end_t)(
php_json_parser*parser, zval*object);
typedefint (*php_json_parser_func_object_create_t)(
php_json_parser*parser, zval*object);
typedefint (*php_json_parser_func_object_update_t)(
php_json_parser*parser, zval*object, zend_string*key, zval*zvalue);
typedefint (*php_json_parser_func_object_start_t)(
php_json_parser*parser);
typedefint (*php_json_parser_func_object_end_t)(
php_json_parser*parser, zval*object);
typedefstruct_php_json_parser_methods {
php_json_parser_func_array_create_tarray_create;
php_json_parser_func_array_append_tarray_append;
php_json_parser_func_array_start_tarray_start;
php_json_parser_func_array_end_tarray_end;
php_json_parser_func_object_create_tobject_create;
php_json_parser_func_object_update_tobject_update;
php_json_parser_func_object_start_tobject_start;
php_json_parser_func_object_end_tobject_end;
} php_json_parser_methods;
struct_php_json_parser {
php_json_scannerscanner;
zval*return_value;
intdepth;
intmax_depth;
php_json_parser_methodsmethods;
};
PHP_JSON_APIvoidphp_json_parser_init_ex(
php_json_parser*parser,
zval*return_value,
constchar*str,
size_tstr_len,
intoptions,
intmax_depth,
constphp_json_parser_methods*methods);
PHP_JSON_APIvoidphp_json_parser_init(
php_json_parser*parser,
zval*return_value,
constchar*str,
size_tstr_len,
intoptions,
intmax_depth);
PHP_JSON_APIphp_json_error_codephp_json_parser_error_code(constphp_json_parser*parser);
PHP_JSON_APIintphp_json_parse(php_json_parser*parser);
intphp_json_yyparse(php_json_parser*parser);
constphp_json_parser_methods*php_json_get_validate_methods(void);
#endif/* PHP_JSON_PARSER_H */