Eli Barzilay
and Dave Herman
This library provides utilities for parsing and producing data in the JSON data exchange format to/from Racket values. See the JSON web site and the JSON RFC for more information about JSON.
This library defines a subset of Racket values that can be represented as JSON strings, and this predicates checks for such values. A JS-Expression, or jsexpr, is one of:
the value of jsnull, 'null by default, which is recognized using eq?
#t
#t
#t
#t
#t
#t
#f
#f
#f
Note that the value of (json-null ) (or an explicitly-provided #:null argument) is recognized using eq? .
procedure
[ out#:nulljsnull#:encodeencodex:jsexpr?
By default, only ASCII control characters are encoded as “\uHHHH”. If encode is given as 'all, then in addition to ASCII control characters, non-ASCII characters are encoded as well. This can be useful if you need to transport the text via channels that might not support UTF-8. Note that characters in the range of U+10000 and above are encoded as two \uHHHH escapes, see Section 2.5 of the JSON RFC.
If indent is provided and is not #f, each array element or object key–value pair is written on a new line, and the value of indent specifies the whitespace to be added for each level of nesting: either a #\tab character or, if indent is a number, the corresponding number of #\space characters.
"{\"waffle\":[1,2,3]}"
"{\"\\uc640\\ud50c\":[1,2,3]}"
#:indentindent){"waffle":[1,2,3],"와플":[1,2,3]}
{
"waffle": [
1,
2,
3
],
"와플": [
1,
2,
3
]
}
{
"waffle": [
1,
2,
3
],
"와플": [
1,
2,
3
]
}
{
"waffle": [
1,
2,
3
],
"와플": [
1,
2,
3
]
}
procedure
[ #:nulljsnull#:encodeencodex:jsexpr?
"{\"waffle\":[1,2,3]}"
procedure
[ #:nulljsnull#:encodeencodex:jsexpr?
#"{\"waffle\":[1,2,3]}"
procedure
[ in#:nulljsnull#:replace-malformed-surrogate?replace-malformed-surrogate?])
'#hasheq((arr . (1 2 3 4)))
"sandwich"
'(#t #f)
'(#t (1 2 3))
'(#t "hello")
'("world" 41)
string::1: read-json: bad input starting #"sandwich
sandwich"
"false sandwich";valid JSON prefix, invalid remainder is not (immediately) problematic#f
string::6: read-json: bad input starting #"false42"
"false 42";valid JSON text sequence (notice the space)'(#f 42)
Changed in version 8.1.0.2 of package base: Adjusted the whitespace handling to reject whitespace that isn’t either
#\space, #\tab, #\newline, or #\return.
Changed in version 8.16.0.1: Added #:replace-malformed-surrogate?.
procedure
( string->jsexpr str[#:nulljsnull])→jsexpr?
str:string?
'#hasheq((pancake . 5) (waffle . 7))
procedure
( bytes->jsexpr str[#:nulljsnull])→jsexpr?
str:bytes?
'#hasheq((pancake . 5) (waffle . 7))
The bindings documented in this section are provided by the (submod jsonfor-extension) module, not json.
It may be more convenient for some programs to use a different representation of JSON than a jsexpr? . These procedures allow for customization of representation read or written. For example, in the Rhombus language it is more natural to use strings (which are immutable) for object keys, Rhombus lists (a.k.a. treelist? ) for JSON lists, and immutable strings as JSON string values.
procedure
xout#:nulljsnull#:encodeencode#:indentindent#:object-rep?object-rep?#:object-rep->hashobject-rep->hash#:list-rep?list-rep?#:list-rep->listlist-rep->list#:key-rep?key-rep?#:key-rep->stringkey-rep->string#:string-rep?string-rep?who:symbol?x:any/cout:output-port?jsnull:any/c
The who argument is used for error reporting. The jsnull, encode, and indent arguments behave the same as described for write-json .
The object-rep? function should recognize values that will be written as JSON objects, and object-rep->hash must convert the value to a hash? .
The list-rep? function should recognize values that will be written as JSON arrays, and list-rep->list must convert the value to a list? .
The key-rep? function should recognize values that will be written as JSON object keys, and key-rep->string must convert the value to a string? .
The string-rep? function should recognize values that will be written as JSON strings, and string-rep->string must convert the value to a string? .
Added in version 8.15.0.12.
procedure
whoin#:replace-malformed-surrogate?replace-malformed-surrogate?#:nulljsnull#:make-objectmake-object-rep#:make-listmake-list-rep#:make-keymake-key-rep#:make-stringmake-string-rep)who:symbol?in:input-port?replace-malformed-surrogate?:any/cjsnull:any/c
The who argument is used for error reporting. The jsnull and replace-malformed-surrogate? arguments behave the same as described in read-json .
The make-object-rep receives a list? of key-value pairs, and returns a custom representation of a JSON object.
The make-list-rep receives a list? of values and returns a custom representation of a JSON array.
The make-key-rep receives a string? values for an object key, and returns a custom representation of a JSON key.
The make-string-rep receives a string? value, and returns a custom representation of a JSON string.
Added in version 8.15.0.12.
Changed in version 8.16.0.1: Added #:replace-malformed-surrogate?.
JSON syntactically distinguishes “null”, array literals, and object literals, and therefore there is a question of what Racket value should represent a JSON “null”. This library uses the Racket 'null symbol by default. Note that this is unambiguous, since Racket symbols are used only as object keys, which are required to be strings in JSON.
Several other options have been used by various libraries. For example, Dave Herman’s PLaneT library (which has been the basis for this library) uses the #\nul character, other libraries for Racket and other Lisps use (void ), NIL (some use it also for JSON “false”), and more. The approach taken by this library is to use a keyword argument for all functions, with a parameter that determines its default, making it easy to use any value that fits your needs.
The JSON RFC only states that object literal expressions “SHOULD” contain unique keys, but does not proscribe them entirely. Looking at existing practice, it appears that popular JSON libraries parse object literals with duplicate keys by simply picking one of the key-value pairs and discarding the others with the same key. This behavior is naturally paralleled by Racket hash tables, making them a natural analog.
Finally, the JSON RFC is almost completely silent about the order of key-value pairs. While the RFC only specifies the syntax of JSON, which of course always must represent object literals as an ordered collection, the introduction states:
An object is an unordered collection of zero or more name/value pairs, where a name is a string and a value is a string, number, boolean, null, object, or array.
In practice, JSON libraries discard the order of object literals in parsed JSON text and make no guarantees about the order of generated object literals, usually using a hash table of some flavor as a natural choice. We therefore do so as well.
Some names in this library use “jsexpr” and some use “json”. The rationale that the first is used for our representation, and the second is used as information that is received from or sent to the outside world.