-
Notifications
You must be signed in to change notification settings - Fork 1
/
kdl.mli
469 lines (330 loc) · 14.9 KB
/
kdl.mli
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
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
(** Implementation of the {{:https://github.com/kdl-org/kdl} KDL} Document
Language 2.0.
KDL is a serialization format and configuration language, similar to JSON,
YAML, TOML, edn, and so on.
Small examples can be found in the README of the ocaml-kdl repository.
*)
(** {1:types The definition of a KDL document} *)
module Num : sig
(** KDL numbers. *)
type t =
[ `Int of int
| `Int_raw of string
| `Decimal of string ]
(** Numeric KDL value.
Although the KDL spec does not differentiate integers and floats, a number
is parsed as [`Decimal] (stored as string) if it is written in the [e]
scientific notation or contains the [.] decimal separator. If an integer
is too large for the OCaml [int], it is parsed as [`Int_raw] instead of
[`Int]. The strings are not normalized in any way. [`Decimal] also
includes special values: ["inf"], ["-inf"], ["nan"].
In general, one should not pattern match over specific constructors of the
variant, and instead use the [to_*] functions below while matching over
[#Kdl.number as num]. *)
val to_string : [< t ] -> string
(** Convert the number to [string]. *)
val to_float : [< t ] -> float
(** Convert the number to [float]. [Failure] might be raised in case
[`Int_raw] or [`Decimal] contain an invalid literal, which should not
happen if they were constructed by the parsing functions. *)
val to_int : [< t ] -> int option
(** Convert the number to [int]. Results in [None] if [`Int_raw] or
[`Decimal] are invalid literals or do not fit in [int], or if [`Decimal]
is not a whole number. [`Decimal string] is parsed as [float]. *)
val to_int_exn : [< t ] -> int
(** Raising version of [to_int].
@raise Failure *)
val to_int32 : [< t ] -> int32 option
(** Convert the number to [int32]. The [to_int] semantics apply. *)
val to_int32_exn : [< t ] -> int32
(** Raising version of [to_int32].
@raise Failure *)
val to_int64 : [< t ] -> int64 option
(** Convert the number to [int64]. The [to_int] semantics apply. *)
val to_int64_exn : [< t ] -> int64
(** Raising version of [to_int64].
@raise Failure *)
val to_nativeint : [< t ] -> nativeint option
(** Convert the number to [nativeint]. The [to_int] semantics apply. *)
val to_nativeint_exn : [< t ] -> nativeint
(** Raising version of [to_nativeint].
@raise Failure *)
val to_int_unsigned : [< t ] -> int option
(** Unsigned version of the [to_int] conversion. *)
val to_int32_unsigned : [< t ] -> int32 option
(** Unsigned version of the [to_int32] conversion. *)
val to_int64_unsigned : [< t ] -> int64 option
(** Unsigned version of the [to_int64] conversion. *)
val to_nativeint_unsigned : [< t ] -> nativeint option
(** Unsigned version of the [to_nativeint] conversion. *)
val of_float : float -> [> t ]
val of_int : int -> [> t ]
val of_int32 : int32 -> [> t ]
val of_int64 : int64 -> [> t ]
val of_nativeint : nativeint -> [> t ]
val equal : [< t ] -> [< t ] -> bool
(** Note that a number value may not necessarily be normalized.
[`Decimal string] is parsed as [float]. *)
end
type number = Num.t
(** Alias of the [Num.t] polymorphic variant for convenience. *)
type value =
[ `String of string
| number
| `Bool of bool
| `Null ]
(** A KDL value: String, Number, Bool, Null. *)
type annot_value = string option * value
(** A KDL value with an optional type annotation.
For example, [(Some "u16", `Int 3201)] is an [annot_value]. *)
type prop = string * annot_value
(** A KDL property is a key-value pair. *)
(** A KDL node. Nodes consist of the node name, optional type annotation,
ordered arguments (values), unordered properties (a key-value map), and
children nodes.
[props] is an association list; the order of the list is unspecified. *)
type node =
{ name : string
; annot : string option
; args : annot_value list
; props : prop list
; children : node list }
type t = node list
(** A KDL document is a list of nodes. *)
(** {1 Parsing} *)
type error_loc = Lexing.position * Lexing.position
(** The error location as generated by [sedlex].
Note: the positions count unicode code points, not bytes. *)
type error = string * error_loc
(** A parsing error: pair of the error message and error location. *)
val show_error : error -> string
exception Parse_error of error
val from_string : ?fname:string -> string -> (t, error) result
(** Parse KDL from a string. The string should be UTF8-encoded. [?fname] is
an optional filename that is used in locations. *)
val from_string_exn : ?fname:string -> string -> t
(** [from_string_exn] is a raising version of [from_string].
@raise Parse_error *)
val from_channel : ?fname:string -> in_channel -> (t, error) result
(** Parse KDL from a channel. *)
val from_channel_exn : ?fname:string -> in_channel -> t
(** @raise Parse_error instead of returning a [result]. *)
val of_string : ?fname:string -> string -> (t, error) result
(** Alias for [from_string]. *)
val of_string_exn : ?fname:string -> string -> t
(** Alias for [from_string_exn]. *)
(** {1 Helpers} *)
val node : ?annot:string
-> string
-> ?args:annot_value list
-> ?props:prop list
-> node list
-> node
(** [node ?annot name ?args ?props children] constructs a {!type:node}. *)
val arg : ?annot:string -> value -> annot_value
(** [arg ?annot value] constructs an argument (that is, a value with an optional
annotation). *)
val prop : ?annot:string -> string -> value -> prop
(** [prop ?annot name value] constructs a property. *)
(** {1 Equivalence} *)
val equal_value : value -> value -> bool
val equal_annot_value : annot_value -> annot_value -> bool
val equal_prop : prop -> prop -> bool
val equal_node : node -> node -> bool
val equal : t -> t -> bool
(** {1:sexp Sexp conversions} *)
val sexp_of_value : [< value] -> Sexplib0.Sexp.t
val sexp_of_annot_value : annot_value -> Sexplib0.Sexp.t
val sexp_of_prop : prop -> Sexplib0.Sexp.t
val sexp_of_node : node -> Sexplib0.Sexp.t
val sexp_of_t : t -> Sexplib0.Sexp.t
(** {1:pretty Pretty-printing} *)
val indent : int ref
(** [indent] is the number of spaces used per indentation level.
By default, [indent] is set to [2]. *)
val pp_value : Format.formatter -> [< value] -> unit
(** Pretty-print a value. *)
val pp_annot_value : Format.formatter -> annot_value -> unit
(** Pretty-print an annotated value. *)
val pp_prop : Format.formatter -> prop -> unit
(** Pretty-print a property. *)
val pp_node : Format.formatter -> node -> unit
(** Pretty-print a node using [!indent] as the indentation width for children
nodes. *)
val pp_node_compact : Format.formatter -> node -> unit
(** Same as {!pp_node}, but outputs the result in one line. *)
val pp : Format.formatter -> t -> unit
(** Pretty-print a list of nodes or a KDL document using [!indent] as the
indentation width for children nodes. *)
val pp_compact : Format.formatter -> t -> unit
(** Same as {!pp}, but outputs the result in one line. *)
val to_string : t -> string
(** Pretty-print a KDL document into a string using {!pp}. *)
val show : t -> string
(** Alias for [to_string]. *)
(** {1:annots Type annotations} *)
(** KDL {{:https://github.com/kdl-org/kdl/blob/1.0.0/SPEC.md#type-annotation} defines}
reserved type annotations. Some of them are supported out of the box in
ocaml-kdl. An annotated value can be "interpreted" using the {!interpret}
function. If the type annotation is unknown, [`Other] is returned.
[typed_value] can be extended with custom type annotations, for example,
the following way:
{[
type typed_value = [ Kdl.typed_value
| `Date of (* ... *) ]
let interpret : _ -> typed_value = function
| Some "date", value -> `Date ((* ... parse ISO 8601 date ... *))
| x -> Kdl.interpret x
]} *)
type typed_value =
[ `I8 of int
| `I16 of int
| `I32 of int32
| `I64 of int64
| `U8 of int
| `U16 of int
| `U32 of int32
| `U64 of int64
| `Isize of nativeint
| `Usize of nativeint
| `F32 of float
| `F64 of float
| `Base64 of bytes
| `Other of string * value
| `Unannotated of value ]
exception Invalid_annotation of string
val interpret : annot_value -> [> typed_value]
(** Interpret a type-annotated value.
Note: [f32] is currently the same as [f64].
@raise Invalid_annotation if the value is invalid. For example, if the value
is annotated as "u8" but exceeds the range of u8, [Invalid_annotation] is
raised. *)
(** {1 Lenses} *)
module L : sig
(** Basic partial "lenses" for accessing deeply-nested KDL structures.
Note: These lenses are mostly meant to be used for getting, [set] is
generally inefficient. *)
type ('s, 'a) lens =
{ get : 's -> 'a option
; set : 'a -> 's -> 's option }
(** The partial lens. More formally, it is also known as affine traversal
(the combination of lens and prism). *)
val compose : ('b, 'c) lens -> ('a, 'b) lens -> ('a, 'c) lens
(** Lens composition. *)
val (//) : ('a, 'b) lens -> ('b, 'c) lens -> ('a, 'c) lens
(** [l1 // l2] is an infix operator for [compose l2 l1]. *)
val (|--) : ('a, 'b) lens -> ('b, 'c) lens -> ('a, 'c) lens
(** Alias for [(//)], the lens composition.. *)
val get : 'a -> ('a, 'b) lens -> 'b option
(** Run the getter ([lens.get]). Results in [Some value] if the lens
successfully matches, or [None] otherwise. *)
val set : 'a -> 'b -> ('a, 'b) lens -> 'a option
(** Run the setter ([lens.set]). *)
val get_exn : 'a -> ('a, 'b) lens -> 'b
(** [get_exn a l] is a raising version of [get a l].
@raise Failure *)
val set_exn : 'a -> 'b -> ('a, 'b) lens -> 'a
(** [set_exn a v l] is a raising version of [set a v l].
@raise Failure *)
val (.@()) : 'a -> ('a, 'b) lens -> 'b option
(** [(.@())] is an indexing operator for [get]. *)
val (.@()<-) : 'a -> ('a, 'b) lens -> 'b -> 'a option
(** [(.@()<-)] is an indexing operator for [set]: it allows one to write
[document.@(lens) <- value] instead of [set document value lens]. *)
val (.@!()) : 'a -> ('a, 'b) lens -> 'b
(** [(.@!())] is an indexing operator for [get_exn] (raising version of
[(.@())]). *)
val (.@!()<-) : 'a -> ('a, 'b) lens -> 'b -> 'a
(** [(.@!()<-)] is an indexing operator for [set_exn] (raising version of
[(.@()<-)]). *)
val update : ('b -> 'b option) -> 'a -> ('a, 'b) lens -> 'a option
(** The combination of [get] and [set]. *)
val node_name : (node, string) lens
(** Lens to [node.name], the node name. *)
val node_annot : (node, string) lens
(** Lens to [node.annot], the optional type annotation of a node (if the
annotation is not set, the partial lens fails). *)
val node_annot_opt : (node, string option) lens
(** Lens to [node.annot] as an [option]. Pass [None] to remove the
annotation. *)
val args : (node, annot_value list) lens
(** Lens to [node.args], the node arguments. *)
val props : (node, prop list) lens
(** Lens to [node.props], the node properties. *)
val children : (node, node list) lens
(** Lens to [node.children], i.e. all children of a node. *)
val arg : int -> (node, annot_value) lens
(** [arg n] is a lens to the [n]-th argument of a node, starting at 0.
Operates in O(n) time. *)
val prop : string -> (node, annot_value) lens
(** Lens to the property with the given name. Operates in O(n) time. *)
val node : ?nth:int -> ?annot:string -> string -> (node list, node) lens
(** [node ?nth ?annot name] is a lens to the [n]-th node with the given
name in a list. [n] is specified by the [?nth] optional argument and
defaults to the first node, i.e. 0. The search can optionally be
narrowed by passing [?annot]. *)
val node_many : ?annot:string -> string -> (node list, node list) lens
(** Same as {!val:node}, but returns all possible matches. *)
val node_nth : int -> (node list, node) lens
(** Lens to the [n]-th node in a list, starting at 0. *)
val child : ?nth:int -> ?annot:string -> string -> (node, node) lens
(** [child ?nth ?annot name] is [children // node ?nth ?annot name]. *)
val child_many : ?annot:string -> string -> (node, node list) lens
(** [child_many ?annot name] is [children // node_many ?annot name]. *)
val child_nth : int -> (node, node) lens
(** [child_nth n] is [children // node_nth n]. *)
val value : (annot_value, value) lens
(** Lens to [value] in the [annot_value] pair. *)
val annot : (annot_value, string) lens
(** Lens to [annot] in the [annot_value] pair. *)
val annot_opt : (annot_value, string option) lens
(** Lens to [annot] as an [option]. Pass [None] to unset the annotation. *)
val string : (value, string) lens
(** Lens to a string value. *)
val number : (value, number) lens
(** Lens to a numeric value. *)
val string_number : (value, string) lens
(** Lens to a numeric value represented as [string]. *)
val float_number : (value, float) lens
(** Lens to a numeric value represented as [float]. *)
val int_number : (value, int) lens
(** Lens to a numeric value represented as [int]. *)
val int32_number : (value, int32) lens
(** Lens to a numeric value represented as [int32]. *)
val int64_number : (value, int64) lens
(** Lens to a numeric value represented as [int64]. *)
val nativeint_number : (value, nativeint) lens
(** Lens to a numeric value represented as [nativeint]. *)
val bool : (value, bool) lens
(** Lens to a boolean value. *)
val null : (value, unit) lens
(** Lens to a null value. *)
val string_value : (annot_value, string) lens
(** [string_value] is [value // string]. *)
val number_value : (annot_value, number) lens
(** [number_value] is [value // number]. *)
val string_number_value : (annot_value, string) lens
(** [string_number_value] is [value // string_number]. *)
val float_number_value : (annot_value, float) lens
(** [float_number_value] is [value // float_number]. *)
val int_number_value : (annot_value, int) lens
(** [int_number_value] is [value // int_number]. *)
val int32_number_value : (annot_value, int32) lens
(** [int32_number_value] is [value // int32_number]. *)
val int64_number_value : (annot_value, int64) lens
(** [int64_number_value] is [value // int64_number]. *)
val nativeint_number_value : (annot_value, nativeint) lens
(** [nativeint_number_value] is [value // nativeint_number]. *)
val bool_value : (annot_value, bool) lens
(** [bool_value] is [value // bool]. *)
val null_value : (annot_value, unit) lens
(** [null_value] is [value // null]. *)
val top : ('a list, 'a) lens
(** Lens to the first element of a list. *)
val nth : int -> ('a list, 'a) lens
(** Lens to the [n]-th element of a list, starting at 0. *)
val each : ('a, 'b) lens -> ('a list, 'b list) lens
(** Apply a lens to multiple items. Example:
[top // child_many "paragraph" // each (arg 0 // value)]. *)
val filter : ('a -> bool) -> ('a list, 'a list) lens
end