-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathreify.ml
More file actions
857 lines (740 loc) · 27.8 KB
/
Copy pathreify.ml
File metadata and controls
857 lines (740 loc) · 27.8 KB
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
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
(** reify generates type witness and type descriptions for
the types definitions annotated with [@@reify]. The top
level annotation [@@@reify_all] will process every type
definition in the current file, unless they are annotated
with [@@dont_reify].
[@@no_desc]] means that the desc view is not derived, but
[ty] and [ty_desc] as well as [equal] are all derived.
[@@abstract]] means that the desc view is set to Abstract, and
[ty] and [ty_desc] as well as [equal] are all derived as usual.
Class declarations are reified as abstract types by default.
Objects (anonymous classes) and polymorphic variants are
not reified yet.
A [Generic_core.Ty.t] constructor (type witness) is added
directly after each annotated type definition. The name
of the constructor is the same as the type name but with
the first letter in uppercase.
All the type witnesses that are needed must be explicitly
imported by the user in the current namespace. In
particular, the witnesses for the builtin types should be
imported from [Generic_core.Ty.T].
Be careful with name shadowing!
The PPX may be run on ML files and MLI files. In the MLI
files, only the [ty] extensions are derived.
TODO: better error locations.
Support for:
- variants but not GADTs
- extensible variants
- inline records in variant constructors
- records
- unboxed variants constructors ([@@unboxed] or [@@ocaml.unboxed])
- unboxed records ([@@unboxed] or [@@ocaml.unboxed])
- classes
- synonyms
- abstract types ([@@abstract])
*)
(* implementation notes
when using the ast_mapper approach, we often needs to pass
down contextual information down the tree. We can do that
either by using an implicit state, with mutable
variables. or by using the open recursive style of the
mapper. The later approach doesn't have side effects. We
define clojures to share the contextual information
between the records fields. (See [main] for instance)
TODO: better use multiplate!
*)
open Ast_mapper
open Ast_helper
open Asttypes
open Parsetree
open Longident
open Generic_util
exception Not_implemented
let (-<) = Fun.(-<)
let local_invalid_arg msg = invalid_arg (__MODULE__ ^ "." ^ msg)
let reify_attrname = "reify"
let reify_all_attrname = "reify_all"
let abstract_attrname = "abstract"
let no_desc_attrname = "no_desc"
let dont_reify_attrname = "dont_reify"
let generic_core_ty = Ldot (Lident "Generic_core", "Ty")
let ty_lid = Ldot (generic_core_ty, "ty")
(* predicates on attributes *)
let filter_attr attr_name =
List.filter (fun (l,p) -> l.txt = attr_name)
let has_attr attr_name attrs =
filter_attr attr_name attrs != []
let tydecl_has_attr attrname tydecl =
has_attr attrname tydecl.ptype_attributes
let filter_reify = filter_attr reify_attrname
let has_reify = has_attr reify_attrname
let tydecl_has_reify = tydecl_has_attr reify_attrname
let has_dont_reify = has_attr dont_reify_attrname
let tydecl_dont_reify = tydecl_has_attr dont_reify_attrname
let tydecl_abstract = tydecl_has_attr abstract_attrname
let tydecl_no_desc = tydecl_has_attr no_desc_attrname
(* Obtain the name of the witness given the name of the type.
(not a longident)
*)
let witness_name s = String.capitalize_ascii s
let witness_lid = function
| Ldot (Lident "Lazy", "t") -> Ldot (generic_core_ty, "Lazy")
| Lident t -> Lident (witness_name t)
| Ldot (mod_lid, t) -> Ldot (mod_lid, witness_name t)
| _ -> local_invalid_arg ("witness_lid: expected type identifier")
let loc ?(loc = !default_loc) txt = {txt; loc}
let lid s = loc (Lident s)
let to_lid {txt; loc} = {txt=Lident txt ;loc}
(* turn a core type into a label declaration with an empty name *)
let ld_of_ct ct =
{ pld_name = loc ""
; pld_mutable = Immutable
; pld_type = ct
; pld_loc = !default_loc
; pld_attributes = []
}
let exp_str s = Exp.constant (Pconst_string (s, None))
let exp_str_append x y = [%expr [%e exp_str x] ^ [%e exp_str y]]
let rec exp_str_list = function
| [] -> Exp.construct (lid "[]") None
| x :: y -> Exp.construct (lid "::") (Some [%expr ([%e exp_str x], [%e exp_str_list y])])
(** builds an expression denoting a list of expression *)
let exp_list =
Listx.foldr
(fun e es -> [%expr [%e e] :: [%e es]])
[%expr []]
let var name n = name ^ string_of_int n
(** builds a list of variable names of size [n] *)
let rec vars name n =
List.map (var name) (Listx.from_to 1 n)
(** builds a list of type variables of size [n] *)
let ty_vars n =
List.map Typ.var (vars "a" n)
let var_name = "x"
let pat_var' v n =
Pat.var (loc (var v n))
let pat_var = pat_var' var_name
(** List of pattern variables of size [n] *)
let pat_vars' v n =
List.map (pat_var' v) (Listx.from_to 1 n)
let pat_vars = pat_vars' var_name
let lid_var' v n =
lid (var v n)
let lid_var = lid_var' var_name
let exp_var' v n =
Exp.ident (lid_var' v n)
let exp_var = exp_var' var_name
let exp_vars' v n =
List.map (exp_var' v) (Listx.from_to 1 n)
let exp_vars = exp_vars' var_name
let var_names n =
List.map (var var_name) (Listx.from_to 1 n)
(** [Ty x1; ... Ty xn] *)
let ty_args n =
Pcstr_tuple (List.map (fun x -> [%type: [%t Typ.var x] Generic_core.Ty.ty]) (var_names n))
(** (x1, (x2, ..., (xn, ())...)) *)
let exp_nested_tuple =
Listx.foldr
(fun head tail -> [%expr ([%e head], [%e tail])])
[%expr ()]
(** (x1, (x2, ..., (xn, ())...)) *)
let pat_nested_tuple =
Listx.foldr
(fun head tail -> [%pat? ([%p head], [%p tail])])
[%pat? ()]
(** {f1, f2, ... fn} *)
let exp_record_pun fields =
Exp.record (List.map (fun loc -> (loc, Exp.ident loc))
fields) None
(** {f1, f2, ... fn} *)
let pat_record_pun fields =
Pat.record (List.map (fun loc -> (to_lid loc, Pat.var loc))
fields) Closed
(** General constructor where the arguments are given as a list.
*)
let cons construct tuple name =
let consN args = construct (loc name) args
in
let cons0 = consN None
and cons1 param = consN (Some param)
and cons2 params = consN (Some (tuple params))
in function
| [] -> cons0
| [p] -> cons1 p
| ps -> cons2 ps
let exp_cons n = cons Exp.construct Exp.tuple (Lident n)
let pat_cons n = cons Pat.construct Pat.tuple (Lident n)
let exp_cons' = cons Exp.construct Exp.tuple
let pat_cons' = cons Pat.construct Pat.tuple
(* a constructor expression with inlined record,
the fields are given by the the list of labels of type [string loc]
and the arguments are given by the [args] in the same order.
*)
let cons_record construct record name labels args =
let consN = construct (loc name)
in match args with
| [] ->
assert (List.length labels = 0);
consN None
| ps ->
consN (Some (record (List.combine labels args)))
let exp_cons_record n = cons_record Exp.construct (fun x -> Exp.record x None) (Lident n)
let pat_cons_record n = cons_record Pat.construct (fun x -> Pat.record x Closed) (Lident n)
(** Builds the [core_type] corresponding to [sigma ty] given
the core type representing [sigma] *)
let ty sigma = (* Typ.constr (loc ty) [param] *)
[%type: [%t sigma] Generic_core.Ty.ty]
let unit_pattern = (* Pat.construct (loc (Lident "()")) None *)
[%pat? ()]
let anys n = Listx.replicate n [%expr Generic_core.Ty.Any]
(** Builds the [Ty] constructor (eg: [Int]) from the
[core_type] representation of the type (eg: [int]) The first
argument is the list of type parameters in the context. *)
let rec witness vars ct = match ct.ptyp_desc with
| Ptyp_constr (lid, args)
-> exp_cons'
(witness_lid lid.txt)
(List.map (witness vars) args)
| Ptyp_var x
-> (try exp_var (1 + Listx.index x vars)
with Not_found -> [%expr Generic_core.Ty.Any])
| Ptyp_tuple [a;b]
-> [%expr Generic_core.Ty.Pair
([%e witness vars a], [%e witness vars b]) ]
| Ptyp_tuple [a;b;c]
-> [%expr Generic_core.Ty.Triple
([%e witness vars a], [%e witness vars b], [%e witness vars c])]
| Ptyp_tuple [a;b;c;d]
-> [%expr Generic_core.Ty.Quadruple
([%e witness vars a], [%e witness vars b], [%e witness vars c], [%e witness vars d])]
| Ptyp_tuple [a;b;c;d;e]
-> [%expr Generic_core.Ty.Quintuple
([%e witness vars a], [%e witness vars b], [%e witness vars c], [%e witness vars d], [%e witness vars e])]
| Ptyp_tuple [a;b;c;d;e;f]
-> [%expr Generic_core.Ty.Sextuple
([%e witness vars a], [%e witness vars b], [%e witness vars c], [%e witness vars d], [%e witness vars e]
, [%e witness vars f])]
| Ptyp_tuple [a;b;c;d;e;f;g]
-> [%expr Generic_core.Ty.Septuple
([%e witness vars a], [%e witness vars b], [%e witness vars c], [%e witness vars d], [%e witness vars e]
, [%e witness vars f], [%e witness vars g])]
| Ptyp_tuple [a;b;c;d;e;f;g;h]
-> [%expr Generic_core.Ty.Octuple
([%e witness vars a], [%e witness vars b], [%e witness vars c], [%e witness vars d], [%e witness vars e]
, [%e witness vars f], [%e witness vars g], [%e witness vars h])]
| Ptyp_tuple [a;b;c;d;e;f;g;h;i]
-> [%expr Generic_core.Ty.Nonuple
([%e witness vars a], [%e witness vars b], [%e witness vars c], [%e witness vars d], [%e witness vars e]
, [%e witness vars f], [%e witness vars g], [%e witness vars h], [%e witness vars i])]
| Ptyp_tuple [a;b;c;d;e;f;g;h;i;j]
-> [%expr Generic_core.Ty.Decuple
([%e witness vars a], [%e witness vars b], [%e witness vars c], [%e witness vars d], [%e witness vars e]
, [%e witness vars f], [%e witness vars g], [%e witness vars h], [%e witness vars i], [%e witness vars j])]
| _ -> [%expr Generic_core.Ty.Any]
let exp_field_mutable ld =
let field = to_lid ld.pld_name in
match ld.pld_mutable with
| Immutable -> [%expr None]
| Mutable ->
[%expr Some (fun r x -> [%e
Exp.setfield [%expr r] field [%expr x]])]
let exp_field vars ld =
[%expr { Generic_core.Desc.Field.name = [%e exp_str ld.pld_name.txt]
; Generic_core.Desc.Field.ty = [%e witness vars ld.pld_type]
; Generic_core.Desc.Field.set = [%e exp_field_mutable ld]
}]
let exp_fields vars =
Listx.foldr (fun ld ts ->
[%expr Generic_core.Desc.Fields.Cons ([%e exp_field vars ld], [%e ts])])
[%expr Generic_core.Desc.Fields.Nil]
(** {[ prod [t1;t2..;tn] = Cons (t1 , Cons (t2, ... Cons (tn, Nil) ...)) ]} *)
let prod =
Listx.foldr
(fun head tail -> [%expr Generic_core.Product.T.Cons
([%e head] , [%e tail])])
[%expr Generic_core.Product.T.Nil]
let exp_prod vars ts =
prod (List.map (witness vars) ts)
type exps_pats =
{ exps : expression list
; pats : pattern list
}
let exp_pat_args xs =
let num_args = List.length xs in
{ exps = exp_vars num_args
; pats = pat_vars num_args
}
type exp_pat =
{ exp : expression
; pat : pattern
}
type con_desc =
{ args : expression
; embed : exp_pat
; proj : exp_pat
}
let con_desc vars constr = function
| Pcstr_tuple cts ->
let a = exp_pat_args cts in
{ args = [%expr Generic_core.Desc.Con.Product [%e exp_prod vars cts]]
; embed = { pat = pat_nested_tuple a.pats
; exp = exp_cons constr a.exps }
; proj = { pat = pat_cons constr a.pats
; exp = exp_nested_tuple a.exps }
}
| Pcstr_record lds ->
let labels = List.map (fun l -> lid l.pld_name.txt) lds in
let a = exp_pat_args lds in
{ args = [%expr Generic_core.Desc.Con.Record [%e exp_fields vars lds]]
; embed = { pat = pat_nested_tuple a.pats
; exp = exp_cons_record constr labels a.exps }
; proj = { pat = pat_cons_record constr labels a.pats
; exp = exp_nested_tuple a.exps }
}
(** Builds a constructor description [Desc.Con] from :
[single]: true if the constructor is the only one for this variant.
[vars]: type parameters (free variables)
[lds]: list of the label declarations for the arguments
[constr]: name of the constructor
*)
let make_con single vars args constr =
let d = con_desc vars constr args in
[%expr Generic_core.Desc.Con.make
[%e exp_str constr]
[%e d.args]
(fun [%p d.embed.pat] -> [%e d.embed.exp])
[%e if single
then [%expr (fun [%p d.proj.pat] -> Some [%e d.proj.exp])]
else [%expr
(function
| [%p d.proj.pat] -> Some [%e d.proj.exp]
| _ -> None)]]
]
(** [single]: true if the constructor is the only one for this variant.
[vars] the type parameters of the variant.
[c] the constructor declaration.
*)
let variant_constructor single vars c =
make_con single vars c.pcd_args c.pcd_name.txt
(* The argument must be a type variable. *)
let var_name ct = match ct.ptyp_desc with
| Ptyp_var name -> name
| Ptyp_any -> "_"
| _ -> local_invalid_arg "var_name: expected type variable."
(** Returns the list of type variables names from the
parameter list of a type declaration *)
let params t =
List.map (fun (t,_) -> var_name t) t.ptype_params
let is_unboxed t =
has_attr "unboxed" t.ptype_attributes
|| has_attr "ocaml.unboxed" t.ptype_attributes
let unboxed t =
if is_unboxed t
then [%expr true] else [%expr false]
let cons unboxed e =
if unboxed
then [%expr Generic_core.Desc.Variant.unboxed_con (List.hd [%e e])]
else [%expr Generic_core.Desc.Variant.cons [%e e]]
(** Assumes [t.ptype_kind = Ptype_variant cds] *)
let desc_variant module_path t cds =
let single = List.length cds = 1 in
[%expr Generic_core.Desc.Variant
{ Generic_core.Desc.Variant.name = [%e exp_str t.ptype_name.txt]
; Generic_core.Desc.Variant.module_path = [%e exp_str_list module_path]
; Generic_core.Desc.Variant.cons =
[%e cons (is_unboxed t)
(exp_list (List.map (variant_constructor single (params t)) cds))]
; Generic_core.Desc.Variant.unboxed = [%e unboxed t]
}]
let exp_iso vars lds =
let fields = List.map (fun ld -> ld.pld_name) lds in
let lids = List.map to_lid fields in
let idents = List.map Exp.ident lids in
let vars = List.map Pat.var fields in
[%expr { Generic_util_fun.fwd = (fun [%p pat_nested_tuple vars] -> [%e exp_record_pun lids])
; Generic_util_fun.bck = (fun [%p pat_record_pun fields] -> [%e exp_nested_tuple idents])
}
]
let desc_record module_path t lds =
[%expr Generic_core.Desc.Record
{ Generic_core.Desc.Record.name = [%e exp_str t.ptype_name.txt]
; Generic_core.Desc.Record.module_path = [%e exp_str_list module_path]
; Generic_core.Desc.Record.fields = [%e exp_fields (params t) lds]
; Generic_core.Desc.Record.iso = [%e exp_iso (params t) lds]
; Generic_core.Desc.Record.unboxed = [%e unboxed t]
}
]
let desc_synonym module_path t t' =
let wt' = witness (params t) t' in
[%expr Generic_core.Desc.Synonym ([%e wt'], Generic_core.Equal.Refl)]
(** Extends [Desc_fun.view] for type [t] *)
let desc_ext module_path t =
if tydecl_abstract t then
[%expr Generic_core.Desc.Abstract]
else
match t.ptype_manifest with
| Some t' -> desc_synonym module_path t t'
| None ->
match t.ptype_kind with
| Ptype_variant cds -> desc_variant module_path t cds
| Ptype_record lds -> desc_record module_path t lds
| Ptype_abstract -> [%expr Generic_core.Desc.Abstract]
| _ -> [%expr Generic_core.Desc.NoDesc]
(* [str_witness] Build the structure item
{[
_ ty += X : x ty
]}
*)
let str_witness' ty_name num_params =
let lid_name = to_lid ty_name in
let constr = witness_name ty_name.txt in
let vars = ty_vars num_params in
(* extend Generic_core.Ty.ty *)
Str.type_extension
(Te.mk ~params:[(Typ.any (), Invariant)] (loc ty_lid)
[Te.constructor (loc constr)
(Pext_decl (* Pext_decl of constructor_arguments * core_type option *)
( Pcstr_tuple (List.map ty vars)
, Some (ty (Typ.constr lid_name vars)))
)
])
let str_witness t =
str_witness' t.ptype_name (List.length t.ptype_params)
(* [sig_witness] Build the signature item
{[
_ ty += X : x ty
]}
*)
let sig_witness' ty_name num_params =
let lid_name = to_lid ty_name in
let constr = witness_name ty_name.txt in
let vars = ty_vars num_params in
(* extend Generic_core.Ty.ty *)
Sig.type_extension
(Te.mk ~params:[(Typ.any (), Invariant)] (loc ty_lid)
[Te.constructor (loc constr)
(Pext_decl (* Pext_decl of constructor_arguments * core_type option *)
( Pcstr_tuple (List.map ty vars)
, Some (ty (Typ.constr lid_name vars)))
)
])
let sig_witness t =
sig_witness' t.ptype_name (List.length t.ptype_params)
let make_ext_con vars exp_ty pat_ty args constr =
[%stri let () = Generic_core.Desc_fun.ext_add_con
[%e exp_ty]
{ Generic_core.Desc.Ext.con =
fun (type a)
(ty : a Generic_core.Ty.ty) -> (match ty with
| [%p pat_ty]
-> [%e make_con false vars args constr]
| _ -> assert false : a Generic_core.Desc.Con.t)}
]
(* only use this function if the constructor is not a synonym *)
let ext_constructor ty params c =
let num_params = List.length params in
let pat_params = pat_vars num_params
and exp_params = anys num_params
in let exp_t = exp_cons' ty exp_params
and pat_t = pat_cons' ty pat_params
and constr = c.pext_name.txt
and args = match c.pext_kind with
| Pext_decl (args, _) -> args
| _ -> assert false
in
make_ext_con params exp_t pat_t args constr
(* Effectful statements, to update the type description:
Desc.view, and Ty_desc.ext
*)
let new_desc module_path t =
let ty_name = t.ptype_name.txt in
let constr = witness_name ty_name in
let num_params = List.length t.ptype_params in
let exp_conpat = exp_cons constr (anys num_params) in
let pat_constr = pat_cons constr (pat_vars num_params) in
let ty_desc_ext = (* extend Generic_core.Ty_desc.ext *)
make_ext_con
(var_names num_params)
[%expr Generic_core.Ty.Ty [%e exp_conpat]]
[%pat? Generic_core.Ty.Ty [%p pat_constr]]
(ty_args num_params)
constr
and desc_fun_ext = (* extend Generic_core.Desc_fun.view *)
[%stri
let () =
Generic_core.Desc_fun.ext [%e exp_conpat]
{ Generic_core.Desc_fun.f =
fun (type a) (ty : a Generic_core.Ty.ty) ->
(match ty with
| [%p pat_constr] -> [%e desc_ext module_path t]
| _ -> assert false : a Generic_core.Desc.t)
}
]
and ext_reg = (* register an extensible type *)
[%stri
let () =
Generic_core.Desc_fun.ext_register
[%e exp_conpat]
[%e exp_str ty_name]
]
in
let open_type =
t.ptype_manifest == None
&& t.ptype_kind == Ptype_open
in
[ty_desc_ext]
@
if tydecl_no_desc t
then []
else [if open_type && not (tydecl_abstract t)
then ext_reg else desc_fun_ext]
(* Extending Generic_core_equal for type [t] *)
let ext_equal t =
let ty_name = t.ptype_name.txt in
let constr = witness_name ty_name in
let num_params = List.length t.ptype_params in
let exp_conpat = exp_cons constr (anys num_params) in
let pat_constr_x = pat_cons constr (pat_vars' "x" num_params) in
let pat_constr_y = pat_cons constr (pat_vars' "y" num_params) in
let rec match_equal n =
if n <= 0 then [%expr Some (Generic_core_equal.Refl : (a, b) Generic_core_equal.equal)]
else [%expr
match Generic_core_equal.equal [%e exp_var' "x" n] [%e exp_var' "y" n] with
| Some Generic_core_equal.Refl -> [%e match_equal (n - 1)]
| _ -> None]
in
[%stri
let () =
Generic_core_equal.ext [%e exp_conpat]
{ Generic_core_equal.f =
fun (type a) (type b) (a : a ty) (b : b ty) ->
match (a, b) with
| ([%p pat_constr_x], [%p pat_constr_y]) ->
[%e match_equal num_params]
| (_, _) -> None }
]
let class_type_witness witness ctd =
match ctd with
| Pcty_constr ({txt=Lident txt;loc=loc}, params) -> (* we expect an unqualified name *)
[witness {txt;loc} (List.length params)]
| _ -> []
(** Structure and signature items have commonalities that we
capture with the `item` type. This allows us to share the
code of `new_item' for structures and signatures. *)
type item =
| Type of rec_flag * type_declaration list
| Attr of attribute
| Exn of extension_constructor (* reify only in structures *)
| TypExt of type_extension (* reify only in structures *)
| ClassType of class_description list
| ClassExpr of class_declaration list
| Other
(** checks if there is a global [@@@reify_all] attribute, and
The attribute must appear in the file before the first
type declaration.
*)
let check_reify_all proj ss =
let reify_all item = match proj item with
| Attr (attr, _)
when attr.txt = reify_all_attrname
-> Some attr
| _ -> None
and is_tydecl item = match proj item with
| Type (_,_) -> true
| _ -> false
in
let is_reify_all_attr x = reify_all x <> None in
let rest = Listx.drop_while (fun x -> not (is_reify_all_attr x
|| is_tydecl x)) ss
in
if rest = [] then false
else let first = List.hd rest in
if is_tydecl first then
match Listx.find_some reify_all rest with
| Some {txt; loc} ->
let msg = "[@@@" ^ reify_all_attrname ^ "] must be used before any type definition"
in raise (Location.Error (Location.error ~loc msg))
| None -> false
else let attrs = Listx.filter_some reify_all rest in
if List.length attrs > 1 then
match List.nth attrs 1 with
| {txt=_;loc} ->
let msg = "[@@@" ^ reify_all_attrname ^ "] must be used only once per file."
in raise (Location.Error (Location.error ~loc msg))
else true
(** Remove all occurences of the attribute "reify" *)
let rm_reify_mapper =
{ default_mapper with
attributes = fun sub attributes ->
let remove_reify =
List.filter (fun ({txt;loc},p) -> txt <> reify_attrname)
in default_mapper.attributes sub (remove_reify attributes)
}
(** Check that "reify" is used properly and remove the attribute. *)
let rm_reify_tydecl sub tydecl =
match filter_reify tydecl.ptype_attributes with
| [] -> default_mapper.type_declaration sub tydecl
| [(_,PStr [])] -> default_mapper.type_declaration rm_reify_mapper tydecl
| ({txt=_;loc},_) :: _ ->
let msg = "[@@"^ reify_attrname ^"] doesn't take any payload and should be used only once.per type declaration" in
raise (Location.Error (Location.error ~loc msg))
(** Computes the new items if the structure item is a group
of type declarations. *)
let new_items new_class new_repr ext_exn typ_ext reify_all inside_module module_name =
let class_info cis =
let cis' =
if reify_all
then List.filter (fun ci -> not (has_dont_reify ci.pci_attributes)) cis
else List.filter (fun ci -> has_reify ci.pci_attributes) cis
in
new_class (List.map (fun ci -> {ci with pci_expr = ()}) cis')
in
function
| Type (_, tydecls) ->
let types =
if reify_all
then List.filter (not -< tydecl_dont_reify) tydecls
else List.filter tydecl_has_reify tydecls
in
new_repr types
(* checking that reify_all is not used in a submodule *)
| Attr ({txt;loc}, _)
when txt = reify_all_attrname
&& inside_module
-> let msg = "[@@@" ^ reify_all_attrname
^ "] must not be used inside submodules (" ^ module_name ^ ")." (* "or in the payload of other attributes." *)
in raise (Location.Error (Location.error ~loc msg))
| Exn e ->
if reify_all
|| has_reify e.pext_attributes
then ext_exn e else []
| TypExt e ->
let attrs = e.ptyext_attributes in
if (reify_all && not (has_dont_reify attrs)
|| has_reify attrs)
then typ_ext e else []
| ClassType cds -> class_info cds
| ClassExpr ces -> class_info ces
| _ -> []
let str_proj = function
| Pstr_type (r, td) -> Type (r, td)
| Pstr_attribute (a, p) -> Attr (a, p)
| Pstr_exception e -> Exn e
| Pstr_typext e -> TypExt e
| Pstr_class cds -> ClassExpr cds
| Pstr_class_type ctds -> ClassType ctds
| _ -> Other
let sig_proj = function
| Psig_type (r, td) -> Type (r, td)
| Psig_attribute (a, p) -> Attr (a, p)
| Psig_class cds -> ClassType cds
| Psig_class_type ctds -> ClassType ctds
| _ -> Other
let tydecl_of_classinfo ci =
{ ptype_name = ci.pci_name
; ptype_params = ci.pci_params
; ptype_loc = ci.pci_loc
; ptype_attributes = ci.pci_attributes
; ptype_cstrs = []
; ptype_kind = Ptype_abstract (* we view classes as abstract types *)
; ptype_private = Public
; ptype_manifest = None
}
(** main is the mapper that is used on the whole file after
the initial parameters have been computed.
- [reify_all] states whether all types should be reified or
only those that have an attribute.
- [module_lid] is the [longident] to the current module.
*)
let rec main super reify_all module_lid =
(** [inside_module] is true inside a submodule, false in
the top level module. *)
let inside_module = match module_lid with
| Lident _ -> false
| _ -> true
in
let module_path = Longident.flatten module_lid in
let module_name = String.concat "." module_path in
let str_desc types =
(* first we extend Generic_core.Ty.t in a mutual block *)
List.map str_witness types
@ (* then we extend ty_desc and desc_fun.view *)
List.concat (List.map (new_desc module_path) types)
@ (List.map ext_equal types) (* then we extend equal *)
and sig_desc types =
List.map sig_witness types
and str_exn e =
match e.pext_kind with
| Pext_decl (args, _) ->
let constr = e.pext_name.txt in
[make_ext_con [] [%expr Exn] [%pat? Exn] args constr]
| _ -> [] (* TODO DEAL WITH THIS CASE *)
and sig_exn _ = []
and str_typ_ext e =
let params = List.map (fun (ct,_) -> var_name ct) e.ptyext_params
and ty = witness_lid e.ptyext_path.txt in
List.map (ext_constructor ty params) e.ptyext_constructors
and sig_typ_ext e = []
in let str_class cis = str_desc (List.map tydecl_of_classinfo cis)
and sig_class cis = sig_desc (List.map tydecl_of_classinfo cis)
in
let new_str_items =
new_items str_class str_desc str_exn str_typ_ext reify_all
inside_module module_name -< str_proj in
let new_sig_items =
new_items sig_class sig_desc sig_exn sig_typ_ext reify_all
inside_module module_name -< sig_proj in
let rec self =
{ super with
(** Insert new items for each type that needs to be reified.
*)
structure = (fun sub -> function
| [] -> []
| s :: ss ->
let s' = sub.structure_item sub s in
let ss' = sub.structure sub ss in
s' :: new_str_items s.pstr_desc @ ss'
)
(** keep track of the current module *)
; module_binding = (fun sub x ->
match x.pmb_expr.pmod_desc with
| Pmod_structure s ->
let m = main super reify_all
(Ldot (module_lid, x.pmb_name.txt))
in super.module_binding m x
| _ -> super.module_binding self x
)
; signature = (fun sub -> function
| [] -> []
| s :: ss ->
let s' = sub.signature_item sub s in
let ss' = sub.signature sub ss in
s' :: new_sig_items s.psig_desc @ ss'
)
}
in self
(* module.ml -> Module
*)
let module_of_file s =
String.capitalize_ascii (List.hd (String.split_on_char '.' s))
(* This mapper is only applied to the top level sructure or
signature, it computes the parameters needed by the main
mapper.
*)
let top =
let top_module () =
Lident (module_of_file !Location.input_name)
and str_reify =
check_reify_all str_proj -< List.map (fun s -> s.pstr_desc)
and sig_reify =
check_reify_all sig_proj -< List.map (fun s -> s.psig_desc)
in
{ default_mapper with
structure = (fun sub ss ->
let m = main default_mapper (str_reify ss) (top_module ())
in m.structure m ss)
; signature = (fun sub ss ->
let m = main default_mapper (sig_reify ss) (top_module ())
in m.signature m ss)
}
let () = register "reify" (fun argv -> top)