diff options
Diffstat (limited to 'manual.txt')
-rw-r--r-- | manual.txt | 96 |
1 files changed, 57 insertions, 39 deletions
@@ -117,8 +117,10 @@ USE_INTERNAL_ISINF:: Workaround for Solaris platforms missing ++isinf++(3). | |||
117 | DISABLE_CJSON_GLOBAL:: Do not store module table in global "cjson" | 117 | DISABLE_CJSON_GLOBAL:: Do not store module table in global "cjson" |
118 | variable. Redundant from Lua 5.2 onwards. | 118 | variable. Redundant from Lua 5.2 onwards. |
119 | DISABLE_INVALID_NUMBERS:: Recommended on platforms where ++strtod++(3) / | 119 | DISABLE_INVALID_NUMBERS:: Recommended on platforms where ++strtod++(3) / |
120 | ++sprintf++(3) are not POSIX compliant (Eg, Windows MinGW). Restricts | 120 | ++sprintf++(3) are not POSIX compliant (Eg, Windows MinGW). Prevents |
121 | the +cjson.refuse_invalid_numbers+ runtime configuration to +true+. | 121 | +cjson.encode_invalid_numbers+ and +cjson.decode_invalid_numbers+ |
122 | from being enabled. However, +cjson.encode_invalid_numbers+ may be | ||
123 | set to +"null"+. | ||
122 | 124 | ||
123 | 125 | ||
124 | Built-in dtoa() support | 126 | Built-in dtoa() support |
@@ -154,11 +156,12 @@ text = cjson.encode(value) | |||
154 | value = cjson.decode(text) | 156 | value = cjson.decode(text) |
155 | 157 | ||
156 | -- Get and/or set Lua CJSON configuration | 158 | -- Get and/or set Lua CJSON configuration |
157 | setting = cjson.refuse_invalid_numbers([setting]) | 159 | setting = cjson.decode_invalid_numbers([setting]) |
160 | setting = cjson.encode_invalid_numbers([setting]) | ||
158 | depth = cjson.encode_max_depth([depth]) | 161 | depth = cjson.encode_max_depth([depth]) |
162 | depth = cjson.decode_max_depth([depth]) | ||
159 | convert, ratio, safe = cjson.encode_sparse_array([convert[, ratio[, safe]]]) | 163 | convert, ratio, safe = cjson.encode_sparse_array([convert[, ratio[, safe]]]) |
160 | keep = cjson.encode_keep_buffer([keep]) | 164 | keep = cjson.encode_keep_buffer([keep]) |
161 | depth = cjson.decode_max_depth([depth]) | ||
162 | ------------ | 165 | ------------ |
163 | 166 | ||
164 | 167 | ||
@@ -226,7 +229,7 @@ can be compared with +cjson.null+ for convenience. | |||
226 | 229 | ||
227 | By default, numbers incompatible with the JSON specification (NaN, | 230 | By default, numbers incompatible with the JSON specification (NaN, |
228 | Infinity, Hexadecimal) can be decoded. This default can be changed | 231 | Infinity, Hexadecimal) can be decoded. This default can be changed |
229 | with +cjson.refuse_invalid_numbers+. | 232 | with +cjson.decode_invalid_numbers+. |
230 | 233 | ||
231 | .Example: Decoding | 234 | .Example: Decoding |
232 | [source,lua] | 235 | [source,lua] |
@@ -240,6 +243,30 @@ numeric key will be stored as a Lua +string+. Any code assuming type | |||
240 | +number+ may break. | 243 | +number+ may break. |
241 | 244 | ||
242 | 245 | ||
246 | [[decode_invalid_numbers]] | ||
247 | decode_invalid_numbers | ||
248 | ~~~~~~~~~~~~~~~~~~~~~~ | ||
249 | |||
250 | [source,lua] | ||
251 | ------------ | ||
252 | setting = cjson.decode_invalid_numbers([setting]) | ||
253 | -- "setting" must be on of: | ||
254 | -- "off", "on", false, true | ||
255 | ------------ | ||
256 | |||
257 | Lua CJSON can throw an error when trying to parse numbers outside of | ||
258 | the JSON specification (_invalid numbers_): | ||
259 | |||
260 | - Infinity | ||
261 | - Not-a-number (NaN) | ||
262 | - Hexadecimal | ||
263 | |||
264 | By default Lua CJSON will decode _invalid numbers_. | ||
265 | |||
266 | This setting is only changed when an argument is provided. The current | ||
267 | setting is always returned. | ||
268 | |||
269 | |||
243 | [[decode_max_depth]] | 270 | [[decode_max_depth]] |
244 | decode_max_depth | 271 | decode_max_depth |
245 | ~~~~~~~~~~~~~~~~ | 272 | ~~~~~~~~~~~~~~~~ |
@@ -352,7 +379,7 @@ These defaults can be changed with: | |||
352 | 379 | ||
353 | - <<encode_max_depth,+cjson.encode_max_depth+>> | 380 | - <<encode_max_depth,+cjson.encode_max_depth+>> |
354 | - <<encode_sparse_array,+cjson.encode_sparse_array+>> | 381 | - <<encode_sparse_array,+cjson.encode_sparse_array+>> |
355 | - <<refuse_invalid_numbers,+cjson.refuse_invalid_numbers+>> | 382 | - <<encode_invalid_numbers,+cjson.encode_invalid_numbers+>> |
356 | 383 | ||
357 | .Example: Encoding | 384 | .Example: Encoding |
358 | [source,lua] | 385 | [source,lua] |
@@ -361,6 +388,30 @@ json_text = cjson.encode(value) | |||
361 | -- Returns: '[true,{"foo":"bar"}]' | 388 | -- Returns: '[true,{"foo":"bar"}]' |
362 | 389 | ||
363 | 390 | ||
391 | [[encode_invalid_numbers]] | ||
392 | encode_invalid_numbers | ||
393 | ~~~~~~~~~~~~~~~~~~~~~~ | ||
394 | [source,lua] | ||
395 | ------------ | ||
396 | setting = cjson.encode_invalid_numbers([setting]) | ||
397 | -- "setting" must be on of: | ||
398 | -- "off", "on", "null", false, true | ||
399 | ------------ | ||
400 | |||
401 | By default, Lua CJSON will throw an error when trying to encode | ||
402 | numbers outside of the JSON specification (_invalid numbers_): | ||
403 | |||
404 | - Infinity | ||
405 | - Not-a-number (NaN) | ||
406 | |||
407 | When set to +"null"+, Lua CJSON will encode _invalid numbers_ as a | ||
408 | JSON +null+ value. This allows Infinity and NaN to be represented as | ||
409 | valid JSON. | ||
410 | |||
411 | This setting is only changed when an argument is provided. The current | ||
412 | setting is always returned. | ||
413 | |||
414 | |||
364 | encode_keep_buffer | 415 | encode_keep_buffer |
365 | ~~~~~~~~~~~~~~~~~~ | 416 | ~~~~~~~~~~~~~~~~~~ |
366 | 417 | ||
@@ -473,39 +524,6 @@ cjson.encode({ [1000] = "excessively sparse" }) | |||
473 | -- Returns: '{"1000":"excessively sparse"}' | 524 | -- Returns: '{"1000":"excessively sparse"}' |
474 | 525 | ||
475 | 526 | ||
476 | [[refuse_invalid_numbers]] | ||
477 | refuse_invalid_numbers | ||
478 | ~~~~~~~~~~~~~~~~~~~~~~ | ||
479 | |||
480 | [source,lua] | ||
481 | ------------ | ||
482 | setting = cjson.refuse_invalid_numbers([setting]) | ||
483 | -- "setting" must be on of: | ||
484 | -- false, "encode", "decode", "both", true | ||
485 | ------------ | ||
486 | |||
487 | Lua CJSON can throw an error for numbers outside of the JSON | ||
488 | specification (_invalid numbers_): | ||
489 | |||
490 | - Infinity | ||
491 | - NaN | ||
492 | - Hexadecimal | ||
493 | |||
494 | By default Lua CJSON will decode _invalid numbers_, but will refuse to | ||
495 | encode them. | ||
496 | |||
497 | This setting is only changed when an argument is provided. The current | ||
498 | setting is always returned. | ||
499 | |||
500 | This setting can be configured separately for encoding and/or | ||
501 | decoding: | ||
502 | |||
503 | [horizontal] | ||
504 | Enabled:: An error will be generated if an _invalid number_ is found. | ||
505 | Disabled for encoding:: NaN and Infinity can be encoded. | ||
506 | Disabled for decoding:: All numbers supported by +strtod+(3) will be parsed. | ||
507 | |||
508 | |||
509 | API (Variables) | 527 | API (Variables) |
510 | --------------- | 528 | --------------- |
511 | 529 | ||