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
open Smtml
open Cmdliner

type prove_mode =
  | Batch
  | Cached
  | Incremental

let solver_conv =
  Cmdliner.Arg.conv
    (Solver_dispatcher.solver_type_of_string, Solver_dispatcher.pp_solver_type)

let prove_mode_conv =
  Cmdliner.Arg.enum
    [ ("batch", Batch); ("cached", Cached); ("incremental", Incremental) ]

let path =
  let parser, _ = Cmdliner.Arg.file in
  ( (fun file ->
      if String.equal "-" file then `Ok (Fpath.v file)
      else
        match parser file with
        | `Ok file -> `Ok (Fpath.v file)
        | `Error _ as err -> err )
  , Fpath.pp )

let file0 =
  let doc = "Input file" in
  let docv = "FILE" in
  Arg.(required & pos 0 (some path) None & info [] ~doc ~docv)

let files =
  let doc = "Input files" in
  let docv = "FILES" in
  Arg.(value & pos_all path [] & info [] ~docv ~doc)

let solver =
  let doc = "SMT solver to use" in
  Arg.(value & opt solver_conv Z3_solver & info [ "s"; "solver" ] ~doc)

let solver_mode =
  let doc = "SMT solver mode" in
  Arg.(value & opt prove_mode_conv Batch & info [ "mode" ] ~doc)

let debug =
  let doc = "Print debugging messages" in
  Arg.(value & flag & info [ "debug" ] ~doc)

let dry =
  let doc = "Dry run on tests" in
  Arg.(value & flag & info [ "dry" ] ~doc)

let print_statistics =
  let doc = "Print statistics" in
  Arg.(value & flag & info [ "print-statistics" ] ~doc)

let from_file =
  let doc =
    "File containing a list of files to run. This argument discards any \
     positional arguments provided."
  in
  Arg.(value & opt (some path) None & info [ "F"; "from-file" ] ~doc ~docv:"VAL")

let cmd_run f =
  let doc = "Runs one or more scripts using. Also supports directory inputs" in
  let info = Cmd.info "run" ~doc in
  Cmd.v info
    Term.(
      const f $ debug $ solver $ solver_mode $ dry $ print_statistics
      $ from_file $ files )

let cmd_to_smt2 f =
  let doc = "Convert .smtml into .smt2" in
  let info = Cmd.info "to-smt2" ~doc in
  Cmd.v info Term.(const f $ debug $ solver $ file0)