-
Notifications
You must be signed in to change notification settings - Fork 12
/
highlighters.nim
756 lines (720 loc) · 22.7 KB
/
highlighters.nim
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
#
#
# Nim's Runtime Library
# (c) Copyright 2015 Andreas Rumpf
#
# See the file "copying.txt", included in this
# distribution, for details about the copyright.
#
## Source highlighter for programming or markup languages.
## Currently only few languages are supported, other languages may be added.
## The interface supports one language nested in another.
import
strutils, buffertype, nimscript/common
type
GeneralTokenizer* = object
kind*: TokenClass
start*, length*: int
buf: Buffer
pos: int
state: TokenClass
include "highlighters/xml"
const
# The following list comes from doc/keywords.txt, make sure it is
# synchronized with this array by running the module itself as a test case.
nimKeywords = ["addr", "and", "as", "asm", "atomic", "bind", "block",
"break", "case", "cast", "concept", "const", "continue", "converter",
"defer", "discard", "distinct", "div", "do",
"elif", "else", "end", "enum", "except", "export",
"finally", "for", "from", "func",
"generic", "if", "import", "in", "include",
"interface", "is", "isnot", "iterator", "let", "macro", "method",
"mixin", "mod", "nil", "not", "notin", "object", "of", "or", "out", "proc",
"ptr", "raise", "ref", "return", "shl", "shr", "static",
"template", "try", "tuple", "type", "using", "var", "when", "while", "with",
"without", "xor", "yield"]
proc nimGetKeyword(id: string): TokenClass =
for k in nimKeywords:
if cmpIgnoreStyle(id, k) == 0: return TokenClass.Keyword
result = TokenClass.Identifier
proc nimNumberPostfix(g: var GeneralTokenizer, position: int): int =
var pos = position
if g.buf[pos] == '\'': inc(pos)
case g.buf[pos]
of 'd', 'D':
g.kind = TokenClass.FloatNumber
inc(pos)
of 'f', 'F':
g.kind = TokenClass.FloatNumber
inc(pos)
if g.buf[pos] in {'0'..'9'}: inc(pos)
if g.buf[pos] in {'0'..'9'}: inc(pos)
of 'i', 'I', 'u', 'U':
inc(pos)
if g.buf[pos] in {'0'..'9'}: inc(pos)
if g.buf[pos] in {'0'..'9'}: inc(pos)
else:
discard
result = pos
proc nimNumber(g: var GeneralTokenizer, position: int): int =
const decChars = {'0'..'9', '_'}
var pos = position
g.kind = TokenClass.DecNumber
while g.buf[pos] in decChars: inc(pos)
if g.buf[pos] == '.':
if g.buf[pos+1] == '.': return pos
g.kind = TokenClass.FloatNumber
inc(pos)
while g.buf[pos] in decChars: inc(pos)
if g.buf[pos] in {'e', 'E'}:
g.kind = TokenClass.FloatNumber
inc(pos)
if g.buf[pos] in {'+', '-'}: inc(pos)
while g.buf[pos] in decChars: inc(pos)
result = nimNumberPostfix(g, pos)
const
OpChars = {'+', '-', '*', '/', '\\', '<', '>', '!', '?', '^', '.',
'|', '=', '%', '&', '$', '@', '~', ':', '\x80'..'\xFF'}
proc nimMultilineComment(g: var GeneralTokenizer; pos: int;
isDoc: bool): int =
var pos = pos
var nesting = 0
while pos < g.buf.len:
case g.buf[pos]
of '#':
if isDoc:
if g.buf[pos+1] == '#' and g.buf[pos+2] == '[':
inc nesting
elif g.buf[pos+1] == '[':
inc nesting
inc pos
of ']':
if isDoc:
if g.buf[pos+1] == '#' and g.buf[pos+2] == '#':
if nesting == 0:
inc(pos, 3)
break
dec nesting
elif g.buf[pos+1] == '#':
if nesting == 0:
inc(pos, 2)
break
dec nesting
inc pos
else:
inc pos
result = pos
proc nimNextToken(g: var GeneralTokenizer) =
const
hexChars = {'0'..'9', 'A'..'F', 'a'..'f', '_'}
octChars = {'0'..'7', '_'}
binChars = {'0'..'1', '_'}
SymChars = {'a'..'z', 'A'..'Z', '0'..'9', '\x80'..'\xFF'}
var pos = g.pos
g.start = g.pos
if g.state == TokenClass.StringLit:
g.kind = TokenClass.StringLit
while pos < g.buf.len:
case g.buf[pos]
of '\\':
g.kind = TokenClass.EscapeSequence
inc(pos)
case g.buf[pos]
of 'x', 'X':
inc(pos)
if g.buf[pos] in hexChars: inc(pos)
if g.buf[pos] in hexChars: inc(pos)
of '0'..'9':
while g.buf[pos] in {'0'..'9'}: inc(pos)
else: inc(pos)
break
of '\L', '\C':
g.state = TokenClass.None
break
of '\"':
inc(pos)
g.state = TokenClass.None
break
else:
inc(pos)
elif g.state == TokenClass.LongStringLit:
g.kind = TokenClass.LongStringLit
while pos < g.buf.len:
if g.buf[pos] == '\"':
inc(pos)
if g.buf[pos] == '\"' and g.buf[pos+1] == '\"' and
g.buf[pos+2] != '\"':
inc(pos, 2)
break
else:
inc(pos)
g.state = TokenClass.None
elif g.state in {TokenClass.LongComment, TokenClass.Comment}:
g.kind = g.state
pos = nimMultilineComment(g, pos, g.kind == TokenClass.LongComment)
g.state = TokenClass.None
else:
case g.buf[pos]
of ' ', '\x09'..'\x0D':
g.kind = TokenClass.Whitespace
while pos < g.buf.len and g.buf[pos] in {' ', '\x09'..'\x0D'}: inc(pos)
of '#':
if g.buf[pos+1] == '#':
g.kind = TokenClass.LongComment
inc pos
else: g.kind = TokenClass.Comment
if g.buf[pos+1] == '[':
g.state = g.kind
pos = nimMultilineComment(g, pos+2, g.kind == TokenClass.LongComment)
g.state = TokenClass.None
else:
while g.buf[pos] != '\L': inc(pos)
of 'a'..'z', 'A'..'Z', '_', '\x80'..'\xFF':
var id = ""
while g.buf[pos] in SymChars + {'_'}:
add(id, g.buf[pos])
inc(pos)
if (g.buf[pos] == '\"'):
if (g.buf[pos + 1] == '\"') and (g.buf[pos + 2] == '\"'):
inc(pos, 3)
g.kind = TokenClass.LongStringLit
while pos < g.buf.len:
if g.buf[pos] == '\"':
inc(pos)
if g.buf[pos] == '\"' and g.buf[pos+1] == '\"' and
g.buf[pos+2] != '\"':
inc(pos, 2)
break
else:
inc(pos)
else:
g.kind = TokenClass.RawData
inc(pos)
while g.buf[pos] != '\L':
if g.buf[pos] == '"' and g.buf[pos+1] != '"': break
inc(pos)
if g.buf[pos] == '\"': inc(pos)
else:
g.kind = nimGetKeyword(id)
of '0':
inc(pos)
case g.buf[pos]
of 'b', 'B':
inc(pos)
while g.buf[pos] in binChars: inc(pos)
pos = nimNumberPostfix(g, pos)
of 'x', 'X':
inc(pos)
while g.buf[pos] in hexChars: inc(pos)
pos = nimNumberPostfix(g, pos)
of 'o', 'O':
inc(pos)
while g.buf[pos] in octChars: inc(pos)
pos = nimNumberPostfix(g, pos)
else: pos = nimNumber(g, pos)
of '1'..'9':
pos = nimNumber(g, pos)
of '\'':
inc(pos)
g.kind = TokenClass.CharLit
while true:
case g.buf[pos]
of '\L':
break
of '\'':
inc(pos)
break
of '\\':
inc(pos, 2)
else:
inc(pos)
of '\"':
inc(pos)
if (g.buf[pos] == '\"') and (g.buf[pos + 1] == '\"'):
inc(pos, 2)
g.kind = TokenClass.LongStringLit
while pos < g.buf.len:
if g.buf[pos] == '\"':
inc(pos)
if g.buf[pos] == '\"' and g.buf[pos+1] == '\"' and
g.buf[pos+2] != '\"':
inc(pos, 2)
break
else:
inc(pos)
else:
g.kind = TokenClass.StringLit
while true:
case g.buf[pos]
of '\L':
break
of '\"':
inc(pos)
break
of '\\':
g.state = g.kind
break
else:
inc(pos)
of '(', '[', '{':
inc(pos)
g.kind = TokenClass.Punctuation
if g.buf[pos] == '.' and g.buf[pos+1] != '.': inc pos
of ')', ']', '}', '`', ':', ',', ';':
inc(pos)
g.kind = TokenClass.Punctuation
of '.':
if g.buf[pos+1] in {')', ']', '}'}:
inc(pos, 2)
g.kind = TokenClass.Punctuation
else:
g.kind = TokenClass.Operator
inc pos
else:
if g.buf[pos] in OpChars:
g.kind = TokenClass.Operator
while g.buf[pos] in OpChars: inc(pos)
else:
if pos < g.buf.len: inc(pos)
g.kind = TokenClass.None
g.length = pos - g.pos
g.pos = pos
proc generalNumber(g: var GeneralTokenizer, position: int): int =
const decChars = {'0'..'9'}
var pos = position
g.kind = TokenClass.DecNumber
while g.buf[pos] in decChars: inc(pos)
if g.buf[pos] == '.':
g.kind = TokenClass.FloatNumber
inc(pos)
while g.buf[pos] in decChars: inc(pos)
if g.buf[pos] in {'e', 'E'}:
g.kind = TokenClass.FloatNumber
inc(pos)
if g.buf[pos] in {'+', '-'}: inc(pos)
while g.buf[pos] in decChars: inc(pos)
result = pos
proc generalStrLit(g: var GeneralTokenizer, position: int): int =
const
decChars = {'0'..'9'}
hexChars = {'0'..'9', 'A'..'F', 'a'..'f'}
var pos = position
g.kind = TokenClass.StringLit
var c = g.buf[pos]
inc(pos) # skip " or '
while pos < g.buf.len:
case g.buf[pos]
of '\\':
inc(pos)
case g.buf[pos]
of '0'..'9':
while g.buf[pos] in decChars: inc(pos)
of 'x', 'X':
inc(pos)
if g.buf[pos] in hexChars: inc(pos)
if g.buf[pos] in hexChars: inc(pos)
else:
inc(pos, 2)
else:
if g.buf[pos] == c:
inc(pos)
break
else:
inc(pos)
result = pos
proc isKeyword(x: openArray[string], y: string): int =
var a = 0
var b = len(x) - 1
while a <= b:
var mid = (a + b) div 2
var c = cmp(x[mid], y)
if c < 0:
a = mid + 1
elif c > 0:
b = mid - 1
else:
return mid
result = - 1
proc isKeywordIgnoreCase(x: openArray[string], y: string): int =
var a = 0
var b = len(x) - 1
while a <= b:
var mid = (a + b) div 2
var c = cmpIgnoreCase(x[mid], y)
if c < 0:
a = mid + 1
elif c > 0:
b = mid - 1
else:
return mid
result = - 1
type
TokenizerFlag = enum
hasPreprocessor, hasNestedComments, hasRe, hasBackticks
TokenizerFlags = set[TokenizerFlag]
proc clikeNextToken(g: var GeneralTokenizer, keywords: openArray[string],
flags: TokenizerFlags) =
const
hexChars = {'0'..'9', 'A'..'F', 'a'..'f'}
octChars = {'0'..'7'}
binChars = {'0'..'1'}
symChars = {'A'..'Z', 'a'..'z', '0'..'9', '_', '\x80'..'\xFF'}
var pos = g.pos
g.start = g.pos
if g.state == TokenClass.StringLit:
g.kind = TokenClass.StringLit
while true:
case g.buf[pos]
of '\\':
g.kind = TokenClass.EscapeSequence
inc(pos)
case g.buf[pos]
of 'x', 'X':
inc(pos)
if g.buf[pos] in hexChars: inc(pos)
if g.buf[pos] in hexChars: inc(pos)
of '0'..'9':
while g.buf[pos] in {'0'..'9'}: inc(pos)
else: inc(pos)
break
of '\L':
g.state = TokenClass.None
break
of '\"':
inc(pos)
g.state = TokenClass.None
break
else: inc(pos)
elif g.state == TokenClass.LongComment:
var nested = 0
g.kind = TokenClass.LongComment
while pos < g.buf.len:
case g.buf[pos]
of '*':
inc(pos)
if g.buf[pos] == '/':
inc(pos)
if nested == 0: break
of '/':
inc(pos)
if g.buf[pos] == '*':
inc(pos)
if hasNestedComments in flags: inc(nested)
else: inc(pos)
g.state = TokenClass.None
else:
case g.buf[pos]
of ' ', '\x09'..'\x0D':
g.kind = TokenClass.Whitespace
while pos < g.buf.len and g.buf[pos] in {' ', '\x09'..'\x0D'}: inc(pos)
of '/':
inc(pos)
if g.buf[pos] == '/':
g.kind = TokenClass.Comment
while g.buf[pos] != '\L': inc(pos)
elif g.buf[pos] == '*':
g.kind = TokenClass.LongComment
var nested = 0
inc(pos)
while pos < g.buf.len:
case g.buf[pos]
of '*':
inc(pos)
if g.buf[pos] == '/':
inc(pos)
if nested == 0: break
of '/':
inc(pos)
if g.buf[pos] == '*':
inc(pos)
if hasNestedComments in flags: inc(nested)
else: inc(pos)
elif g.buf[pos] notin {'\L', ' ', '\t'} and hasRe in flags:
g.kind = TokenClass.Operator
var lookAhead = pos
while g.buf[lookAhead] != '\L':
if g.buf[lookAhead] == '/':
inc(lookAhead)
pos = lookAhead
g.kind = TokenClass.RegularExpression
break
inc(lookAhead)
else:
g.kind = TokenClass.Operator
of '#':
inc(pos)
if hasPreprocessor in flags:
g.kind = TokenClass.Preprocessor
while g.buf[pos] in {' ', '\t'}: inc(pos)
while g.buf[pos] in symChars: inc(pos)
else:
g.kind = TokenClass.Operator
of 'a'..'z', 'A'..'Z', '_', '\x80'..'\xFF':
var id = ""
while g.buf[pos] in symChars:
add(id, g.buf[pos])
inc(pos)
if isKeyword(keywords, id) >= 0: g.kind = TokenClass.Keyword
else: g.kind = TokenClass.Identifier
of '0':
inc(pos)
case g.buf[pos]
of 'b', 'B':
inc(pos)
while g.buf[pos] in binChars: inc(pos)
if g.buf[pos] in {'A'..'Z', 'a'..'z'}: inc(pos)
of 'x', 'X':
inc(pos)
while g.buf[pos] in hexChars: inc(pos)
if g.buf[pos] in {'A'..'Z', 'a'..'z'}: inc(pos)
of '0'..'7':
inc(pos)
while g.buf[pos] in octChars: inc(pos)
if g.buf[pos] in {'A'..'Z', 'a'..'z'}: inc(pos)
else:
pos = generalNumber(g, pos)
if g.buf[pos] in {'A'..'Z', 'a'..'z'}: inc(pos)
of '1'..'9':
pos = generalNumber(g, pos)
if g.buf[pos] in {'A'..'Z', 'a'..'z'}: inc(pos)
of '\'':
pos = generalStrLit(g, pos)
g.kind = TokenClass.CharLit
of '`':
if hasBackticks in flags:
pos = generalStrLit(g, pos)
g.kind = TokenClass.Backticks
else:
inc(pos)
g.kind = TokenClass.None
of '\"':
inc(pos)
g.kind = TokenClass.StringLit
while pos < g.buf.len:
case g.buf[pos]
of '\"':
inc(pos)
break
of '\\':
g.state = g.kind
break
else:
inc(pos)
of '(', ')', '[', ']', '{', '}', ':', ',', ';', '.':
inc(pos)
g.kind = TokenClass.Punctuation
else:
if g.buf[pos] in OpChars:
g.kind = TokenClass.Operator
while g.buf[pos] in OpChars: inc(pos)
else:
inc(pos)
g.kind = TokenClass.None
g.length = pos - g.pos
g.pos = pos
proc consoleNextToken(g: var GeneralTokenizer) =
template fallback() =
g.kind = TokenClass.None
if pos < g.buf.len: inc pos
template diff(col) =
if pos > 0 and g.buf[pos-1] == '\L':
g.kind = col
while g.buf[pos] != '\L': inc pos
else:
fallback()
const symChars = {'A'..'Z', 'a'..'z', '0'..'9', '_'}
var pos = g.pos
g.start = g.pos
let c = g.buf[pos]
case c
of 'a'..'z', 'A'..'Z', '_', '/', '\\', '\x80'..'\xFF':
var id = $c.toLowerAscii
inc pos
while true:
let c = g.buf[pos]
if c in (symChars+{'/','\\',':','\x80'..'\xFF', '.'}):
add(id, c.toLowerAscii)
inc(pos)
else:
break
case id
of "error:", "fatal:": g.kind = TokenClass.Red
of "warning:": g.kind = TokenClass.Yellow
of "hint:": g.kind = TokenClass.Green
else: g.kind = TokenClass.Identifier
of '[':
if pos > 0 and g.buf[pos-1] == ' ' and g.buf[pos+1] in Letters:
inc pos
let rollback = pos
while g.buf[pos] in Letters: inc pos
if g.buf[pos] == ']':
inc pos
g.kind = TokenClass.Rule
else:
g.kind = TokenClass.None
pos = rollback
else:
fallback()
of '+': diff(TokenClass.Green)
of '-': diff(TokenClass.Red)
of '@':
if g.buf[pos+1] == '@':
g.kind = TokenClass.Directive
inc pos, 2
while g.buf[pos] != '\L':
if g.buf[pos] == '@' and g.buf[pos+1] == '@':
inc pos, 2
break
inc pos
else:
fallback()
else:
fallback()
g.length = pos - g.pos
g.pos = pos
proc cNextToken(g: var GeneralTokenizer) =
const
keywords: array[0..36, string] = ["_Bool", "_Complex", "_Imaginary", "auto",
"break", "case", "char", "const", "continue", "default", "do", "double",
"else", "enum", "extern", "float", "for", "goto", "if", "inline", "int",
"long", "register", "restrict", "return", "short", "signed", "sizeof",
"static", "struct", "switch", "typedef", "union", "unsigned", "void",
"volatile", "while"]
clikeNextToken(g, keywords, {hasPreprocessor})
proc cppNextToken(g: var GeneralTokenizer) =
const
keywords: array[0..47, string] = ["asm", "auto", "break", "case", "catch",
"char", "class", "const", "continue", "default", "delete", "do", "double",
"else", "enum", "extern", "float", "for", "friend", "goto", "if",
"inline", "int", "long", "new", "operator", "private", "protected",
"public", "register", "return", "short", "signed", "sizeof", "static",
"struct", "switch", "template", "this", "throw", "try", "typedef",
"union", "unsigned", "virtual", "void", "volatile", "while"]
clikeNextToken(g, keywords, {hasPreprocessor})
proc csharpNextToken(g: var GeneralTokenizer) =
const
keywords: array[0..76, string] = ["abstract", "as", "base", "bool", "break",
"byte", "case", "catch", "char", "checked", "class", "const", "continue",
"decimal", "default", "delegate", "do", "double", "else", "enum", "event",
"explicit", "extern", "false", "finally", "fixed", "float", "for",
"foreach", "goto", "if", "implicit", "in", "int", "interface", "internal",
"is", "lock", "long", "namespace", "new", "null", "object", "operator",
"out", "override", "params", "private", "protected", "public", "readonly",
"ref", "return", "sbyte", "sealed", "short", "sizeof", "stackalloc",
"static", "string", "struct", "switch", "this", "throw", "true", "try",
"typeof", "uint", "ulong", "unchecked", "unsafe", "ushort", "using",
"virtual", "void", "volatile", "while"]
clikeNextToken(g, keywords, {hasPreprocessor})
proc javaNextToken(g: var GeneralTokenizer) =
const
keywords: array[0..52, string] = ["abstract", "assert", "boolean", "break",
"byte", "case", "catch", "char", "class", "const", "continue", "default",
"do", "double", "else", "enum", "extends", "false", "final", "finally",
"float", "for", "goto", "if", "implements", "import", "instanceof", "int",
"interface", "long", "native", "new", "null", "package", "private",
"protected", "public", "return", "short", "static", "strictfp", "super",
"switch", "synchronized", "this", "throw", "throws", "transient", "true",
"try", "void", "volatile", "while"]
clikeNextToken(g, keywords, {})
proc jsNextToken(g: var GeneralTokenizer) =
const
keywords = ["abstract", "arguments", "boolean", "break", "byte",
"case", "catch", "char", "class", "const", "continue", "debugger",
"default", "delete", "do", "double", "else", "enum", "eval", "export",
"extends", "false", "final", "finally", "float", "for", "function",
"goto", "if", "implements", "import", "in", "instanceof", "int",
"interface", "let", "long", "native", "new", "null",
"package", "private", "protected", "public", "return",
"short", "static", "super", "switch", "synchronized",
"this", "throw", "throws", "transient", "true", "try", "typeof",
"var", "void", "volatile", "while", "with", "yield"]
clikeNextToken(g, keywords, {hasRe, hasBackticks})
proc getNextToken(g: var GeneralTokenizer, lang: SourceLanguage) =
case lang
of langNone: assert false
of langNim: nimNextToken(g)
of langCpp: cppNextToken(g)
of langCsharp: csharpNextToken(g)
of langC: cNextToken(g)
of langJava: javaNextToken(g)
of langJs: jsNextToken(g)
of langXml, langHtml: xmlNextToken(g)
of langConsole: consoleNextToken(g)
proc highlight(b: Buffer; first, last: int;
initialState: TokenClass) =
var g: GeneralTokenizer
g.buf = b
g.kind = low(TokenClass)
g.start = first
g.length = 0
g.state = initialState
g.pos = first
while g.pos <= last:
getNextToken(g, b.lang)
if g.length == 0: break
for i in 0 ..< g.length:
b.setCellStyle(g.start+i, g.kind)
proc highlightLine*(b: Buffer; oldCursor: Natural) =
# Updating everything turned out to be way too slow even for files of
# moderate size.
if b.lang != langNone:
# move to the *start* of this line
var i = oldCursor
while i >= 1 and b[i-1] != '\L': dec i
let first = i
i = b.cursor
while b[i] != '\L': inc i
let last = i
let initialState = if first == 0: TokenClass.None else: getCell(b, first-1).s
highlight(b, first, last, initialState)
proc highlightEverything*(b: Buffer) =
if b.lang != langNone:
highlight(b, 0, b.len-1, TokenClass.None)
proc highlightIncrementally*(b: Buffer) =
if b.lang == langNone or b.highlighter.version == b.version: return
const charsToIndex = 40*40
if b.highlighter.currentlyIndexing != b.version:
b.highlighter.currentlyIndexing = b.version
b.highlighter.position = 0
var i = b.highlighter.position
if i < b.len:
let initialState = if i == 0: TokenClass.None else: getCell(b, i-1).s
var last = i+charsToIndex
if last > b.len-1:
last = b.len-1
else:
while b[last] != '\L': inc last
highlight(b, i, last, initialState)
b.highlighter.position = last+1
else:
# we highlighted the whole buffer:
b.highlighter.version = b.version
b.highlighter.currentlyIndexing = 0
when false:
proc bufferWithWorkToDo(start: Buffer): Buffer =
var it = start
while true:
if it.highlighter.version != it.version: return it
it = it.next
if it == start: break
proc indexBuffers*(start: Buffer) =
# search for a single buffer that can be indexed and index it. Since we
# store the version, eventually everything will be indexed. Works
# incrementally.
let it = bufferWithWorkToDo(start)
if it != nil: indexBuffer(it)
when isMainModule:
var keywords: seq[string]
# Try to work running in both the subdir or at the root.
for filename in ["doc/keywords.txt", "../../../doc/keywords.txt"]:
try:
let input = string(readFile(filename))
keywords = input.split()
break
except:
echo filename, " not found"
doAssert(not keywords.isNil, "Couldn't read any keywords.txt file!")
doAssert keywords.len == nimKeywords.len, "No matching lengths"
for i in 0..keywords.len-1:
#echo keywords[i], " == ", nimKeywords[i]
doAssert keywords[i] == nimKeywords[i], "Unexpected keyword"