@@ -54,6 +54,11 @@ public class UnicodeReader {
54
54
*/
55
55
private final int length ;
56
56
57
+ /**
58
+ * Virtual position offset in the original buffer.
59
+ */
60
+ private final int offset ;
61
+
57
62
/**
58
63
* Character buffer index of character currently being observed.
59
64
*/
@@ -115,7 +120,7 @@ protected UnicodeReader(ScannerFactory sf, char[] array, int length) {
115
120
* @param length length of meaningful content in buffer.
116
121
*/
117
122
protected UnicodeReader (Log log , char [] array , int length ) {
118
- this (log , array , 0 , length );
123
+ this (log , array , 0 , 0 , length );
119
124
}
120
125
121
126
/**
@@ -127,9 +132,10 @@ protected UnicodeReader(Log log, char[] array, int length) {
127
132
* @param endPos end of meaningful content in buffer.
128
133
*/
129
134
@ SuppressWarnings ("this-escape" )
130
- protected UnicodeReader (Log log , char [] array , int pos , int endPos ) {
135
+ protected UnicodeReader (Log log , char [] array , int offset , int pos , int endPos ) {
131
136
this .buffer = array ;
132
137
this .length = endPos ;
138
+ this .offset = offset ;
133
139
this .position = pos ;
134
140
this .width = 0 ;
135
141
this .character = '\0' ;
@@ -315,22 +321,22 @@ private enum UnicodeEscapeResult {
315
321
}
316
322
317
323
/**
318
- * Return the current position in the character buffer.
324
+ * Return the virtual position in the character buffer.
319
325
*
320
- * @return current position in the character buffer.
326
+ * @return virtual position in the character buffer.
321
327
*/
322
328
protected int position () {
323
- return position ;
329
+ return offset + position ;
324
330
}
325
331
326
332
327
333
/**
328
- * Reset the reader to the specified position.
334
+ * Reset the reader to the specified virtual position.
329
335
* Warning: Do not use when previous character was an ASCII or unicode backslash.
330
336
* @param pos
331
337
*/
332
338
protected void reset (int pos ) {
333
- position = pos ;
339
+ position = pos - offset ;
334
340
width = 0 ;
335
341
wasBackslash = false ;
336
342
wasUnicodeEscape = false ;
@@ -474,7 +480,7 @@ protected UnicodeReader lineReader() {
474
480
int endPos = position ;
475
481
accept ('\r' );
476
482
accept ('\n' );
477
- return lineReader ( pos , endPos );
483
+ return new UnicodeReader ( log , buffer , offset , pos , endPos );
478
484
}
479
485
480
486
/**
@@ -487,7 +493,7 @@ protected UnicodeReader lineReader() {
487
493
* @return a new reader
488
494
*/
489
495
protected UnicodeReader lineReader (int pos , int endPos ) {
490
- return new UnicodeReader (log , buffer , pos , endPos );
496
+ return new UnicodeReader (log , buffer , offset , pos - offset , endPos - offset );
491
497
}
492
498
493
499
/**
@@ -561,7 +567,7 @@ protected boolean accept(String string) {
561
567
}
562
568
563
569
// Be prepared to retreat if not a match.
564
- int savedPosition = position ;
570
+ int savedPosition = position () ;
565
571
566
572
nextCodePoint ();
567
573
@@ -695,7 +701,7 @@ static class PositionTrackingReader extends UnicodeReader {
695
701
* @param endPos end of meaningful content in buffer.
696
702
*/
697
703
protected PositionTrackingReader (UnicodeReader reader , int pos , int endPos ) {
698
- super (reader .log , reader .buffer , pos , endPos );
704
+ super (reader .log , reader .getRawCharacters ( pos , endPos ), reader . offset + pos , 0 , endPos - pos );
699
705
this .column = 0 ;
700
706
}
701
707
0 commit comments