based on jsx
testing provided by travis-ci
jsex is released under the terms of the MIT license
copyright 2013 alisdair sullivan
$ mix compile
$ mix test
iex> JSEX.decode "{\"library\": \"jsx\", \"awesome\": true}"
{:ok,[{"library", "jsx"}, {"awesome", true}]}
iex> JSEX.decode "[\"a\",\"list\",\"of\",\"words\"]"
{:ok,["a","list","of","words"]}
iex> JSEX.encode [library: "jsx", awesome: true]
{:ok,"{\"library\":\"jsx\",\"awesome\":true}"}
iex> JSEX.encode ["a","list","of","words"]
{:ok,"[\"a\",\"list\",\"of\",\"words\"]"}
iex> JSEX.is_json? "[\"this is json\"]"
true
iex> JSEX.is_json? [\"this is not\"]
false
iex> JSEX.is_term? ["this is a term"]
true
iex> JSEX.is_term? [:this, :is, :not]
false
iex> JSEX.minify "{
...> \"a list\": [
...> 1,
...> 2,
...> 3
...> ]
...> }"
{:ok,"{\"a list\":[1,2,3]}"}
iex> JSEX.prettify "{\"a list\":[1,2,3]}"
{:ok,"{
\"a list\": [
1,
2,
3
]
}"}
jsex is an elixir application for consuming, producing and manipulating json
json has a spec but common usage deviates in a number of cases. jsex attempts to address common usage while following the spirit of the spec
all json produced and consumed by jsex should be utf8
encoded text or a
reasonable approximation thereof. ascii works too, but anything beyond that
i'm not going to make any promises. especially not latin1
the spec thinks json values must be wrapped in a json array or object but everyone else disagrees so jsex allows naked json values by default.
json | elixir |
---|---|
number |
Number |
string |
BitString |
true and false |
true and false |
null |
nil |
array |
List |
object |
[{}] , Dict and Record |
javascript and thus json represent all numeric values with floats. as
this is woefully insufficient for many uses, jsex, just like elixir,
supports bigints. whenever possible, this library will interpret json
numbers that look like integers as integers. other numbers will be converted
to elixir's floating point type, which is nearly but not quite iee754.
negative zero is not representable in elixir (zero is unsigned in elixir and
0
is equivalent to -0
) and will be interpreted as regular zero. numbers
not representable are beyond the concern of this implementation, and will
result in parsing errors
when converting from elixir to json, numbers are represented with their
shortest representation that will round trip without loss of precision. this
means that some floats may be superficially dissimilar (although
functionally equivalent). for example, 1.0000000000000001
will be
represented by 1.0
the json spec is frustratingly vague on the exact details of json
strings. json must be unicode, but no encoding is specified. javascript
explicitly allows strings containing codepoints explicitly disallowed by
unicode. json allows implementations to set limits on the content of
strings. other implementations attempt to resolve this in various ways. this
implementation, in default operation, only accepts strings that meet the
constraints set out in the json spec (strings are sequences of unicode
codepoints deliminated by "
(u+0022
) that may not contain control codes
unless properly escaped with \
(u+005c
)) and that are encoded in utf8
the utf8 restriction means improperly paired surrogates are explicitly
disallowed. u+d800
to u+dfff
are allowed, but only when they form valid
surrogate pairs. surrogates encountered otherwise result in errors
json string escapes of the form \uXXXX
will be converted to their
equivalent codepoints during parsing. this means control characters and
other codepoints disallowed by the json spec may be encountered in resulting
strings, but codepoints disallowed by the unicode spec will not be. in the
interest of pragmatism there is an option for looser parsing
all elixir strings are represented by BitStrings. the encoder will check
strings for conformance. noncharacters (like u+ffff
) are allowed in elixir
utf8 encoded binaries, but not in strings passed to the encoder (although,
again, see options)
this implementation performs no normalization on strings beyond that
detailed here. be careful when comparing strings as equivalent strings
may have different utf8
encodings
the json primitives true
, false
and null
are represented by the
elixir atoms true
, false
and nil
json arrays are represented with elixir lists of json values as described in this section
json objects are represented by elixir dicts. keys are atoms or bitstrings and values are valid json values. records are serialized to objects automagically but there is currently no way to perform the reverse. stay tuned tho
so you have this record:
defrecord Character, name: nil, rank: nil
iex> JSEX.encode Character.new(name: "Walder Frey", rank: "Lord")
{:ok,"{\"name\":\"Walder Frey\",\"rank\":\"Lord\"}"}
but you don't like that encoding. ok. do this:
defimpl JSEX.Encoder, for: Character do
def json(record) do
[:start_object, "name", record.rank <> " " <> record.name, :end_object]
end
iex> JSEX.encode Character.new(name: "Walder Frey", rank: "Lord")
{:ok,"{\"name\":\"Lord Walder Frey\"}"}
along with the jsx internal format you can also generate you own json
and pass it to the encoder with [{:raw, "{\"name\": \"Lord Walder Frey\"}"}]
someone should write a macro that does this and make a pull request
no i didn't. they are jsx only for now. stay tuned tho
jsex functions all take a common set of options. not all flags have meaning in all contexts, but they are always valid options. functions may have additional options beyond these. see individual function documentation for details
json text input and json strings SHOULD be utf8 encoded binaries,
appropriately escaped as per the json spec. attempts are made to replace
invalid codepoints with u+FFFD
as per the unicode spec when this option is
present. this applies both to malformed unicode and disallowed codepoints
json strings are escaped according to the json spec. this means forward slashes (solidus) are only escaped when this flag is present. otherwise they are left unescaped. you may want to use this if you are embedding json directly into a html or xml document
some parsers allow double quotes (u+0022
) to be replaced by single quotes
(u+0027
) to delimit keys and strings. this option allows json containing
single quotes as structural characters to be parsed without errors. note
that the parser expects strings to be terminated by the same quote type that
opened it and that single quotes must, obviously, be escaped within strings
delimited by single quotes
double quotes must always be escaped, regardless of what kind of quotes delimit the string they are found in
the parser will never emit json with keys or strings delimited by single quotes
javascript interpreters treat the codepoints u+2028
and u+2029
as
significant whitespace. json strings that contain either of these codepoints
will be parsed incorrectly by some javascript interpreters. by default,
these codepoints are escaped (to \u2028
and \u2029
, respectively) to
retain compatibility. this option simply removes that escaping
json has no official comments but some parsers allow c/c++ style comments.
anywhere whitespace is allowed this flag allows comments (both // ...
and
/* ... */
)
by default both the encoder and decoder return strings as utf8 binaries appropriate for use in elixir. escape sequences that were present in decoded terms are converted into the appropriate codepoint while encoded terms are unaltered. this flag escapes strings as if for output in json, removing control codes and problematic codepoints and replacing them with the appropriate escapes
during decoding ignore unrecognized escape sequences and leave them as is in
the stream. note that combining this option with :escaped_strings
will
result in the escape character itself being escaped
json escaping is lossy; it mutates the json string and repeated application
can result in unwanted behaviour. if your strings are already escaped (or
you'd like to force invalid strings into "json" you monster) use this flag
to bypass escaping. this can also be used to read in really invalid json
strings. everything but escaped quotes are passed as is to the resulting
string term. note that this overrides :ignored_bad_escapes
,
:unescaped_jsonp
and :escaped_strings
relax is a synonym for [:replaced_bad_utf8, :single_quoted_strings, :comments, :ignored_bad_escapes]
for when you don't care how absolutely terrible your
json input is, you just want the parser to do the best it can
decode
parses a json text (a BitString
) and produces {:ok, result}
or
{:error, reason}
opts
has the default value []
and can be a list containing any of the
standard jsex options plus the following
-
{:labels, :binary}
json object's keys will be decoded toBitStrings
. the default -
{:labels, :atom}
json object's keys will be decoded toAtoms
-
{:labels, :existing_atom}
json object's keys will be decoded toAtoms
if they are already known to the runtime, otherwise the decoder will return an error
iex> JSEX.decode "[true, false, null]"
{:ok,[true,false,nil]}
iex> JSEX.decode("{\"key\": true}", [{:labels, :binary}])
{:ok,[{"key",true}]}
iex> JSEX.decode("{\"key\": true}", [{:labels, :atom}])
{:ok,[key: true]}
iex> JSEX.decode [:a, :b, :c]
{:error,:badarg}
decode!
parses a json text (a BitString
) and produces result
or
an ArgumentError
exception
see decode for opts
iex> JSEX.decode! "[true, false, null]"
[true,false,nil]
iex> JSEX.decode! [:a, :b, :c]
** (ArgumentError) argument error
encode
produces takes an elixir term and produces {:ok, json}
or
{:error, :badarg}
opts
has the default value []
and can be a list containing any of the
standard jsex options plus the following
-
{:space, n}
insertsn
spaces after every comma and colon in your json output.:space
is an alias for{:space, 1}
. the default is{:space, 0}
-
{:indent, n}
inserts a newline andn
spaces for each level of indentation in your json output after each comma. note that this overrides spaces inserted after a comma.:indent
is an alias for{:indent, 1}
. the default is{:indent, 0}
iex> JSEX.encode [true, false, nil]
{:ok,"[true,false,null]"}
iex> JSEX.encode([a: 1, b: 2, c: 3], [{:space, 2}, :indent])
{:ok,"{
\"a\": 1,
\"b\": 2,
\"c\": 3
}"}
iex> JSEX.encode([a: 1, b: 2, c: 3], [:space, {:indent, 4}])
{:ok,"{
\"a\": 1,
\"b\": 2,
\"c\": 3
}"}
iex> JSEX.encode [:a, :b, :c]
{:error,:badarg}
encode!
produces takes an elixir term and produces json
or
an ArgumentError
exception
see encode for opts
iex> JSEX.encode! [true, false, null]
[true,false,nil]
iex> JSEX.encode! [:a, :b, :c]
** (ArgumentError) argument error
format
parses a json text and produces formatted {:ok, json}
or
{:error, :badarg}
see encode for opts
iex> JSEX.format "[ true, false, null ]"
{:ok,"[true,false,null]"}
iex> JSEX.format("[ true, false, null ]", [space: 2]
{:ok,"[true, false, null]"}
iex> JSEX.format("[ true, false, null ]", [space: 4]
{:ok,"[true, false, null]"}
iex> JSEX.format "{\"foo\":true,\"bar\":false}"
{:ok,"{\"foo\":true,\"bar\":false}"}
iex> JSEX.format("{\"foo\":true,\"bar\":false}", [:space])
{:ok,"{\"foo\": true,\"bar\": false}"}
iex> JSEX.format("{\"foo\":true,\"bar\":false}", [space: 2, indent: 4])
{:ok,"{
\"foo\": true,
\"bar\": false
}"}
iex> JSEX.format [:a, :b, :c]
{:error,:badarg}
format!
parses a json text and produces formatted json
or
an ArgumentError
exception
see encode for opts
iex> JSEX.format! "[ true, false, null ]"
"[true,false,null]"
iex> JSEX.format!("{\"foo\":true,\"bar\":false}", [space: 2, indent: 4])
"{
\"foo\": true,
\"bar\": false
}"
iex> JSEX.format! [:a, :b, :c]
** (ArgumentError) argument error
minify
is an alias for format(json, [space: 0, indent: 0])
iex> JSEX.minify "[ true, false, null ]"
{:ok,"[true,false,null]"}
iex> JSEX.minify [:a, :b, :c]
{:error,:badarg}
minify!
is an alias for format!(json, [space: 0, indent: 0])
iex> JSEX.minify! "[ true, false, null ]"
"[true,false,null]"
iex> JSEX.minify [:a, :b, :c]
** (ArgumentError) argument error
prettify
is an alias for format(json, [space: 1, indent: 2])
iex> JSEX.prettify "[ true, false, null ]"
{:ok,"[
true,
false,
null
]"}
iex> JSEX.prettify [:a, :b, :c]
{:error,:badarg}
prettify!
is an alias for format!(json, [space: 1, indent: 2])
iex> JSEX.prettify "[ true, false, null ]"
"[
true,
false,
null
]"
iex> JSEX.prettify [:a, :b, :c]
** (ArgumentError) argument error
returns true
if input is a valid json text, false
if not
opts
has the default value []
and can be a list containing any of the
standard jsex options
what exactly constitutes valid json may be altered
iex> JSEX.is_json? "[ true, false, null ]"
true
iex> JSEX.is_json? [:a, :b, :c]
false
returns true
if input is an elixir term that can be safely converted to json,
false
if not
opts
has the default value []
and can be a list containing any of the
standard jsex options
what exactly constitutes valid json may be altered
iex> JSEX.is_term? [ true, false, nil ]
true
iex> JSEX.is_term? [:a, :b, :c]
false
jsex wouldn't be what it is without the guidance and code review of yurii rashkovskii, eduardo gurgel and devin torres
jsex would have a way lamer name if not for eduardo gurgel