package cow
Library
Module
Module type
Parameter
Class
Class type
JSON (JavaScript Object Notation) library
include module type of Ezjsonm
Basic types
type value = [
| `Null
| `Bool of bool
| `Float of float
| `String of string
| `A of value list
| `O of (string * value) list
]
JSON fragments.
wrap v
wraps the value v
into a JSON array. To use when it is not possible to statically know that v
is a value JSON value.
unwrap t
is the reverse of wrap
. It expects t
to be a singleton JSON object and it return the unique element.
val from_channel : in_channel -> [> t ]
Reading JSON documents and values
Read a JSON document from an input channel.
val from_string : string -> [> t ]
Read a JSON document from a string.
val value_from_channel : in_channel -> value
Read a JSON value from an input channel.
val value_from_string : string -> value
Read a JSON value from a string.
Reading JSON documents and values -- with proper errors
Error locations in a source document follow the Jsonm representation of pairs of pairs ((start_line, start_col), (end_line, end_col))
with 0-indexed lines and 1-indexed columns.
type read_value_error = [
| `Error of error_location * Jsonm.error
| `Unexpected of [ `Lexeme of error_location * Jsonm.lexeme * string | `End_of_input ]
]
val read_error_description : [< read_error ] -> string
A human-readable description of an error -- without using the error location.
val read_error_location : [< read_error ] -> error_location option
If the error is attached to a specific location in the buffer, return this location.
val from_channel_result : in_channel -> ([> t ], [> read_error ]) result
See from_channel
.
val from_string_result : string -> ([> t ], [> read_error ]) result
See from_string
.
val value_from_channel_result :
in_channel ->
(value, [> read_value_error ]) result
See value_from_channel
.
val value_from_string_result : string -> (value, [> read_value_error ]) result
See value_from_string
.
val value_from_src_result : Jsonm.src -> (value, [> read_value_error ]) result
See value_from_src
.
Writing JSON documents and values
val to_channel : ?minify:bool -> out_channel -> t -> unit
Write a JSON document to an output channel.
val value_to_channel : ?minify:bool -> out_channel -> value -> unit
Write a JSON value to an output channel.
val value_to_string : ?minify:bool -> value -> string
Write a JSON value to a string. This goes via an intermediate buffer and so may be slow on large documents.
Low-level function to write directly to a Jsonm
destination.
Constructors
val unit : unit -> value
Same as `Null
.
val bool : bool -> value
Same as `Bool b
.
val string : string -> value
Same as `String s
.
val strings : string list -> [> t ]
Same as `A [`String s1; ..; `String sn]
.
val int : int -> value
Same as `Float (float_of_int i)
.
val int32 : int32 -> value
Same as `Float (Int32.to_float i)
val int64 : int64 -> value
Same as `Float (Int64.to_float i)
val float : float -> value
Some as `Float f
.
Build a triple.
Accessors
exception Parse_error of value * string
All the following accessor functions expect the provided JSON document to be of a certain kind. In case this is not the case, Parse_error
is raised.
val get_unit : value -> unit
Check that the JSON document is `Null
.
val get_bool : value -> bool
Extract b
from `Bool b
.
val get_string : value -> string
Extract s
from `String s
.
val get_strings : value -> string list
Extract s1;..;sn
from `A [`String s1; ...; `String sn]
.
val get_int : value -> int
Extract an integer.
val get_int32 : value -> int32
Extract a 32-bits integer.
val get_int64 : value -> int64
Extract a 64-bits integer.
val get_float : value -> float
Extract a float.
Extract the triple.
High-level functions
val mem : value -> string list -> bool
mem v path
is true if the given path is valid for the JSON document v
.
Find the sub-document addressed by the given path. Raise Not_found
if the path is invalid.
Find the sub-document addressed by the given path. Returns None
if the path is invalid.
Update the sub-document addressed by the given path. If the provided value is None
, then removes the sub-document.
Apply a given function to a subdocument.
val encode_string : string -> value
Convert a (possibly non-valid UTF8) string to a JSON object.
val decode_string : value -> string option
Convert a JSON object to a (possibly non-valid UTF8) string. Return None
if the JSON object is not a valid string.
val decode_string_exn : value -> string
Convert a JSON object to a (possibly non-valid UTF8) string.
val to_sexp : value -> Sexplib0.Sexp.t
Convert a JSON fragment to an S-expression.
val sexp_of_value : value -> Sexplib0.Sexp.t
An alias of to_sexp
val sexp_of_t : t -> Sexplib0.Sexp.t
Convert a JSON object to an S-expression
val of_sexp : Sexplib0.Sexp.t -> value
Convert an S-expression to a JSON fragment
val value_of_sexp : Sexplib0.Sexp.t -> value
AN alias of of_sexp
val t_of_sexp : Sexplib0.Sexp.t -> t
Convert an S-expression to a JSON object
Error handling
val to_string : value -> string
val to_string_hum : value -> string
val of_string : string -> value
exception Runtime_error of string * value