package ppx_protocol_conv
Install
Dune Dependency
Authors
Maintainers
Sources
md5=891e1169b50d6ba3f08efea77e80ce3a
sha512=c1801c78dba94cd4c67aae5715c580e8a8d963bf064c1e45dffcebd50f13e1b2acf23a07e19231a22ed97970b1b42fb79dee27e6a14c9fc643815fddf6ceab6d
Description
Ppx_protocol_conv generates code to serialise and de-serialise types. The ppx itself does not contain any protocol specific code, but relies on 'drivers' that defines serialisation and de-serialisation of basic types and structures.
Pre-defined drivers are available in separate packages: ppx_protocol_conv_json (Yojson.Safe.json) ppx_protocol_conv_msgpack (Msgpck.t)(Xml.xml) ppx_protocol_conv_xml-light (Xml.xml) ppx_protocol_conv_yaml (Yaml.t)
Published: 16 Feb 2019
README
Ppx Protocol Conv
Ppx protocol conv (de)serialisers using deriving, which allows for plugable (de)serialisers. Api.
Features
The ppx supports the following features:
records
recursive and non-recursive types
variants
polymophic variants
All primitive types (except nativeint)
The following drivers exists
Json
which serialises toYojson.Safe.t
Jsonm
which serialises toEzjsonm.value
Xml_light
which serialises toXml.xml list
Msgpack
which serialises toMsgpck.t
Yaml
which serialises toYaml.t
Example Usage
open Protocol_conv
open Protocol_conv_json
type a = {
x: int;
y: string [@key "Y"]
} [@@deriving protocol ~driver:(module Json) ~flags:(`Mangle Json.mangle)]
type b = A of int
| B of int [@key "b"]
| C
[@@deriving protocol ~driver:(module Json)]
will generate the functions:
val a_to_json: a -> Json.t
val a_of_json: Json.t -> a
val b_to_json: a -> Json.t
val b_of_json: Json.t -> a
a_to_json { x=42; y:"really" }
Evaluates to
[ "x", `Int 42; "Y", `String "really"] (* Yojson.Safe.json *)
to_protocol
deriver will generate serilisation of the type. of_protocol
deriver generates de-serilisation of the type, while protocol
deriver will generate both serilisation and de-serilisation functions.
Flags can be specified using the driver argument ~flags. For the json and msgpack drivers, the mangle
function transforms record label names to be lower camelcase: a_bc_de -> aBcDe and a_bc_de_ -> aBcDe. Beware that this may cause name collisions, which can only be determined at runtime.
Attributes
Record label names can be changed using [@key <string>]
Variant constructors names can also be changed using the [@key <string>]
attribute.
Signatures
The ppx also handles signature, but disallows [@key ...]
and ~flags:...
as these does not impact signatures.
Drivers
Notes on type mappings
All included driver allow for the identity mapping by using the <driver>.t
type, i.e.:
type example = {
json: Json.t; (* This has type Yojson.Safe.t *)
}
Json
Maps to and from Yojson.Safe.t
Options
the Msgpack driver accepts the following options:
Option | Description | Example |
---|---|---|
Mangle of (string -> string) | Maps record field names | [@@deriving protocol ~driver:(module Json) ~flags:(Mangle Json.mangle] |
||
Mangles names: a_bc_de -> aBcDe , ab_ -> ab , `ab_cd__ -> abCd' | |
Types
Ocaml type | Generates | Accepts |
---|---|---|
string | `String | `String |
bytes | `String | `String |
int | `Int | `Int |
int32 | `Int | `Int |
int64 | `Int | `Int |
float | `Float | `Float |
unit | `List [] | `List [] |
Json.t | Yojson.Safe.t | Yojson.Safe.t |
Jsonm
Converts to and from Ezjsonm.value
. Types and arguments are the same as for the Json implementation.
Msgpack
Msgpack driver maps to and from Msgpck.t
. To allow more finegrained control over generated type, the msgpack module defines extra types. See table in #types section.
Options
The Msgpack driver accepts the following options:
Option | Description | Example |
---|---|---|
Mangle of (string -> string) | Maps record field names | [@@deriving protocol ~driver:(module Json) ~flags:(Mangle Json.mangle] |
||
Mangles names: a_bc_de -> aBcDe , ab_ -> ab , `ab_cd__ -> abCd' | |
Types
Ocaml type | Generates | Accepts |
---|---|---|
string | String | String, Bytes |
int | Int | Int, Int32, Int64, Uint32, Uint64 |
int32 | Int32 | Int32 |
int64 | Int64 | Int64 |
float | Float64 | Float64, Float32 |
unit | List [] | List [] |
Msgpack.uint32 | Uint32 | Uint32 |
Msgpack.uint64 | Uint64 | Uint64 |
Msgpack.bytes | Bytes | Bytes, String |
Msgpack.float32 | Float32 | Float32 |
Msgpack.t | MsgPck.t | MsgPck.t |
Yaml
Converts to and from Yaml.value
Types
Ocaml type | Generates | Accepts |
---|---|---|
string | `String | `String |
bytes | `String | `String |
int | `Float | `Float* |
int32 | `Float | `Float* |
int64 | `Float | `Float* |
float | `Float | `Float |
unit | `List [] | `List [] |
Yaml.t | Yaml.t | Yaml.t |
(*) Expects abs(round(f) - f) < 0.000001
Custom drivers
It is easy to provide custom drivers by implementing the signature:
include Protocol_conv.Runtime.Driver with
type t = ... and
type 'a flags = ...
See the drivers directory for examples on how to implemented new drivers. Submissions of new drivers are welcome.
Not supported
Generalised algebraic datatypes
Extensible types
Extensible polymorphic variants
nativeint
Dev Dependencies (3)
-
ounit
with-test
-
sexplib
with-test & < "v0.14"
-
ppx_sexp_conv
with-test & < "v0.14"
Used by (6)
-
ppx_deriving_protocol
>= "0.8.1"
-
ppx_protocol_conv_json
= "3.1.3"
-
ppx_protocol_conv_jsonm
= "3.1.3"
-
ppx_protocol_conv_msgpack
= "3.1.3"
-
ppx_protocol_conv_xml_light
= "3.1.3"
-
ppx_protocol_conv_yaml
= "3.1.3"
Conflicts
None