forked from rescript-lang/rescript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathast_utf8_string_interp.ml
310 lines (280 loc) · 10.1 KB
/
ast_utf8_string_interp.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
(* Copyright (C) 2015-2016 Bloomberg Finance L.P.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* In addition to the permissions granted to you by the LGPL, you may combine
* or link a "work that uses the Library" with a publicly distributed version
* of this file to produce a combined library or application, then distribute
* that combined work under the terms of your choosing, with no requirement
* to comply with the obligations normally placed on you by section 4 of the
* LGPL version 3 (or the corresponding section of a later version of the LGPL
* should you choose to use a later version).
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *)
type error =
| Invalid_code_point
| Unterminated_backslash
| Invalid_escape_code of char
| Invalid_hex_escape
| Invalid_unicode_escape
| Unterminated_variable
| Unmatched_paren
| Invalid_syntax_of_var of string
type kind = String | Var of int * int
(* [Var (loffset, roffset)]
For parens it used to be (2,-1)
for non-parens it used to be (1,0)
*)
type pos = {
lnum: int;
offset: int;
byte_bol: int;
(* Note it actually needs to be in sync with OCaml's lexing semantics *)
}
(** Note the position is about code point *)
type segment = {start: pos; finish: pos; kind: kind; content: string}
type segments = segment list
type cxt = {
mutable segment_start: pos;
buf: Buffer.t;
s_len: int;
mutable segments: segments;
mutable pos_bol: int;
(* record the abs position of current beginning line *)
mutable byte_bol: int;
mutable pos_lnum: int; (* record the line number *)
}
type exn += Error of pos * pos * error
let valid_lead_identifier_char x =
match x with
| 'a' .. 'z' | '_' -> true
| _ -> false
(** Invariant: [valid_lead_identifier] has to be [valid_identifier] *)
let valid_identifier_char x =
match x with
| 'a' .. 'z' | 'A' .. 'Z' | '0' .. '9' | '_' | '\'' -> true
| _ -> false
let valid_identifier s =
let s_len = String.length s in
if s_len = 0 then false
else
valid_lead_identifier_char s.[0]
&& Ext_string.for_all_from s 1 valid_identifier_char
(* let is_space x =
match x with
| ' ' | '\n' | '\t' -> true
| _ -> false *)
(** Note [Var] kind can not be mpty *)
let empty_segment {content} = Ext_string.is_empty content
let update_newline ~byte_bol loc cxt =
cxt.pos_lnum <- cxt.pos_lnum + 1;
cxt.pos_bol <- loc;
cxt.byte_bol <- byte_bol
let pos_error cxt ~loc error =
raise
(Error
( cxt.segment_start,
{
lnum = cxt.pos_lnum;
offset = loc - cxt.pos_bol;
byte_bol = cxt.byte_bol;
},
error ))
let add_var_segment cxt loc loffset roffset =
let content = Buffer.contents cxt.buf in
Buffer.clear cxt.buf;
let next_loc =
{lnum = cxt.pos_lnum; offset = loc - cxt.pos_bol; byte_bol = cxt.byte_bol}
in
if valid_identifier content then (
cxt.segments <-
{
start = cxt.segment_start;
finish = next_loc;
kind = Var (loffset, roffset);
content;
}
:: cxt.segments;
cxt.segment_start <- next_loc)
else pos_error cxt ~loc (Invalid_syntax_of_var content)
let add_str_segment cxt loc =
let content = Buffer.contents cxt.buf in
Buffer.clear cxt.buf;
let next_loc =
{lnum = cxt.pos_lnum; offset = loc - cxt.pos_bol; byte_bol = cxt.byte_bol}
in
cxt.segments <-
{start = cxt.segment_start; finish = next_loc; kind = String; content}
:: cxt.segments;
cxt.segment_start <- next_loc
let rec check_and_transform (loc : int) s byte_offset
({s_len; buf} as cxt : cxt) =
if byte_offset = s_len then add_str_segment cxt loc
else
let current_char = s.[byte_offset] in
match Ext_utf8.classify current_char with
| Single 92 (* '\\' *) -> escape_code (loc + 1) s (byte_offset + 1) cxt
| Single 34 ->
Buffer.add_string buf "\\\"";
check_and_transform (loc + 1) s (byte_offset + 1) cxt
| Single 10 ->
Buffer.add_string buf "\\n";
let loc = loc + 1 in
let byte_offset = byte_offset + 1 in
update_newline ~byte_bol:byte_offset loc cxt;
(* Note variable could not have new-line *)
check_and_transform loc s byte_offset cxt
| Single 13 ->
Buffer.add_string buf "\\r";
check_and_transform (loc + 1) s (byte_offset + 1) cxt
| Single 36 ->
(* $ *)
add_str_segment cxt loc;
let offset = byte_offset + 1 in
if offset >= s_len then pos_error ~loc cxt Unterminated_variable
else
let cur_char = s.[offset] in
if cur_char = '(' then expect_var_paren (loc + 2) s (offset + 1) cxt
else expect_simple_var (loc + 1) s offset cxt
| Single _ ->
Buffer.add_char buf current_char;
check_and_transform (loc + 1) s (byte_offset + 1) cxt
| Invalid | Cont _ -> pos_error ~loc cxt Invalid_code_point
| Leading (n, _) ->
let i' = Ext_utf8.next s ~remaining:n byte_offset in
if i' < 0 then pos_error cxt ~loc Invalid_code_point
else (
for k = byte_offset to i' do
Buffer.add_char buf s.[k]
done;
check_and_transform (loc + 1) s (i' + 1) cxt)
(* Lets keep identifier simple, so that we could generating a function easier in the future
for example
let f = [%fn{| $x + $y = $x_add_y |}]
*)
and expect_simple_var loc s offset ({buf; s_len} as cxt) =
let v = ref offset in
(* prerr_endline @@ Ext_pervasives.dump (s, has_paren, (is_space s.[!v]), !v); *)
if not (offset < s_len && valid_lead_identifier_char s.[offset]) then
pos_error cxt ~loc (Invalid_syntax_of_var Ext_string.empty)
else (
while !v < s_len && valid_identifier_char s.[!v] do
(* TODO*)
let cur_char = s.[!v] in
Buffer.add_char buf cur_char;
incr v
done;
let added_length = !v - offset in
let loc = added_length + loc in
add_var_segment cxt loc 1 0;
check_and_transform loc s (added_length + offset) cxt)
and expect_var_paren loc s offset ({buf; s_len} as cxt) =
let v = ref offset in
(* prerr_endline @@ Ext_pervasives.dump (s, has_paren, (is_space s.[!v]), !v); *)
while !v < s_len && s.[!v] <> ')' do
let cur_char = s.[!v] in
Buffer.add_char buf cur_char;
incr v
done;
let added_length = !v - offset in
let loc = added_length + 1 + loc in
if !v < s_len && s.[!v] = ')' then (
add_var_segment cxt loc 2 (-1);
check_and_transform loc s (added_length + 1 + offset) cxt)
else pos_error cxt ~loc Unmatched_paren
(* we share the same escape sequence with js *)
and escape_code loc s offset ({buf; s_len} as cxt) =
if offset >= s_len then pos_error cxt ~loc Unterminated_backslash
else Buffer.add_char buf '\\';
let cur_char = s.[offset] in
match cur_char with
| '\\' | 'b' | 't' | 'n' | 'v' | 'f' | 'r' | '0' | '$' ->
Buffer.add_char buf cur_char;
check_and_transform (loc + 1) s (offset + 1) cxt
| 'u' ->
Buffer.add_char buf cur_char;
unicode (loc + 1) s (offset + 1) cxt
| 'x' ->
Buffer.add_char buf cur_char;
two_hex (loc + 1) s (offset + 1) cxt
| _ -> pos_error cxt ~loc (Invalid_escape_code cur_char)
and two_hex loc s offset ({buf; s_len} as cxt) =
if offset + 1 >= s_len then pos_error cxt ~loc Invalid_hex_escape;
let a, b = (s.[offset], s.[offset + 1]) in
if Ext_char.valid_hex a && Ext_char.valid_hex b then (
Buffer.add_char buf a;
Buffer.add_char buf b;
check_and_transform (loc + 2) s (offset + 2) cxt)
else pos_error cxt ~loc Invalid_hex_escape
and unicode loc s offset ({buf; s_len} as cxt) =
if offset + 3 >= s_len then pos_error cxt ~loc Invalid_unicode_escape;
let a0, a1, a2, a3 =
(s.[offset], s.[offset + 1], s.[offset + 2], s.[offset + 3])
in
if
Ext_char.valid_hex a0 && Ext_char.valid_hex a1 && Ext_char.valid_hex a2
&& Ext_char.valid_hex a3
then (
Buffer.add_char buf a0;
Buffer.add_char buf a1;
Buffer.add_char buf a2;
Buffer.add_char buf a3;
check_and_transform (loc + 4) s (offset + 4) cxt)
else pos_error cxt ~loc Invalid_unicode_escape
let transform_test s =
let s_len = String.length s in
let buf = Buffer.create (s_len * 2) in
let cxt =
{
segment_start = {lnum = 0; offset = 0; byte_bol = 0};
buf;
s_len;
segments = [];
pos_lnum = 0;
byte_bol = 0;
pos_bol = 0;
}
in
check_and_transform 0 s 0 cxt;
List.rev cxt.segments
module Delim = struct
let parse_processed = function
| None -> Some External_arg_spec.DNone
| Some "json" -> Some DNoQuotes
| Some "*j" -> Some DStarJ
| _ -> None
type interpolation =
| Js (* string interpolation *)
| Unrecognized (* no interpolation: delimiter not recognized *)
let parse_unprocessed = function
| "js" -> Js
| _ -> Unrecognized
let escaped_j_delimiter = "*j" (* not user level syntax allowed *)
let unescaped_js_delimiter = "js"
let escaped = Some escaped_j_delimiter
end
let transform_exp (e : Parsetree.expression) s delim : Parsetree.expression =
match Delim.parse_unprocessed delim with
| Js ->
let js_str = Ast_utf8_string.transform e.pexp_loc s in
{e with pexp_desc = Pexp_constant (Pconst_string (js_str, Delim.escaped))}
| Unrecognized -> e
let transform_pat (p : Parsetree.pattern) s delim : Parsetree.pattern =
match Delim.parse_unprocessed delim with
| Js ->
let js_str = Ast_utf8_string.transform p.ppat_loc s in
{p with ppat_desc = Ppat_constant (Pconst_string (js_str, Delim.escaped))}
| Unrecognized -> p
let is_unicode_string opt = Ext_string.equal opt Delim.escaped_j_delimiter
let is_unescaped s = Ext_string.equal s Delim.unescaped_js_delimiter
let parse_processed_delim = Delim.parse_processed