Source file caqti_query.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
open Caqti_common_priv
open Caqti_compat [@@warning "-33"]
type t =
| L of string
| Q of string
| P of int
| E of string
| S of t list
let normal =
let rec collect acc = function
| [] -> List.rev acc
| ((L"" | S[]) :: qs) -> collect acc qs
| ((P _ | Q _ | E _ as q) :: qs) -> collect (q :: acc) qs
| (S (q' :: qs') :: qs) -> collect acc (q' :: S qs' :: qs)
| (L s :: qs) -> collectL acc [s] qs
and collectL acc accL = function
| ((L"" | S[]) :: qs) -> collectL acc accL qs
| (L s :: qs) -> collectL acc (s :: accL) qs
| (S (q' :: qs') :: qs) -> collectL acc accL (q' :: S qs' :: qs)
| [] | ((P _ | Q _ | E _) :: _) as qs ->
collect (L (String.concat "" (List.rev accL)) :: acc) qs
in
fun q ->
(match collect [] [q] with
| [] -> S[]
| [q] -> q
| qs -> S qs)
let rec equal t1 t2 =
match t1, t2 with
| L s1, L s2 -> String.equal s1 s2
| Q s1, Q s2 -> String.equal s1 s2
| P i1, P i2 -> Int.equal i1 i2
| E n1, E n2 -> String.equal n1 n2
| S ts1, S ts2 -> List.equal equal ts1 ts2
| L _, _ -> false
| Q _, _ -> false
| P _, _ -> false
| E _, _ -> false
| S _, _ -> false
let hash = Hashtbl.hash
let rec pp ppf = function
| L s -> Format.pp_print_string ppf s
| Q s ->
Format.pp_print_string ppf "E'";
for i = 0 to String.length s - 1 do
(match s.[i] with
| '\\' -> Format.pp_print_string ppf {|\\|}
| '\'' -> Format.pp_print_string ppf {|\'|}
| '\t' -> Format.pp_print_string ppf {|\t|}
| '\n' -> Format.pp_print_string ppf {|\n|}
| '\r' -> Format.pp_print_string ppf {|\r|}
| '\x00'..'\x1f' as c -> Format.fprintf ppf {|\x%02x|} (Char.code c)
| _ -> Format.pp_print_char ppf s.[i])
done;
Format.pp_print_char ppf '\''
| P n -> Format.pp_print_char ppf '$'; Format.pp_print_int ppf (n + 1)
| E n -> Format.fprintf ppf "$(%s)" n
| S qs -> List.iter (pp ppf) qs
let show q =
let buf = Buffer.create 512 in
let ppf = Format.formatter_of_buffer buf in
pp ppf q; Format.pp_print_flush ppf ();
Buffer.contents buf
let concat =
let rec loop pfx acc = function
| [] -> acc
| q :: qs -> loop pfx (pfx :: q :: acc) qs
in
fun sep -> function
| [] -> S[]
| q :: qs -> S (q :: loop (L sep) [] (List.rev qs))
type expand_error = {
query: t;
var: string;
reason: [`Undefined | `Invalid of t];
}
let pp_expand_error ppf {query; var; reason} =
let open Format in
(match reason with
| `Undefined ->
fprintf ppf "Undefined variable %s in query %a" var pp query
| `Invalid expansion ->
fprintf ppf
"While expanding %a, lookup of %s gives %a, which is invalid \
because it contains an environment or parameter reference."
pp query var pp expansion)
exception Expand_error of expand_error
let expand ?(final = false) f query =
let rec is_valid = function
| L _ | Q _ -> true
| P _ | E _ -> false
| S qs -> List.for_all is_valid qs
in
let rec recurse = function
| L _ | Q _ | P _ as q -> q
| E var as q ->
let not_found () =
if not final then q else
raise (Expand_error {query; var; reason = `Undefined})
in
(match f var with
| q' ->
if is_valid q' then q' else
raise (Expand_error {query; var; reason = `Invalid q'})
| exception Not_found ->
let l = String.length var in
if l > 0 && var.[l - 1] = '.' then
(match normal (f (String.sub var 0 (l - 1))) with
| S[] as q' -> q'
| q' -> S[q'; L"."]
| exception Not_found -> not_found ())
else
not_found ())
| S qs -> S (List.map recurse qs)
in
recurse query
module Angstrom_parsers = struct
open Angstrom
let failf = Printf.ksprintf fail
let ign p = p >>| fun _ -> ()
let is_digit = function '0'..'9' -> true | _ -> false
let is_digit_nz = function '1'..'9' -> true | _ -> false
let is_idrfst = function 'a'..'z'|'A'..'Z' | '_' -> true | _ -> false
let is_idrcnt = function 'a'..'z'|'A'..'Z' | '_' | '0'..'9' -> true | _ -> false
let single_quoted = skip_many (ign (not_char '\'') <|> ign (string "''"))
let double_quoted = skip_many (ign (not_char '"') <|> ign (string "\"\""))
let tagged_quote_cont =
consumed (skip is_idrfst *> skip_while is_idrcnt) <* char '$' >>= fun tag ->
many_till any_char (char '$' *> string tag <* char '$') >>| (fun _ -> ())
let verbatim =
let fragment = any_char >>= function
| '\'' -> single_quoted <* char '\''
| '"' -> double_quoted <* char '"'
| '`' -> skip_many (not_char '`') <* char '`'
| '-' ->
(peek_char >>= function
| Some '-' -> skip_while ((<>) '\n') <* char '\n'
| _ -> return ())
| '$' -> tagged_quote_cont
| '?' | ';' as c -> failf "%C is not valid here" c
| _ -> return ()
in
consumed (many1 fragment) >>| (fun s -> (L s))
let skip_idr = skip is_idrfst *> skip_while is_idrcnt
let identifier_dot = consumed (skip_idr *> char '.')
let identifier_dotopt = consumed (option () skip_idr *> option ' ' (char '.'))
let parameter_number = consumed (skip is_digit_nz *> skip_while is_digit)
let lookup =
choice ~failure_msg:"invalid environment lookup" [
string "$(" *> identifier_dotopt <* char ')' >>| (fun v -> E v);
string "$." >>| (fun _ -> E ".");
char '$' *> identifier_dot >>| (fun v -> E v);
]
let untagged_quote =
let nonlookup =
consumed (many1 (satisfy (function '$' -> false | _ -> true)))
>>| (fun s -> (L s))
in
string "$$" *> many_till (lookup <|> nonlookup) (string "$$") >>| fun qs ->
normal (S ([L "$$"] @ qs @ [L "$$"]))
let atom =
peek_char_fail >>= function
| '$' ->
choice ~failure_msg:"invalid dollar sequence" [
char '$' *> parameter_number >>| (fun iP -> P (int_of_string iP - 1));
lookup;
untagged_quote;
verbatim;
]
| '?' ->
let valid_lookahead = peek_char >>= function
| Some ('A'..'Z' | 'a'..'z' | '0'..'9' | '_'
| '!' | '"' | '#' | '$' | '%' | '&' | '\'' | '.' | ':'
| '<' | '=' | '>' | '?' | '@' | '^' | '`' | '|' | '~' as c) ->
failf "%C is not allowed after parameter reference '?'" c
| None | Some _ ->
return ()
in
char '?' >>| (fun _ -> P (-1)) <* valid_lookahead
| _ ->
verbatim
let reindex atoms =
if List.for_all (function P (-1) -> false | _ -> true) atoms then
return atoms
else
let rec loop iP acc = function
| [] -> return (List.rev acc)
| P (-1) :: frags -> loop (iP + 1) (P iP :: acc) frags
| P _ :: _ -> fail "Inconsistent parameter style."
| frag :: frags -> loop iP (frag :: acc) frags
in
loop 0 [] atoms
let expression =
let stop =
peek_char >>= function
| None | Some ';' -> return ()
| _ -> fail "unterminated"
in
fix (fun p -> (stop *> return []) <|> (List.cons <$> atom <*> p))
>>= reindex >>| (function [q] -> q | qs -> S qs)
end
let angstrom_parser = Angstrom_parsers.expression
let of_string s =
let open Angstrom.Unbuffered in
(match parse angstrom_parser with
| Partial {committed = 0; continue} ->
let len = String.length s in
let bs = Bigstringaf.of_string ~off:0 ~len s in
(match continue bs ~off:0 ~len Complete with
| Done (committed, q) when committed = len -> Ok q
| Done (committed, _) | Partial {committed; _} ->
Error (`Invalid (committed, "Expression cannot contain semicolon."))
| Fail (committed, _, msg) ->
Error (`Invalid (committed, msg)))
| Partial _ | Done _ | Fail _ ->
assert false)
let of_string_exn s =
(match of_string s with
| Ok q -> q
| Error (`Invalid (pos, msg)) ->
Printf.kprintf failwith "Parse error at byte %d: %s" pos msg)