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
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
# 1 "lsp/src/uri_lexer.mll"
type t =
{ scheme : string
; authority : string
; path : string
}
let int_of_hex_char c =
let c = int_of_char (Char.uppercase_ascii c) - 48 in
if c > 9 then
if c > 16 && c < 23 then Some (c - 7) else None
else if c >= 0 then
Some c
else
None
let decode b =
let len = String.length b in
let buf = Buffer.create len in
let rec scan start cur =
if cur >= len then
Buffer.add_substring buf b start (cur - start)
else if b.[cur] = '%' then (
Buffer.add_substring buf b start (cur - start);
let cur = cur + 1 in
if cur >= len then
Buffer.add_char buf '%'
else
match int_of_hex_char b.[cur] with
| None ->
Buffer.add_char buf '%';
scan cur cur
| Some highbits ->
let cur = cur + 1 in
if cur >= len then (
Buffer.add_char buf '%';
Buffer.add_char buf b.[cur - 1])
else
let start_at =
match int_of_hex_char b.[cur] with
| Some lowbits ->
Buffer.add_char buf (Char.chr ((highbits lsl 4) + lowbits));
cur + 1
| None ->
Buffer.add_char buf '%';
Buffer.add_char buf b.[cur - 1];
cur
in
scan start_at start_at)
else
scan start (cur + 1)
in
scan 0 0;
Buffer.contents buf
# 59 "lsp/src/uri_lexer.ml"
let __ocaml_lex_tables = {
Lexing.lex_base =
"\000\000\001\000\002\000\003\000\004\000\005\000\006\000\007\000\
\008\000\009\000\010\000\012\000\011\000\013\000\014\000\015\000\
\016\000";
Lexing.lex_backtrk =
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\000\000\000\000\000\000\000\000\004\000\003\000\003\000\002\000\
\001\000";
Lexing.lex_default =
"\003\000\001\000\001\000\003\000\005\000\005\000\005\000\007\000\
\008\000\009\000\010\000\012\000\012\000\014\000\014\000\015\000\
\016\000";
Lexing.lex_trans =
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\000\000\000\000\000\000\255\255\255\255\255\255\255\255\255\255\
\255\255\255\255\255\255\255\255\255\255\255\255\000\000\002\000\
\000\000\009\000\001\000\006\000\000\000\007\000\008\000\000\000\
\010\000\000\000\001\000\013\000\015\000\004\000\016\000\255\255\
\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\
\255\255\255\255\000\000\000\000\000\000\000\000\000\000\000\000\
\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\
\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\
\255\255";
Lexing.lex_check =
"\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\
\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\
\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\
\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\
\255\255\255\255\255\255\000\000\001\000\002\000\003\000\004\000\
\005\000\006\000\007\000\008\000\009\000\010\000\255\255\000\000\
\255\255\002\000\003\000\004\000\255\255\006\000\007\000\255\255\
\009\000\255\255\000\000\011\000\013\000\003\000\015\000\000\000\
\001\000\002\000\003\000\004\000\005\000\006\000\007\000\008\000\
\009\000\010\000\255\255\255\255\255\255\255\255\255\255\255\255\
\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\
\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\
\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\
\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\
\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\
\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\
\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\
\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\
\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\
\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\
\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\
\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\
\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\
\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\
\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\
\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\
\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\
\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\
\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\
\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\
\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\
\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\
\000\000\001\000\002\000\003\000\004\000\005\000\006\000\007\000\
\008\000\009\000\010\000\012\000\011\000\013\000\014\000\015\000\
\016\000";
Lexing.lex_base_code =
"\000\000\000\000\001\000\002\000\000\000\000\000\003\000\004\000\
\000\000\005\000\000\000\000\000\000\000\006\000\000\000\007\000\
\000\000";
Lexing.lex_backtrk_code =
"\001\000\001\000\001\000\001\000\021\000\021\000\021\000\030\000\
\030\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\
\058\000";
Lexing.lex_default_code =
"\008\000\000\000\000\000\008\000\000\000\000\000\000\000\041\000\
\000\000\041\000\000\000\000\000\000\000\000\000\000\000\055\000\
\000\000";
Lexing.lex_trans_code =
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\011\000\000\000\011\000\000\000\000\000\055\000\000\000\000\000\
\000\000\000\000\000\000\000\000\018\000\000\000\000\000\000\000\
\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
";
Lexing.lex_check_code =
"\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\
\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\
\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\
\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\
\255\255\255\255\255\255\000\000\255\255\003\000\255\255\007\000\
\009\000\255\255\255\255\255\255\255\255\255\255\255\255\000\000\
\002\000\003\000\006\000\007\000\009\000\013\000\015\000\255\255\
\255\255\255\255\000\000\255\255\003\000\255\255\255\255\000\000\
\255\255\003\000\255\255\007\000\009\000\255\255\255\255\255\255\
\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\
\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\
\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\
\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\
\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\
\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\
\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\
\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\
\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\
\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\
\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\
\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\
\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\
\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\
\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\
\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\
\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\
\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\
\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\
\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\
\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\
\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\
\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\
\000\000\255\255\003\000\255\255\007\000\009\000\255\255\015\000\
";
Lexing.lex_code =
"\255\004\255\002\255\000\005\255\007\255\255\009\255\008\255\005\
\255\255\005\255\255\002\255\004\006\003\007\000\005\255\004\006\
\003\007\000\005\002\009\001\008\255\005\255\008\255\255\004\255\
\000\005\002\009\001\008\255\001\255\255\000\001\255";
}
let rec uri lexbuf =
lexbuf.Lexing.lex_mem <- Array.make 10 (-1);
lexbuf.Lexing.lex_mem.(6) <- lexbuf.Lexing.lex_curr_pos ;
lexbuf.Lexing.lex_mem.(5) <- lexbuf.Lexing.lex_curr_pos ;
__ocaml_lex_uri_rec lexbuf 0
and __ocaml_lex_uri_rec lexbuf __ocaml_lex_state =
match Lexing.new_engine __ocaml_lex_tables __ocaml_lex_state lexbuf with
| 0 ->
let
# 59 "lsp/src/uri_lexer.mll"
scheme
# 245 "lsp/src/uri_lexer.ml"
= Lexing.sub_lexeme_opt lexbuf lexbuf.Lexing.lex_mem.(4) lexbuf.Lexing.lex_mem.(3)
and
# 60 "lsp/src/uri_lexer.mll"
authority
# 250 "lsp/src/uri_lexer.ml"
= Lexing.sub_lexeme_opt lexbuf lexbuf.Lexing.lex_mem.(2) lexbuf.Lexing.lex_mem.(1)
and
# 61 "lsp/src/uri_lexer.mll"
path
# 255 "lsp/src/uri_lexer.ml"
= Lexing.sub_lexeme lexbuf lexbuf.Lexing.lex_mem.(0) lexbuf.Lexing.lex_curr_pos in
# 62 "lsp/src/uri_lexer.mll"
(
let open Import in
let scheme = scheme |> Option.value ~default:"file" in
let authority =
authority |> Option.map decode |> Option.value ~default:""
in
let path =
let path = path |> decode in
match scheme with
| "http" | "https" | "file" ->
String.add_prefix_if_not_exists path ~prefix:"/"
| _ -> path
in
{ scheme; authority; path; }
)
# 273 "lsp/src/uri_lexer.ml"
| __ocaml_lex_state -> lexbuf.Lexing.refill_buff lexbuf;
__ocaml_lex_uri_rec lexbuf __ocaml_lex_state
and path lexbuf =
lexbuf.Lexing.lex_mem <- Array.make 2 (-1); __ocaml_lex_path_rec lexbuf 11
and __ocaml_lex_path_rec lexbuf __ocaml_lex_state =
match Lexing.new_engine __ocaml_lex_tables __ocaml_lex_state lexbuf with
| 0 ->
# 79 "lsp/src/uri_lexer.mll"
( { scheme = "file"; authority = ""; path = "/" } )
# 285 "lsp/src/uri_lexer.ml"
| 1 ->
let
# 80 "lsp/src/uri_lexer.mll"
authority
# 291 "lsp/src/uri_lexer.ml"
= Lexing.sub_lexeme lexbuf (lexbuf.Lexing.lex_start_pos + 2) lexbuf.Lexing.lex_mem.(0)
and
# 80 "lsp/src/uri_lexer.mll"
path
# 296 "lsp/src/uri_lexer.ml"
= Lexing.sub_lexeme lexbuf lexbuf.Lexing.lex_mem.(0) lexbuf.Lexing.lex_curr_pos in
# 80 "lsp/src/uri_lexer.mll"
( { scheme = "file"; authority; path } )
# 300 "lsp/src/uri_lexer.ml"
| 2 ->
let
# 81 "lsp/src/uri_lexer.mll"
authority
# 306 "lsp/src/uri_lexer.ml"
= Lexing.sub_lexeme lexbuf (lexbuf.Lexing.lex_start_pos + 2) lexbuf.Lexing.lex_curr_pos in
# 81 "lsp/src/uri_lexer.mll"
( { scheme = "file"; authority; path = "/" } )
# 310 "lsp/src/uri_lexer.ml"
| 3 ->
let
# 82 "lsp/src/uri_lexer.mll"
path
# 316 "lsp/src/uri_lexer.ml"
= Lexing.sub_lexeme lexbuf lexbuf.Lexing.lex_start_pos lexbuf.Lexing.lex_curr_pos in
# 82 "lsp/src/uri_lexer.mll"
( { scheme = "file"; authority = ""; path } )
# 320 "lsp/src/uri_lexer.ml"
| 4 ->
let
# 83 "lsp/src/uri_lexer.mll"
path
# 326 "lsp/src/uri_lexer.ml"
= Lexing.sub_lexeme lexbuf lexbuf.Lexing.lex_start_pos lexbuf.Lexing.lex_curr_pos in
# 83 "lsp/src/uri_lexer.mll"
( { scheme = "file"; authority = ""; path = "/" ^ path } )
# 330 "lsp/src/uri_lexer.ml"
| __ocaml_lex_state -> lexbuf.Lexing.refill_buff lexbuf;
__ocaml_lex_path_rec lexbuf __ocaml_lex_state
;;
# 86 "lsp/src/uri_lexer.mll"
let of_string s =
let lexbuf = Lexing.from_string s in
uri lexbuf
let of_path s =
let lexbuf = Lexing.from_string s in
path lexbuf
# 347 "lsp/src/uri_lexer.ml"