Source file str_generate_sexp_grammar.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
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
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
open! Base
open! Ppxlib
open! Ast_builder.Default
open! Sexp.Private.Raw_grammar
module Var_name = String
module Type_name = String
module Longident = struct
include Longident
include (val Comparator.make ~compare ~sexp_of_t)
end
let debug_s message values =
Caml.prerr_endline (Sexp.to_string_hum (Sexp.message message values))
;;
let _ = debug_s
type grammar =
| Inline of grammar Sexp.Private.Raw_grammar.type_ loc
| Ref_same_group of Type_name.t loc
| Ref_other_group of Longident.t loc
type generic_group =
{ implicit_vars : var_name list
; ggid : generic_group_id
; types : (type_name * grammar type_) list
}
type group = { apply_implicit : grammar list }
let id_mapper =
object
inherit Sexp_grammar_lifter.map
method var_name x = x
method unit () = ()
method type_name x = x
method list f l = List.map l ~f
method label x = x
method int x = x
method bool x = x
method atom x = x
end
;;
let erase_locs
: grammar Sexp.Private.Raw_grammar.type_ -> grammar Sexp.Private.Raw_grammar.type_
=
id_mapper#type_ (function
| Inline x -> Inline { x with loc = Location.none }
| Ref_same_group x -> Ref_same_group { x with loc = Location.none }
| Ref_other_group x -> Ref_other_group { x with loc = Location.none })
;;
let make_generic_group ~implicit_vars ~types =
let ggid =
let types = List.map types ~f:(fun (x, g) -> x, erase_locs g) in
Caml.Digest.string (Caml.Marshal.to_string types [])
in
{ implicit_vars; types; ggid }
;;
type t =
{ grammars : grammar Map.M(Type_name).t
; generic_group : generic_group
; group : group
; loc : Location.t
; module_path : string
}
let impossible ~loc s =
Location.raise_errorf ~loc "ppx_sexp_conv: sexp_grammar: Impossible! %s" s
;;
let not_supported ~loc s =
Location.raise_errorf ~loc "ppx_sexp_conv: sexp_grammar doesn't support %s" s
;;
module Env : sig
type t
val sexp_of_t : t -> Sexp.t
val create : rec_flag -> type_declaration list -> t
val is_in_this_recursive_group : t -> Type_name.t -> bool
(** [add_implicit_variable ~loc t id] registers [id] as an implicit variable (a type
introduced by functor application) and returns the correct [Implicit_var _] to refer
to [id]. *)
val add_implicit_variable : loc:Location.t -> t -> Longident.t -> 'a type_
(** [type_for_var ~loc t type_name var] returns the right grammar (typically
[Explicit_var _]) for [var_name] in [type_name] in this recursive group. *)
val type_for_var : loc:Location.t -> t -> Type_name.t -> Var_name.t -> 'a type_
(** Register some type variables as being universally quantified. *)
val within_polymorphic_record_field : t -> Var_name.t loc list -> t
(** [with_explicit_bind ~loc t type_name type_] wraps [type_] in [Explicit_bind] if [t]
indicates that [type_name] has type variables that might otherwise be free in [type_]. *)
val with_explicit_bind : loc:Location.t -> t -> Type_name.t -> 'a type_ -> 'a type_
(** For the [implicit_vars] field of a [generic_group] value. *)
val implicit_vars : t -> Type_name.t list
(** For the [apply_implicit] field of a [group] value *)
val apply_implicit : t -> grammar list
end = struct
module Explicit_type_variables = struct
type t = Var_name.t option array
let sexp_of_t : t -> Sexp.t = Array.sexp_of_t (Option.sexp_of_t Var_name.sexp_of_t)
let create td =
List.map td.ptype_params ~f:(fun (ctype, _variance) ->
match ctype.ptyp_desc with
| Ptyp_any -> None
| Ptyp_var s -> Some s
| _ -> Location.raise_errorf ~loc:ctype.ptyp_loc "not a type parameter")
|> Array.of_list
;;
let find t name =
Array.find_mapi t ~f:(fun i var_name ->
match Option.equal String.equal var_name (Some name) with
| true -> Some i
| false -> None)
;;
let explicit_bind t type_ =
match t with
| [||] -> type_
| _ ->
let variables = Array.map t ~f:(Option.value ~default:"_") |> Array.to_list in
Explicit_bind (variables, type_)
;;
end
type init =
{
explicit : Explicit_type_variables.t Map.M(Type_name).t
;
mutable implicit : int loc Map.M(Longident).t
; rec_flag : rec_flag
}
type t =
| Init of init
| Within_polymorphic_record_field of
{
first_class_polymorphism : Set.M(Var_name).t
; t : t
}
let sexp_of_init { explicit; implicit; rec_flag } : Sexp.t =
List
[ Atom "T"
; List
[ List
[ Atom "explicit"
; Map.sexp_of_m__t
(module Type_name)
Explicit_type_variables.sexp_of_t
explicit
]
; List
[ Atom "implicit"
; Map.sexp_of_m__t
(module struct
type t = Longident.t
let sexp_of_t t = sexp_of_string (Longident.name t)
end)
(fun { loc = _; txt = int } -> sexp_of_int int)
implicit
]
; List [ Atom "rec_flag"; Ast_traverse.sexp_of#rec_flag rec_flag ]
]
]
;;
let rec sexp_of_t t : Sexp.t =
match t with
| Init init -> sexp_of_init init
| Within_polymorphic_record_field { first_class_polymorphism; t } ->
List
[ Atom "Within_polymorphic_record_field"
; List
[ List
[ Atom "first_class_polymorphism"
; Set.sexp_of_m__t (module Type_name) first_class_polymorphism
]
; List [ Atom "t"; sexp_of_t t ]
]
]
;;
let _ = sexp_of_t
let create rec_flag tds : t =
Init
{ explicit =
List.map tds ~f:(fun td -> td.ptype_name.txt, Explicit_type_variables.create td)
|> Map.of_alist_exn (module Type_name)
; implicit = Map.empty (module Longident)
; rec_flag
}
;;
let rec get_init t =
match t with
| Init init -> init
| Within_polymorphic_record_field { first_class_polymorphism = _; t } -> get_init t
;;
let add_implicit_variable ~loc t lident =
let init = get_init t in
match Map.find init.implicit lident with
| Some i -> Implicit_var i.txt
| None ->
let i = Map.length init.implicit in
init.implicit <- Map.add_exn init.implicit ~key:lident ~data:{ loc; txt = i };
Implicit_var i
;;
let sort_by_index m ~f =
Map.to_alist m |> List.sort ~compare:(fun (_, i) (_, j) -> compare (f i) (f j))
;;
let implicit_vars t =
let init = get_init t in
List.map
(sort_by_index init.implicit ~f:(fun x -> x.txt))
~f:(fun (lid, _) -> Longident.name lid)
;;
let apply_implicit t =
let init = get_init t in
List.map
(sort_by_index init.implicit ~f:(fun x -> x.txt))
~f:(fun (lident, { loc; txt = _ }) -> Ref_other_group { loc; txt = lident })
;;
let is_in_this_recursive_group t type_name =
let init = get_init t in
match init.rec_flag with
| Nonrecursive -> false
| Recursive -> Map.mem init.explicit type_name
;;
let variables_of_type ~loc init type_name =
match Map.find init.explicit type_name with
| None -> impossible ~loc ("unknown type name: " ^ type_name)
| Some variables -> variables
;;
let rec type_for_var ~loc t type_name var_name =
match t with
| Within_polymorphic_record_field { first_class_polymorphism; t } ->
(match Set.mem first_class_polymorphism var_name with
| true -> Union []
| false -> type_for_var ~loc t type_name var_name)
| Init init ->
(match
Explicit_type_variables.find (variables_of_type ~loc init type_name) var_name
with
| None -> Location.raise_errorf "unbound type parameter '%s" var_name
| Some i -> Explicit_var i)
;;
let within_polymorphic_record_field t type_names =
Within_polymorphic_record_field
{ first_class_polymorphism =
List.map type_names ~f:(fun { loc = _; txt } -> txt)
|> Set.of_list (module Type_name)
; t
}
;;
let with_explicit_bind ~loc t type_name type_ =
let init = get_init t in
Explicit_type_variables.explicit_bind (variables_of_type ~loc init type_name) type_
;;
end
let _ = Env.sexp_of_t
module Row_field = struct
type t =
| Inherit of core_type
| Tag_nullary of label
(** [Tag_sexp_list (label, ctype)] means one of these forms:
- [`Label of ctype sexp_list]
- [`Label of ctype list [@sexp.list]]. *)
| Tag_sexp_list of label * core_type
| Tag_tuple of label * core_type
let core_type_within_sexp_list args sexp_list_attribute attribute_of =
match args with
| [ [%type: [%t? type_] sexp_list] ] -> Some type_
| [ [%type: [%t? type_]] ]
when Option.is_some (Attribute.get sexp_list_attribute attribute_of) ->
(match type_ with
| [%type: [%t? type_] list] -> Some type_
| _ -> Attrs.invalid_attribute ~loc:type_.ptyp_loc sexp_list_attribute "_ list")
| _ -> None
;;
let create row_field =
match row_field.prf_desc with
| Rinherit ctype -> Inherit ctype
| Rtag ({ loc; txt = label }, nullary, possible_arg_types) ->
(match nullary, possible_arg_types with
| true , [] -> Tag_nullary label
| false, ([ ctype ] as args) ->
(match core_type_within_sexp_list args Attrs.list_poly row_field with
| Some ctype -> Tag_sexp_list (label, ctype)
| None -> Tag_tuple (label, ctype))
| false, [] ->
impossible ~loc "polymorphic variant constructor neither nullary nor not"
| true, _ :: _ | false, _ :: _ :: _ ->
not_supported ~loc "polymorphic variants with intersection types ([`A of _ & _])")
;;
end
module Opaque = struct
type t =
| Not_opaque of core_type
| Opaque
let create ctype : t =
match Attribute.get Attrs.opaque ctype with
| Some () -> Opaque
| None ->
(match ctype.ptyp_desc with
| Ptyp_constr ({ loc = _; txt = Lident "sexp_opaque" }, _) -> Opaque
| _ -> Not_opaque ctype)
;;
end
let sexp_grammar_suffix = "_sexp_grammar"
let type_of_type_constructor ~loc env lident args =
let apply_if_args tycon = function
| [] -> tycon
| args -> Apply (tycon, args)
in
match lident with
| Lident type_name when Env.is_in_this_recursive_group env type_name ->
apply_if_args (Recursive type_name) args
| Lident _ | Ldot ((Lident _ | Ldot _), _) ->
apply_if_args (Env.add_implicit_variable ~loc env lident) args
| Lapply _ -> impossible ~loc ("Expected type name, got " ^ Longident.name lident)
| Ldot ((Lapply _ as module_path), n) ->
let suffix_n functor_ = String.uncapitalize functor_ ^ "__" ^ n in
let rec gather_lapply functor_args : Longident.t -> Longident.t * _ = function
| Lapply (rest, arg) -> gather_lapply (arg :: functor_args) rest
| Lident functor_ -> Lident (suffix_n functor_), functor_args
| Ldot (functor_path, functor_) ->
Ldot (functor_path, suffix_n functor_), functor_args
in
let ident, functor_args = gather_lapply [] module_path in
let tycon = Env.add_implicit_variable ~loc env ident in
let functor_args =
List.map functor_args ~f:(fun functor_arg ->
Env.add_implicit_variable ~loc env (Ldot (functor_arg, "t")))
in
Apply (tycon, functor_args @ args)
;;
let unsupported_builtin ~loc type_name =
let ( +.+ ) a b = Ldot (a, b) in
Grammar
(Ref_other_group
{ loc
; txt =
Lident "Ppx_sexp_conv_lib"
+.+ "Sexp"
+.+ "Private"
+.+ "Raw_grammar"
+.+ type_name
})
;;
let type_of_core_type env0 type_name ctype =
let rec type_of_core_type env ctype =
match Opaque.create ctype with
| Opaque -> unsupported_builtin ~loc:ctype.ptyp_loc "opaque"
| Not_opaque { ptyp_desc; ptyp_loc = loc; ptyp_attributes = _; ptyp_loc_stack = _ } ->
(match ptyp_desc with
| Ptyp_any ->
Union []
| Ptyp_var s -> Env.type_for_var ~loc env type_name s
| Ptyp_arrow (_, _, _) -> unsupported_builtin ~loc "fun"
| Ptyp_tuple core_types ->
List
(List.map core_types ~f:(fun core_type -> One (type_of_core_type env core_type)))
| Ptyp_constr (ident, args) ->
type_of_type_constructor
~loc
env
ident.txt
(List.map args ~f:(type_of_core_type env))
| Ptyp_object (_, _) -> not_supported ~loc "objects"
| Ptyp_class (_, _) -> not_supported ~loc "classes"
| Ptyp_alias (_, _) -> not_supported ~loc "aliases"
| Ptyp_variant (row_fields, Closed, None) -> type_of_row_fields env row_fields
| Ptyp_variant (_, Open, _) | Ptyp_variant (_, _, Some _) ->
not_supported ~loc "polymorphic variants with < or >"
| Ptyp_poly (first_class_variables, core_type) ->
let env = Env.within_polymorphic_record_field env first_class_variables in
type_of_core_type env core_type
| Ptyp_package _ -> not_supported ~loc "packed modules"
| Ptyp_extension _ -> not_supported ~loc "extension nodes")
and type_of_row_fields env row_fields =
let alts, inherits =
List.partition_map row_fields ~f:(fun row_field ->
match Row_field.create row_field with
| Inherit ctype -> Second ((type_of_core_type env) ctype)
| Tag_nullary label -> First (label, [])
| Tag_sexp_list (label, ctype) ->
First (label, [ Many (type_of_core_type env ctype) ])
| Tag_tuple (label, ctype) ->
First (label, [ One (type_of_core_type env ctype) ]))
in
let types =
match alts with
| [] -> None
| _ :: _ -> Some (Variant { ignore_capitalization = false; alts })
in
match Option.to_list types @ inherits with
| [] -> unsupported_builtin ~loc:ctype.ptyp_loc "empty"
| [ type_ ] -> type_
| _ :: _ as types -> Union types
in
(type_of_core_type env0) ctype
;;
let record_type_of_label_declarations env type_name lds ~allow_extra_fields =
{ allow_extra_fields
; fields =
List.map lds ~f:(fun ld ->
let { pld_name; pld_mutable = _; pld_type; pld_loc; pld_attributes = _ } = ld in
let field =
match Attrs.Record_field_handler.Of_sexp.create ~loc:pld_loc ld with
| None ->
{ optional = false
; args = [ One (type_of_core_type env type_name pld_type) ]
}
| Some (`default _ | `omit_nil) ->
{ optional = true
; args = [ One (type_of_core_type env type_name pld_type) ]
}
| Some `sexp_bool -> { optional = true; args = [] }
| Some (`sexp_array core_type | `sexp_list core_type) ->
{ optional = true
; args = [ One (List [ Many (type_of_core_type env type_name core_type) ]) ]
}
| Some (`sexp_option core_type) ->
{ optional = true
; args = [ One (type_of_core_type env type_name core_type) ]
}
in
pld_name.txt, field)
}
;;
module Constructor_declaration = struct
type t =
| Record of
{ allow_extra_fields : bool
; fields : label_declaration list
; label : label
}
| Tuple_regular of label * core_type list
(** [Tuple_sexp_list (label, ctype)] means one of these forms:
- [Label of ctype sexp_list]
- [Label of ctype list [@sexp.list]]. *)
| Tuple_sexp_list of label * core_type
let create ({ pcd_name; pcd_args; pcd_res; pcd_loc; _ } as cd) =
match pcd_res with
| Some _ -> not_supported ~loc:pcd_loc "GADTs"
| None ->
let label = pcd_name.txt in
(match pcd_args with
| Pcstr_record fields ->
Record
{ allow_extra_fields =
Option.is_some (Attribute.get Attrs.allow_extra_fields_cd cd)
; fields
; label
}
| Pcstr_tuple args ->
(match Row_field.core_type_within_sexp_list args Attrs.list_variant cd with
| Some ctype -> Tuple_sexp_list (label, ctype )
| None -> Tuple_regular (label, args)))
;;
end
let variant env type_name constructor_declarations =
let alts =
List.map constructor_declarations ~f:(fun constructor_declaration ->
match Constructor_declaration.create constructor_declaration with
| Record { allow_extra_fields; fields; label } ->
let fields =
record_type_of_label_declarations env type_name fields ~allow_extra_fields
in
label, [ Fields fields ]
| Tuple_regular (label, ctypes) ->
let f ctype = One (type_of_core_type env type_name ctype) in
label, List.map ctypes ~f
| Tuple_sexp_list (label, ctype ) ->
label, [ Many (type_of_core_type env type_name ctype) ])
in
Variant { ignore_capitalization = true; alts }
;;
let type_of_type_declaration env td =
let loc = td.ptype_loc in
let type_name = td.ptype_name.txt in
let type_ =
match td.ptype_kind with
| Ptype_variant alts -> variant env type_name alts
| Ptype_record lds ->
Record
(record_type_of_label_declarations
env
type_name
lds
~allow_extra_fields:
(Attribute.get Attrs.allow_extra_fields_td td |> Option.is_some))
| Ptype_open -> not_supported ~loc "open types"
| Ptype_abstract ->
(match td.ptype_manifest with
| None -> unsupported_builtin ~loc "empty"
| Some core_type -> type_of_core_type env type_name core_type)
in
Env.with_explicit_bind ~loc env td.ptype_name.txt type_
;;
let create ~loc ~path rec_flag tds : t =
let env = Env.create rec_flag tds in
let grammars =
List.map tds ~f:(fun { ptype_name; _ } -> ptype_name.txt, Ref_same_group ptype_name)
|> Map.of_alist_exn (module Type_name)
in
let types =
List.map tds ~f:(fun td -> td.ptype_name.txt, type_of_type_declaration env td)
in
let generic_group = make_generic_group ~implicit_vars:(Env.implicit_vars env) ~types in
let group = { apply_implicit = Env.apply_implicit env } in
{ grammars; generic_group; group; loc; module_path = path }
;;
let collect_type_variables_of_polymorphic_grammar core_type =
match core_type with
| [%type: < for_all : [%t? { ptyp_desc = Ptyp_poly (variables, core_type); _ }] > ] ->
let var_names = List.map variables ~f:(fun { txt; loc = _ } -> txt) in
var_names, core_type
| { ptyp_desc = Ptyp_object _; _ } ->
not_supported
~loc:core_type.ptyp_loc
"objects, except the syntax [%sexp_grammar: < for_all : 'a 'b . ... >] to generate \
grammars of polymorphic types"
| _ -> [], core_type
;;
let singleton ~loc ~path core_type : t =
let name = { loc; txt = "dummy_type_name_from_sexp_grammar" } in
let params, core_type =
let type_variables, core_type =
collect_type_variables_of_polymorphic_grammar core_type
in
( List.map type_variables ~f:(fun var_name -> ptyp_var ~loc var_name, (NoVariance, NoInjectivity))
, core_type )
in
let td =
type_declaration
~loc
~name
~params
~cstrs:[]
~kind:Ptype_abstract
~private_:Public
~manifest:(Some core_type)
in
let env = Env.create Recursive [ td ] in
let types = [ name.txt, type_of_type_declaration env td ] in
{ grammars = Map.singleton (module Type_name) name.txt (Ref_same_group name)
; generic_group = make_generic_group ~implicit_vars:(Env.implicit_vars env) ~types
; group = { apply_implicit = Env.apply_implicit env }
; loc
; module_path = path
}
;;
module Pattern = struct
let the_generic_group ~loc = [%pat? _the_generic_group]
let the_group ~loc = [%pat? _the_group]
end
module Expression = struct
let the_generic_group ~loc = [%expr _the_generic_group]
let the_group ~loc = [%expr _the_group]
let list ~loc xs ~f = elist ~loc (List.map xs ~f:(f ~loc))
let tuple2 a b ~loc (a_, b_) = [%expr [%e a ~loc a_], [%e b ~loc b_]]
let map_lident_last lident ~f =
match lident with
| Lident x -> Lident (f x)
| Ldot (lident, x) -> Ldot (lident, f x)
| Lapply _ -> invalid_arg "Lapply"
;;
let of_grammar ~loc =
let type_lifter = Sexp_grammar_lifter.lifter ~loc in
let rec of_grammar = function
| Inline { loc; txt = type_ } ->
[%expr Inline [%e type_lifter#type_ of_grammar type_]]
| Ref_same_group { loc; txt = type_name } ->
[%expr Ref ([%e type_lifter#type_name type_name], [%e the_group ~loc])]
| Ref_other_group { loc; txt = lid } ->
pexp_ident
~loc
{ loc
; txt =
map_lident_last lid ~f:(fun type_name -> type_name ^ sexp_grammar_suffix)
}
in
of_grammar
;;
let of_type ~loc = (Sexp_grammar_lifter.lifter ~loc)#type_ (of_grammar ~loc)
let of_generic_group ~loc { implicit_vars; ggid; types } =
[%expr
{ implicit_vars = [%e list ~loc implicit_vars ~f:Sexp_grammar_lifter.lift_var_name]
; ggid = [%e estring ~loc ggid]
; types =
[%e list ~loc types ~f:(tuple2 Sexp_grammar_lifter.lift_type_name of_type)]
}]
;;
let of_group ~loc { apply_implicit } ~module_path =
[%expr
{ gid = Ppx_sexp_conv_lib.Lazy_group_id.create ()
; apply_implicit = [%e list ~loc apply_implicit ~f:of_grammar]
; generic_group = [%e the_generic_group ~loc]
; origin = [%e estring ~loc module_path]
}]
;;
end
let sexp_grammar_name ~loc type_name =
{ loc; txt = Lident (type_name ^ sexp_grammar_suffix) }
;;
let to_pat_and_expr { grammars; generic_group; group; loc; module_path } =
let bindings =
Map.to_alist grammars
|> List.map ~f:(fun (type_name, grammar) ->
let pat =
[%pat?
([%p ppat_var ~loc { loc; txt = type_name ^ sexp_grammar_suffix }] :
Ppx_sexp_conv_lib.Sexp.Private.Raw_grammar.t)]
in
let expr = Expression.of_grammar ~loc grammar in
pat, expr)
in
let pat = ppat_tuple (List.map bindings ~f:fst) ~loc in
let generic_group = Expression.of_generic_group ~loc generic_group in
let group = Expression.of_group ~loc group ~module_path in
let grammars =
pexp_let
Nonrecursive
(List.map bindings ~f:(fun (pat, expr) -> value_binding ~loc ~pat ~expr))
(pexp_tuple
~loc
(Map.to_alist grammars
|> List.map ~f:(fun (type_name, _) ->
pexp_ident ~loc (sexp_grammar_name ~loc type_name))))
~loc
in
let expr =
[%expr
let ([%p Pattern.the_generic_group ~loc]
: Ppx_sexp_conv_lib.Sexp.Private.Raw_grammar.generic_group)
=
[%e generic_group]
in
let ([%p Pattern.the_group ~loc] : Ppx_sexp_conv_lib.Sexp.Private.Raw_grammar.group)
=
[%e group]
in
[%e grammars]]
in
pat, expr
;;
let grammar_of_tds ~loc ~path (rec_flag, tds) =
let pat, expr = create ~loc ~path rec_flag tds |> to_pat_and_expr in
[%str let [%p pat] = [%e expr]]
;;
let sexp_grammar ~loc ~path core_type =
singleton ~loc ~path core_type |> to_pat_and_expr |> snd
;;