Source file Util.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
open Combinators
open Matcher
module Ostap =
struct
module Combinators = Combinators
end
[@@@ocaml.warning "-8-27"]
ostap (
keyword[name]: @(name ^ "\\b" : name)
)
let (~$) = keyword
ostap (
listByWith[delim][item][f][x]: h:item result:(-delim item) * with{f x h}{f} {result}
)
ostap (
listBy[delim][item]: h:item t:(-delim item)* {h::t}
)
ostap (
list1By[delim][item]: h:item t:(-delim item)+ {h::t}
)
ostap (
listWith[item][f][x]: listByWith[ostap (",")][item][f][x]
)
ostap (
list : listBy[ostap (",")]
)
ostap (
list0ByWith[delim][item][f][x]: h:item result:(-delim item) * with{f x h}{f} {result} | empty {x}
)
ostap (
list0By[delim][item]: listBy[delim][item] | empty {[]}
)
ostap (
list0With[item][f][x]: list0ByWith[ostap (",")][item][f][x]
)
ostap (
list0: list0By[ostap (",")]
)
let left f c x y = f (c x) y
let right f c x y = c (f x y)
ostap (
id[x]: x
)
[@@@ocaml.warning "+8+27"]
let expr f ops opnd =
let ops =
Array.map
(fun (assoc, list) ->
let g = match assoc with `Lefta | `Nona -> left | `Righta -> right in
assoc = `Nona, altl (List.map (fun (oper, sema) -> ostap (!(oper) {g sema})) list)
)
ops
in
let n = Array.length ops in
let op i = snd ops.(i) in
let nona i = fst ops.(i) in
let id x = x in
let ostap (
inner[l][c]: !(f (ostap (
{n = l } => x:opnd {c x}
| {n > l && not (nona l)} => x:inner[l+1][id] b:(-o:!(op l) inner[l][o c x])? {
match b with None -> c x | Some x -> x
}
| {n > l && nona l} => x:inner[l+1][id] b:(!(op l) inner[l+1][id])? {
c (match b with None -> x | Some (o, y) -> o id x y)
})))
)
in
ostap (inner[0][id])
let read name =
let inch = open_in_bin name in
let len = in_channel_length inch in
let buf = Bytes.make len ' ' in
really_input inch buf 0 len;
close_in inch;
Bytes.unsafe_to_string buf
module Lexers =
struct
let isKeyword keywords =
let module S = Set.Make (String) in
let s = List.fold_left (fun s k -> S.add k s) S.empty keywords in
(fun i -> S.mem i s)
class checkKeywords keywords =
let k = isKeyword keywords in
object
method private keyword = k
end
class virtual genericIdent regexp name keywords _s =
let regexp = Re.Str.regexp regexp in
object(self : 'self)
inherit checkKeywords keywords
method virtual get : 'b. String.t -> Re.Str.regexp -> (Token.t -> 'self -> ('self, 'b, Reason.t) Types_.result) -> ('self, 'b, Reason.t) Types_.result
method private getIdent : 'b. (String.t -> 'self -> ('self, 'b, Reason.t) Types_.result) -> ('self, 'b, Reason.t) Types_.result =
fun k -> self#get name regexp
(fun t s ->
let r = Token.repr t in
if self#keyword r
then Types_.failWith (new Reason.t (Msg.make "%0 expected" [|name|] (Token.loc t)))
else k r s)
end
class virtual infix _s =
let regexp = Re.Str.regexp "[+*/%$#@!|&^~?<>:=\\-]+" in
object(self : 'self)
method virtual get : 'b. String.t -> Re.Str.regexp -> (Token.t -> 'self -> ('self, 'b, Reason.t) Types_.result) -> ('self, 'b, Reason.t) Types_.result
method getINFIX : 'b. (string -> 'self -> ('self, 'b, Reason.t) Types_.result) -> ('self, 'b, Reason.t) Types_.result =
fun k -> self#get "decimal constant" regexp (fun t s -> k (Token.repr t) s)
end
class virtual uident keywords s =
object inherit genericIdent "[A-Z][a-zA-Z_0-9']*" "u-identifier" keywords s as ident
method getUIDENT : 'b. (String.t -> 'self -> ('self, 'b, Reason.t) Types_.result) -> ('self, 'b, Reason.t) Types_.result = ident#getIdent
end
class virtual lident keywords s =
object inherit genericIdent "[a-z][a-zA-Z_0-9']*" "l-identifier" keywords s as ident
method getLIDENT : 'b. (String.t -> 'self -> ('self, 'b, Reason.t) Types_.result) -> ('self, 'b, Reason.t) Types_.result = ident#getIdent
end
class virtual ident keywords s =
object inherit genericIdent "[a-zA-Z][a-zA-Z_0-9]*" "identifier" keywords s as ident
method getIDENT : 'b. (String.t -> 'self -> ('self, 'b, Reason.t) Types_.result) -> ('self, 'b, Reason.t) Types_.result = ident#getIdent
end
class virtual decimal _s =
let regexp = Re.Str.regexp "-?[0-9]+" in
object(self : 'self)
method virtual get : 'b. String.t -> Re.Str.regexp -> (Token.t -> 'self -> ('self, 'b, Reason.t) Types_.result) -> ('self, 'b, Reason.t) Types_.result
method getDECIMAL : 'b. (int -> 'self -> ('self, 'b, Reason.t) Types_.result) -> ('self, 'b, Reason.t) Types_.result =
fun k -> self#get "decimal constant" regexp (fun t s -> k (int_of_string (Token.repr t)) s)
end
class virtual string _s =
let regexp = Re.Str.regexp "\"\\([^\"]\\|\"\"\\)*\"" in
object(self : 'self)
method virtual get : 'b. String.t -> Re.Str.regexp -> (Token.t -> 'self -> ('self, 'b, Reason.t) Types_.result) -> ('self, 'b, Reason.t) Types_.result
method getSTRING : 'b. (String.t -> 'self -> ('self, 'b, Reason.t) Types_.result) -> ('self, 'b, Reason.t) Types_.result =
fun k -> self#get "string constant" regexp (fun t s -> k (let unquote s =
let s = String.sub s 1 (String.length s - 2) in
let n = String.length s in
let buf = Buffer.create n in
let rec iterate i =
if i < n then (
Buffer.add_char buf s.[i];
iterate (i + if s.[i] = '"' then 2 else 1)
)
in
iterate 0;
Buffer.contents buf
in unquote @@ Token.repr t) s)
end
class virtual char _s =
let regexp = Re.Str.regexp "'\\([^']\\|''\\|\\\\n\\|\\\\t\\)'" in
object(self : 'self)
method virtual get : 'b. String.t -> Re.Str.regexp -> (Token.t -> 'self -> ('self, 'b, Reason.t) Types_.result) -> ('self, 'b, Reason.t) Types_.result
method getCHAR : 'b. (Char.t -> 'self -> ('self, 'b, Reason.t) Types_.result) -> ('self, 'b, Reason.t) Types_.result =
fun k -> self#get "character constant" regexp (fun t s -> k (let s = Token.repr t in
match String.sub s 1 (String.length s - 2) with
| "\\t" -> '\t'
| "\\n" -> '\n'
| "''" -> '\''
| s -> s.[0]
) s)
end
class skip skippers s =
object inherit Matcher.t s
val! skipper = Skip.create skippers s
method! skip = skipper
end
end
let parse l p =
unwrap (p l (fun res s -> Types_.Parsed ((res, s), None)))
(fun x -> `Ok x)
(fun x ->
match x with
| Some err ->
let [loc, m :: _] = err#retrieve (`First 1) (`Desc) in
let m = match m with `Msg m -> m | `Comment (s, _) -> Msg.make s [||] loc in
`Fail (Msg.toString m)
| _ -> `Fail "Oh, no error explanation"
)