Source file cLexer.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
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
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
open Pp
open Util
open Tok
module Stream = Gramlib.Stream
module CharOrd = struct type t = char let compare : char -> char -> int = compare end
module CharMap = Map.Make (CharOrd)
type starts_quotation = NoQuotation | Quotation
type ttree = {
node : (string * starts_quotation) option;
branch : ttree CharMap.t;
}
let empty_keyword_state = { node = None; branch = CharMap.empty }
let ttree_add ttree (str,quot) =
let rec insert tt i =
if i == String.length str then
{node = Some (str,quot); branch = tt.branch}
else
let c = str.[i] in
let br =
match try Some (CharMap.find c tt.branch) with Not_found -> None with
| Some tt' ->
CharMap.add c (insert tt' (i + 1)) (CharMap.remove c tt.branch)
| None ->
let tt' = {node = None; branch = CharMap.empty} in
CharMap.add c (insert tt' (i + 1)) tt.branch
in
{ node = tt.node; branch = br }
in
insert ttree 0
let ttree_find ttree str =
let rec proc_rec tt i =
if i == String.length str then tt
else proc_rec (CharMap.find str.[i] tt.branch) (i+1)
in
proc_rec ttree 0
let ttree_elements ttree =
let rec elts tt accu =
let accu = match tt.node with
| None -> accu
| Some (s,_) -> CString.Set.add s accu
in
CharMap.fold (fun _ tt accu -> elts tt accu) tt.branch accu
in
elts ttree CString.Set.empty
module Error = struct
type t =
| Illegal_character
| Unterminated_string
| Undefined_token
| Bad_token of string
exception E of t
let to_string x =
"Syntax Error: Lexer: " ^
(match x with
| Illegal_character -> "Illegal character"
| Unterminated_comment -> "Unterminated comment"
| Unterminated_string -> "Unterminated string"
| Undefined_token -> "Undefined token"
| Bad_token tok -> Format.sprintf "Bad token %S" tok)
end
open Error
let err loc str = Loc.raise ~loc (Error.E str)
let bad_token str = raise (Error.E (Bad_token str))
let set_loc_pos loc bp ep =
Loc.sub loc (bp - loc.Loc.bp) (ep - bp)
let bump_loc_line loc bol_pos =
Loc.{ loc with
line_nb = loc.line_nb + 1;
line_nb_last = loc.line_nb + 1;
bol_pos;
bol_pos_last = bol_pos;
}
let bump_loc_line_last loc bol_pos =
let open Loc in
let loc' = { loc with
line_nb = loc.line_nb_last + 1;
line_nb_last = loc.line_nb_last + 1;
bol_pos;
bol_pos_last = bol_pos;
bp = loc.bp + 1;
ep = loc.ep + 1;
} in
Loc.merge loc loc'
let after loc =
Loc.{ loc with
line_nb = loc.line_nb_last;
bol_pos = loc.bol_pos_last;
bp = loc.ep;
}
(** Lexer conventions on tokens *)
type token_kind =
| Utf8Token of (Unicode.status * int)
| EmptyStream
let error_utf8 loc cs =
let bp = Stream.count cs in
Stream.junk () cs;
let loc = set_loc_pos loc bp (bp+1) in
err loc Illegal_character
let check_utf8_trailing_byte loc cs c =
if not (Int.equal (Char.code c land 0xC0) 0x80) then error_utf8 loc cs
let lookup_utf8_char loc nj cs =
match try Some (List.nth (Stream.npeek () (nj+1) cs) nj) with Failure _ -> None with
| None -> []
| Some c1 ->
match c1 with
| '\x00'..'\x7F' -> [c1]
| c1 ->
let c1 = Char.code c1 in
if Int.equal (c1 land 0x40) 0 || Int.equal (c1 land 0x38) 0x38 then error_utf8 loc cs else
if Int.equal (c1 land 0x20) 0 then
match List.skipn nj (Stream.npeek () (nj+2) cs) with
| [_;c2] as l -> check_utf8_trailing_byte loc cs c2; l
| _ -> error_utf8 loc cs
else if Int.equal (c1 land 0x10) 0 then
match List.skipn nj (Stream.npeek () (nj+3) cs) with
| [_;c2;c3] as l ->
check_utf8_trailing_byte loc cs c2;
check_utf8_trailing_byte loc cs c3;
l
| _ -> error_utf8 loc cs
else match List.skipn nj (Stream.npeek () (nj+4) cs) with
| [_;c2;c3;c4] as l ->
check_utf8_trailing_byte loc cs c2;
check_utf8_trailing_byte loc cs c3;
check_utf8_trailing_byte loc cs c4;
l
| _ -> error_utf8 loc cs
let status_of_utf8 = function
| [] -> EmptyStream
| l ->
let n, unicode = match l with
| [c1] -> 1, Char.code c1
| [c1;c2] -> 2, (Char.code c1 land 0x1F) lsl 6 + (Char.code c2 land 0x3F)
| [c1;c2;c3] ->
3, (Char.code c1 land 0x0F) lsl 12 + (Char.code c2 land 0x3F) lsl 6 +
(Char.code c3 land 0x3F)
| [c1;c2;c3;c4] ->
4, (Char.code c1 land 0x07) lsl 18 + (Char.code c2 land 0x3F) lsl 12 +
(Char.code c3 land 0x3F) lsl 6 + (Char.code c4 land 0x3F)
| _ -> assert false
in
Utf8Token (Unicode.classify unicode, n)
let lookup_utf8 loc cs =
status_of_utf8 (lookup_utf8_char loc 0 cs)
let is_letter l =
match status_of_utf8 l with
| EmptyStream -> false
| Utf8Token (st,_) -> Unicode.is_letter st
let unlocated f x =
let dummy_loc = Loc.(initial ToplevelInput) in
f dummy_loc x
(** FIXME: should we still unloc the exception? *)
let check_keyword str =
let rec loop_symb s = match Stream.peek () s with
| Some (' ' | '\n' | '\r' | '\t') ->
Stream.junk () s;
bad_token str
| _ ->
match unlocated lookup_utf8 s with
| Utf8Token (_,n) -> Stream.njunk () n s; loop_symb s
| EmptyStream -> ()
in
loop_symb (Stream.of_string str)
let check_ident str =
let rec loop_id intail s =
match unlocated lookup_utf8 s with
| Utf8Token (st, n) when not intail && Unicode.is_valid_ident_initial st ->
Stream.njunk () n s; loop_id true s
| Utf8Token (st, n) when intail && Unicode.is_valid_ident_trailing st ->
Stream.njunk () n s;
loop_id true s
| EmptyStream -> ()
| Utf8Token _ -> bad_token str
in
loop_id false (Stream.of_string str)
let is_ident str =
try let _ = check_ident str in true with Error.E _ -> false
let is_keyword ttree s =
try match (ttree_find ttree s).node with None -> false | Some _ -> true
with Not_found -> false
let add_keyword ?(quotation=NoQuotation) ttree str =
if not (is_keyword ttree str) then
begin
check_keyword str;
ttree_add ttree (str,quotation)
end
else ttree
let add_keyword_tok : type c. _ -> c Tok.p -> _ = fun ttree -> function
| PKEYWORD s -> add_keyword ~quotation:NoQuotation ttree s
| PQUOTATION s -> add_keyword ~quotation:Quotation ttree s
| _ -> ttree
let keywords = ttree_elements
type keyword_state = ttree
let buff = ref (Bytes.create 80)
let store len x =
let open Bytes in
if len >= length !buff then
buff := cat !buff (create (length !buff));
set !buff len x;
succ len
let rec nstore n len cs =
if n>0 then nstore (n-1) (store len (Stream.next () cs)) cs else len
let get_buff len = Bytes.sub_string !buff 0 len
let warn_unrecognized_unicode =
CWarnings.create ~name:"unrecognized-unicode" ~category:CWarnings.CoreCategories.parsing
(fun (u,id) ->
strbrk (Printf.sprintf "Not considering unicode character \"%s\" of unknown \
lexical status as part of identifier \"%s\"." u id))
let rec ident_tail loc len s =
match lookup_utf8 loc s with
| Utf8Token (st, n) when Unicode.is_valid_ident_trailing st ->
ident_tail loc (nstore n len s) s
| Utf8Token (st, n) when Unicode.is_unknown st ->
let id = get_buff len in
let u = String.concat "" (List.map (String.make 1) (Stream.npeek () n s)) in
warn_unrecognized_unicode ~loc (u,id); len
| _ -> len
let =
CWarnings.create ~name:"comment-terminator-in-string" ~category:CWarnings.CoreCategories.parsing
(fun () ->
(strbrk
"Not interpreting \"*)\" as the end of current \
non-terminated comment because it occurs in a \
non-terminated string of the comment."))
let rec string loc ~comm_level bp len s = match Stream.peek () s with
| Some '"' ->
Stream.junk () s;
let esc =
match Stream.peek () s with
Some '"' -> Stream.junk () s; true
| _ -> false
in
if esc then string loc ~comm_level bp (store len '"') s else (loc, len)
| Some '(' ->
Stream.junk () s;
(fun s -> match Stream.peek () s with
| Some '*' ->
Stream.junk () s;
let comm_level = Option.map succ comm_level in
string loc ~comm_level
bp (store (store len '(') '*')
s
| _ ->
string loc ~comm_level bp (store len '(') s) s
| Some '*' ->
Stream.junk () s;
(fun s -> match Stream.peek () s with
| Some ')' ->
Stream.junk () s;
let () = match comm_level with
| Some 0 ->
warn_comment_terminator_in_string ~loc ()
| _ -> ()
in
let comm_level = Option.map pred comm_level in
string loc ~comm_level bp (store (store len '*') ')') s
| _ ->
string loc ~comm_level bp (store len '*') s) s
| Some ('\n' as c) ->
Stream.junk () s;
let ep = Stream.count s in
let loc =
if Option.has_some comm_level then bump_loc_line loc ep
else bump_loc_line_last loc ep
in
string loc ~comm_level bp (store len c) s
| Some c ->
Stream.junk () s;
string loc ~comm_level bp (store len c) s
| _ ->
let () = if not (Stream.is_empty () s) then raise Stream.Failure in
let ep = Stream.count s in
let loc = set_loc_pos loc bp ep in
err loc Unterminated_string
let = ref None
let comm_loc bp = match !comment_begin with
| None -> comment_begin := Some bp
| _ -> ()
let = ref []
let = Buffer.create 8192
let real_push_char c = Buffer.add_char current_comment c
let push_string s = Buffer.add_string current_comment s
let dbg = CDebug.create ~name:"comment-lexing" ()
let ep =
let current_s = Buffer.contents current_comment in
(if !Flags.record_comments && Buffer.length current_comment > 0 then
let bp = match !comment_begin with
Some bp -> bp
| None ->
Feedback.msg_debug
(str "No begin location for comment '"
++ str current_s ++str"' ending at "
++ int ep);
ep-1 in
dbg Pp.(fun () ->
str "comment at chars " ++ int bp ++ str "-" ++ int ep ++ str ":" ++ fnl() ++
str current_s);
comments := ((bp,ep),current_s) :: !comments);
Buffer.clear current_comment;
comment_begin := None
let rec loc bp s =
let bp2 = Stream.count s in
match Stream.peek () s with
Some '(' ->
Stream.junk () s;
let loc =
try
match Stream.peek () s with
Some '*' ->
Stream.junk () s;
push_string "(*"; comment loc bp s
| _ -> push_string "("; loc
with Stream.Failure -> raise (Gramlib.Grammar.Error "")
in
comment loc bp s
| Some '*' ->
Stream.junk () s;
begin try
match Stream.peek () s with
Some ')' -> Stream.junk () s; push_string "*)"; loc
| _ -> real_push_char '*'; comment loc bp s
with Stream.Failure -> raise (Gramlib.Grammar.Error "")
end
| Some '"' ->
Stream.junk () s;
let loc, len = string loc ~comm_level:(Some 0) bp2 0 s in
push_string "\""; push_string (get_buff len); push_string "\"";
comment loc bp s
| _ ->
match Stream.is_empty () s with
| true ->
let ep = Stream.count s in
let loc = set_loc_pos loc bp ep in
err loc Unterminated_comment
| false ->
match Stream.peek () s with
Some ('\n' as z) ->
Stream.junk () s;
let ep = Stream.count s in
real_push_char z; comment (bump_loc_line loc ep) bp s
| Some z ->
Stream.junk () s;
real_push_char z; comment loc bp s
| _ -> raise Stream.Failure
let update_longest_valid_token last nj tt cs =
match tt.node with
| Some _ as last' ->
Stream.njunk () nj cs; 0, last'
| None ->
nj, last
let rec progress_further loc last nj last_is_letter tt cs =
match lookup_utf8_char loc nj cs with
| [] -> snd (update_longest_valid_token last nj tt cs)
| l -> progress_utf8 loc last nj last_is_letter tt cs l
and progress_utf8 loc last nj last_is_letter tt cs l =
let is_letter' = is_letter l in
let nj, last = if last_is_letter && is_letter' then nj, last else update_longest_valid_token last nj tt cs in
try
let tt = List.fold_left (fun tt c -> CharMap.find c tt.branch) tt l in
progress_further loc last (nj + List.length l) is_letter' tt cs
with Not_found ->
last
let blank_or_eof cs =
match Stream.peek () cs with
| None -> true
| Some (' ' | '\t' | '\n' |'\r') -> true
| _ -> false
type marker = Delimited of int * char list * char list | ImmediateAsciiIdent
let peek_marker_len b e s =
let rec peek n =
match Stream.nth () n s with
| c -> if c = b then peek (n+1) else n, List.make n b, List.make n e
| exception Stream.Failure -> n, List.make n b, List.make n e
in
let len, start, stop = peek 0 in
if len = 0 then raise Stream.Failure
else Delimited (len, start, stop)
let peek_marker s =
match Stream.nth () 0 s with
| '(' -> peek_marker_len '(' ')' s
| '[' -> peek_marker_len '[' ']' s
| '{' -> peek_marker_len '{' '}' s
| ('a'..'z' | 'A'..'Z' | '_') -> ImmediateAsciiIdent
| _ -> raise Stream.Failure
let parse_quotation loc bp s =
match peek_marker s with
| ImmediateAsciiIdent ->
let c = Stream.next () s in
let len =
try ident_tail loc (store 0 c) s with
Stream.Failure -> raise (Gramlib.Grammar.Error "")
in
get_buff len, set_loc_pos loc bp (Stream.count s)
| Delimited (lenmarker, bmarker, emarker) ->
let dot_gobbling =
match bmarker with
| '{' :: '{' :: _ -> true
| _ -> false in
let b = Buffer.create 80 in
let commit1 c = Buffer.add_char b c; Stream.junk () s in
let commit l = List.iter commit1 l in
let rec quotation loc depth =
match Stream.npeek () lenmarker s with
| l when l = bmarker ->
commit l;
quotation loc (depth + 1)
| l when l = emarker ->
commit l;
if depth > 1 then quotation loc (depth - 1) else loc
| '\n' :: cs ->
commit1 '\n';
let loc = bump_loc_line_last loc (Stream.count s) in
quotation loc depth
| '.' :: _ ->
commit1 '.';
if not dot_gobbling && blank_or_eof s then raise Stream.Failure;
quotation loc depth
| c :: cs ->
commit1 c;
quotation loc depth
| [] -> raise Stream.Failure
in
let loc = quotation loc 0 in
Buffer.contents b, set_loc_pos loc bp (Stream.count s)
let peek_string v s =
let l = String.length v in
let rec aux i =
if Int.equal i l then true
else
let l' = Stream.npeek () (i + 1) s in
match List.nth_opt l' i with
| Some c -> Char.equal c v.[i] && aux (i + 1)
| None -> false in
aux 0
let find_keyword ttree loc id bp s =
if peek_string ":{{" s then
begin
Stream.junk () s;
let txt, loc = parse_quotation loc bp s in
QUOTATION (id ^ ":", txt), loc
end
else
let tt = ttree_find ttree id in
match progress_further loc tt.node 0 true tt s with
| None -> raise Not_found
| Some (c,NoQuotation) ->
let ep = Stream.count s in
KEYWORD c, set_loc_pos loc bp ep
| Some (c,Quotation) ->
let txt, loc = parse_quotation loc bp s in
QUOTATION(c, txt), loc
let process_sequence loc bp c cs =
let rec aux n cs =
match Stream.peek () cs with
| Some c' when c == c' -> Stream.junk () cs; aux (n+1) cs
| _ -> BULLET (String.make n c), set_loc_pos loc bp (Stream.count cs)
in
aux 1 cs
let process_chars ~diff_mode ttree loc bp l cs =
let t = progress_utf8 loc None (- (List.length l)) false ttree cs l in
let ep = Stream.count cs in
match t with
| Some (t,NoQuotation) -> (KEYWORD t, set_loc_pos loc bp ep)
| Some (c,Quotation) ->
let txt, loc = parse_quotation loc bp cs in
QUOTATION(c, txt), loc
| None ->
if diff_mode then begin
let s = String.concat "" (List.map (String.make 1) l) in
IDENT s, set_loc_pos loc bp ep
end else begin
let loc = set_loc_pos loc bp ep in
err loc Undefined_token
end
let parse_after_dot ~diff_mode ttree loc c bp s =
match lookup_utf8 loc s with
| Utf8Token (st, n) when Unicode.is_valid_ident_initial st ->
let len = ident_tail loc (nstore n 0 s) s in
let field = get_buff len in
begin try find_keyword ttree loc ("."^field) bp s
with Not_found ->
let ep = Stream.count s in
FIELD field, set_loc_pos loc bp ep end
| Utf8Token _ | EmptyStream ->
process_chars ~diff_mode ttree loc bp [c] s
let parse_after_qmark ~diff_mode ttree loc bp s =
match lookup_utf8 loc s with
| Utf8Token (st, _) when Unicode.is_valid_ident_initial st -> LEFTQMARK
| EmptyStream -> KEYWORD "?"
| Utf8Token _ -> fst (process_chars ~diff_mode ttree loc bp ['?'] s)
let between_commands = ref true
let rec next_token ~diff_mode ttree loc s =
let bp = Stream.count s in
match Stream.peek () s with
| Some '\n' ->
Stream.junk () s;
let ep = Stream.count s in
next_token ~diff_mode ttree (bump_loc_line loc ep) s
| Some (' ' | '\t' | '\r') ->
Stream.junk () s;
next_token ~diff_mode ttree loc s
| Some ('.' as c) ->
Stream.junk () s;
let t, newloc =
try parse_after_dot ~diff_mode ttree loc c bp s with
Stream.Failure -> raise (Gramlib.Grammar.Error "")
in
between_commands := false;
let () = match t with
| KEYWORD ("." | "...") ->
if not (blank_or_eof s) then begin
let ep = Stream.count s in
err (set_loc_pos loc bp (ep+1)) Undefined_token
end;
between_commands := true;
| _ -> ()
in
t, newloc
| Some ('-' | '+' | '*' as c) ->
Stream.junk () s;
let t,new_between_commands =
if !between_commands then process_sequence loc bp c s, true
else process_chars ~diff_mode ttree loc bp [c] s,false
in
between_commands := new_between_commands; t
| Some '?' ->
Stream.junk () s;
let ep = Stream.count s in
let t = parse_after_qmark ~diff_mode ttree loc bp s in
between_commands := false;
(t, set_loc_pos loc bp ep)
| Some ('a'..'z' | 'A'..'Z' | '_' as c) ->
Stream.junk () s;
let len =
try ident_tail loc (store 0 c) s with
Stream.Failure -> raise (Gramlib.Grammar.Error "")
in
let id = get_buff len in
between_commands := false;
begin try find_keyword ttree loc id bp s
with Not_found ->
let ep = Stream.count s in
IDENT id, set_loc_pos loc bp ep end
| Some ('0'..'9') ->
let n = NumTok.Unsigned.parse s in
between_commands := false;
begin try find_keyword ttree loc (NumTok.Unsigned.sprint n) bp s
with Not_found ->
let ep = Stream.count s in
NUMBER n, set_loc_pos loc bp ep end
| Some '\"' ->
Stream.junk () s;
let (loc, len) =
try string loc ~comm_level:None bp 0 s with
Stream.Failure -> raise (Gramlib.Grammar.Error "")
in
let ep = Stream.count s in
between_commands := false;
let str = get_buff len in
begin try find_keyword ttree loc (CString.quote_coq_string str) bp s
with Not_found ->
(STRING str, set_loc_pos loc bp ep) end
| Some ('(' as c) ->
Stream.junk () s;
begin try
match Stream.peek () s with
| Some '*' when diff_mode ->
Stream.junk () s;
let ep = Stream.count s in
(IDENT "(*", set_loc_pos loc bp ep)
| Some '*' ->
Stream.junk () s;
comm_loc bp;
push_string "(*";
let loc = comment loc bp s in
comment_stop (Stream.count s);
next_token ~diff_mode ttree loc s
| _ ->
let t = process_chars ~diff_mode ttree loc bp [c] s in
between_commands := false;
t
with Stream.Failure -> raise (Gramlib.Grammar.Error "")
end
| Some ('{' | '}' as c) ->
Stream.junk () s;
let ep = Stream.count s in
let t,new_between_commands =
if !between_commands then (KEYWORD (String.make 1 c), set_loc_pos loc bp ep), true
else process_chars ~diff_mode ttree loc bp [c] s, false
in
between_commands := new_between_commands; t
| _ ->
let l = lookup_utf8_char loc 0 s in
match status_of_utf8 l with
| Utf8Token (st, n) when Unicode.is_valid_ident_initial st ->
let len = ident_tail loc (nstore n 0 s) s in
let id = get_buff len in
between_commands := false;
begin try find_keyword ttree loc id bp s
with Not_found ->
let ep = Stream.count s in
IDENT id, set_loc_pos loc bp ep end
| Utf8Token (_, n) ->
Stream.njunk () n s;
let t = process_chars ~diff_mode ttree loc bp l s in
between_commands := false;
t
| EmptyStream ->
between_commands := false;
(EOI, set_loc_pos loc bp (bp+1))
let next_token ~diff_mode ttree loc s : (Tok.t * Loc.t, Exninfo.iexn) Result.t =
let f (diff_mode, ttree, loc, s) = next_token ~diff_mode ttree loc s in
CErrors.to_result ~f (diff_mode, ttree, loc, s)
(** {6 The lexer of Coq} *)
module MakeLexer (Diff : sig val mode : bool end)
: Gramlib.Plexing.S
with type keyword_state = keyword_state
and type te = Tok.t
and type 'c pattern = 'c Tok.p
= struct
type nonrec keyword_state = keyword_state
type te = Tok.t
type 'c pattern = 'c Tok.p
let tok_pattern_eq = Tok.equal_p
let tok_pattern_strings = Tok.pattern_strings
let tok_func ?(loc=Loc.(initial ToplevelInput)) cs =
let cur_loc = ref loc in
Gramlib.LStream.from ~loc
(fun ttree ->
match next_token ~diff_mode:Diff.mode ttree !cur_loc cs with
| Ok (tok, loc) ->
cur_loc := after loc;
Some (tok,loc)
| Error (exn, info) ->
let loc = Loc.get_loc info in
Option.iter (fun loc -> cur_loc := after loc) loc;
Exninfo.iraise (exn, info))
let tok_match = Tok.match_pattern
let tok_text = Tok.token_text
module State = struct
type t = int option * string * bool * ((int * int) * string) list
let init () = (None,"",true,[])
let set (o,s,b,c) =
comment_begin := o;
Buffer.clear current_comment; Buffer.add_string current_comment s;
between_commands := b;
comments := c
let get () =
(!comment_begin, Buffer.contents current_comment, !between_commands, !comments)
let drop () = set (init ())
let (_,_,_,c) = c
end
end
module Lexer = MakeLexer (struct let mode = false end)
module LexerDiff = MakeLexer (struct let mode = true end)
(** Terminal symbols interpretation *)
let is_ident_not_keyword ttree s =
is_ident s && not (is_keyword ttree s)
let strip s =
let len =
let rec loop i len =
if Int.equal i (String.length s) then len
else if s.[i] == ' ' then loop (i + 1) len
else loop (i + 1) (len + 1)
in
loop 0 0
in
if len == String.length s then s
else
let s' = Bytes.create len in
let rec loop i i' =
if i == String.length s then s'
else if s.[i] == ' ' then loop (i + 1) i'
else begin Bytes.set s' i' s.[i]; loop (i + 1) (i' + 1) end
in
Bytes.to_string (loop 0 0)
let terminal ttree s =
let s = strip s in
let () = match s with "" -> failwith "empty token." | _ -> () in
if is_ident_not_keyword ttree s then PIDENT (Some s)
else PKEYWORD s
let terminal_number s = match NumTok.Unsigned.parse_string s with
| Some n -> PNUMBER (Some n)
| None -> failwith "number token expected."