-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathScanner.java.old
675 lines (620 loc) · 23 KB
/
Scanner.java.old
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
import java.io.InputStream;
import java.io.IOException;
import java.io.RandomAccessFile;
import java.util.Map;
import java.util.HashMap;
class Token {
public int kind; // token kind
public int pos; // token position in bytes in the source text (starting at 0)
public int charPos; // token position in characters in the source text (starting at 0)
public int col; // token column (starting at 1)
public int line; // token line (starting at 1)
public String val; // token value
public Token next; // ML 2005-03-11 Peek tokens are kept in linked list
}
//-----------------------------------------------------------------------------------
// Buffer
//-----------------------------------------------------------------------------------
class Buffer {
// This Buffer supports the following cases:
// 1) seekable stream (file)
// a) whole stream in buffer
// b) part of stream in buffer
// 2) non seekable stream (network, console)
public static final int EOF = Character.MAX_VALUE + 1;
private static final int MIN_BUFFER_LENGTH = 1024; // 1KB
private static final int MAX_BUFFER_LENGTH = MIN_BUFFER_LENGTH * 64; // 64KB
private byte[] buf; // input buffer
private int bufStart; // position of first byte in buffer relative to input stream
private int bufLen; // length of buffer
private int fileLen; // length of input stream (may change if stream is no file)
private int bufPos; // current position in buffer
private RandomAccessFile file; // input stream (seekable)
private InputStream stream; // growing input stream (e.g.: console, network)
public Buffer(InputStream s) {
stream = s;
fileLen = bufLen = bufStart = bufPos = 0;
buf = new byte[MIN_BUFFER_LENGTH];
}
public Buffer(String fileName) {
try {
file = new RandomAccessFile(fileName, "r");
fileLen = (int) file.length();
bufLen = Math.min(fileLen, MAX_BUFFER_LENGTH);
buf = new byte[bufLen];
bufStart = Integer.MAX_VALUE; // nothing in buffer so far
if (fileLen > 0) setPos(0); // setup buffer to position 0 (start)
else bufPos = 0; // index 0 is already after the file, thus setPos(0) is invalid
if (bufLen == fileLen) Close();
} catch (IOException e) {
throw new FatalError("Could not open file " + fileName);
}
}
// don't use b after this call anymore
// called in UTF8Buffer constructor
protected Buffer(Buffer b) {
buf = b.buf;
bufStart = b.bufStart;
bufLen = b.bufLen;
fileLen = b.fileLen;
bufPos = b.bufPos;
file = b.file;
stream = b.stream;
// keep finalize from closing the file
b.file = null;
}
protected void finalize() throws Throwable {
super.finalize();
Close();
}
protected void Close() {
if (file != null) {
try {
file.close();
file = null;
} catch (IOException e) {
throw new FatalError(e.getMessage());
}
}
}
public int Read() {
if (bufPos < bufLen) {
return buf[bufPos++] & 0xff; // mask out sign bits
} else if (getPos() < fileLen) {
setPos(getPos()); // shift buffer start to pos
return buf[bufPos++] & 0xff; // mask out sign bits
} else if (stream != null && ReadNextStreamChunk() > 0) {
return buf[bufPos++] & 0xff; // mask out sign bits
} else {
return EOF;
}
}
public int Peek() {
int curPos = getPos();
int ch = Read();
setPos(curPos);
return ch;
}
// beg .. begin, zero-based, inclusive, in byte
// end .. end, zero-based, exclusive, in byte
public String GetString(int beg, int end) {
int len = 0;
char[] buf = new char[end - beg];
int oldPos = getPos();
setPos(beg);
while (getPos() < end) buf[len++] = (char) Read();
setPos(oldPos);
return new String(buf, 0, len);
}
public int getPos() {
return bufPos + bufStart;
}
public void setPos(int value) {
if (value >= fileLen && stream != null) {
// Wanted position is after buffer and the stream
// is not seek-able e.g. network or console,
// thus we have to read the stream manually till
// the wanted position is in sight.
while (value >= fileLen && ReadNextStreamChunk() > 0);
}
if (value < 0 || value > fileLen) {
throw new FatalError("buffer out of bounds access, position: " + value);
}
if (value >= bufStart && value < bufStart + bufLen) { // already in buffer
bufPos = value - bufStart;
} else if (file != null) { // must be swapped in
try {
file.seek(value);
bufLen = file.read(buf);
bufStart = value; bufPos = 0;
} catch(IOException e) {
throw new FatalError(e.getMessage());
}
} else {
// set the position to the end of the file, Pos will return fileLen.
bufPos = fileLen - bufStart;
}
}
// Read the next chunk of bytes from the stream, increases the buffer
// if needed and updates the fields fileLen and bufLen.
// Returns the number of bytes read.
private int ReadNextStreamChunk() {
int free = buf.length - bufLen;
if (free == 0) {
// in the case of a growing input stream
// we can neither seek in the stream, nor can we
// foresee the maximum length, thus we must adapt
// the buffer size on demand.
byte[] newBuf = new byte[bufLen * 2];
System.arraycopy(buf, 0, newBuf, 0, bufLen);
buf = newBuf;
free = bufLen;
}
int read;
try { read = stream.read(buf, bufLen, free); }
catch (IOException ioex) { throw new FatalError(ioex.getMessage()); }
if (read > 0) {
fileLen = bufLen = (bufLen + read);
return read;
}
// end of stream reached
return 0;
}
}
//-----------------------------------------------------------------------------------
// UTF8Buffer
//-----------------------------------------------------------------------------------
class UTF8Buffer extends Buffer {
UTF8Buffer(Buffer b) { super(b); }
public int Read() {
int ch;
do {
ch = super.Read();
// until we find a utf8 start (0xxxxxxx or 11xxxxxx)
} while ((ch >= 128) && ((ch & 0xC0) != 0xC0) && (ch != EOF));
if (ch < 128 || ch == EOF) {
// nothing to do, first 127 chars are the same in ascii and utf8
// 0xxxxxxx or end of file character
} else if ((ch & 0xF0) == 0xF0) {
// 11110xxx 10xxxxxx 10xxxxxx 10xxxxxx
int c1 = ch & 0x07; ch = super.Read();
int c2 = ch & 0x3F; ch = super.Read();
int c3 = ch & 0x3F; ch = super.Read();
int c4 = ch & 0x3F;
ch = (((((c1 << 6) | c2) << 6) | c3) << 6) | c4;
} else if ((ch & 0xE0) == 0xE0) {
// 1110xxxx 10xxxxxx 10xxxxxx
int c1 = ch & 0x0F; ch = super.Read();
int c2 = ch & 0x3F; ch = super.Read();
int c3 = ch & 0x3F;
ch = (((c1 << 6) | c2) << 6) | c3;
} else if ((ch & 0xC0) == 0xC0) {
// 110xxxxx 10xxxxxx
int c1 = ch & 0x1F; ch = super.Read();
int c2 = ch & 0x3F;
ch = (c1 << 6) | c2;
}
return ch;
}
}
//-----------------------------------------------------------------------------------
// StartStates -- maps characters to start states of tokens
//-----------------------------------------------------------------------------------
class StartStates {
private static class Elem {
public int key, val;
public Elem next;
public Elem(int key, int val) { this.key = key; this.val = val; }
}
private Elem[] tab = new Elem[128];
public void set(int key, int val) {
Elem e = new Elem(key, val);
int k = key % 128;
e.next = tab[k]; tab[k] = e;
}
public int state(int key) {
Elem e = tab[key % 128];
while (e != null && e.key != key) e = e.next;
return e == null ? 0: e.val;
}
}
//-----------------------------------------------------------------------------------
// Scanner
//-----------------------------------------------------------------------------------
public class Scanner {
static final char EOL = '\n';
static final int eofSym = 0;
static final int maxT = 53;
static final int noSym = 53;
char valCh; // current input character (for token.val)
public Buffer buffer; // scanner buffer
Token t; // current token
int ch; // current input character
int pos; // byte position of current character
int charPos; // position by unicode characters starting with 0
int col; // column number of current character
int line; // line number of current character
int oldEols; // EOLs that appeared in a comment;
static final StartStates start; // maps initial token character to start state
static final Map literals; // maps literal strings to literal kinds
Token tokens; // list of tokens already peeked (first token is a dummy)
Token pt; // current peek token
char[] tval = new char[16]; // token text used in NextToken(), dynamically enlarged
int tlen; // length of current token
static {
start = new StartStates();
literals = new HashMap();
for (int i = 36; i <= 36; ++i) start.set(i, 1);
for (int i = 95; i <= 95; ++i) start.set(i, 1);
for (int i = 97; i <= 122; ++i) start.set(i, 1);
for (int i = 48; i <= 57; ++i) start.set(i, 27);
start.set(39, 47);
start.set(34, 14);
start.set(58, 48);
start.set(59, 15);
start.set(44, 16);
start.set(46, 49);
start.set(64, 17);
start.set(123, 18);
start.set(91, 19);
start.set(40, 20);
start.set(42, 50);
start.set(45, 21);
start.set(43, 22);
start.set(125, 23);
start.set(93, 24);
start.set(41, 25);
start.set(126, 26);
start.set(35, 46);
start.set(Buffer.EOF, -1);
literals.put("subtype", new Integer(6));
literals.put("record", new Integer(7));
literals.put("range", new Integer(8));
literals.put("is", new Integer(9));
literals.put("loop", new Integer(10));
literals.put("while", new Integer(11));
literals.put("for", new Integer(12));
literals.put("begin", new Integer(13));
literals.put("end", new Integer(14));
literals.put("procedure", new Integer(15));
literals.put("function", new Integer(16));
literals.put("package", new Integer(17));
literals.put("use", new Integer(18));
literals.put("with", new Integer(19));
literals.put("of", new Integer(20));
literals.put("array", new Integer(21));
literals.put("integer", new Integer(22));
literals.put("string", new Integer(23));
literals.put("boolean", new Integer(24));
literals.put("float", new Integer(25));
literals.put("null", new Integer(26));
literals.put("character", new Integer(27));
literals.put("and", new Integer(37));
literals.put("not", new Integer(38));
literals.put("true", new Integer(49));
literals.put("false", new Integer(50));
literals.put("e", new Integer(51));
}
public Scanner (String fileName) {
buffer = new Buffer(fileName);
Init();
}
public Scanner(InputStream s) {
buffer = new Buffer(s);
Init();
}
void Init () {
pos = -1; line = 1; col = 0; charPos = -1;
oldEols = 0;
NextCh();
if (ch == 0xEF) { // check optional byte order mark for UTF-8
NextCh(); int ch1 = ch;
NextCh(); int ch2 = ch;
if (ch1 != 0xBB || ch2 != 0xBF) {
throw new FatalError("Illegal byte order mark at start of file");
}
buffer = new UTF8Buffer(buffer); col = 0; charPos = -1;
NextCh();
}
pt = tokens = new Token(); // first token is a dummy
}
void NextCh() {
if (oldEols > 0) { ch = EOL; oldEols--; }
else {
pos = buffer.getPos();
// buffer reads unicode chars, if UTF8 has been detected
ch = buffer.Read(); col++; charPos++;
// replace isolated '\r' by '\n' in order to make
// eol handling uniform across Windows, Unix and Mac
if (ch == '\r' && buffer.Peek() != '\n') ch = EOL;
if (ch == EOL) { line++; col = 0; }
}
if (ch != Buffer.EOF) {
valCh = (char) ch;
ch = Character.toLowerCase(ch);
}
}
void AddCh() {
if (tlen >= tval.length) {
char[] newBuf = new char[2 * tval.length];
System.arraycopy(tval, 0, newBuf, 0, tval.length);
tval = newBuf;
}
if (ch != Buffer.EOF) {
tval[tlen++] = valCh;
NextCh();
}
}
boolean Comment0() {
int level = 1, pos0 = pos, line0 = line, col0 = col, charPos0 = charPos;
NextCh();
if (ch == '-') {
NextCh();
for(;;) {
if (ch == 10) {
level--;
if (level == 0) { oldEols = line - line0; NextCh(); return true; }
NextCh();
} else if (ch == Buffer.EOF) return false;
else NextCh();
}
} else {
buffer.setPos(pos0); NextCh(); line = line0; col = col0; charPos = charPos0;
}
return false;
}
void CheckLiteral() {
String val = t.val;
val = val.toLowerCase();
Object kind = literals.get(val);
if (kind != null) {
t.kind = ((Integer) kind).intValue();
}
}
Token NextToken() {
while (ch == ' ' ||
ch == 10 || ch == 13
) NextCh();
if (ch == '-' && Comment0()) return NextToken();
int recKind = noSym;
int recEnd = pos;
t = new Token();
t.pos = pos; t.col = col; t.line = line; t.charPos = charPos;
int state = start.state(ch);
tlen = 0; AddCh();
loop: for (;;) {
switch (state) {
case -1: { t.kind = eofSym; break loop; } // NextCh already done
case 0: {
if (recKind != noSym) {
tlen = recEnd - t.pos;
SetScannerBehindT();
}
t.kind = recKind; break loop;
} // NextCh already done
case 1:
recEnd = pos; recKind = 1;
if (ch == '$' || ch >= '0' && ch <= '9' || ch >= 'a' && ch <= 'z') {AddCh(); state = 1; break;}
else if (ch == '_') {AddCh(); state = 28; break;}
else {t.kind = 1; t.val = new String(tval, 0, tlen); CheckLiteral(); return t;}
case 2:
recEnd = pos; recKind = 2;
if (ch >= '0' && ch <= '9') {AddCh(); state = 2; break;}
else if (ch == '_') {AddCh(); state = 3; break;}
else {t.kind = 2; break loop;}
case 3:
if (ch >= '0' && ch <= '9') {AddCh(); state = 2; break;}
else {state = 0; break;}
case 4:
if (ch >= '0' && ch <= '9') {AddCh(); state = 5; break;}
else {state = 0; break;}
case 5:
recEnd = pos; recKind = 3;
if (ch >= '0' && ch <= '9') {AddCh(); state = 5; break;}
else {t.kind = 3; break loop;}
case 6:
if (ch == 39) {AddCh(); state = 13; break;}
else {state = 0; break;}
case 7:
if (ch >= '0' && ch <= '3') {AddCh(); state = 29; break;}
else if (ch >= '4' && ch <= '7') {AddCh(); state = 12; break;}
else if (ch == '"' || ch == 39 || ch == 92 || ch == 'b' || ch == 'f' || ch == 'n' || ch == 'r' || ch == 't') {AddCh(); state = 6; break;}
else if (ch == 'u') {AddCh(); state = 8; break;}
else {state = 0; break;}
case 8:
if (ch >= '0' && ch <= '9' || ch >= 'a' && ch <= 'f') {AddCh(); state = 9; break;}
else if (ch == 'u') {AddCh(); state = 8; break;}
else {state = 0; break;}
case 9:
if (ch >= '0' && ch <= '9' || ch >= 'a' && ch <= 'f') {AddCh(); state = 10; break;}
else {state = 0; break;}
case 10:
if (ch >= '0' && ch <= '9' || ch >= 'a' && ch <= 'f') {AddCh(); state = 11; break;}
else {state = 0; break;}
case 11:
if (ch >= '0' && ch <= '9' || ch >= 'a' && ch <= 'f') {AddCh(); state = 6; break;}
else {state = 0; break;}
case 12:
if (ch >= '0' && ch <= '7') {AddCh(); state = 6; break;}
else if (ch == 39) {AddCh(); state = 13; break;}
else {state = 0; break;}
case 13:
{t.kind = 4; break loop;}
case 14:
if (ch <= 9 || ch >= 11 && ch <= 12 || ch >= 14 && ch <= '!' || ch >= '#' && ch <= '[' || ch >= ']' && ch <= 65535) {AddCh(); state = 14; break;}
else if (ch == '"') {AddCh(); state = 31; break;}
else if (ch == 92) {AddCh(); state = 32; break;}
else {state = 0; break;}
case 15:
{t.kind = 29; break loop;}
case 16:
{t.kind = 30; break loop;}
case 17:
{t.kind = 32; break loop;}
case 18:
{t.kind = 33; break loop;}
case 19:
{t.kind = 34; break loop;}
case 20:
{t.kind = 35; break loop;}
case 21:
{t.kind = 39; break loop;}
case 22:
{t.kind = 40; break loop;}
case 23:
{t.kind = 41; break loop;}
case 24:
{t.kind = 42; break loop;}
case 25:
{t.kind = 43; break loop;}
case 26:
{t.kind = 44; break loop;}
case 27:
recEnd = pos; recKind = 2;
if (ch >= '0' && ch <= '9') {AddCh(); state = 27; break;}
else if (ch == '_') {AddCh(); state = 3; break;}
else if (ch == '.') {AddCh(); state = 4; break;}
else {t.kind = 2; break loop;}
case 28:
recEnd = pos; recKind = 1;
if (ch == '$' || ch >= '0' && ch <= '9' || ch >= 'a' && ch <= 'z') {AddCh(); state = 1; break;}
else if (ch == '_') {AddCh(); state = 28; break;}
else {t.kind = 1; t.val = new String(tval, 0, tlen); CheckLiteral(); return t;}
case 29:
if (ch >= '0' && ch <= '7') {AddCh(); state = 30; break;}
else if (ch == 39) {AddCh(); state = 13; break;}
else {state = 0; break;}
case 30:
if (ch >= '0' && ch <= '7') {AddCh(); state = 6; break;}
else if (ch == 39) {AddCh(); state = 13; break;}
else {state = 0; break;}
case 31:
recEnd = pos; recKind = 5;
if (ch <= 9 || ch >= 11 && ch <= 12 || ch >= 14 && ch <= '!' || ch >= '#' && ch <= '[' || ch >= ']' && ch <= 65535) {AddCh(); state = 14; break;}
else if (ch == '"') {AddCh(); state = 31; break;}
else if (ch == 92) {AddCh(); state = 32; break;}
else {t.kind = 5; break loop;}
case 32:
if (ch <= 9 || ch >= 11 && ch <= 12 || ch >= 14 && ch <= '!' || ch >= '#' && ch <= '/' || ch >= '8' && ch <= '[' || ch >= ']' && ch <= 't' || ch >= 'v' && ch <= 65535) {AddCh(); state = 14; break;}
else if (ch >= '0' && ch <= '3') {AddCh(); state = 34; break;}
else if (ch >= '4' && ch <= '7') {AddCh(); state = 35; break;}
else if (ch == '"') {AddCh(); state = 31; break;}
else if (ch == 92) {AddCh(); state = 32; break;}
else if (ch == 'u') {AddCh(); state = 36; break;}
else {state = 0; break;}
case 33:
if (ch <= 9 || ch >= 11 && ch <= 12 || ch >= 14 && ch <= '!' || ch >= '#' && ch <= '[' || ch >= ']' && ch <= 65535) {AddCh(); state = 14; break;}
else if (ch == '"') {AddCh(); state = 37; break;}
else if (ch == 92) {AddCh(); state = 32; break;}
else {state = 0; break;}
case 34:
if (ch >= '0' && ch <= '7') {AddCh(); state = 33; break;}
else if (ch <= 9 || ch >= 11 && ch <= 12 || ch >= 14 && ch <= '!' || ch >= '#' && ch <= '/' || ch >= '8' && ch <= '[' || ch >= ']' && ch <= 65535) {AddCh(); state = 14; break;}
else if (ch == '"') {AddCh(); state = 38; break;}
else if (ch == 92) {AddCh(); state = 32; break;}
else {state = 0; break;}
case 35:
if (ch <= 9 || ch >= 11 && ch <= 12 || ch >= 14 && ch <= '!' || ch >= '#' && ch <= '[' || ch >= ']' && ch <= 65535) {AddCh(); state = 14; break;}
else if (ch == '"') {AddCh(); state = 39; break;}
else if (ch == 92) {AddCh(); state = 32; break;}
else {state = 0; break;}
case 36:
if (ch <= 9 || ch >= 11 && ch <= 12 || ch >= 14 && ch <= '!' || ch >= '#' && ch <= '/' || ch >= ':' && ch <= '[' || ch >= ']' && ch <= '`' || ch >= 'g' && ch <= 't' || ch >= 'v' && ch <= 65535) {AddCh(); state = 14; break;}
else if (ch >= '0' && ch <= '9' || ch >= 'a' && ch <= 'f') {AddCh(); state = 40; break;}
else if (ch == '"') {AddCh(); state = 31; break;}
else if (ch == 92) {AddCh(); state = 32; break;}
else if (ch == 'u') {AddCh(); state = 36; break;}
else {state = 0; break;}
case 37:
recEnd = pos; recKind = 5;
if (ch <= 9 || ch >= 11 && ch <= 12 || ch >= 14 && ch <= '!' || ch >= '#' && ch <= '[' || ch >= ']' && ch <= 65535) {AddCh(); state = 14; break;}
else if (ch == '"') {AddCh(); state = 31; break;}
else if (ch == 92) {AddCh(); state = 32; break;}
else {t.kind = 5; break loop;}
case 38:
recEnd = pos; recKind = 5;
if (ch <= 9 || ch >= 11 && ch <= 12 || ch >= 14 && ch <= '!' || ch >= '#' && ch <= '[' || ch >= ']' && ch <= 65535) {AddCh(); state = 14; break;}
else if (ch == '"') {AddCh(); state = 31; break;}
else if (ch == 92) {AddCh(); state = 32; break;}
else {t.kind = 5; break loop;}
case 39:
recEnd = pos; recKind = 5;
if (ch <= 9 || ch >= 11 && ch <= 12 || ch >= 14 && ch <= '!' || ch >= '#' && ch <= '[' || ch >= ']' && ch <= 65535) {AddCh(); state = 14; break;}
else if (ch == '"') {AddCh(); state = 31; break;}
else if (ch == 92) {AddCh(); state = 32; break;}
else {t.kind = 5; break loop;}
case 40:
if (ch <= 9 || ch >= 11 && ch <= 12 || ch >= 14 && ch <= '!' || ch >= '#' && ch <= '/' || ch >= ':' && ch <= '[' || ch >= ']' && ch <= '`' || ch >= 'g' && ch <= 65535) {AddCh(); state = 14; break;}
else if (ch >= '0' && ch <= '9' || ch >= 'a' && ch <= 'f') {AddCh(); state = 41; break;}
else if (ch == '"') {AddCh(); state = 31; break;}
else if (ch == 92) {AddCh(); state = 32; break;}
else {state = 0; break;}
case 41:
if (ch <= 9 || ch >= 11 && ch <= 12 || ch >= 14 && ch <= '!' || ch >= '#' && ch <= '/' || ch >= ':' && ch <= '[' || ch >= ']' && ch <= '`' || ch >= 'g' && ch <= 65535) {AddCh(); state = 14; break;}
else if (ch >= '0' && ch <= '9' || ch >= 'a' && ch <= 'f') {AddCh(); state = 42; break;}
else if (ch == '"') {AddCh(); state = 31; break;}
else if (ch == 92) {AddCh(); state = 32; break;}
else {state = 0; break;}
case 42:
if (ch <= 9 || ch >= 11 && ch <= 12 || ch >= 14 && ch <= '!' || ch >= '#' && ch <= '[' || ch >= ']' && ch <= 65535) {AddCh(); state = 14; break;}
else if (ch == '"') {AddCh(); state = 31; break;}
else if (ch == 92) {AddCh(); state = 32; break;}
else {state = 0; break;}
case 43:
{t.kind = 45; break loop;}
case 44:
{t.kind = 47; break loop;}
case 45:
{t.kind = 48; break loop;}
case 46:
{t.kind = 52; break loop;}
case 47:
recEnd = pos; recKind = 46;
if (ch <= 9 || ch >= 11 && ch <= 12 || ch >= 14 && ch <= '&' || ch >= '(' && ch <= '[' || ch >= ']' && ch <= 65535) {AddCh(); state = 6; break;}
else if (ch == 92) {AddCh(); state = 7; break;}
else {t.kind = 46; break loop;}
case 48:
recEnd = pos; recKind = 28;
if (ch == '=') {AddCh(); state = 43; break;}
else {t.kind = 28; break loop;}
case 49:
recEnd = pos; recKind = 31;
if (ch == '.') {AddCh(); state = 44; break;}
else {t.kind = 31; break loop;}
case 50:
recEnd = pos; recKind = 36;
if (ch == '*') {AddCh(); state = 45; break;}
else {t.kind = 36; break loop;}
}
}
t.val = new String(tval, 0, tlen);
return t;
}
private void SetScannerBehindT() {
buffer.setPos(t.pos);
NextCh();
line = t.line; col = t.col; charPos = t.charPos;
for (int i = 0; i < tlen; i++) NextCh();
}
// get the next token (possibly a token already seen during peeking)
public Token Scan () {
if (tokens.next == null) {
return NextToken();
} else {
pt = tokens = tokens.next;
return tokens;
}
}
// get the next token, ignore pragmas
public Token Peek () {
do {
if (pt.next == null) {
pt.next = NextToken();
}
pt = pt.next;
} while (pt.kind > maxT); // skip pragmas
return pt;
}
// make sure that peeking starts at current scan position
public void ResetPeek () { pt = tokens; }
} // end Scanner