Module Jsonxt__.Extended
- type json- = Jsonxt.Json.Extended.json
- type t- = json
Reader functions
include Jsonxt__.Reader_string_file.Reader_string_file with type json := json
- val json_of_string : string -> (json, string) Stdlib.result
- json_of_string stringconverts- stringto a- jsonvalue returing an error if the string has syntax, grammar or compliance errors
- val json_of_string_exn : string -> json
- json_of_string_exn stringconverts- stringto a- jsonvalue raising a- Failureexception if the string has syntax, grammar or compliance errors
- val json_of_file : string -> (json, string) Stdlib.result
- json_of_file fileconverts the text from- fileto a- jsonvalue returing an error if the file contents have syntax, grammar or compliance errors. The file is closed on error
- val json_of_file_exn : string -> json
- json_of_file fileconverts the text from- fileto a- jsonvalue raising a- Failureexception if the file contents have syntax, grammar or compliance errors. The file is closed on error
- val json_of_channel : Stdlib.in_channel -> (json, string) Stdlib.result
- json_of_channel channelconverts the text from- channelto a- jsonvalue returing an error if the channel contents have syntax, grammar or compliance errors. The channel is not closed
- val json_of_channel_exn : Stdlib.in_channel -> json
- json_of_channel channelconverts the text from- channelto a- jsonvalue raising a- Failureexception if the channel contents have syntax, grammar or compliance errors. The file is not closed
- val json_of_function : (bytes -> int -> int) -> (json, string) Stdlib.result
- json_of_function fconverts text provided by- fto a- jsonvalue returing an error if the supplied text has syntax, grammar or compliance errors. The function- f buf lentakes a- bytes- bufbuffer, the maximum number of bytes to read- lenand returns the number of bytes read. Returning 0 indicates end-of-file
- val json_of_function_exn : (bytes -> int -> int) -> json
- json_of_function_exn fconverts text provided by- fto a- jsonvalue raising a- Failureexception if the channel contents have syntax, grammar or compliance errors. See- json_of_functionfor detail of function- f
- val json_of_lexbuf : Stdlib.Lexing.lexbuf -> (json, string) Stdlib.result
- json_of_lexbuf lexbufconverts text in the supplied- lexbufto a- jsonvalue returning an error if the supplied text has syntax, grammar or compliance errors. This is a low level function and json_of_function should be used in preference
- val json_of_lexbuf_exn : Stdlib.Lexing.lexbuf -> json
- json_of_lexbuf_exn lexbufconverts text in the supplied- lexbufto a- jsonvalue raising a- Failureexception if the supplied text has syntax, grammar or compliance errors. This is a low level function and json_of_function_exn should be used in preference
- val of_string : string -> json
- of_stringis an alias for json_of_string_exn
- val of_file : string -> json
- of_fileis an alias for json_of_file_exn
- val of_channel : Stdlib.in_channel -> json
- of_channelis an alias for json_of_channel_exn
- val of_function : (bytes -> int -> int) -> json
- of_functionis an alias for json_of_function_exn
Error_info.t returning functions
The following functions are identical to the functions without the _error_info extension except they return an (json, Error_info.t) result instead of a (json, string) result. See Jsonxt.Error_info for details of of Error_info.t
- val json_of_string_error_info : string -> (json, Jsonxt.Error_info.t) Stdlib.result
- val json_of_file_error_info : string -> (json, Jsonxt.Error_info.t) Stdlib.result
- val json_of_channel_error_info : Stdlib.in_channel -> (json, Jsonxt.Error_info.t) Stdlib.result
- val json_of_function_error_info : (bytes -> int -> int) -> (json, Jsonxt.Error_info.t) Stdlib.result
- val json_of_lexbuf_error_info : Stdlib.Lexing.lexbuf -> (json, Jsonxt.Error_info.t) Stdlib.result
compatablity functions for internal use
- val json_of_lexbuf_error_info_compat : ?stream:bool -> Stdlib.Lexing.lexbuf -> (json option, Jsonxt.Error_info.t) Stdlib.result
Stream.t readers
Stream.t readers provide a mechanism to read a stream of JSON values. eg
{"datapoint": 1, "value": 2}
{"datapoint": 2, "value": 5}- val stream_from_string : string -> json Stdlib.Stream.t
- stream_from_string stringconverts- stringcontaining zero or more json object to a- json Stream.tvalue raising a- Failureexception if the string has syntax, grammar or compliance errors
- val stream_from_channel : ?fin:(unit -> unit) -> Stdlib.in_channel -> json Stdlib.Stream.t
- stream_from_channel in_channelconverts the text from- in_channel, containing zero or more json objects, to a- json Stream.tvalue raising a- Failureexception if the file has syntax, grammar or compliance errors. The optional parameter- finspecifies a function to call when all json objects have been returned or a failure occurs
- val stream_from_file : string -> json Stdlib.Stream.t
- stream_from_file filenameconverts the text from file- filename, containing zero or more json objects, to a- json Stream.tvalue raising a- Failureexception if the file has syntax, grammar or compliance errors
- val stream_from_function : (bytes -> int -> int) -> json Stdlib.Stream.t
- stream_from_function fconverts text provided by- f, containing zero of more JSON objects, to a- json Stream.tvalue raising a- Failureexception if the file has syntax, grammar or compliance errors. The function- f buf lentakes a- bufbuffer to fill, the maximum number of bytes to read- lenand returns the number of bytes read. Returning 0 indicates end-of-file
- val stream_from_lexbuf : Stdlib.Lexing.lexbuf -> json Stdlib.Stream.t
- stream_from_file lexbufconverts the text from- lexbuf, containing zero or more json objects, to a- json Stream.tvalue raising a- Failureexception if the file has syntax, grammar or compliance errors. This is a low level function and stream_from_function should be used in preference
Error_info.Json_error_info raising Stream.t functions
The following functions are identical to the functions without the _error_info extension except they raise an Error_info.Json_error_info Error_info.t exception instead of a Failure string. See Jsonxt.Error_info for details of the exception
- val stream_from_string_error_info : string -> json Stdlib.Stream.t
- val stream_from_channel_error_info : ?fin:(unit -> unit) -> Stdlib.in_channel -> json Stdlib.Stream.t
- val stream_from_file_error_info : string -> json Stdlib.Stream.t
- val stream_from_function_error_info : (bytes -> int -> int) -> json Stdlib.Stream.t
- val stream_from_lexbuf_error_info : Stdlib.Lexing.lexbuf -> json Stdlib.Stream.t
Writer functions
include Jsonxt__.Writer_intf.Intf with type json := Jsonxt.Json.Extended.json
- val json_to_string : json -> (string, string) Stdlib.result
- json_to_string jsonconverts- jsonto a- string, returning an error if the json value contains data that fails compliance checks
- val json_to_string_exn : json -> string
- json_to_string_exn jsonconverts- jsonto a- string, raising a- Failureexcepion if the json value contains data that fails compliance checks
- val to_string : json -> string
- to_stringis an alias for json_to_string_exn
- val json_to_string_hum : json -> (string, string) Stdlib.result
- json_to_string_hum jsonconverts- jsonto a- stringin human readable format, returning an error if the json value contains data that fails compliance checks
- val json_to_string_hum_exn : json -> string
- json_to_string_hum_exn jsonconverts- jsonto a- stringin human readable format, raising a- Failureexcepion if the json value contains data that fails compliance checks
- val to_string_hum : json -> string
- to_string_humis an alias for json_to_string_hum_exn
- val json_to_file : string -> json -> (unit, string) Stdlib.result
- json_to_file file jsonconverts- jsonto a string and writes it to- file, returning an error if the json value contains data that fails compliance checks. The file will be closed on error.
- val json_to_file_hum : string -> json -> (unit, string) Stdlib.result
- json_to_file_hum file jsonconverts- jsonto a string in human readable format and writes it to- file, returning an error if the json value contains data that fails compliance checks. The file will be closed on error.
- val json_to_file_exn : string -> json -> unit
- json_to_file_exn file jsonconverts- jsonto a string and writes it to- file, raising a- Failureexception if the json value contains data that fails compliance checks. The file will be closed on error.
- val json_to_file_hum_exn : string -> json -> unit
- json_to_file_hum_exn file jsonconverts- jsonto a string in human readable format and writes it to- file, raising- Failureexception if the json value contains data that fails compliance checks. The file will be closed on error.
- val json_to_channel : Stdlib.out_channel -> json -> (unit, string) Stdlib.result
- json_to_channel channel jsonconverts- jsonto a string and writes it to- channel, returning an error if the json value contains data that fails compliance checks. The channel is not closed.
- val json_to_channel_exn : Stdlib.out_channel -> json -> unit
- json_to_channel_exn channel jsonconverts- jsonto a string and writes it to- channel, raising a- Failureexception if the json value contains data that fails compliance checks. The channel will be closed on error.
- val json_to_channel_hum : Stdlib.out_channel -> json -> (unit, string) Stdlib.result
- json_to_channel_hum channel jsonconverts- jsonto a string in human readable format and writes it to- channel, returning an error if the json value contains data that fails compliance checks. The channel is not closed.
- val json_to_channel_hum_exn : Stdlib.out_channel -> json -> unit
- json_to_channel_hum_exn channel jsonconverts- jsonto a string in human readable format and writes it to- channel, raising- Failureexception if the json value contains data that fails compliance checks. The channel is not closed
- val to_file : string -> json -> unit
- to_fileis an alias for json_to_file_exn
- val to_file_hum : string -> json -> unit
- to_file_humis an alias for json_to_file_hum_exn
- val to_channel : Stdlib.out_channel -> json -> unit
- to_channelis an alias for json_to_channel_exn
- val to_channel_hum : Stdlib.out_channel -> json -> unit
- to_channel_humis an alias for json_to_channel_hum_exn
- val json_to_buffer : Stdlib.Buffer.t -> json -> (unit, string) Stdlib.result
- json_to_buffer buf jsonconverts and outputs- jsonto the supplied- buf, returning an error if the json value contains data that fails compliance checks.
- val json_to_buffer_exn : Stdlib.Buffer.t -> json -> unit
- json_to_buffer_exn buf jsonconverts and outputs- jsonto the supplied- buf, raising a- Failureexception if the json value contains data that fails compliance checks.
- val json_to_buffer_hum : Stdlib.Buffer.t -> json -> (unit, string) Stdlib.result
- json_to_buffer_hum buf jsonconverts and outputs- jsonin a human readable format to the supplied- buf, returning an eror if the json value contains data that fails compliance checks.
- val json_to_buffer_hum_exn : Stdlib.Buffer.t -> json -> unit
- json_to_buffer_hum_exn buf jsonconverts and outputs- jsonin a human readable format to the supplied- buf, raising a- Failureexception if the json value contains data that fails compliance checks.
- val to_buffer : Stdlib.Buffer.t -> json -> unit
- to_bufferis an alias for json_to_buffer_exn
- val to_buffer_hum : Stdlib.Buffer.t -> json -> unit
- to_buffer_humis an alias for json_to_buffer_hum_exn
- val pretty_print : Stdlib.Format.formatter -> json -> unit
- pretty_print out jsonpretty prints the- jsontree to the- Formater.formatterThe output is more compact than the _hum versions but still readable
- val pretty_print_to_string : json -> string
- pretty_print_to_string jsonconverts the- jsontree into a pretty printed string. The output is more compact than the _hum versions but still readable
- val pretty_print_to_channel : Stdlib.out_channel -> json -> unit
- pretty_print oc jsonpretty prints the- jsontree to the output channel- outThe output is more compact than the _hum versions but still readable
- val stream_to_string : json Stdlib.Stream.t -> string
- stream_to_string streamconverts a- Stream.tof- jsonvalues to a string, separating the enties with newlines
- val stream_to_channel : Stdlib.out_channel -> json Stdlib.Stream.t -> unit
- stream_to_channel out_channelconverts a- Stream.tof- jsonvalues to a newline separated list of compact json strings and outputs them to- out_channel
- val stream_to_file : string -> json Stdlib.Stream.t -> unit
- stream_to_file stream fileconverts a- Stream.tof- jsonvalues to a newline separated list of compact json strings and outputs them to- file
- val stream_to_buffer : Stdlib.Buffer.t -> json Stdlib.Stream.t -> unit
- stream_to_buffer buf streamconverts a- Stream.tof- jsonvalues to compact strings and outputs them, separating by newlines, to- buf
Processing functions
module Process : sig ... endInternal modules
module Compliance : Jsonxt__.Compliance.S with type json = Jsonxt.Json.Extended.json and type json_stream = Jsonxt.Json_stream.Extended.json