Source file ppx_deriving_ord.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
open Ppxlib
open Longident
open Asttypes
open Parsetree
open Ast_helper
open Ppx_deriving.Ast_convenience
let deriver = "ord"
let raise_errorf = Ppx_deriving.raise_errorf
let ct_attr_nobuiltin = Attribute.declare_flag "deriving.ord.nobuiltin" Attribute.Context.core_type
let ct_attr_compare = Attribute.declare "deriving.ord.compare" Attribute.Context.core_type
Ast_pattern.(single_expr_payload __) (fun e -> e)
let argn kind =
Printf.sprintf (match kind with `lhs -> "lhs%d" | `rhs -> "rhs%d")
let argl kind =
Printf.sprintf (match kind with `lhs -> "lhs%s" | `rhs -> "rhs%s")
let compare_reduce acc expr =
let loc = !Ast_helper.default_loc in
[%expr match [%e expr] with 0 -> [%e acc] | x -> x]
let reduce_compare l =
let loc = !Ast_helper.default_loc in
match List.rev l with
| [] -> [%expr 0]
| x :: xs -> List.fold_left compare_reduce x xs
let wildcard_case int_cases =
let loc = !Ast_helper.default_loc in
Exp.case [%pat? _] [%expr
let to_int = [%e Exp.function_ int_cases] in
Ppx_deriving_runtime.compare (to_int lhs) (to_int rhs)]
let pattn side typs =
List.mapi (fun i _ -> pvar (argn side i)) typs
let pattl side labels =
List.map (fun { pld_name = { txt = n } } -> n, pvar (argl side n)) labels
let pconstrrec name fields =
pconstr name [precord ~closed:Closed fields]
let rec exprn quoter typs =
typs |> List.mapi (fun i typ ->
app (expr_of_typ quoter typ) [evar (argn `lhs i); evar (argn `rhs i)])
and exprl quoter typs =
typs |> List.map (fun ({ pld_name = { txt = n }; _ } as pld) ->
app (expr_of_label_decl quoter pld)
[evar (argl `lhs n); evar (argl `rhs n)])
and expr_of_label_decl quoter { pld_type; pld_attributes } =
let attrs = pld_type.ptyp_attributes @ pld_attributes in
expr_of_typ quoter { pld_type with ptyp_attributes = attrs }
and expr_of_typ quoter typ =
let loc = typ.ptyp_loc in
let expr_of_typ = expr_of_typ quoter in
match Attribute.get ct_attr_compare typ with
| Some fn -> Ppx_deriving.quote ~quoter fn
| None ->
let typ = Ppx_deriving.remove_pervasives ~deriver typ in
match typ with
| [%type: _] -> [%expr fun _ _ -> 0]
| { ptyp_desc = Ptyp_constr _ } ->
let builtin = not (Attribute.has_flag ct_attr_nobuiltin typ) in
begin match builtin, typ with
| true, [%type: _] ->
[%expr fun _ _ -> 0]
| true, [%type: unit] ->
[%expr fun (_:unit) (_:unit) -> 0]
| true, ([%type: int] | [%type: int32] | [%type: Int32.t]
| [%type: int64] | [%type: Int64.t] | [%type: nativeint]
| [%type: Nativeint.t] | [%type: float] | [%type: bool]
| [%type: char] | [%type: string] | [%type: bytes]) ->
let compare_fn = [%expr fun (a:[%t typ]) b -> Ppx_deriving_runtime.compare a b] in
Ppx_deriving.quote ~quoter compare_fn
| true, [%type: [%t? typ] ref] ->
[%expr fun a b -> [%e expr_of_typ typ] !a !b]
| true, [%type: [%t? typ] list] ->
[%expr
let rec loop x y =
match x, y with
| [], [] -> 0
| [], _ -> -1
| _, [] -> 1
| a :: x, b :: y ->
[%e compare_reduce [%expr loop x y] [%expr [%e expr_of_typ typ] a b]]
in (fun x y -> loop x y)]
| true, [%type: [%t? typ] array] ->
[%expr fun x y ->
let rec loop i =
if i = Array.length x then 0
else [%e compare_reduce [%expr loop (i + 1)]
[%expr [%e expr_of_typ typ] x.(i) y.(i)]]
in
[%e compare_reduce [%expr loop 0]
[%expr Ppx_deriving_runtime.compare (Array.length x) (Array.length y)]]]
| true, [%type: [%t? typ] option] ->
[%expr fun x y ->
match x, y with
| None, None -> 0
| Some a, Some b -> [%e expr_of_typ typ] a b
| None, Some _ -> -1
| Some _, None -> 1]
| true, ([%type: ([%t? ok_t], [%t? err_t]) result] |
[%type: ([%t? ok_t], [%t? err_t]) Result.result]) ->
[%expr fun x y ->
match x, y with
| Error a, Error b -> [%e expr_of_typ err_t] a b
| Ok a, Ok b -> [%e expr_of_typ ok_t] a b
| Ok _ , Error _ -> -1
| Error _ , Ok _ -> 1]
| true, ([%type: [%t? typ] lazy_t] | [%type: [%t? typ] Lazy.t]) ->
[%expr fun (lazy x) (lazy y) -> [%e expr_of_typ typ] x y]
| _, { ptyp_desc = Ptyp_constr ({ txt = lid }, args) } ->
let compare_fn = Exp.ident (mknoloc (Ppx_deriving.mangle_lid (`Prefix "compare") lid)) in
app (Ppx_deriving.quote ~quoter compare_fn) (List.map expr_of_typ args)
| _ -> assert false
end
| { ptyp_desc = Ptyp_tuple typs } ->
[%expr fun [%p ptuple (pattn `lhs typs)] [%p ptuple (pattn `rhs typs)] ->
[%e exprn quoter typs |> reduce_compare]]
| { ptyp_desc = Ptyp_variant (fields, _, _); ptyp_loc } ->
let variant label popt =
Pat.variant label.txt popt
in
let cases =
fields |> List.map (fun field ->
let pdup f = ptuple [f "lhs"; f "rhs"] in
match field.prf_desc with
| Rtag(label, true , []) ->
Exp.case (pdup (fun _ -> variant label None)) [%expr 0]
| Rtag(label, false, [typ]) ->
Exp.case (pdup (fun var -> variant label (Some (pvar var))))
(app (expr_of_typ typ) [evar "lhs"; evar "rhs"])
| Rinherit({ ptyp_desc = Ptyp_constr (tname, _) } as typ) ->
Exp.case (pdup (fun var -> Pat.alias (Pat.type_ tname) (mknoloc var)))
(app (expr_of_typ typ) [evar "lhs"; evar "rhs"])
| _ ->
raise_errorf ~loc:ptyp_loc "%s cannot be derived for %s"
deriver (Ppx_deriving.string_of_core_type typ))
in
let int_cases =
fields |> List.mapi (fun i field ->
match field.prf_desc with
| Rtag(label, true , []) ->
Exp.case (variant label None) (int i)
| Rtag(label, false, [typ]) ->
Exp.case (variant label (Some [%pat? _])) (int i)
| Rinherit({ ptyp_desc = Ptyp_constr (tname, []) }) ->
Exp.case (Pat.type_ tname) (int i)
| _ -> assert false)
in
[%expr fun lhs rhs ->
[%e Exp.match_ [%expr lhs, rhs] (cases @ [wildcard_case int_cases])]]
| { ptyp_desc = Ptyp_var name } -> evar ("poly_"^name)
| { ptyp_desc = Ptyp_alias (typ, _) } -> expr_of_typ typ
| { ptyp_loc } ->
raise_errorf ~loc:ptyp_loc "%s cannot be derived for %s"
deriver (Ppx_deriving.string_of_core_type typ)
let core_type_of_decl type_decl =
let loc = type_decl.ptype_loc in
let typ = Ppx_deriving.core_type_of_type_decl type_decl in
let polymorphize = Ppx_deriving.poly_arrow_of_type_decl
(fun var -> [%type: [%t var] -> [%t var] -> Ppx_deriving_runtime.int]) type_decl in
(polymorphize [%type: [%t typ] -> [%t typ] -> Ppx_deriving_runtime.int])
let sig_of_type type_decl =
[Sig.value (Val.mk (mknoloc (Ppx_deriving.mangle_type_decl (`Prefix "compare") type_decl))
(core_type_of_decl type_decl))]
let str_of_type ({ ptype_loc = loc } as type_decl) =
let quoter = Ppx_deriving.create_quoter () in
let comparator =
match type_decl.ptype_kind, type_decl.ptype_manifest with
| Ptype_abstract, Some manifest -> expr_of_typ quoter manifest
| Ptype_variant constrs, _ ->
let int_cases =
constrs |> List.mapi (fun i { pcd_name = { txt = name }; pcd_args } ->
match pcd_args with
| Pcstr_tuple([]) -> Exp.case (pconstr name []) (int i)
| _ -> Exp.case (pconstr name [[%pat? _]]) (int i))
and cases =
constrs |> List.map (fun { pcd_name = { txt = name }; pcd_args } ->
match pcd_args with
| Pcstr_tuple(typs) ->
exprn quoter typs |> reduce_compare |>
Exp.case (ptuple [pconstr name (pattn `lhs typs);
pconstr name (pattn `rhs typs)])
| Pcstr_record(labels) ->
exprl quoter labels |> reduce_compare |>
Exp.case (ptuple [pconstrrec name (pattl `lhs labels);
pconstrrec name (pattl `rhs labels)])
)
in
[%expr fun lhs rhs ->
[%e Exp.match_ [%expr lhs, rhs] (cases @ [wildcard_case int_cases])]]
| Ptype_record labels, _ ->
let exprs =
labels |> List.map (fun ({ pld_name = { txt = name }; _ } as pld) ->
let field obj = Exp.field obj (mknoloc (Lident name)) in
app (expr_of_label_decl quoter pld)
[field (evar "lhs"); field (evar "rhs")])
in
[%expr fun lhs rhs -> [%e reduce_compare exprs]]
| Ptype_abstract, None ->
raise_errorf ~loc "%s cannot be derived for fully abstract types" deriver
| Ptype_open, _ ->
raise_errorf ~loc "%s cannot be derived for open types" deriver
in
let polymorphize = Ppx_deriving.poly_fun_of_type_decl type_decl in
let eta_expand expr =
match expr with
| { pexp_desc = Pexp_fun _; _ } -> expr
| _ -> [%expr fun x -> [%e expr] x]
in
let out_type =
Ppx_deriving.strong_type_of_type @@
core_type_of_decl type_decl in
let out_var =
pvar (Ppx_deriving.mangle_type_decl (`Prefix "compare") type_decl) in
[Vb.mk ~attrs:[Ppx_deriving.attr_warning [%expr "-39"]]
(Pat.constraint_ out_var out_type)
(Ppx_deriving.sanitize ~quoter (eta_expand (polymorphize comparator)))]
let impl_generator = Deriving.Generator.V2.make_noarg (fun ~ctxt:_ (_, type_decls) ->
[Str.value Recursive (List.concat (List.map str_of_type type_decls))])
let intf_generator = Deriving.Generator.V2.make_noarg (fun ~ctxt:_ (_, type_decls) ->
List.concat (List.map sig_of_type type_decls))
let deriving: Deriving.t =
Deriving.add
deriver
~str_type_decl:impl_generator
~sig_type_decl:intf_generator
let derive_extension =
Extension.V3.declare "derive.ord" Extension.Context.expression
Ast_pattern.(ptyp __) (fun ~ctxt:_ -> Ppx_deriving.with_quoter expr_of_typ)
let derive_transformation =
Driver.register_transformation
deriver
~rules:[Context_free.Rule.extension derive_extension]