forked from kangjianwei/LearningJDK
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathStreamTokenizer.java
1082 lines (957 loc) · 41.4 KB
/
StreamTokenizer.java
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
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/*
* Copyright (c) 1995, 2012, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation. Oracle designates this
* particular file as subject to the "Classpath" exception as provided
* by Oracle in the LICENSE file that accompanied this code.
*
* This code 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 General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*/
package java.io;
import java.util.Arrays;
/**
* The {@code StreamTokenizer} class takes an input stream and
* parses it into "tokens", allowing the tokens to be
* read one at a time. The parsing process is controlled by a table
* and a number of flags that can be set to various states. The
* stream tokenizer can recognize identifiers, numbers, quoted
* strings, and various comment styles.
* <p>
* Each byte read from the input stream is regarded as a character
* in the range {@code '\u005Cu0000'} through {@code '\u005Cu00FF'}.
* The character value is used to look up five possible attributes of
* the character: <i>white space</i>, <i>alphabetic</i>,
* <i>numeric</i>, <i>string quote</i>, and <i>comment character</i>.
* Each character can have zero or more of these attributes.
* <p>
* In addition, an instance has four flags. These flags indicate:
* <ul>
* <li>Whether line terminators are to be returned as tokens or treated
* as white space that merely separates tokens.
* <li>Whether C-style comments are to be recognized and skipped.
* <li>Whether C++-style comments are to be recognized and skipped.
* <li>Whether the characters of identifiers are converted to lowercase.
* </ul>
* <p>
* A typical application first constructs an instance of this class,
* sets up the syntax tables, and then repeatedly loops calling the
* {@code nextToken} method in each iteration of the loop until
* it returns the value {@code TT_EOF}.
*
* @author James Gosling
* @see java.io.StreamTokenizer#nextToken()
* @see java.io.StreamTokenizer#TT_EOF
* @since 1.0
*/
// 从输入流中的字符串里提取匹配的标记,用作分割标记的分隔符为ISO-8859-1符号
public class StreamTokenizer {
/*
* 类型图
*
* 哪些类型的标记需要保存,就在该标记所处的区域设置标记分类符号
* 类型图并不限制哪些符号必须放在哪些区域,全靠人为指定
* 不指定标记分类符号的区域,默认为普通符号区域
*/
private byte[] ctype = new byte[256];
/**
* 标记分类符号,下面的排列顺序亦是它们的解析顺序
*
* 除数字区外,其他区的符号均允许自定义
* 排在下面的区域可以覆盖排在上面的区域的设置结果
* 数字区是固定的'0'~'9'、'.'、'-',不支持自定义,但支持被空白区覆盖
*/
private static final byte CT_WHITESPACE = 1; // 空白区,默认是0~' '
private static final byte CT_DIGIT = 2; // 数字区,限制为'0'~'9','.','-'
private static final byte CT_ALPHA = 4; // 字母区,默认是'a'~'z','A'~'Z',128+32~255
private static final byte CT_QUOTE = 8; // 引号区,默认是字符"和'
private static final byte CT_COMMENT = 16; // 注释区,默认是'/'
/**
* The next character to be considered by the nextToken method.
* May also be NEED_CHAR to indicate that a new character should be read,
* or SKIP_LF to indicate that a new character should be read and,
* if it is a '\n' character, it should be discarded and a second new character should be read.
*/
// 上次结束时捕获的符号(可能无意义)
private int peekc = NEED_CHAR;
private static final int NEED_CHAR = Integer.MAX_VALUE; // 为peekc初始化,表示需要读取新值
private static final int SKIP_LF = Integer.MAX_VALUE - 1; // 上次以\r结束
/**
* After a call to the {@code nextToken} method, this field
* contains the type of the token just read. For a single character
* token, its value is the single character, converted to an integer.
* For a quoted string token, its value is the quote character.
* Otherwise, its value is one of the following:
* <ul>
* <li>{@code TT_WORD} indicates that the token is a word.
* <li>{@code TT_NUMBER} indicates that the token is a number.
* <li>{@code TT_EOL} indicates that the end of line has been read.
* The field can only have this value if the
* {@code eolIsSignificant} method has been called with the
* argument {@code true}.
* <li>{@code TT_EOF} indicates that the end of the input stream
* has been reached.
* </ul>
* <p>
* The initial value of this field is -4.
*
* @see java.io.StreamTokenizer#eolIsSignificant(boolean)
* @see java.io.StreamTokenizer#nextToken()
* @see java.io.StreamTokenizer#quoteChar(int)
* @see java.io.StreamTokenizer#TT_EOF
* @see java.io.StreamTokenizer#TT_EOL
* @see java.io.StreamTokenizer#TT_NUMBER
* @see java.io.StreamTokenizer#TT_WORD
*/
public int ttype = TT_NOTHING; // 存储返回值的类型,具体类型参见nextToken()方法
/**
* A constant indicating that the end of the stream has been read.
*/
public static final int TT_EOF = -1; // 捕获了文件结束符
/**
* A constant indicating that the end of the line has been read.
*/
public static final int TT_EOL = '\n'; // 捕获了行尾结束符
/**
* A constant indicating that a number token has been read.
*/
public static final int TT_NUMBER = -2; // 捕获了数字
/**
* A constant indicating that a word token has been read.
*/
public static final int TT_WORD = -3; // 捕获了字符串
/**
* A constant indicating that no token has been read, used for initializing ttype.
* made available as the part of the API in a future release.
*
* FIXME This could be made public and
*/
private static final int TT_NOTHING = -4; // 没有有效信息
/** The line number of the last token read */
private int LINENO = 1; // 当前读到的标记处于第几行
private boolean pushedBack; // 是否需要显示上次捕获的有效值
private boolean forceLower; // 是否将捕获到的字符串转为小写形式
private boolean eolIsSignificantP = false; // 遇到行尾标记\r或\n时是否结束读取
private boolean slashStarCommentsP = false; // 是否处理/*风格的注释
private boolean slashSlashCommentsP = false; // 是否处理//风格的注释
/* Only one of these will be non-null */
private Reader reader = null; // 输入
private InputStream input = null; // 输入
private char[] buf = new char[20]; // 缓冲区,暂存识别到的非数字序列
/**
* If the current token is a word token, this field contains a
* string giving the characters of the word token. When the current
* token is a quoted string token, this field contains the body of
* the string.
* <p>
* The current token is a word when the value of the
* {@code ttype} field is {@code TT_WORD}. The current token is
* a quoted string token when the value of the {@code ttype} field is
* a quote character.
* <p>
* The initial value of this field is null.
*
* @see java.io.StreamTokenizer#quoteChar(int)
* @see java.io.StreamTokenizer#TT_WORD
* @see java.io.StreamTokenizer#ttype
*/
public String sval; // 保存识别到的非数字序列
/**
* If the current token is a number, this field contains the value
* of that number. The current token is a number when the value of
* the {@code ttype} field is {@code TT_NUMBER}.
* <p>
* The initial value of this field is 0.0.
*
* @see java.io.StreamTokenizer#TT_NUMBER
* @see java.io.StreamTokenizer#ttype
*/
public double nval; // 保存识别到的数字序列
/*▼ 构造方法 ████████████████████████████████████████████████████████████████████████████████┓ */
/**
* Creates a stream tokenizer that parses the specified input
* stream. The stream tokenizer is initialized to the following
* default state:
* <ul>
* <li>All byte values {@code 'A'} through {@code 'Z'},
* {@code 'a'} through {@code 'z'}, and
* {@code '\u005Cu00A0'} through {@code '\u005Cu00FF'} are
* considered to be alphabetic.
* <li>All byte values {@code '\u005Cu0000'} through
* {@code '\u005Cu0020'} are considered to be white space.
* <li>{@code '/'} is a comment character.
* <li>Single quote {@code '\u005C''} and double quote {@code '"'}
* are string quote characters.
* <li>Numbers are parsed.
* <li>Ends of lines are treated as white space, not as separate tokens.
* <li>C-style and C++-style comments are not recognized.
* </ul>
*
* @param is an input stream.
*
* @see java.io.BufferedReader
* @see java.io.InputStreamReader
* @see java.io.StreamTokenizer#StreamTokenizer(java.io.Reader)
* @deprecated As of JDK version 1.1, the preferred way to tokenize an
* input stream is to convert it into a character stream, for example:
* <blockquote><pre>
* Reader r = new BufferedReader(new InputStreamReader(is));
* StreamTokenizer st = new StreamTokenizer(r);
* </pre></blockquote>
*/
@Deprecated
public StreamTokenizer(InputStream is) {
this();
if(is == null) {
throw new NullPointerException();
}
input = is;
}
/**
* Create a tokenizer that parses the given character stream.
*
* @param r a Reader object providing the input stream.
*
* @since 1.1
*/
public StreamTokenizer(Reader r) {
this();
if(r == null) {
throw new NullPointerException();
}
reader = r;
}
/** Private constructor that initializes everything except the streams. */
private StreamTokenizer() {
wordChars('a', 'z');
wordChars('A', 'Z');
wordChars(128 + 32, 255);
whitespaceChars(0, ' ');
commentChar('/');
quoteChar('"');
quoteChar('\'');
parseNumbers();
}
/*▲ 构造方法 ████████████████████████████████████████████████████████████████████████████████┛ */
/*▼ 获取标记 ████████████████████████████████████████████████████████████████████████████████┓ */
/**
* Parses the next token from the input stream of this tokenizer.
* The type of the next token is returned in the {@code ttype}
* field. Additional information about the token may be in the
* {@code nval} field or the {@code sval} field of this
* tokenizer.
* <p>
* Typical clients of this
* class first set up the syntax tables and then sit in a loop
* calling nextToken to parse successive tokens until TT_EOF
* is returned.
*
* @return the value of the {@code ttype} field.
*
* @throws IOException if an I/O error occurs.
* @see java.io.StreamTokenizer#nval
* @see java.io.StreamTokenizer#sval
* @see java.io.StreamTokenizer#ttype
*/
/*
* 根据预设的类型图,从输入流中解析出下一个匹配的标记
*
* 处理顺序:空白区-->数字区-->字母区-->引号区-->注释区
*
* 返回值(ttype)含义:
* TT_EOF --> 遇到了文件结尾,peekc无意义
* TT_EOL --> 遇到了行结尾,如果peekc为SKIP_LF,代表上次捕获到了\r,否则无意义
* - --> 捕获了'-'之后,又捕获了一个'0'~'9'或'.'之外的异常符号,peekc保存这个异常符号以待下次解析
* TT_NUMBER --> 成功捕获了一个数字,并存储在nval中,peekc保存继这个数字后捕获的下一个符号以待下次解析
* TT_WORD --> 成功捕获了一个字符串,并存储在sval中,peekc保存继这个字符串后捕获的下一个符号(肯定不是数字符号)以待下次解析
* 引号 --> 成功捕获了引号内的字符串,并存储在sval中,如果发现了成对的引号,peekc存储NEED_CHAR标记,否则,peek存储未知标记以待下次解析
* / --> 当/没有被预设为注释区符号,但是需要处理//或/*类的注释,且当前没有匹配成功时,使用peekc存储/,并返回/
* 其他符号 --> 超出255范围的,保存到sval中,否则忽略掉
*/
public int nextToken() throws IOException {
// 返回当前保存的有效值的类型
if(pushedBack) {
pushedBack = false;
return ttype;
}
byte[] ct = ctype;
// 置空,以容纳读取到的非数字标记
sval = null;
// 获取上次结束时捕获的符号(可能无意义)
int c = peekc;
// 如果上次是在文件结尾结束的
if(c<0) {
// 表示当前的c需要新值
c = NEED_CHAR;
}
// 如果上次是在\r处结尾的
if(c == SKIP_LF) {
c = read();
// 如果到了文件结尾
if(c<0) {
return ttype = TT_EOF;
}
// 标记稍后跳过\n
if(c == '\n') {
c = NEED_CHAR;
}
}
// 如果当前的c需要新值
if(c == NEED_CHAR) {
c = read();
// 如果到了文件结尾,输入流该终止了
if(c<0) {
return ttype = TT_EOF;
}
}
ttype = c; /* Just to be safe */
/* Set peekc so that the next invocation of nextToken will read another character unless peekc is reset in this invocation */
peekc = NEED_CHAR;
// 捕获的字符的类型(对于超出256范围的符号一律视为字母)
int ctype = c<256 ? ct[c] : CT_ALPHA;
// 如果遇到了空白区的符号
while((ctype & CT_WHITESPACE) != 0) {
// 如果是换行符
if(c == '\r') {
LINENO++; // 行号增加
// 如果遇到行尾标记就结束
if(eolIsSignificantP) {
peekc = SKIP_LF;
return ttype = TT_EOL;
}
// 继续捕获下一个字符,以确认是不是\n
c = read();
if(c == '\n') {
// 如果是\n,跳过它
c = read();
}
} else {
if(c == '\n') {
LINENO++;
// 如果遇到行尾标记就结束
if(eolIsSignificantP) {
return ttype = TT_EOL;
}
}
// 捕获下个字符
c = read();
}
// 如果到了文件结尾
if(c<0) {
return ttype = TT_EOF;
}
// 超出256范围的符号被视为字母
ctype = c<256 ? ct[c] : CT_ALPHA;
}
// 如果遇到了数字区的符号
if((ctype & CT_DIGIT) != 0) {
boolean neg = false;
if(c == '-') {
c = read();
// 如果捕获了负号,但后面不是预期的数字符号,则需要退出
if(c != '.' && (c<'0' || c>'9')) {
peekc = c; // 记录本次退出时捕获的符号
return ttype = '-'; // 返回符号类型
}
neg = true;
}
double v = 0; // 保存读到的数字
int decexp = 0; // 记录读取的数字被放大的系数(如decexp==2代表放大了100倍)
int seendot = 0; // 记录是否存在小数点
// 处理数字
while(true) {
if(c == '.' && seendot == 0) {
seendot = 1;
} else if('0'<=c && c<='9') {
v = v * 10 + (c - '0');
decexp += seendot;
} else {
break;
}
c = read();
}
peekc = c;
// 小数点后存在数字
if(decexp != 0) {
double denom = 10;
decexp--;
while(decexp>0) {
denom *= 10;
decexp--;
}
/* Do one division of a likely-to-be-more-accurate number */
v = v / denom; // 把放大的倍数缩小回去
}
// 保存读到的数字
nval = neg ? -v : v;
return ttype = TT_NUMBER;
}
// 如果遇到了字母区的符号
if((ctype & CT_ALPHA) != 0) {
int i = 0;
do {
if(i >= buf.length) {
// 缓冲区扩容
buf = Arrays.copyOf(buf, buf.length * 2);
}
// 存储字母
buf[i++] = (char) c;
// 读取下一个符号
c = read();
ctype = c<0
? CT_WHITESPACE // 遇到流结束时,标记为空白符号(看似有些反常,但其实这个标记只用来退出循环,后续就丢弃了)
: c<256
? ct[c] // 解析符号类型
: CT_ALPHA; // 超出256范围的符号被认为是字母
// 如果读到了字母或数字,则继续读取(说明紧跟在字母后面的数字也被当成普通字符串)
} while((ctype & (CT_ALPHA | CT_DIGIT)) != 0);
// 保存继这个字符串之后捕获到的下一个符号
peekc = c;
// 存储字符串
sval = String.copyValueOf(buf, 0, i);
// 将捕获到的字符串转为小写形式
if(forceLower) {
sval = sval.toLowerCase();
}
return ttype = TT_WORD;
}
// 如果遇到了引号
if((ctype & CT_QUOTE) != 0) {
// 暂存当前的符号(类型)【引号】
ttype = c;
int i = 0;
/*
* Invariants (because \Octal needs a lookahead):
* (i) c contains char value
* (ii) d contains the lookahead
*/
// 查看下一个符号是啥
int d = read();
// 如果下一个符号不是引号(是引号就返回引号之间的字符串并退出),且不是行尾标记
while(d >= 0 && d != ttype && d != '\n' && d != '\r') {
// 如果下个符号是\,则说明遇到了转义符,继续读下去
if(d == '\\') {
// 获取\后面的符号
c = read();
// 这里允许的字符编号范围:0~255,转换为八进制即\0~\377
int first = c;
// 遇到了第一个八进制符号
if(c >= '0' && c<='7') {
c = c - '0';
int c2 = read();
// 遇到了第二个八进制符号
if('0'<=c2 && c2<='7') {
c = (c << 3) + (c2 - '0');
c2 = read();
// 遇到了第三个八进制符号
if('0'<=c2 && c2<='7' && first<='3') {
c = (c << 3) + (c2 - '0');
// 至此,成功获取了一个\0~\377范围的八进制符号,继续读取下一个符号
d = read();
} else {
d = c2;
}
} else {
d = c2;
}
// 如果\后面不是数字,则尝试解析为转义符号
} else {
switch(c) {
case 'a':
c = 0x7;
break;
case 'b':
c = '\b';
break;
case 'f':
c = 0xC;
break;
case 'n':
c = '\n';
break;
case 'r':
c = '\r';
break;
case 't':
c = '\t';
break;
case 'v':
c = 0xB;
break;
}
// 如果该符号无法解析为转义符,则忽略\的存在,并继续读取\后面的符号
d = read();
}
} else {
c = d;
d = read();
} // if(d == '\\')
if(i >= buf.length) {
buf = Arrays.copyOf(buf, buf.length * 2);
}
/*
* 至此,d总是存储了下一个待解析的符号
*
* 而c存储的值可能是:
* 如果\后面是数字型的转义符,则用c来保存该数字
* 如果\后面是非数字符号,且不是正确的转义符号,依然用c来保存
* 如果不存在\,则c保存这个未知符号
*/
buf[i++] = (char) c;
} // while
/*
* If we broke out of the loop because we found a matching quote character then arrange to read a new character next time around;
* otherwise, save the character.
*/
// 如果d是引号,标记下次需要读取新字符,否则,按原样存储以待解析
peekc = (d == ttype) ? NEED_CHAR : d;
// 保存引号区内的字符串
sval = String.copyValueOf(buf, 0, i);
return ttype;
}
// 如果遇到了/,且需要处理/*或者//风格的注释
if(c == '/' && (slashSlashCommentsP || slashStarCommentsP)) {
// 获取/后面的符号
c = read();
// 匹配到了/*风格的注释
if(c == '*' && slashStarCommentsP) {
int prevc = 0;
// 遇到*/则关闭注释
while((c = read()) != '/' || prevc != '*') {
// 遇到换行符
if(c == '\r') {
// 行号增加
LINENO++;
// 处理了\r,继续读取
c = read();
if(c == '\n') {
// 处理了\r\n,继续读取
c = read();
}
} else {
// 遇到回车符
if(c == '\n') {
// 行号增加
LINENO++;
// 继续读取
c = read();
}
}
// 遇到了文件结束符
if(c<0) {
return ttype = TT_EOF;
}
prevc = c;
}
// 如果注释被正常关闭,忽略注释中包含的内容,开始下一轮读取
return nextToken();
// 匹配到了//风格的注释
} else if(c == '/' && slashSlashCommentsP) {
// 一致读到行尾
while((c = read()) != '\n' && c != '\r' && c >= 0)
;
// 记录行尾标记
peekc = c;
// 忽略该行内容,进入下一轮读取
return nextToken();
} else {
// 如果/属于预设的注释符号,则读取并丢弃整行内容
if((ct['/'] & CT_COMMENT) != 0) {
while((c = read()) != '\n' && c != '\r' && c >= 0)
;
// 记录行尾标记
peekc = c;
// 忽略该行内容,进入下一轮读取
return nextToken();
} else {
// 如果/不是预设的注释符号,那么记录并返回/符号
peekc = c;
return ttype = '/';
}
}
}
// 如果遇到了注释区的符号(默认是/,意味着/开头到行尾的内容会被忽略)
if((ctype & CT_COMMENT) != 0) {
// 一直读到行尾
while((c = read()) != '\n' && c != '\r' && c >= 0)
;
// 存储行尾符号
peekc = c;
// 忽略该行内容,进入下一轮读取
return nextToken();
}
return ttype = c;
}
/*▲ 获取标记 ████████████████████████████████████████████████████████████████████████████████┛ */
/*▼ 类型图 ████████████████████████████████████████████████████████████████████████████████┓ */
/**
* Specifies that all characters <i>c</i> in the range
* <code>low <= <i>c</i> <= high</code>
* are word constituents. A word token consists of a word constituent
* followed by zero or more word constituents or number constituents.
*
* @param low the low end of the range.
* @param high the high end of the range.
*/
// 指定low到high区域为字母区
public void wordChars(int low, int high) {
if(low<0) {
low = 0;
}
if(high >= ctype.length) {
high = ctype.length - 1;
}
while(low<=high) {
ctype[low++] |= CT_ALPHA;
}
}
/**
* Specifies that all characters c in the range low~high are white space characters.
* White space characters serve only to separate tokens in the input stream.
*
* Any other attribute settings for the characters in the specified range are cleared.
*
* @param low the low end of the range.
* @param high the high end of the range.
*/
// 指定low到high区域为空白符号区
public void whitespaceChars(int low, int high) {
if(low<0) {
low = 0;
}
if(high >= ctype.length) {
high = ctype.length - 1;
}
while(low<=high) {
ctype[low++] = CT_WHITESPACE;
}
}
/**
* Specifies that numbers should be parsed by this tokenizer. The
* syntax table of this tokenizer is modified so that each of the twelve
* characters:
* <blockquote><pre>
* 0 1 2 3 4 5 6 7 8 9 . -
* </pre></blockquote>
* <p>
* has the "numeric" attribute.
* <p>
* When the parser encounters a word token that has the format of a
* double precision floating-point number, it treats the token as a
* number rather than a word, by setting the {@code ttype}
* field to the value {@code TT_NUMBER} and putting the numeric
* value of the token into the {@code nval} field.
*
* @see java.io.StreamTokenizer#nval
* @see java.io.StreamTokenizer#TT_NUMBER
* @see java.io.StreamTokenizer#ttype
*/
// 指定'0'到'9'以及'.'和'-'区域为数字区(不支持自定义,但可被空白区覆盖)
public void parseNumbers() {
for(int i = '0'; i<='9'; i++) {
ctype[i] |= CT_DIGIT;
}
ctype['.'] |= CT_DIGIT;
ctype['-'] |= CT_DIGIT;
}
/**
* Specified that the character argument starts a single-line
* comment. All characters from the comment character to the end of
* the line are ignored by this stream tokenizer.
*
* <p>Any other attribute settings for the specified character are cleared.
*
* @param ch the character.
*/
// 指定ch所处区域为注释符号区(一般认为是#或/开头的序列)
public void commentChar(int ch) {
if(ch >= 0 && ch<ctype.length) {
ctype[ch] = CT_COMMENT;
}
}
/**
* Specifies that matching pairs of this character delimit string
* constants in this tokenizer.
* <p>
* When the {@code nextToken} method encounters a string
* constant, the {@code ttype} field is set to the string
* delimiter and the {@code sval} field is set to the body of
* the string.
* <p>
* If a string quote character is encountered, then a string is
* recognized, consisting of all characters after (but not including)
* the string quote character, up to (but not including) the next
* occurrence of that same string quote character, or a line
* terminator, or end of file. The usual escape sequences such as
* {@code "\u005Cn"} and {@code "\u005Ct"} are recognized and
* converted to single characters as the string is parsed.
*
* <p>Any other attribute settings for the specified character are cleared.
*
* @param ch the character.
*
* @see java.io.StreamTokenizer#nextToken()
* @see java.io.StreamTokenizer#sval
* @see java.io.StreamTokenizer#ttype
*/
// 指定ch所处区域为引号符号区(例如"和')
public void quoteChar(int ch) {
if(ch >= 0 && ch<ctype.length) {
ctype[ch] = CT_QUOTE;
}
}
/**
* Specifies that all characters <i>c</i> in the range
* <code>low <= <i>c</i> <= high</code>
* are "ordinary" in this tokenizer. See the
* {@code ordinaryChar} method for more information on a
* character being ordinary.
*
* @param low the low end of the range.
* @param high the high end of the range.
*
* @see java.io.StreamTokenizer#ordinaryChar(int)
*/
// 指定low到high区域为普通符号区
public void ordinaryChars(int low, int high) {
if(low<0) {
low = 0;
}
if(high >= ctype.length) {
high = ctype.length - 1;
}
while(low<=high) {
ctype[low++] = 0;
}
}
/**
* Specifies that the character argument is "ordinary"
* in this tokenizer. It removes any special significance the
* character has as a comment character, word component, string
* delimiter, white space, or number character. When such a character
* is encountered by the parser, the parser treats it as a
* single-character token and sets {@code ttype} field to the
* character value.
*
* <p>Making a line terminator character "ordinary" may interfere
* with the ability of a {@code StreamTokenizer} to count
* lines. The {@code lineno} method may no longer reflect
* the presence of such terminator characters in its line count.
*
* @param ch the character.
*
* @see java.io.StreamTokenizer#ttype
*/
// 指定ch所处区域为普通符号区
public void ordinaryChar(int ch) {
if(ch >= 0 && ch<ctype.length) {
ctype[ch] = 0;
}
}
/**
* Resets this tokenizer's syntax table so that all characters are
* "ordinary." See the {@code ordinaryChar} method
* for more information on a character being ordinary.
*
* @see java.io.StreamTokenizer#ordinaryChar(int)
*/
// 重置类型图
public void resetSyntax() {
for(int i = ctype.length; --i >= 0; ) {
ctype[i] = 0;
}
}
/*▲ 类型图 ████████████████████████████████████████████████████████████████████████████████┛ */
/*▼ ████████████████████████████████████████████████████████████████████████████████┓ */
/**
* Determines whether or not ends of line are treated as tokens.
* If the flag argument is true, this tokenizer treats end of lines
* as tokens; the {@code nextToken} method returns
* {@code TT_EOL} and also sets the {@code ttype} field to
* this value when an end of line is read.
* <p>
* A line is a sequence of characters ending with either a
* carriage-return character ({@code '\u005Cr'}) or a newline
* character ({@code '\u005Cn'}). In addition, a carriage-return
* character followed immediately by a newline character is treated
* as a single end-of-line token.
* <p>
* If the {@code flag} is false, end-of-line characters are
* treated as white space and serve only to separate tokens.
*
* @param flag {@code true} indicates that end-of-line characters
* are separate tokens; {@code false} indicates that
* end-of-line characters are white space.
*
* @see java.io.StreamTokenizer#nextToken()
* @see java.io.StreamTokenizer#ttype
* @see java.io.StreamTokenizer#TT_EOL
*/
// 遇到行尾标记\r或\n时是否结束读取
public void eolIsSignificant(boolean flag) {
eolIsSignificantP = flag;
}
/**
* Determines whether or not the tokenizer recognizes C-style comments.
* If the flag argument is {@code true}, this stream tokenizer
* recognizes C-style comments. All text between successive
* occurrences of {@code /*} and <code>*/</code> are discarded.
* <p>
* If the flag argument is {@code false}, then C-style comments
* are not treated specially.
*
* @param flag {@code true} indicates to recognize and ignore
* C-style comments.
*/
// 是否处理/*风格的注释
public void slashStarComments(boolean flag) {
slashStarCommentsP = flag;
}
/**
* Determines whether or not the tokenizer recognizes C++-style comments.
* If the flag argument is {@code true}, this stream tokenizer
* recognizes C++-style comments. Any occurrence of two consecutive
* slash characters ({@code '/'}) is treated as the beginning of
* a comment that extends to the end of the line.
* <p>
* If the flag argument is {@code false}, then C++-style
* comments are not treated specially.
*
* @param flag {@code true} indicates to recognize and ignore
* C++-style comments.
*/
// 是否处理//风格的注释
public void slashSlashComments(boolean flag) {
slashSlashCommentsP = flag;
}
/**
* Determines whether or not word token are automatically lowercased.
* If the flag argument is {@code true}, then the value in the
* {@code sval} field is lowercased whenever a word token is
* returned (the {@code ttype} field has the
* value {@code TT_WORD} by the {@code nextToken} method
* of this tokenizer.
* <p>
* If the flag argument is {@code false}, then the
* {@code sval} field is not modified.
*
* @param fl {@code true} indicates that all word tokens should
* be lowercased.
*
* @see java.io.StreamTokenizer#nextToken()
* @see java.io.StreamTokenizer#ttype
* @see java.io.StreamTokenizer#TT_WORD
*/
// 是否将捕获到的字符串转为小写形式
public void lowerCaseMode(boolean fl) {
forceLower = fl;
}
/*▲ ████████████████████████████████████████████████████████████████████████████████┛ */
/**
* Causes the next call to the {@code nextToken} method of this tokenizer to return the current value in the {@code ttype} field,
* and not to modify the value in the {@code nval} or {@code sval} field.
*
* @see java.io.StreamTokenizer#nextToken()
* @see java.io.StreamTokenizer#nval
* @see java.io.StreamTokenizer#sval
* @see java.io.StreamTokenizer#ttype
*/
/*
* 指示下次调用nextToken()时,返回当前识别到的有效值的类型,
* 然后根据返回的类型进一步获取有效值。
*
* 该效果只维持一次(如有需要,则应该多次设置)
*/
public void pushBack() {
/* No-op if nextToken() not called */