Source file stm_of_ir.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
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
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
module Cfg = Config
open Ir
open Ppxlib
open Ortac_core.Builder
module Ident = Gospel.Identifier.Ident
let ty_default = Ptyp_constr (noloc (Lident "char"), [])
let pat_default = ppat_construct (lident "Char") None
let exp_default = evar "char"
let res_default = Ident.create ~loc:Location.none "res"
let list_append = list_fold_expr (qualify [ "Ortac_runtime" ] "append") "None"
let res = lident "Res"
let eeither case e =
pexp_construct (noloc (Ldot (Lident "Either", case))) (Some e)
let eleft = eeither "left"
let eright = eeither "right"
let eprotect call =
let lazy_call = efun [ (Nolabel, punit) ] call in
pexp_apply (evar "protect") [ (Nolabel, lazy_call); (Nolabel, eunit) ]
let may_raise_exception v =
match (v.postcond.exceptional, v.postcond.checks) with
| [], [] -> false
| _, _ -> true
let subst_core_type inst ty =
let rec aux ty =
{
ty with
ptyp_desc =
(match ty.ptyp_desc with
| Ptyp_any -> ty_default
| Ptyp_var x ->
Option.fold ~none:ty_default
~some:(fun x -> x.ptyp_desc)
(List.assoc_opt x inst)
| Ptyp_arrow (x, l, r) ->
let l = aux l and r = aux r in
Ptyp_arrow (x, l, r)
| Ptyp_tuple elems ->
let elems = List.map aux elems in
Ptyp_tuple elems
| Ptyp_constr (c, args) ->
let args = List.map aux args in
Ptyp_constr (c, args)
| Ptyp_object (_, _)
| Ptyp_class (_, _)
| Ptyp_alias (_, _)
| Ptyp_variant (_, _, _)
| Ptyp_poly (_, _)
| Ptyp_package _ | Ptyp_extension _ ->
failwith "Case should not happen in `subst_core_type'");
}
in
aux ty
let lazy_force =
let open Gospel in
let open Tterm_helper in
let vs_name = Ident.create ~loc:Location.none "Lazy.force"
and vs_ty = Ttypes.fresh_ty_var "a" in
let lazy_force = mk_term (Tvar { vs_name; vs_ty }) None Location.none in
fun t ->
Tterm_helper.(
mk_term (Tapp (Symbols.fs_apply, [ lazy_force; t ])) None Location.none)
let ocaml_of_term cfg t =
let open Ortac_core.Ocaml_of_gospel in
let open Reserr in
try term_with_catch ~context:cfg.Cfg.context t |> ok
with W.Error e -> error e
(** [subst_term state ~gos_t ?old_lz ~old_t ?new_lz ~new_t trm] will substitute
occurrences of [gos_t] with [new_t] or [old_t] depending on whether the
occurrence appears above or under the [old] operator, adding a [Lazy.force]
if the corresponding [xxx_lz] is [true] (defaults to [false]). [gos_t] must
always be in a position in which it is applied to one of its model fields.
Calling [subst_term] with [new_t] and [old_t] as None will check that the
term does not contain [gos_t] *)
let subst_term state ?(out_of_scope = []) ~gos_t ?(old_lz = false) ~old_t
?(new_lz = false) ~new_t term =
let exception
ImpossibleSubst of
(Gospel.Tterm.term * [ `Never | `New | `Old | `NotModel | `OutOfScope ])
in
let rec aux cur_lz cur_t term =
let open Gospel.Tterm in
let next = aux cur_lz cur_t in
match term.t_node with
| Tfield (({ t_node = Tvar { vs_name; vs_ty }; _ } as subt), ls)
when Ident.equal vs_name gos_t ->
if List.exists (fun (m, _) -> Ident.equal m ls.ls_name) state then
match cur_t with
| Some cur_t ->
let t = { subt with t_node = Tvar { vs_name = cur_t; vs_ty } } in
let t = if cur_lz then lazy_force t else t in
{ term with t_node = Tfield (t, ls) }
| None ->
raise
(ImpossibleSubst
( subt,
match (new_t, old_t) with
| None, None -> `Never
| None, _ -> `New
| _, _ -> `Old ))
else
raise (ImpossibleSubst (term, `NotModel))
| Tvar { vs_name; _ } when Ident.equal vs_name gos_t ->
raise (ImpossibleSubst (term, `NotModel))
| Tvar { vs_name; _ } when List.exists (Ident.equal vs_name) out_of_scope ->
raise (ImpossibleSubst (term, `OutOfScope))
| Tconst _ -> term
| Tvar _ -> term
| Tapp (ls, terms) -> { term with t_node = Tapp (ls, List.map next terms) }
| Tfield (t, ls) -> { term with t_node = Tfield (next t, ls) }
| Tif (cnd, thn, els) ->
{ term with t_node = Tif (next cnd, next thn, next els) }
| Tlet (vs, t1, t2) -> { term with t_node = Tlet (vs, next t1, next t2) }
| Tcase (t, brchs) ->
{
term with
t_node =
Tcase
( next t,
List.map
(fun (p, ot, t) -> (p, Option.map next ot, next t))
brchs );
}
| Tquant (q, vs, t) -> { term with t_node = Tquant (q, vs, next t) }
| Tlambda (ps, t) -> { term with t_node = Tlambda (ps, next t) }
| Tbinop (o, l, r) -> { term with t_node = Tbinop (o, next l, next r) }
| Tnot t -> { term with t_node = Tnot (next t) }
| Told t -> aux old_lz old_t t
| Ttrue -> term
| Tfalse -> term
in
let open Reserr in
try ok (aux new_lz new_t term)
with ImpossibleSubst (t, b) ->
error (Impossible_term_substitution b, t.t_loc)
let translate_checks config state value state_ident t =
let open Reserr in
match value.sut_var with
| Some sut_var ->
subst_term state ~gos_t:sut_var ~old_t:(Some state_ident)
~new_t:(Some state_ident) t.term
>>= ocaml_of_term config
| None -> ocaml_of_term config t.term
let str_of_ident = Fmt.str "%a" Ident.pp
let longident_loc_of_ident id = str_of_ident id |> lident
let mk_cmd_pattern value =
let pat_args = function
| _, None -> punit
| _, Some x -> ppat_var (noloc (str_of_ident x))
in
let args =
match value.args with
| [] -> None
| [ x ] -> Some (pat_args x)
| xs -> List.map pat_args xs |> ppat_tuple |> Option.some
in
let name = String.capitalize_ascii (str_of_ident value.id) |> lident in
ppat_construct name args
let munge_longident cap ty lid =
let open Reserr in
match lid.txt with
| Lident i | Ldot (Lident i, "t") | Ldot (Ldot (_, i), "t") | Ldot (_, i) ->
let f =
if cap then String.capitalize_ascii else String.uncapitalize_ascii
in
ok (f i)
| Lapply (_, _) ->
error
(Type_not_supported (Fmt.str "%a" Pprintast.core_type ty), ty.ptyp_loc)
let pat_of_core_type inst typ =
let rec aux ty =
let open Reserr in
match ty.ptyp_desc with
| Ptyp_any -> ok pat_default
| Ptyp_var v -> (
match List.assoc_opt v inst with
| None -> ok pat_default
| Some t -> aux t)
| Ptyp_constr (c, xs) ->
let constr_str = lident <$> munge_longident true ty c
and pat_arg =
match xs with
| [] -> ok None
| xs -> (fun xs -> Some (ppat_tuple xs)) <$> map aux xs
in
ppat_construct <$> constr_str <*> pat_arg
| Ptyp_tuple xs ->
let* pat_arg = ppat_tuple <$> map aux xs in
ppat_construct
(lident ("Tup" ^ string_of_int (List.length xs)))
(Some pat_arg)
|> ok
| _ ->
error
( Type_not_supported (Fmt.str "%a" Pprintast.core_type typ),
typ.ptyp_loc )
in
aux typ
let exp_of_core_type inst typ =
let rec aux ty =
let open Reserr in
match ty.ptyp_desc with
| Ptyp_any -> ok exp_default
| Ptyp_var v -> (
match List.assoc_opt v inst with
| None -> ok exp_default
| Some t -> aux t)
| Ptyp_constr (c, xs) -> (
let constr_str = evar <$> munge_longident false ty c in
match xs with
| [] -> constr_str
| xs ->
pexp_apply
<$> constr_str
<*> (List.map (fun e -> (Nolabel, e)) <$> map aux xs))
| Ptyp_tuple xs ->
let tup_constr =
pexp_ident (lident ("tup" ^ string_of_int (List.length xs)))
in
pexp_apply tup_constr
<$> (List.map (fun e -> (Nolabel, e)) <$> map aux xs)
| _ ->
error
( Type_not_supported (Fmt.str "%a" Pprintast.core_type typ),
typ.ptyp_loc )
in
aux typ
let exp_of_ident id = pexp_ident (lident (str_of_ident id))
let arb_cmd_case value =
let open Reserr in
let epure = pexp_ident (lident "pure") in
let pure e = pexp_apply epure [ (Nolabel, e) ] in
let fun_cstr =
let args =
List.map
(function
| _, None -> (Nolabel, punit)
| _, Some id -> (Nolabel, ppat_var (noloc (str_of_ident id))))
value.args
in
let name = String.capitalize_ascii (str_of_ident value.id) |> lident in
let body =
pexp_construct name
(pexp_tuple_opt
(List.map
(function
| _, None -> eunit | _, Some id -> evar (str_of_ident id))
value.args))
in
efun args body |> pure
in
let gen_args =
List.map (fun (ty, _) -> exp_of_core_type value.inst ty) value.args
in
let app l r = pexp_apply (evar "( <*> )") [ (Nolabel, l); (Nolabel, r) ] in
List.fold_left app fun_cstr <$> sequence gen_args
let arb_cmd ir =
let open Reserr in
let* cmds = elist <$> map arb_cmd_case ir.values in
let open Ppxlib in
let let_open str e =
pexp_open Ast_helper.(Opn.mk (Mod.ident (lident str |> noloc))) e
in
let oneof = let_open "Gen" (pexp_apply (evar "oneof") [ (Nolabel, cmds) ]) in
let body =
let_open "QCheck"
(pexp_apply (evar "make")
[ (Labelled "print", evar "show_cmd"); (Nolabel, oneof) ])
in
let pat = pvar "arb_cmd" in
let expr = efun [ (Nolabel, ppat_any ) ] body in
pstr_value Nonrecursive [ value_binding ~pat ~expr ] |> ok
let run_case config sut_name value =
let lhs = mk_cmd_pattern value in
let open Reserr in
let* rhs =
let* ty_show = exp_of_core_type value.inst (Ir.get_return_type value) in
let ty_show =
if may_raise_exception value then
pexp_apply (evar "result") [ (Nolabel, ty_show); (Nolabel, evar "exn") ]
else ty_show
in
let call =
let efun = exp_of_ident value.id in
let mk_arg = Option.fold ~none:eunit ~some:exp_of_ident in
let rec aux ty args =
match (ty.ptyp_desc, args) with
| Ptyp_arrow (lb, l, r), xs when Cfg.is_sut config l ->
(lb, evar sut_name) :: aux r xs
| Ptyp_arrow (lb, _, r), x :: xs -> (lb, mk_arg x) :: aux r xs
| _, [] -> []
| _, _ ->
failwith
"shouldn't happen (list of arguments should be consistent with \
type)"
in
pexp_apply efun (aux value.ty (List.map snd value.args))
in
let call = if may_raise_exception value then eprotect call else call in
let args = Some (pexp_tuple [ ty_show; call ]) in
pexp_construct res args |> ok
in
case ~lhs ~guard:None ~rhs |> ok
let run config ir =
let cmd_name = gen_symbol ~prefix:"cmd" () in
let sut_name = gen_symbol ~prefix:"sut" () in
let open Reserr in
let* cases = map (run_case config sut_name) ir.values in
let body = pexp_match (evar cmd_name) cases in
let pat = pvar "run" in
let expr = efun [ (Nolabel, pvar cmd_name); (Nolabel, pvar sut_name) ] body in
pstr_value Nonrecursive [ value_binding ~pat ~expr ] |> ok
let next_state_case state config state_ident nb_models value =
let state_var = str_of_ident state_ident |> evar in
let lhs = mk_cmd_pattern value in
let open Reserr in
let* idx, rhs =
let descriptions =
List.filter_map
(fun (i, { model; description }) ->
(match value.sut_var with
| Some sut_var ->
subst_term ~out_of_scope:value.ret state ~gos_t:sut_var
~old_t:(Some state_ident) ~new_t:None description
>>= ocaml_of_term config
| None -> ocaml_of_term config description)
|> to_option
|> Option.map (fun description -> (i, model, description)))
value.next_state.formulae
in
let pick id =
List.find_opt (fun (_, m, _) -> Ident.equal id m) descriptions
in
let* descriptions =
map
(fun (id, loc) ->
of_option
~default:
( Ensures_not_found_for_next_state
(value.id.id_str, id.Ident.id_str),
loc )
(pick id))
value.next_state.modifies
in
let idx = List.map (fun (i, _, _) -> i) descriptions in
match
List.map (fun (_, m, e) -> (lident (str_of_ident m), e)) descriptions
with
| [] -> ok (idx, state_var)
| fields -> (
let new_state =
pexp_record fields
(if List.length fields = nb_models then None
else Some (evar (str_of_ident state_ident)))
in
let translate_checks =
translate_checks config state value state_ident
in
let* checks = map translate_checks value.postcond.checks in
match checks with
| [] -> ok (idx, new_state)
| _ ->
ok
(idx, pexp_ifthenelse (list_and checks) new_state (Some state_var))
)
in
(idx, case ~lhs ~guard:None ~rhs) |> ok
let next_state config ir =
let cmd_name = gen_symbol ~prefix:"cmd" () in
let state_name = gen_symbol ~prefix:"state" () in
let state_ident = Ident.create ~loc:Location.none state_name in
let nb_models = List.length ir.state in
let open Reserr in
let* idx_cases =
map
(fun v ->
let* i, c = next_state_case ir.state config state_ident nb_models v in
ok ((v.id, i), c))
ir.values
in
let idx, cases = List.split idx_cases in
let body = pexp_match (evar cmd_name) cases in
let pat = pvar "next_state" in
let expr =
efun [ (Nolabel, pvar cmd_name); (Nolabel, pvar state_name) ] body
in
(idx, pstr_value Nonrecursive [ value_binding ~pat ~expr ]) |> ok
let precond_case config state state_ident value =
let lhs = mk_cmd_pattern value in
let open Reserr in
let* rhs =
list_and
<$> map
(fun t ->
match value.sut_var with
| Some sut_var ->
subst_term state ~gos_t:sut_var ~old_t:None
~new_t:(Some state_ident) t
>>= ocaml_of_term config
| None -> ocaml_of_term config t)
value.precond
in
ok (case ~lhs ~guard:None ~rhs)
let precond config ir =
let cmd_name = gen_symbol ~prefix:"cmd" () in
let state_name = gen_symbol ~prefix:"state" () in
let state_ident = Ident.create ~loc:Location.none state_name in
let open Reserr in
let* cases = map (precond_case config ir.state state_ident) ir.values in
let body = pexp_match (evar cmd_name) cases in
let pat = pvar "precond" in
let expr =
efun [ (Nolabel, pvar cmd_name); (Nolabel, pvar state_name) ] body
in
pstr_value Nonrecursive [ value_binding ~pat ~expr ] |> ok
let expected_returned_value translate_postcond value =
let open Reserr in
let ( >>= ) = Option.bind in
let ty_ret = Ir.get_return_type value in
let ty_show = to_option @@ exp_of_core_type value.inst ty_ret in
let ret_res ts val_ =
match ts with
| Some ty_show ->
let args = pexp_tuple_opt [ ty_show; val_ ] in
Some (pexp_construct res args)
| None -> None
in
let ty_show_integer = evar "integer" in
match (ty_ret.ptyp_desc, value.ret_values) with
| Ptyp_constr ({ txt = Lident "unit"; _ }, _), _ -> ret_res ty_show eunit
| Ptyp_constr ({ txt = Lident "int"; _ }, _), [ (t :: _ as xs) ]
when t.term.t_ty = Some Gospel.Ttypes.ty_integer ->
map translate_postcond xs
|> to_option
>>= Fun.flip List.nth_opt 0
>>= ret_res (Some ty_show_integer)
| _, [ xs ] ->
map translate_postcond xs
|> to_option
>>= Fun.flip List.nth_opt 0
>>= ret_res ty_show
| _, _ -> None
let postcond_case config state invariants idx state_ident new_state_ident value
=
let open Reserr in
let translate_postcond t =
match value.sut_var with
| Some sut_var ->
subst_term state ~gos_t:sut_var ~old_t:(Some state_ident) ~new_lz:true
~new_t:(Some new_state_ident) t.term
>>= ocaml_of_term config
| None -> ocaml_of_term config t.term
and translate_invariants id t =
subst_term state ~gos_t:id ~old_t:None ~new_t:(Some new_state_ident)
~new_lz:true t.term
>>= ocaml_of_term config
and dummy =
let ty_show = qualify [ "Ortac_runtime" ] "dummy" and value = eunit in
let args = pexp_tuple_opt [ ty_show; value ] in
pexp_construct res args
in
let* ret_val =
match expected_returned_value translate_postcond value with
| None ->
let* () =
warn
( Incomplete_ret_val_computation (Fmt.str "%a" Ident.pp value.id),
value.id.id_loc )
in
ok dummy
| Some e -> ok e
in
let wrap_check ?(exn = None) t e =
let term = estring t.text
and cmd = Fmt.str "%a" Ident.pp value.id |> estring
and l = t.Ir.term.Gospel.Tterm.t_loc |> elocation
and ret_val =
match exn with Some e -> eleft @@ estring e | None -> eright ret_val
in
pexp_ifthenelse e enone
(Some
(esome
@@ pexp_apply
(qualify [ "Ortac_runtime" ] "report")
[
( Nolabel,
estring @@ Ortac_core.Context.module_name config.context );
(Nolabel, estring config.init_sut_txt);
(Nolabel, ret_val);
(Nolabel, cmd);
(Nolabel, elist [ pexp_tuple [ term; l ] ]);
]))
in
let idx = List.sort Int.compare idx in
let lhs0 = mk_cmd_pattern value in
let* lhs1 =
let ret_ty = Ir.get_return_type value in
let* ret_ty =
let open Ppxlib in
match ret_ty.ptyp_desc with
| Ptyp_var _ | Ptyp_constr _ | Ptyp_tuple _ -> ok ret_ty
| _ ->
error
( Type_not_supported (Fmt.str "%a" Pprintast.core_type ret_ty),
ret_ty.ptyp_loc )
in
let* pat_ty = pat_of_core_type value.inst ret_ty in
let pat_ty =
if may_raise_exception value then
ppat_construct (lident "Result")
(Some (ppat_tuple [ pat_ty; ppat_construct (lident "Exn") None ]))
else pat_ty
in
let pat_ret =
match value.ret with
| [] ->
if may_raise_exception value then pvar (str_of_ident res_default)
else ppat_any
| [ id ] -> pvar (str_of_ident id)
| xs -> ppat_tuple (List.map (fun x -> pvar @@ str_of_ident x) xs)
in
ok
(ppat_construct (lident "Res")
(Some (ppat_tuple [ ppat_tuple [ pat_ty; ppat_any ]; pat_ret ])))
in
let lhs = ppat_tuple [ lhs0; lhs1 ] in
let* rhs =
let normal =
let rec aux idx postcond =
match (idx, postcond) with
| [], ps -> List.map snd ps
| i :: idx, (j, _) :: ps when i = j -> aux idx ps
| i :: _, (j, p) :: ps ->
assert (j < i);
p :: aux idx ps
| _, _ -> assert false
in
aux idx value.postcond.normal
in
let* postcond = map (fun t -> wrap_check t <$> translate_postcond t) normal
and* invariants =
Option.fold ~none:(ok [])
~some:(fun (id, xs) ->
map (fun t -> wrap_check t <$> translate_invariants id t) xs)
invariants
in
list_append (postcond @ invariants) |> ok
in
let res, pat_ret =
match value.ret with
| [] -> (evar (str_of_ident res_default), ppat_any)
| [ id ] ->
let id = str_of_ident id in
(evar id, pvar id)
| xs ->
let evars = List.map (fun x -> evar @@ str_of_ident x) xs in
let pvars = List.map (fun x -> pvar @@ str_of_ident x) xs in
(pexp_tuple evars, ppat_tuple pvars)
in
let* rhs =
if may_raise_exception value then
let case_ok =
case ~lhs:(ppat_construct (lident "Ok") (Some pat_ret)) ~guard:None ~rhs
in
let* cases_error =
Fun.flip ( @ ) [ case ~lhs:ppat_any ~guard:None ~rhs:enone ]
<$> map
(fun (x, p, t) ->
let xstr = Fmt.str "%a" Ident.pp x.Gospel.Ttypes.xs_ident in
let lhs =
ppat_construct (lident xstr)
(Option.map Ortac_core.Ocaml_of_gospel.pattern p)
in
let lhs = ppat_construct (lident "Error") (Some lhs) in
let* rhs =
wrap_check ~exn:(Some xstr) t <$> translate_postcond t
in
case ~lhs ~guard:None ~rhs |> ok)
value.postcond.exceptional
in
pexp_match res (case_ok :: cases_error) |> ok
else ok rhs
in
let* rhs =
let translate_checks = translate_checks config state value state_ident in
let* checks =
map
(fun t ->
wrap_check ~exn:(Some "Invalid_argument") t <$> translate_checks t)
value.postcond.checks
in
match checks with
| [] -> ok rhs
| _ ->
let inv_arg =
ppat_construct (lident "Invalid_argument") (Some ppat_any)
in
let validate_inv_arg =
pexp_match res
[
case
~lhs:(ppat_construct (lident "Error") (Some inv_arg))
~guard:None ~rhs:enone;
case ~lhs:ppat_any ~guard:None ~rhs:(list_append checks);
]
in
pexp_match (list_append checks)
[
case ~lhs:(ppat_construct (lident "None") None) ~guard:None ~rhs;
case ~lhs:ppat_any ~guard:None ~rhs:validate_inv_arg;
]
|> ok
in
ok (case ~lhs ~guard:None ~rhs)
let postcond config idx ir =
let cmd_name = gen_symbol ~prefix:"cmd" () in
let state_name = gen_symbol ~prefix:"state" () in
let res_name = gen_symbol ~prefix:"res" () in
let new_state_name = gen_symbol ~prefix:"new_state" () in
let new_state_let =
pexp_let Nonrecursive
[
value_binding ~pat:(pvar new_state_name)
~expr:
(pexp_lazy
(pexp_apply
(pexp_ident (lident "next_state"))
[
(Nolabel, pexp_ident (lident cmd_name));
(Nolabel, pexp_ident (lident state_name));
]));
]
in
let state_ident = Ident.create ~loc:Location.none state_name in
let new_state_ident = Ident.create ~loc:Location.none new_state_name in
let open Reserr in
let* cases =
(Fun.flip ( @ )) [ case ~lhs:ppat_any ~guard:None ~rhs:enone ]
<$> map
(fun v ->
postcond_case config ir.state ir.invariants (List.assoc v.id idx)
state_ident new_state_ident v)
ir.values
in
let body =
pexp_open
Ast_helper.(Opn.mk (Mod.ident (lident "Spec")))
(pexp_open
Ast_helper.(Opn.mk (Mod.ident (lident "STM")))
(pexp_match (pexp_tuple [ evar cmd_name; evar res_name ]) cases
|> new_state_let))
in
let pat = pvar "ortac_postcond" in
let expr =
efun
[
(Nolabel, pvar cmd_name);
(Nolabel, pvar state_name);
(Nolabel, pvar res_name);
]
body
in
pstr_value Nonrecursive [ value_binding ~pat ~expr ] |> ok
let dummy_postcond =
let expr =
efun
[ (Nolabel, ppat_any); (Nolabel, ppat_any); (Nolabel, ppat_any) ]
(ebool true)
and pat = pvar "postcond" in
pstr_value Nonrecursive [ value_binding ~pat ~expr ]
let cmd_constructor value =
let name = String.capitalize_ascii value.id.Ident.id_str |> noloc in
let args =
List.map (fun (ty, _) -> subst_core_type value.inst ty) value.args
in
constructor_declaration ~name ~args:(Pcstr_tuple args) ~res:None
let state_type ir =
let lds =
List.map
(fun (id, ty) ->
label_declaration
~name:(Fmt.str "%a" Ident.pp id |> noloc)
~mutable_:Immutable ~type_:ty)
ir.state
in
let kind = Ptype_record lds in
let td =
type_declaration ~name:(noloc "state") ~params:[] ~cstrs:[] ~kind
~private_:Public ~manifest:None
in
pstr_type Nonrecursive [ td ]
let cmd_type ir =
let constructors = List.map cmd_constructor ir.values in
let td =
type_declaration ~name:(noloc "cmd") ~params:[] ~cstrs:[]
~kind:(Ptype_variant constructors) ~private_:Public ~manifest:None
in
let open Reserr in
if List.length constructors = 0 then
error (Empty_cmd_type, Ppxlib.Location.none)
else pstr_type Recursive [ td ] |> ok
let pp_cmd_case config value =
let lhs = mk_cmd_pattern value in
let qualify_pp = qualify [ "Util"; "Pp" ] in
let get_name =
Option.fold ~none:eunit ~some:(fun id -> str_of_ident id |> evar)
in
let open Reserr in
let rec pp_of_ty ty : expression reserr =
match ty.ptyp_desc with
| Ptyp_tuple xs ->
let* pps = map pp_of_ty xs in
let func = qualify_pp ("pp_tuple" ^ string_of_int (List.length xs)) in
ok (pexp_apply func (List.map (fun e -> (Nolabel, e)) pps))
| Ptyp_constr (lid, xs) ->
let* xs = map pp_of_ty xs and* s = munge_longident false ty lid in
let pp = qualify_pp ("pp_" ^ s) in
ok
(match xs with
| [] -> pp
| _ -> pexp_apply pp (List.map (fun x -> (Nolabel, x)) xs))
| _ ->
error
(Type_not_supported (Fmt.str "%a" Pprintast.core_type ty), ty.ptyp_loc)
in
let* rhs =
let name = str_of_ident value.id in
let rec aux ty args =
match (ty.ptyp_desc, args) with
| Ptyp_arrow (_, l, r), xs when Cfg.is_sut config l ->
let* fmt, pps = aux r xs in
ok ("sut" :: fmt, pps)
| Ptyp_arrow (_, _, r), (ty, id) :: xs ->
let ty = subst_core_type value.inst ty in
let* pp = pp_of_ty ty and* fmt, pps = aux r xs in
ok
( "%a" :: fmt,
pexp_apply pp [ (Nolabel, ebool true) ] :: get_name id :: pps )
| _, [] -> ok ([], [])
| _, _ ->
failwith
"shouldn't happen (list of arguments should be consistent with \
type)"
in
let* fmt, pp_args = aux value.ty value.args in
let fmt =
let call = String.concat " " ("%s" :: fmt) in
if may_raise_exception value then "protect (fun () -> " ^ call ^ ")"
else call
in
let args =
List.map (fun x -> (Nolabel, x)) (estring fmt :: estring name :: pp_args)
in
pexp_apply (qualify [ "Format" ] "asprintf") args |> ok
in
case ~lhs ~guard:None ~rhs |> ok
let cmd_show config ir =
let cmd_name = gen_symbol ~prefix:"cmd" () in
let open Reserr in
let* cases = map (pp_cmd_case config) ir.values in
let body = pexp_match (evar cmd_name) cases in
let pat = pvar "show_cmd" in
let expr = efun [ (Nolabel, pvar cmd_name) ] body in
pstr_value Nonrecursive [ value_binding ~pat ~expr ] |> ok
let sut_type cfg =
let td =
type_declaration ~name:(noloc "sut") ~params:[] ~cstrs:[]
~kind:Ptype_abstract ~private_:Public
~manifest:(Some cfg.Cfg.sut_core_type)
in
pstr_type Recursive [ td ]
let init_state config ir =
let pat_of_lb_arg = function
| Gospel.Tast.Lunit -> punit
| Gospel.Tast.Lnone vs
| Gospel.Tast.Loptional vs
| Gospel.Tast.Lnamed vs
| Gospel.Tast.Lghost vs ->
pvar (Fmt.str "%a" Ident.pp vs.vs_name)
in
let bindings =
pexp_let Nonrecursive
(List.map
(fun (lb_arg, expr) -> value_binding ~pat:(pat_of_lb_arg lb_arg) ~expr)
ir.Ir.init_state.arguments)
in
let open Reserr in
let translate_field_desc Ir.{ model; description } =
let* desc =
subst_term ir.state ~gos_t:ir.init_state.returned_sut ~old_t:None
~new_t:None description
>>= ocaml_of_term config
in
ok (model, desc)
in
let* fields = map translate_field_desc ir.Ir.init_state.descriptions in
let* fields =
map
(fun (id, _) ->
(fun d -> (longident_loc_of_ident id, d))
<$> (List.assoc_opt id fields
|> of_option
~default:
( Impossible_init_state_generation
(No_translatable_specification id.Ident.id_str),
Ppxlib.Location.none )))
ir.state
in
let expr = pexp_record fields None |> bindings and pat = pvar "init_state" in
pstr_value Nonrecursive [ value_binding ~pat ~expr ] |> ok
let check_init_state config ir =
let init_state = qualify [ "Spec" ] "init_state" in
let open Reserr in
let state_name = gen_symbol ~prefix:"__state" () in
let state_pat = pvar state_name
and state_id = Ident.create ~loc:Location.none state_name in
let translate_invariants id t =
enot
<$> (subst_term ir.state ~gos_t:id ~old_t:None ~new_t:(Some state_id) t.term
>>= ocaml_of_term config)
and msg =
let f = qualify [ "QCheck"; "Test" ] "fail_report"
and s = estring "INIT_SUT violates type invariants for SUT" in
eapply f [ s ]
in
let* expr =
(function
| [] -> eunit
| xs ->
pexp_let Nonrecursive
[ value_binding ~pat:state_pat ~expr:init_state ]
(pexp_ifthenelse (list_or xs) msg None))
<$> Option.fold ~none:(ok [])
~some:(fun (id, xs) -> map (translate_invariants id) xs)
ir.invariants
in
let pat = pvar "check_init_state" and expr = efun [ (Nolabel, punit) ] expr in
pstr_value Nonrecursive [ value_binding ~pat ~expr ] |> ok
let ghost_function config fct =
let open Gospel in
let open Tast in
let open Reserr in
match fct.fun_def with
| None -> failwith "impossible"
| Some t ->
let name = str_of_ident fct.fun_ls.ls_name in
let config' =
Cfg.
{
config with
context =
Ortac_core.Context.add_function fct.fun_ls name config.context;
}
in
let* body = ocaml_of_term (if fct.fun_rec then config' else config) t in
let body =
efun
(List.map
(fun vs -> (Nolabel, pvar (str_of_ident vs.Symbols.vs_name)))
fct.fun_params)
body
in
let bindings = [ value_binding ~pat:(pvar name) ~expr:body ] in
( config',
pstr_value (if fct.fun_rec then Recursive else Nonrecursive) bindings )
|> ok
let ghost_functions config =
let open Reserr in
let rec aux config (acc : structure) = function
| [] -> ok (config, List.rev acc)
| fct :: xs -> (
let* f = promote_opt (ghost_function config fct) in
match f with
| None -> aux config acc xs
| Some (config, f) -> aux config (f :: acc) xs)
in
aux config []
let ghost_types config =
let open Reserr in
let aux (rec_flag, type_decls) =
let rec_flag =
match rec_flag with
| Gospel.Tast.Nonrecursive -> Nonrecursive
| Gospel.Tast.Recursive -> Recursive
in
let* tds =
map
(fun td ->
try
ok
(Ortac_core.Ocaml_of_gospel.ocaml_type_decl_of_gospel_type_decl
~context:config.Cfg.context td)
with W.Error e -> error e)
type_decls
in
ok (pstr_type rec_flag tds)
in
map aux
let agree_prop =
[%stri
let agree_prop cs =
check_init_state ();
STMTests.agree_prop cs]
let prepend_include_in_module name lident structure =
let open Ast_helper in
let name = noloc (Some name)
and expr =
pmod_structure
@@ ((Mod.ident lident |> Incl.mk |> pstr_include) :: structure)
in
[ pstr_module @@ module_binding ~name ~expr ]
let qcheck config =
match config.Cfg.gen_mod with
| None -> []
| Some structure ->
let structure =
prepend_include_in_module "Gen" (lident "Gen") structure
in
prepend_include_in_module "QCheck" (lident "QCheck") structure
let util config =
match config.Cfg.pp_mod with
| None -> []
| Some structure ->
let structure =
prepend_include_in_module "Pp"
(noloc (Ldot (Lident "Util", "Pp")))
structure
in
let name = noloc (Some "Util") and expr = pmod_structure structure in
[ pstr_module (module_binding ~name ~expr) ]
let gen_tuple_ty arities =
let constructors =
List.map
(fun ar ->
let name = Located.mk ("Tup" ^ string_of_int ar) in
let idxs =
List.init ar (fun x -> "a" ^ string_of_int (x + 1) |> ptyp_var)
in
let args = List.map (fun c -> ptyp_constr (lident "ty") [ c ]) idxs in
let ret = ptyp_constr (lident "ty") [ ptyp_tuple idxs ] in
let kind = Pext_decl ([], Pcstr_tuple args, Some ret) in
extension_constructor ~name ~kind)
arities
in
let path = lident "ty" in
let params = [ (ptyp_any, (NoVariance, NoInjectivity)) ] in
let private_ = Public in
pstr_typext (type_extension ~path ~params ~constructors ~private_)
let gen_tuple_constr arities =
let range idx = List.init idx (fun x -> x + 1) in
let gen_vb arity =
let arity_str = string_of_int arity in
let idxs = range arity in
let pat = pvar ("tup" ^ arity_str) in
let ty_show =
pexp_tuple
[
pexp_construct
(lident ("Tup" ^ arity_str))
(Some
(pexp_tuple
(List.map (fun i -> evar ("ty" ^ string_of_int i)) idxs)));
pexp_apply
(qualify [ "Util"; "Pp" ] "to_show")
[
( Nolabel,
pexp_apply
(qualify [ "Util"; "Pp" ] ("pp_tuple" ^ string_of_int arity))
(List.map
(fun i ->
( Nolabel,
pexp_apply
(qualify [ "Util"; "Pp" ] "of_show")
[ (Nolabel, evar ("show" ^ string_of_int i)) ] ))
idxs) );
];
]
in
let body =
pexp_let Nonrecursive
(List.map
(fun i ->
let pat =
ppat_tuple
[
pvar ("ty" ^ string_of_int i); pvar ("show" ^ string_of_int i);
]
in
let expr = evar ("spec" ^ string_of_int i) in
value_binding ~pat ~expr)
idxs)
ty_show
in
let expr =
List.fold_left
(fun acc i ->
pexp_fun Nolabel None (pvar ("spec" ^ string_of_int i)) acc)
body (List.rev idxs)
in
value_binding ~pat ~expr
in
let vbs = List.map gen_vb arities in
pstr_value Nonrecursive vbs
let tuple_types ir =
let ret_tys =
List.map (fun v -> (Ir.get_return_type v).ptyp_desc) ir.values
in
let module IntS = Set.Make (Int) in
let rec aux acc = function
| Ptyp_tuple xs ->
let acc' =
List.fold_left aux acc (List.map (fun x -> x.ptyp_desc) xs)
in
IntS.union (IntS.singleton (List.length xs)) acc'
| _ -> acc
in
let arities = List.fold_left aux IntS.empty ret_tys |> IntS.elements in
if List.length arities = 0 then []
else [ gen_tuple_ty arities; gen_tuple_constr arities ]
let integer_ty_ext =
[
[%stri type _ ty += Integer : Ortac_runtime.integer ty];
[%stri let integer = (Integer, Ortac_runtime.string_of_integer)];
]
let stm config ir =
let open Reserr in
let* ghost_types = ghost_types config ir.ghost_types in
let* config, ghost_functions = ghost_functions config ir.ghost_functions in
let warn = [%stri [@@@ocaml.warning "-26-27-69-32"]] in
let sut = sut_type config in
let* cmd = cmd_type ir in
let* cmd_show = cmd_show config ir in
let state = state_type ir in
let* idx, next_state = next_state config ir in
let* postcond = postcond config idx ir in
let* precond = precond config ir in
let* run = run config ir in
let* arb_cmd = arb_cmd ir in
let* init_state = init_state config ir in
let* check_init_state = check_init_state config ir in
let cleanup =
let default =
let pat = pvar "cleanup" in
let expr = efun [ (Nolabel, ppat_any) ] eunit in
pstr_value Nonrecursive [ value_binding ~pat ~expr ]
in
Option.value config.cleanup ~default
in
let init_sut =
let pat = pvar "init_sut" in
let expr = efun [ (Nolabel, punit) ] config.Cfg.init_sut in
pstr_value Nonrecursive [ value_binding ~pat ~expr ]
in
let open_mod m = pstr_open Ast_helper.(Opn.mk (Mod.ident (lident m))) in
let spec_expr =
pmod_structure
((open_mod "STM" :: qcheck config)
@ util config
@ Option.value config.ty_mod ~default:[]
@ integer_ty_ext
@ tuple_types ir
@ [
sut;
cmd;
cmd_show;
state;
init_state;
init_sut;
cleanup;
arb_cmd;
next_state;
precond;
dummy_postcond;
run;
])
in
let stm_spec =
pstr_module (module_binding ~name:(noloc (Some "Spec")) ~expr:spec_expr)
in
let tests =
pstr_module
(module_binding ~name:(noloc (Some "STMTests"))
~expr:
(pmod_apply
(pmod_ident (Ldot (Lident "Ortac_runtime", "Make") |> noloc))
(pmod_ident (lident "Spec"))))
in
let module_name = Ortac_core.Context.module_name config.context in
let call_tests =
let loc = Location.none in
let descr = estring (module_name ^ " STM tests") in
[%stri
let _ =
QCheck_base_runner.run_tests_main
(let count = 1000 in
[
STMTests.agree_test ~count ~name:[%e descr] check_init_state
ortac_postcond;
])]
in
ok
(warn
:: open_mod module_name
:: [%stri module Ortac_runtime = Ortac_runtime_qcheck_stm]
:: ghost_types
@ ghost_functions
@ [ stm_spec; tests; check_init_state; postcond; call_tests ])