Source file validators.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
open Ppxlib
open Exps
open Simple_type
type number = Int of int | Float of float [@@deriving show]
type func = Var of expression | Func of expression
let = function Var var -> var | Func func -> func
let = function
| Some r -> Some (extract_func r)
| None -> None
let process_numeric_attribute = function
| Pconst_integer (i, _) -> Int (int_of_string i)
| Pconst_float (f, _) -> Float (float_of_string f)
| _ -> Location.raise_errorf "Attribute must be an integer or float"
let number_attribute name context =
Attribute.declare
Printf.(sprintf "ppx_derive_validate.%s" name)
context
Ast_pattern.(single_expr_payload (pexp_constant __))
process_numeric_attribute
let int_attrribute name context =
Attribute.declare
Printf.(sprintf "ppx_derive_validate.%s" name)
context
Ast_pattern.(single_expr_payload (eint __))
(fun x -> x)
let string_attrribute name context =
Attribute.declare
Printf.(sprintf "ppx_derive_validate.%s" name)
context
Ast_pattern.(single_expr_payload (estring __))
(fun x -> x)
let unit_attribute name context =
Attribute.declare
Printf.(sprintf "ppx_derive_validate.%s" name)
context
Ast_pattern.(pstr nil)
()
let function_attribute name context =
Attribute.declare name context
Ast_pattern.(pstr (pstr_eval __ nil ^:: nil))
(fun x ->
match x with
| { pexp_desc = Pexp_ident _; _ } -> Var x
| { pexp_desc = Pexp_fun (Nolabel, None, _, _); _ } -> Func x
| _ -> failwith "Unsupported expression type for attribute")
type 'a validator_params = {
name : string;
build_exp : 'a -> loc_type -> expression option;
}
let get_exp attr (build_exp : 'a -> expression) v loc_type =
Attribute.get attr v |> Option.map (fun x -> build_exp (x, loc_type))
let length_exp f =
match f.typ with
| String -> module_ident_exp ~loc:f.loc "String" "length"
| List _ -> module_ident_exp ~loc:f.loc "List" "length"
| _ ->
Location.raise_errorf ~loc:f.loc "length is not supported for this type"
let validate_number_func_exp ~loc name value =
match value with
| Int i ->
validate_func_exp name ~loc
[
(Nolabel, simple_ident_exp ~loc "string_of_int"); (Nolabel, int_exp i);
]
| Float f ->
validate_func_exp name ~loc
[
(Nolabel, simple_ident_exp ~loc "string_of_float");
(Nolabel, float_exp f);
]
let validators ctx =
[
{
name = "min_length";
build_exp =
get_exp (int_attrribute "min_length" ctx) (fun (x, loc_type) ->
validate_func_exp "validate_min_length" ~loc:loc_type.loc
[ (Nolabel, length_exp loc_type); (Nolabel, int_exp x) ]);
};
{
name = "max_length";
build_exp =
get_exp (int_attrribute "max_length" ctx) (fun (x, loc_type) ->
validate_func_exp "validate_max_length" ~loc:loc_type.loc
[ (Nolabel, length_exp loc_type); (Nolabel, int_exp x) ]);
};
{
name = "length_equals";
build_exp =
get_exp (int_attrribute "length_equals" ctx) (fun (x, loc_type) ->
validate_func_exp "validate_length_equals" ~loc:loc_type.loc
[ (Nolabel, length_exp loc_type); (Nolabel, int_exp x) ]);
};
{
name = "url";
build_exp =
get_exp (unit_attribute "url" ctx) (fun (_, loc_type) ->
validate_func_exp "validate_url" ~loc:loc_type.loc []);
};
{
name = "uuid";
build_exp =
get_exp (unit_attribute "uuid" ctx) (fun (_, loc_type) ->
validate_func_exp "validate_uuid" ~loc:loc_type.loc []);
};
{
name = "ulid";
build_exp =
get_exp (unit_attribute "ulid" ctx) (fun (_, loc_type) ->
validate_func_exp "validate_ulid" ~loc:loc_type.loc []);
};
{
name = "email";
build_exp =
get_exp (unit_attribute "email" ctx) (fun (_, loc_type) ->
validate_func_exp "validate_email" ~loc:loc_type.loc []);
};
{
name = "numeric";
build_exp =
get_exp (unit_attribute "numeric" ctx) (fun (_, loc_type) ->
validate_func_exp "validate_numeric" ~loc:loc_type.loc []);
};
{
name = "alpha";
build_exp =
get_exp (unit_attribute "alpha" ctx) (fun (_, loc_type) ->
validate_func_exp "validate_alpha" ~loc:loc_type.loc []);
};
{
name = "alphanumeric";
build_exp =
get_exp (unit_attribute "alphanumeric" ctx) (fun (_, loc_type) ->
validate_func_exp "validate_alphanumeric" ~loc:loc_type.loc []);
};
{
name = "lowercase";
build_exp =
get_exp (unit_attribute "lowercase" ctx) (fun (_, loc_type) ->
validate_func_exp "validate_lowercase" ~loc:loc_type.loc []);
};
{
name = "lowercase_alphanumeric";
build_exp =
get_exp (unit_attribute "lowercase_alphanumeric" ctx)
(fun (_, loc_type) ->
validate_func_exp "validate_lowercase_alphanumeric"
~loc:loc_type.loc []);
};
{
name = "uppercase";
build_exp =
get_exp (unit_attribute "uppercase" ctx) (fun (_, loc_type) ->
validate_func_exp "validate_uppercase" ~loc:loc_type.loc []);
};
{
name = "uppercase_alphanumeric";
build_exp =
get_exp (unit_attribute "uppercase_alphanumeric" ctx)
(fun (_, loc_type) ->
validate_func_exp "validate_uppercase_alphanumeric"
~loc:loc_type.loc []);
};
{
name = "less_than";
build_exp =
get_exp (number_attribute "less_than" ctx) (fun (x, loc_type) ->
validate_number_func_exp ~loc:loc_type.loc "validate_less_than" x);
};
{
name = "less_than_or_equal";
build_exp =
get_exp (number_attribute "less_than_or_equal" ctx)
(fun (x, loc_type) ->
validate_number_func_exp ~loc:loc_type.loc
"validate_less_than_or_equal" x);
};
{
name = "greater_than";
build_exp =
get_exp (number_attribute "greater_than" ctx) (fun (x, loc_type) ->
validate_number_func_exp ~loc:loc_type.loc "validate_greater_than" x);
};
{
name = "greater_than_or_equal";
build_exp =
get_exp (number_attribute "greater_than_or_equal" ctx)
(fun (x, loc_type) ->
validate_number_func_exp ~loc:loc_type.loc
"validate_greater_than_or_equal" x);
};
{
name = "equal_to";
build_exp =
get_exp (number_attribute "equal_to" ctx) (fun (x, loc_type) ->
validate_number_func_exp ~loc:loc_type.loc "validate_equal_to" x);
};
{
name = "not_equal_to";
build_exp =
get_exp (number_attribute "not_equal_to" ctx) (fun (x, loc_type) ->
validate_number_func_exp ~loc:loc_type.loc "validate_not_equal_to" x);
};
{
name = "regex";
build_exp =
get_exp (string_attrribute "regex" ctx) (fun (x, loc_type) ->
validate_func_exp "validate_str_regex" ~loc:loc_type.loc
[ (Nolabel, string_exp ~loc:loc_type.loc x) ]);
};
{
name = "ipv4";
build_exp =
get_exp (unit_attribute "ipv4" ctx) (fun (_, loc_type) ->
validate_func_exp "validate_ipv4" ~loc:loc_type.loc []);
};
{
name = "ipv6";
build_exp =
get_exp (unit_attribute "ipv6" ctx) (fun (_, loc_type) ->
validate_func_exp "validate_ipv6" ~loc:loc_type.loc []);
};
{
name = "phone";
build_exp =
get_exp (unit_attribute "phone" ctx) (fun (_, loc_type) ->
validate_func_exp "validate_phone_number" ~loc:loc_type.loc []);
};
{
name = "mac_address";
build_exp =
get_exp (unit_attribute "mac_address" ctx) (fun (_, loc_type) ->
validate_func_exp "validate_mac_address" ~loc:loc_type.loc []);
};
{
name = "custom";
build_exp =
get_exp (function_attribute "custom" ctx) (fun (exp, _) ->
match exp with Var var -> var | Func func -> func);
};
{
name = "some";
build_exp =
get_exp (unit_attribute "some" ctx) (fun (_, loc_type) ->
validate_func_exp "validate_some" ~loc:loc_type.loc []);
};
{
name = "none";
build_exp =
get_exp (unit_attribute "none" ctx) (fun (_, loc_type) ->
validate_func_exp "validate_none" ~loc:loc_type.loc []);
};
{
name = "some_if";
build_exp =
get_exp (function_attribute "some_if" ctx) (fun (func, loc_type) ->
let exp = func |> extract_func in
let condition =
apply_exp exp
[ (Nolabel, simple_ident_exp ~loc:loc_type.loc "x") ]
in
validate_func_exp "validate_some_if" ~loc:loc_type.loc
[ (Nolabel, condition) ]);
};
{
name = "none_if";
build_exp =
get_exp (function_attribute "none_if" ctx) (fun (func, loc_type) ->
let exp = func |> extract_func in
let condition =
apply_exp exp
[ (Nolabel, simple_ident_exp ~loc:loc_type.loc "x") ]
in
validate_func_exp "validate_none_if" ~loc:loc_type.loc
[ (Nolabel, condition) ]);
};
]
let ct_validators = validators Attribute.Context.core_type
let ld_validators = validators Attribute.Context.label_declaration
let ct_dive_attribute = unit_attribute "dive" Attribute.Context.core_type
let ct_ignore_if_attribute =
function_attribute "ignore_if" Attribute.Context.core_type
let ct_divable ct = Attribute.get ct_dive_attribute ct |> Option.is_some
let rec cts_has_recursive cts searched_type =
let loc_types = List.map extract_loc_type cts in
let cts_to_loc_types = List.combine cts loc_types in
let recursive (ct, loc_type) =
match loc_type.typ with
| List (_, ct) -> cts_has_recursive [ ct ] searched_type
| Option (_, ct) -> cts_has_recursive [ ct ] searched_type
| Tuple t ->
t |> List.map (fun (_, ct) -> ct) |> fun cts ->
cts_has_recursive cts searched_type
| Other type_name -> (
match type_name with
| Lident name ->
let same_type = name = searched_type in
let divable = ct_divable ct in
same_type && divable
| _ -> false)
| _ -> false
in
cts_to_loc_types |> List.exists recursive
let ld_dive_attribute =
unit_attribute "dive" Attribute.Context.label_declaration
let ld_ignore_if_attribute =
function_attribute "ignore_if" Attribute.Context.label_declaration
let available_ignore_if_value ld ct =
let ld_ignore_if_exp = Attribute.get ld_ignore_if_attribute ld in
let ct_ignore_if_exp = Attribute.get ct_ignore_if_attribute ct in
match (ld_ignore_if_exp, ct_ignore_if_exp) with
| Some ld_ignore_if_exp, _ -> Some ld_ignore_if_exp
| _, Some ct_ignore_if_exp -> Some ct_ignore_if_exp
| _ -> None
let ld_divable ld = Attribute.get ld_dive_attribute ld |> Option.is_some
let ct_validators_to_apply ct loc_type =
ct_validators |> List.filter_map (fun v -> v.build_exp ct loc_type)
let ld_validators_to_apply ld loc_type =
ld_validators |> List.filter_map (fun v -> v.build_exp ld loc_type)
let lds_has_recursive lds searched_type =
let loc_types = List.map extract_record_field lds in
let lds_to_loc_types = List.combine lds loc_types in
let recursive (ld, record_field) =
match record_field.loc_type.typ with
| List (_, ct) -> cts_has_recursive [ ct ] searched_type
| Option (_, ct) -> cts_has_recursive [ ct ] searched_type
| Tuple t ->
t |> List.map (fun (_, ct) -> ct) |> fun cts ->
cts_has_recursive cts searched_type
| Other type_name -> (
match type_name with
| Lident name ->
let same_type = name = searched_type in
let ld_divable = ld_divable ld in
let ct_divable = ct_divable ld.pld_type in
let divable = ld_divable || ct_divable in
same_type && divable
| _ -> false)
| _ -> false
in
lds_to_loc_types |> List.exists recursive
let rec validators_list_exp ~validators ~divable ~ignore_if_exp loc_type =
match loc_type.typ with
| List (t, inner_type) ->
let inner_divable = ct_divable inner_type in
let inner_loc_type = { loc_type with typ = t } in
let inner_validators = ct_validators_to_apply inner_type inner_loc_type in
let inner_ignore_if_exp =
Attribute.get ct_ignore_if_attribute inner_type |> extract_func_option
in
let deep_validators_exp =
inner_loc_type
|> validators_list_exp ~validators:inner_validators
~divable:inner_divable ~ignore_if_exp:inner_ignore_if_exp
|> validate_list_exp ~loc:loc_type.loc
in
let all_validators = deep_validators_exp :: validators in
all_validators |> list_exp ~loc:loc_type.loc
|> ignore_if_func_exp ~loc:loc_type.loc ignore_if_exp
| Other type_name ->
let list_exp =
match divable with
| true ->
list_exp ~loc:loc_type.loc
[
ignore_ok_exp ~loc:loc_type.loc
@@ dive_exp ~loc:loc_type.loc type_name;
]
|> ignore_if_func_exp ~loc:loc_type.loc ignore_if_exp
| false -> list_exp ~loc:loc_type.loc []
in
list_exp |> ignore_if_func_exp ~loc:loc_type.loc ignore_if_exp
| Tuple types ->
let args_count = List.length types in
let = tuple_element_extractor_fun_exp args_count in
let indexes = List.init args_count (fun i -> i) in
let indexed_types = List.combine indexes types in
let mapper (i, (t, ct)) =
let inner_type = { loc_type with typ = t } in
let inner_validators = ct_validators_to_apply ct inner_type in
let inner_divable = ct_divable ct in
let inner_ignore_if_exp =
Attribute.get ct_ignore_if_attribute ct |> extract_func_option
in
inner_type
|> validators_list_exp ~validators:inner_validators
~divable:inner_divable ~ignore_if_exp:inner_ignore_if_exp
|> validate_field_exp ~loc:ct.ptyp_loc (string_of_int i)
(tuple_extractor_exp ~loc:ct.ptyp_loc i)
in
let body =
indexed_types |> List.map mapper |> list_exp ~loc:loc_type.loc
|> validate_keyed_exp ~loc:loc_type.loc
in
[ body ] |> list_exp ~loc:loc_type.loc
|> ignore_if_func_exp ~loc:loc_type.loc ignore_if_exp
| Option (t, inner_ct) ->
let inner_type = { loc_type with typ = t } in
let inner_validators = ct_validators_to_apply inner_ct inner_type in
let inner_divable = ct_divable inner_ct in
let inner_ignore_if_exp =
Attribute.get ct_ignore_if_attribute inner_ct |> extract_func_option
in
let inner_validators =
inner_type
|> validators_list_exp ~divable:inner_divable
~validators:inner_validators ~ignore_if_exp:inner_ignore_if_exp
|> validate_option ~loc:loc_type.loc
in
inner_validators :: validators
|> list_exp ~loc:loc_type.loc
|> ignore_if_func_exp ~loc:loc_type.loc ignore_if_exp
| _ ->
validators |> list_exp ~loc:loc_type.loc
|> ignore_if_func_exp ~loc:loc_type.loc ignore_if_exp
let type_validator_exp (ct : core_type) =
let loc_type = extract_loc_type ct in
let validators = ct_validators_to_apply ct loc_type in
let divable = ct_divable ct in
let ignore_if_exp =
Attribute.get ct_ignore_if_attribute ct |> extract_func_option
in
validators_list_exp ~validators ~divable ~ignore_if_exp loc_type
|> validate_group_exp ~loc:ct.ptyp_loc
let field_validator_exp (ld : label_declaration) =
let f = extract_record_field ld in
let divable_ld = ld_divable ld in
let divable_ct = ct_divable ld.pld_type in
let divable = divable_ld || divable_ct in
let ld_validators = ld_validators_to_apply ld f.loc_type in
let ct_validators = ct_validators_to_apply ld.pld_type f.loc_type in
let ignore_if_exp =
available_ignore_if_value ld ld.pld_type |> extract_func_option
in
let validators = ld_validators @ ct_validators in
f.loc_type
|> validators_list_exp ~validators ~divable ~ignore_if_exp
|> validate_field_exp ~loc:ld.pld_loc f.name
(field_extractor_exp ~loc:f.loc_type.loc f.name)
let validate_record_exp ~loc label_declarations =
let exp =
label_declarations
|> List.map field_validator_exp
|> list_exp ~loc |> validate_keyed_exp ~loc |> validate_exp ~loc
in
exp
let validate_abstract_exp ~loc ct =
ct |> type_validator_exp |> validate_exp ~loc
let validate_variant_tuple_exp ~variant_name cts =
let args_count = List.length cts in
let =
variant_tuple_extractor_exp variant_name args_count
in
let indexes = List.init args_count (fun i -> i) in
let indexed_types = List.combine indexes cts in
let mapper (i, ct) =
let inner_type = extract_loc_type ct in
let inner_divable = ct_divable ct in
let inner_validators = ct_validators_to_apply ct inner_type in
let inner_ignore_if_exp =
Attribute.get ct_ignore_if_attribute ct |> extract_func_option
in
match (List.length inner_validators, inner_divable) with
| 0, false -> None
| _ ->
let name = Printf.sprintf "%s.%s" variant_name (string_of_int i) in
inner_type
|> validators_list_exp ~validators:inner_validators
~divable:inner_divable ~ignore_if_exp:inner_ignore_if_exp
|> validate_named_value_exp ~loc:ct.ptyp_loc name
(tuple_extractor_exp ~loc:ct.ptyp_loc i)
|> Option.some
in
indexed_types |> List.filter_map mapper
let validate_variant_record_exp ~variant_name lds =
let field_names = List.map (fun ld -> ld.pld_name.txt) lds in
let =
variant_record_extractor_exp variant_name field_names
in
let mapper ld =
let inner_type = extract_record_field ld in
let field_name = ld.pld_name.txt in
let name = Printf.sprintf "%s.%s" variant_name ld.pld_name.txt in
let divable_ld = ld_divable ld in
let divable_ct = ct_divable ld.pld_type in
let divable = divable_ld || divable_ct in
let ld_validators = ld_validators_to_apply ld inner_type.loc_type in
let ct_validators =
ct_validators_to_apply ld.pld_type inner_type.loc_type
in
let ignore_if_exp =
available_ignore_if_value ld ld.pld_type |> extract_func_option
in
let validators = ld_validators @ ct_validators in
match (List.length validators, divable) with
| 0, false -> None
| _ ->
inner_type.loc_type
|> validators_list_exp ~validators ~divable ~ignore_if_exp
|> validate_named_value_exp ~loc:ld.pld_loc name
(variant_extractor_exp ~loc:ld.pld_loc field_name)
|> Option.some
in
lds |> List.filter_map mapper
let validate_constructor_declaration_exp cd =
match cd.pcd_args with
| Pcstr_tuple cts ->
validate_variant_tuple_exp ~variant_name:cd.pcd_name.txt cts
| Pcstr_record lds ->
validate_variant_record_exp ~variant_name:cd.pcd_name.txt lds
let validate_variant_exp ~loc cds =
cds
|> List.map validate_constructor_declaration_exp
|> List.flatten |> list_exp ~loc |> validate_keyed_exp ~loc
|> validate_exp ~loc