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.
Reading JSON documents and values
val from_channel : Pervasives.in_channel -> [> t ]
Read a JSON document from an input channel.
val from_string : string -> [> t ]
Read a JSON document from a string.
val value_from_channel : Pervasives.in_channel -> value
Read a JSON value from an input channel.
val value_from_string : string -> value
Read a JSON value from a string.
Writing JSON documents and values
val to_channel : ?minify:bool -> Pervasives.out_channel -> t -> unit
Write a JSON document to an output channel.
val value_to_channel : ?minify:bool -> Pervasives.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
Is the given path valid if the provided JSON document.
Find the sub-document adressed by the given path. Raise Not_found
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 -> Sexplib.Type.t
Convert a JSON fragment to an S-expression.
val sexp_of_value : value -> Sexplib.Type.t
An alias of to_sexp
val sexp_of_t : t -> Sexplib.Type.t
Convert a JSON object to an S-expression
val of_sexp : Sexplib.Type.t -> value
Convert an S-expression to a JSON fragment
val value_of_sexp : Sexplib.Type.t -> value
AN alias of of_sexp
val t_of_sexp : Sexplib.Type.t -> t
Convert an S-expression to a JSON object
Error handling
val parse_error : value -> ('a, unit, string, 'b) Pervasives.format4 -> 'a
Raise Parse_error
val to_string : value -> string
val to_string_hum : value -> string
val of_string : string -> value
exception Runtime_error of string * value