Source file struct.ml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
open Ocaml_protoc_plugin.Runtime [@@warning "-33"]
module Google = struct
module Protobuf = struct
module rec NullValue : sig
type t = NULL_VALUE
val to_int: t -> int
val from_int: int -> (t, [> Runtime'.Result.error]) result
end = struct
type t = NULL_VALUE
let to_int = function
| NULL_VALUE -> 0
let from_int = function
| 0 -> Ok NULL_VALUE
| n -> Error (`Unknown_enum_value n)
end
and Struct : sig
module rec FieldsEntry : sig
val name': unit -> string
type t = (string * Value.t option)
val make : ?key:string -> ?value:Value.t -> unit -> t
val to_proto: t -> Runtime'.Writer.t
val from_proto: Runtime'.Reader.t -> (t, [> Runtime'.Result.error]) result
end
val name': unit -> string
type t = Struct.FieldsEntry.t list
val make : ?fields:Struct.FieldsEntry.t list -> unit -> t
val to_proto: t -> Runtime'.Writer.t
val from_proto: Runtime'.Reader.t -> (t, [> Runtime'.Result.error]) result
end = struct
module rec FieldsEntry : sig
val name': unit -> string
type t = (string * Value.t option)
val make : ?key:string -> ?value:Value.t -> unit -> t
val to_proto: t -> Runtime'.Writer.t
val from_proto: Runtime'.Reader.t -> (t, [> Runtime'.Result.error]) result
end = struct
let name' () = "struct.google.protobuf.Struct.FieldsEntry"
type t = (string * Value.t option)
let make =
fun ?key ?value () ->
let key = match key with Some v -> v | None -> {||} in
(key, value)
let to_proto =
let apply = fun ~f:f' (key, value) -> f' [] key value in
let spec = Runtime'.Serialize.C.( basic (1, string, proto3) ^:: basic_opt (2, (message (fun t -> Value.to_proto t))) ^:: nil ) in
let serialize = Runtime'.Serialize.serialize [] (spec) in
fun t -> apply ~f:serialize t
let from_proto =
let constructor = fun _extensions key value -> (key, value) in
let spec = Runtime'.Deserialize.C.( basic (1, string, proto3) ^:: basic_opt (2, (message (fun t -> Value.from_proto t))) ^:: nil ) in
let deserialize = Runtime'.Deserialize.deserialize [] spec constructor in
fun writer -> deserialize writer |> Runtime'.Result.open_error
end
let name' () = "struct.google.protobuf.Struct"
type t = Struct.FieldsEntry.t list
let make =
fun ?fields () ->
let fields = match fields with Some v -> v | None -> [] in
fields
let to_proto =
let apply = fun ~f:f' fields -> f' [] fields in
let spec = Runtime'.Serialize.C.( repeated (1, (message (fun t -> Struct.FieldsEntry.to_proto t)), not_packed) ^:: nil ) in
let serialize = Runtime'.Serialize.serialize [] (spec) in
fun t -> apply ~f:serialize t
let from_proto =
let constructor = fun _extensions fields -> fields in
let spec = Runtime'.Deserialize.C.( repeated (1, (message (fun t -> Struct.FieldsEntry.from_proto t)), not_packed) ^:: nil ) in
let deserialize = Runtime'.Deserialize.deserialize [] spec constructor in
fun writer -> deserialize writer |> Runtime'.Result.open_error
end
and Value : sig
val name': unit -> string
type t = [ `not_set | `Null_value of NullValue.t | `Number_value of float | `String_value of string | `Bool_value of bool | `Struct_value of Struct.t | `List_value of ListValue.t ]
val make : ?kind:[ `not_set | `Null_value of NullValue.t | `Number_value of float | `String_value of string | `Bool_value of bool | `Struct_value of Struct.t | `List_value of ListValue.t ] -> unit -> t
val to_proto: t -> Runtime'.Writer.t
val from_proto: Runtime'.Reader.t -> (t, [> Runtime'.Result.error]) result
end = struct
let name' () = "struct.google.protobuf.Value"
type t = [ `not_set | `Null_value of NullValue.t | `Number_value of float | `String_value of string | `Bool_value of bool | `Struct_value of Struct.t | `List_value of ListValue.t ]
let make =
fun ?kind () ->
let kind = match kind with Some v -> v | None -> `not_set in
kind
let to_proto =
let apply = fun ~f:f' kind -> f' [] kind in
let spec = Runtime'.Serialize.C.( oneof ((function | `not_set -> failwith "This case should never _ever_ happen" | `Null_value v -> oneof_elem (1, (enum NullValue.to_int), v) | `Number_value v -> oneof_elem (2, double, v) | `String_value v -> oneof_elem (3, string, v) | `Bool_value v -> oneof_elem (4, bool, v) | `Struct_value v -> oneof_elem (5, (message (fun t -> Struct.to_proto t)), v) | `List_value v -> oneof_elem (6, (message (fun t -> ListValue.to_proto t)), v))) ^:: nil ) in
let serialize = Runtime'.Serialize.serialize [] (spec) in
fun t -> apply ~f:serialize t
let from_proto =
let constructor = fun _extensions kind -> kind in
let spec = Runtime'.Deserialize.C.( oneof ([ oneof_elem (1, (enum NullValue.from_int), fun v -> `Null_value v); oneof_elem (2, double, fun v -> `Number_value v); oneof_elem (3, string, fun v -> `String_value v); oneof_elem (4, bool, fun v -> `Bool_value v); oneof_elem (5, (message (fun t -> Struct.from_proto t)), fun v -> `Struct_value v); oneof_elem (6, (message (fun t -> ListValue.from_proto t)), fun v -> `List_value v) ]) ^:: nil ) in
let deserialize = Runtime'.Deserialize.deserialize [] spec constructor in
fun writer -> deserialize writer |> Runtime'.Result.open_error
end
and ListValue : sig
val name': unit -> string
type t = Value.t list
val make : ?values:Value.t list -> unit -> t
val to_proto: t -> Runtime'.Writer.t
val from_proto: Runtime'.Reader.t -> (t, [> Runtime'.Result.error]) result
end = struct
let name' () = "struct.google.protobuf.ListValue"
type t = Value.t list
let make =
fun ?values () ->
let values = match values with Some v -> v | None -> [] in
values
let to_proto =
let apply = fun ~f:f' values -> f' [] values in
let spec = Runtime'.Serialize.C.( repeated (1, (message (fun t -> Value.to_proto t)), not_packed) ^:: nil ) in
let serialize = Runtime'.Serialize.serialize [] (spec) in
fun t -> apply ~f:serialize t
let from_proto =
let constructor = fun _extensions values -> values in
let spec = Runtime'.Deserialize.C.( repeated (1, (message (fun t -> Value.from_proto t)), not_packed) ^:: nil ) in
let deserialize = Runtime'.Deserialize.deserialize [] spec constructor in
fun writer -> deserialize writer |> Runtime'.Result.open_error
end
end
end