1
1
/*
2
2
+----------------------------------------------------------------------+
3
- | PHP Version 5 |
4
- +----------------------------------------------------------------------+
5
- | Copyright (c) 1997-2018 The PHP Group |
3
+ | Copyright (c) The PHP Group |
6
4
+----------------------------------------------------------------------+
7
5
| This source file is subject to version 3.01 of the PHP license, |
8
6
| that is bundled with this package in the file LICENSE, and is |
@@ -48,7 +46,7 @@ PHP_JSOND_API zend_class_entry *php_jsond_serializable_ce;
48
46
49
47
PHP_JSOND_API ZEND_DECLARE_MODULE_GLOBALS (jsond )
50
48
51
- /* {{{ arginfo */
49
+ /* arginfo */
52
50
ZEND_BEGIN_ARG_INFO_EX (arginfo_jsond_encode , 0 , 0 , 1 )
53
51
ZEND_ARG_INFO (0 , value )
54
52
ZEND_ARG_INFO (0 , options )
@@ -67,19 +65,19 @@ ZEND_END_ARG_INFO()
67
65
68
66
ZEND_BEGIN_ARG_INFO (arginfo_jsond_last_error_msg , 0 )
69
67
ZEND_END_ARG_INFO ()
70
- /* }}} */
71
68
72
- /* {{{ jsond_functions[] */
69
+
70
+ /* jsond_functions[] */
73
71
static zend_function_entry jsond_functions [] = {
74
72
PHP_FE (jsond_encode , arginfo_jsond_encode )
75
73
PHP_FE (jsond_encode , arginfo_jsond_decode )
76
74
PHP_FE (jsond_last_error , arginfo_jsond_last_error )
77
75
PHP_FE (jsond_last_error_msg , arginfo_jsond_last_error_msg )
78
76
PHP_FE_END
79
77
};
80
- /* }}} */
81
78
82
- /* {{{ JsonSerializable methods */
79
+
80
+ /* JsonSerializable methods */
83
81
ZEND_BEGIN_ARG_INFO (jsond_serialize_arginfo , 0 )
84
82
/* No arguments */
85
83
ZEND_END_ARG_INFO ()
@@ -88,17 +86,17 @@ static zend_function_entry jsond_serializable_interface[] = {
88
86
PHP_ABSTRACT_ME (PHP_JSOND_SERIALIZABLE_INTERFACE , jsonSerialize , jsond_serialize_arginfo )
89
87
PHPC_FE_END
90
88
};
91
- /* }}} */
92
89
93
- /* {{{ php_json_already_exists */
90
+
91
+ /* php_json_already_exists */
94
92
static inline zend_bool php_json_already_exists ()
95
93
{
96
94
return !strncmp (PHP_JSOND_PREFIX_STRING , "json" , 5 ) &&
97
95
zend_hash_str_exists (& module_registry , "json" , strlen ("json" ));
98
96
}
99
- /* }}} */
100
97
101
- /* {{{ php_json_register_serializable_interface */
98
+
99
+ /* php_json_register_serializable_interface */
102
100
static inline void php_jsond_register_serializable_interface ()
103
101
{
104
102
zend_class_entry ce ;
@@ -107,7 +105,7 @@ static inline void php_jsond_register_serializable_interface()
107
105
INIT_CLASS_ENTRY (ce , PHP_JSOND_SERIALIZABLE_INTERFACE_STRING , jsond_serializable_interface );
108
106
PHP_JSOND_NAME (serializable_ce ) = zend_register_internal_interface (& ce );
109
107
}
110
- /* }}} */
108
+
111
109
112
110
#define PHP_JSOND_REGISTER_LONG_CONSTANT (name , lval ) \
113
111
do { \
@@ -117,7 +115,7 @@ static inline void php_jsond_register_serializable_interface()
117
115
} \
118
116
} while(0)
119
117
120
- /* {{{ MINIT */
118
+ /* MINIT */
121
119
static PHP_MINIT_FUNCTION (jsond )
122
120
{
123
121
if (!php_json_already_exists ()) {
@@ -163,14 +161,13 @@ static PHP_MINIT_FUNCTION(jsond)
163
161
164
162
return SUCCESS ;
165
163
}
166
- /* }}} */
167
164
168
165
#define PHP_JSON_REPLACE_FN (orig , name ) \
169
166
PHPC_HASH_CSTR_FIND_PTR(EG(function_table), "json_"#name, orig); \
170
167
orig->internal_function.handler = PHP_JSOND_FN(name);
171
168
172
169
173
- /* {{{ RINIT */
170
+ /* RINIT */
174
171
PHP_RINIT_FUNCTION (jsond )
175
172
{
176
173
zend_function * orig ;
@@ -196,10 +193,10 @@ PHP_RINIT_FUNCTION(jsond)
196
193
197
194
return SUCCESS ;
198
195
}
199
- /* }}} */
200
196
201
197
202
- /* {{{ PHP_GINIT_FUNCTION
198
+
199
+ /* PHP_GINIT_FUNCTION
203
200
*/
204
201
static PHP_GINIT_FUNCTION (jsond )
205
202
{
@@ -210,10 +207,9 @@ static PHP_GINIT_FUNCTION(jsond)
210
207
jsond_globals -> error_code = PHP_JSON_ERROR_NONE ;
211
208
jsond_globals -> encode_max_depth = 0 ;
212
209
}
213
- /* }}} */
214
210
215
211
216
- /* {{{ jsond_module_entry
212
+ /* jsond_module_entry
217
213
*/
218
214
zend_module_entry jsond_module_entry = {
219
215
STANDARD_MODULE_HEADER ,
@@ -231,24 +227,21 @@ zend_module_entry jsond_module_entry = {
231
227
NULL ,
232
228
STANDARD_MODULE_PROPERTIES_EX
233
229
};
234
- /* }}} */
235
230
236
231
#ifdef COMPILE_DL_JSOND
237
232
ZEND_GET_MODULE (jsond )
238
233
#endif
239
234
240
- /* {{{ PHP_MINFO_FUNCTION
241
- */
235
+ /* PHP_MINFO_FUNCTION */
242
236
static PHP_MINFO_FUNCTION (jsond )
243
237
{
244
238
php_info_print_table_start ();
245
239
php_info_print_table_row (2 , "jsond support" , "enabled" );
246
240
php_info_print_table_row (2 , "jsond version" , PHP_JSOND_VERSION );
247
241
php_info_print_table_end ();
248
242
}
249
- /* }}} */
250
243
251
- PHP_JSOND_API int php_jsond_encode (php_json_buffer * buf , zval * val , int options ) /* {{{ */
244
+ PHP_JSOND_API int php_jsond_encode (php_json_buffer * buf , zval * val , int options )
252
245
{
253
246
php_json_encoder encoder ;
254
247
int return_code ;
@@ -257,19 +250,18 @@ PHP_JSOND_API int php_jsond_encode(php_json_buffer *buf, zval *val, int options)
257
250
encoder .max_depth = JSOND_G (encode_max_depth );
258
251
encoder .error_code = PHP_JSON_ERROR_NONE ;
259
252
260
- return_code = php_json_encode_zval (buf , val , options , & encoder TSRMLS_CC );
253
+ return_code = php_json_encode_zval (buf , val , options , & encoder );
261
254
JSOND_G (error_code ) = encoder .error_code ;
262
255
263
256
return return_code ;
264
257
}
265
- /* }}} */
266
258
267
259
PHP_JSOND_API int php_jsond_decode_ex (
268
- zval * return_value , char * str , size_t str_len , int options , int depth TSRMLS_DC ) /* {{{ */
260
+ zval * return_value , char * str , size_t str_len , int options , int depth )
269
261
{
270
262
php_json_parser parser ;
271
263
272
- PHP_JSOND_NAME (parser_init )(& parser , return_value , str , str_len , options , depth TSRMLS_CC );
264
+ PHP_JSOND_NAME (parser_init )(& parser , return_value , str , str_len , options , depth );
273
265
274
266
if (php_json_yyparse (& parser )) {
275
267
JSOND_G (error_code ) = PHP_JSOND_NAME (parser_error_code )(& parser );
@@ -279,10 +271,9 @@ PHP_JSOND_API int php_jsond_decode_ex(
279
271
280
272
return SUCCESS ;
281
273
}
282
- /* }}} */
283
274
284
275
285
- /* {{{ proto string json_encode(mixed data [, int options[, int depth]])
276
+ /* proto string json_encode(mixed data [, int options[, int depth]])
286
277
Returns the JSON representation of a value */
287
278
static PHP_FUNCTION (jsond_encode )
288
279
{
@@ -291,7 +282,7 @@ static PHP_FUNCTION(jsond_encode)
291
282
phpc_long_t options = 0 ;
292
283
phpc_long_t depth = PHP_JSON_PARSER_DEFAULT_DEPTH ;
293
284
294
- if (zend_parse_parameters (ZEND_NUM_ARGS () TSRMLS_CC , "z|ll" , & parameter , & options , & depth ) == FAILURE ) {
285
+ if (zend_parse_parameters (ZEND_NUM_ARGS (), "z|ll" , & parameter , & options , & depth ) == FAILURE ) {
295
286
return ;
296
287
}
297
288
@@ -300,7 +291,7 @@ static PHP_FUNCTION(jsond_encode)
300
291
JSOND_G (encode_max_depth ) = depth ;
301
292
302
293
PHP_JSON_BUF_INIT (& buf );
303
- PHP_JSOND_NAME (encode )(& buf , parameter , (int )options TSRMLS_CC );
294
+ PHP_JSOND_NAME (encode )(& buf , parameter , (int )options );
304
295
305
296
if ((JSOND_G (error_code ) != PHP_JSON_ERROR_NONE && !(options & PHP_JSON_PARTIAL_OUTPUT_ON_ERROR )) ||
306
297
PHP_JSON_BUF_LENGTH (buf ) > LONG_MAX ) {
@@ -310,9 +301,8 @@ static PHP_FUNCTION(jsond_encode)
310
301
PHP_JSON_BUF_RETURN (buf , return_value );
311
302
}
312
303
}
313
- /* }}} */
314
304
315
- /* {{{ proto mixed json_decode(string json [, bool assoc [, long depth]])
305
+ /* proto mixed json_decode(string json [, bool assoc [, long depth]])
316
306
Decodes the JSON representation into a PHP value */
317
307
static PHP_FUNCTION (jsond_decode )
318
308
{
@@ -322,7 +312,7 @@ static PHP_FUNCTION(jsond_decode)
322
312
phpc_long_t depth = PHP_JSON_PARSER_DEFAULT_DEPTH ;
323
313
phpc_long_t options = 0 ;
324
314
325
- if (zend_parse_parameters (ZEND_NUM_ARGS () TSRMLS_CC , "s|bll" , & str , & str_len , & assoc , & depth , & options ) == FAILURE ) {
315
+ if (zend_parse_parameters (ZEND_NUM_ARGS (), "s|bll" , & str , & str_len , & assoc , & depth , & options ) == FAILURE ) {
326
316
return ;
327
317
}
328
318
@@ -334,12 +324,12 @@ static PHP_FUNCTION(jsond_decode)
334
324
}
335
325
336
326
if (depth <= 0 ) {
337
- php_error_docref (NULL TSRMLS_CC , E_WARNING , "Depth must be greater than zero" );
327
+ php_error_docref (NULL , E_WARNING , "Depth must be greater than zero" );
338
328
RETURN_NULL ();
339
329
}
340
330
341
331
if (depth > INT_MAX ) {
342
- php_error_docref (NULL TSRMLS_CC , E_WARNING , "Depth must be lower than %d" , INT_MAX );
332
+ php_error_docref (NULL , E_WARNING , "Depth must be lower than %d" , INT_MAX );
343
333
RETURN_NULL ();
344
334
}
345
335
@@ -350,30 +340,28 @@ static PHP_FUNCTION(jsond_decode)
350
340
options &= ~PHP_JSON_OBJECT_AS_ARRAY ;
351
341
}
352
342
353
- PHP_JSOND_NAME (decode_ex )(return_value , str , (size_t ) str_len , (int ) options , (int ) depth TSRMLS_CC );
343
+ PHP_JSOND_NAME (decode_ex )(return_value , str , (size_t ) str_len , (int ) options , (int ) depth );
354
344
}
355
- /* }}} */
356
345
357
- /* {{{ proto int json_last_error()
346
+ /* proto int json_last_error()
358
347
Returns the error code of the last json_encode() or json_decode() call. */
359
348
static PHP_FUNCTION (jsond_last_error )
360
349
{
361
- if (zend_parse_parameters (ZEND_NUM_ARGS () TSRMLS_CC , "" ) == FAILURE ) {
350
+ if (zend_parse_parameters (ZEND_NUM_ARGS (), "" ) == FAILURE ) {
362
351
return ;
363
352
}
364
353
365
354
RETURN_LONG (JSOND_G (error_code ));
366
355
}
367
- /* }}} */
368
356
369
357
#define PHP_JSON_ERROR_MSG_RETURN (_msg ) \
370
358
PHPC_CSTRL_RETURN(_msg, sizeof(_msg) - 1)
371
359
372
- /* {{{ proto string json_last_error_msg()
360
+ /* proto string json_last_error_msg()
373
361
Returns the error string of the last json_encode() or json_decode() call. */
374
362
static PHP_FUNCTION (jsond_last_error_msg )
375
363
{
376
- if (zend_parse_parameters (ZEND_NUM_ARGS () TSRMLS_CC , "" ) == FAILURE ) {
364
+ if (zend_parse_parameters (ZEND_NUM_ARGS (), "" ) == FAILURE ) {
377
365
return ;
378
366
}
379
367
@@ -405,7 +393,6 @@ static PHP_FUNCTION(jsond_last_error_msg)
405
393
}
406
394
407
395
}
408
- /* }}} */
409
396
410
397
/*
411
398
* Local variables:
0 commit comments