-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathresponse.ml
150 lines (124 loc) · 4.2 KB
/
response.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
(* This file is free software, part of dolmen. See file "LICENSE" for more information *)
module type S = sig
type file
type statement
exception Extension_not_found of string
type language =
| Smtlib2 of Dolmen_smtlib2.Response.version
val enum : (string * language) list
val string_of_language : language -> string
val find :
?language:language ->
?dir:string -> string -> string option
val parse_all :
?language:language ->
[< `File of string | `Stdin of language
| `Raw of string * language * string ] ->
language * file * statement list Lazy.t
val parse_input :
?language:language ->
[< `File of string | `Stdin of language
| `Raw of string * language * string ] ->
language * file * (unit -> statement option) * (unit -> unit)
module type S = Dolmen_intf.Language.S
with type statement := statement
and type file := file
val of_language : language -> language * string * (module S)
val of_extension : string -> language * string * (module S)
val of_filename : string -> language * string * (module S)
end
module Make
(L : Dolmen_intf.Location.S)
(I : Dolmen_intf.Id.Response)
(T : Dolmen_intf.Term.Response with type location := L.t
and type id := I.t)
(S : Dolmen_intf.Stmt.Response with type location := L.t
and type id := I.t
and type term := T.t)
: S with type file := L.file
and type statement := S.t
= struct
exception Extension_not_found of string
module type S = Dolmen_intf.Language.S
with type statement := S.t
and type file := L.file
type language =
| Smtlib2 of Dolmen_smtlib2.Response.version
let enum = [
"smt2", Smtlib2 `Latest;
"smt2.6", Smtlib2 `V2_6;
]
let string_of_language l =
fst (List.find (fun (_, l') -> l = l') enum)
let assoc = [
(* Smtlib2 *)
Smtlib2 `Latest, ".rsmt2",
(module Dolmen_smtlib2.Response.Latest.Make(L)(I)(T)(S) : S);
Smtlib2 `V2_6, ".rsmt2",
(module Dolmen_smtlib2.Response.V2_6.Make(L)(I)(T)(S) : S);
]
let of_language l =
List.find (fun (l', _, _) -> l = l') assoc
let of_extension ext =
try
List.find (fun (_, ext', _) -> ext = ext') assoc
with Not_found ->
raise (Extension_not_found ext)
let of_filename s = of_extension (Dolmen_std.Misc.get_extension s)
let find ?language ?(dir="") file =
match language with
| None ->
let f =
if Filename.is_relative file then
Filename.concat dir file
else file
in
if Sys.file_exists f then Some f else None
| Some l ->
let _, _, (module P : S) = of_language l in
P.find ~dir file
let parse_all ?language = function
| `File file ->
let l, _, (module P : S) =
match language with
| None -> of_filename file
| Some l -> of_language l
in
let locfile, res = P.parse_all (`File file) in
l, locfile, res
| `Raw (filename, l, s) ->
let l, _, (module P : S) =
match language with
| None -> of_language l
| Some lang -> of_language lang
in
let locfile, res = P.parse_all (`Contents (filename, s)) in
l, locfile, res
| `Stdin l ->
let l, _, (module P : S) =
match language with
| None -> of_language l
| Some lang -> of_language lang
in
let locfile, res = P.parse_all `Stdin in
l, locfile, res
let parse_input ?language = function
| `File file ->
let l, _, (module P : S) =
match language with
| Some l -> of_language l
| None -> of_extension (Dolmen_std.Misc.get_extension file)
in
let locfile, gen, cl = P.parse_input (`File file) in
l, locfile, gen, cl
| `Stdin l ->
let l, _, (module P : S) = of_language
(match language with | Some l' -> l' | None -> l) in
let locfile, gen, cl = P.parse_input `Stdin in
l, locfile, gen, cl
| `Raw (filename, l, s) ->
let _, _, (module P : S) = of_language
(match language with | Some l' -> l' | None -> l) in
let locfile, gen, cl = P.parse_input (`Contents (filename, s)) in
l, locfile, gen, cl
end