aboutsummaryrefslogtreecommitdiff
path: root/manual.txt
diff options
context:
space:
mode:
Diffstat (limited to 'manual.txt')
-rw-r--r--manual.txt96
1 files changed, 57 insertions, 39 deletions
diff --git a/manual.txt b/manual.txt
index 13454be..dce7090 100644
--- a/manual.txt
+++ b/manual.txt
@@ -117,8 +117,10 @@ USE_INTERNAL_ISINF:: Workaround for Solaris platforms missing ++isinf++(3).
117DISABLE_CJSON_GLOBAL:: Do not store module table in global "cjson" 117DISABLE_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.
119DISABLE_INVALID_NUMBERS:: Recommended on platforms where ++strtod++(3) / 119DISABLE_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
124Built-in dtoa() support 126Built-in dtoa() support
@@ -154,11 +156,12 @@ text = cjson.encode(value)
154value = cjson.decode(text) 156value = cjson.decode(text)
155 157
156-- Get and/or set Lua CJSON configuration 158-- Get and/or set Lua CJSON configuration
157setting = cjson.refuse_invalid_numbers([setting]) 159setting = cjson.decode_invalid_numbers([setting])
160setting = cjson.encode_invalid_numbers([setting])
158depth = cjson.encode_max_depth([depth]) 161depth = cjson.encode_max_depth([depth])
162depth = cjson.decode_max_depth([depth])
159convert, ratio, safe = cjson.encode_sparse_array([convert[, ratio[, safe]]]) 163convert, ratio, safe = cjson.encode_sparse_array([convert[, ratio[, safe]]])
160keep = cjson.encode_keep_buffer([keep]) 164keep = cjson.encode_keep_buffer([keep])
161depth = 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
227By default, numbers incompatible with the JSON specification (NaN, 230By default, numbers incompatible with the JSON specification (NaN,
228Infinity, Hexadecimal) can be decoded. This default can be changed 231Infinity, Hexadecimal) can be decoded. This default can be changed
229with +cjson.refuse_invalid_numbers+. 232with +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]]
247decode_invalid_numbers
248~~~~~~~~~~~~~~~~~~~~~~
249
250[source,lua]
251------------
252setting = cjson.decode_invalid_numbers([setting])
253-- "setting" must be on of:
254-- "off", "on", false, true
255------------
256
257Lua CJSON can throw an error when trying to parse numbers outside of
258the JSON specification (_invalid numbers_):
259
260- Infinity
261- Not-a-number (NaN)
262- Hexadecimal
263
264By default Lua CJSON will decode _invalid numbers_.
265
266This setting is only changed when an argument is provided. The current
267setting is always returned.
268
269
243[[decode_max_depth]] 270[[decode_max_depth]]
244decode_max_depth 271decode_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]]
392encode_invalid_numbers
393~~~~~~~~~~~~~~~~~~~~~~
394[source,lua]
395------------
396setting = cjson.encode_invalid_numbers([setting])
397-- "setting" must be on of:
398-- "off", "on", "null", false, true
399------------
400
401By default, Lua CJSON will throw an error when trying to encode
402numbers outside of the JSON specification (_invalid numbers_):
403
404- Infinity
405- Not-a-number (NaN)
406
407When set to +"null"+, Lua CJSON will encode _invalid numbers_ as a
408JSON +null+ value. This allows Infinity and NaN to be represented as
409valid JSON.
410
411This setting is only changed when an argument is provided. The current
412setting is always returned.
413
414
364encode_keep_buffer 415encode_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]]
477refuse_invalid_numbers
478~~~~~~~~~~~~~~~~~~~~~~
479
480[source,lua]
481------------
482setting = cjson.refuse_invalid_numbers([setting])
483-- "setting" must be on of:
484-- false, "encode", "decode", "both", true
485------------
486
487Lua CJSON can throw an error for numbers outside of the JSON
488specification (_invalid numbers_):
489
490- Infinity
491- NaN
492- Hexadecimal
493
494By default Lua CJSON will decode _invalid numbers_, but will refuse to
495encode them.
496
497This setting is only changed when an argument is provided. The current
498setting is always returned.
499
500This setting can be configured separately for encoding and/or
501decoding:
502
503[horizontal]
504Enabled:: An error will be generated if an _invalid number_ is found.
505Disabled for encoding:: NaN and Infinity can be encoded.
506Disabled for decoding:: All numbers supported by +strtod+(3) will be parsed.
507
508
509API (Variables) 527API (Variables)
510--------------- 528---------------
511 529