static int available;
static int tokenBegin;
static public int bufpos = -1;
+
+ //Added by Matthieu Casanova
+ public static int position = 0;
+
+ public static int beginOffset, endOffset;
+
static protected int bufline[];
static protected int bufcolumn[];
static protected boolean prevCharIsLF = false;
static protected java.io.Reader inputStream;
+ static protected StringBuffer currentBuffer = new StringBuffer();
static protected char[] buffer;
static protected int maxNextCharInd = 0;
{
if (tokenBegin > 2048)
{
+ position += bufpos;
bufpos = maxNextCharInd = 0;
available = tokenBegin;
}
- else if (tokenBegin < 0)
+ else if (tokenBegin < 0) {
+ position += bufpos;
bufpos = maxNextCharInd = 0;
- else
+ } else
ExpandBuff(false);
}
else if (available > tokenBegin)
inputStream.close();
throw new java.io.IOException();
}
- else
+ else {
maxNextCharInd += i;
+ }
+ currentBuffer.append(buffer);
return;
}
catch(java.io.IOException e) {
static public char BeginToken() throws java.io.IOException
{
+ beginOffset = endOffset;
tokenBegin = -1;
char c = readChar();
tokenBegin = bufpos;
bufline[bufpos] = line;
bufcolumn[bufpos] = column;
+
}
static public char readChar() throws java.io.IOException
{
+ endOffset++;
if (inBuf > 0)
{
--inBuf;
- if (++bufpos == bufsize)
+ if (++bufpos == bufsize) {
+ position += bufpos;
bufpos = 0;
+ }
return buffer[bufpos];
}
- if (++bufpos >= maxNextCharInd)
- FillBuff();
+ if (++bufpos >= maxNextCharInd) {
+ FillBuff();
+ }
char c = buffer[bufpos];
}
/**
- * @deprecated
+ * @deprecated
* @see #getEndColumn
*/
}
/**
- * @deprecated
+ * @deprecated
* @see #getEndLine
*/
}
static public void backup(int amount) {
-
+ endOffset -= amount;
inBuf += amount;
if ((bufpos -= amount) < 0)
bufpos += bufsize;
" either use ReInit() or set the JavaCC option STATIC to false\n" +
" during the generation of this class.");
inputStream = dstream;
+ currentBuffer = new StringBuffer();
line = startline;
column = startcolumn - 1;
buffer = new char[buffersize];
bufline = new int[buffersize];
bufcolumn = new int[buffersize];
+ beginOffset = 0;
+ endOffset = 0;
+
}
public SimpleCharStream(java.io.Reader dstream, int startline,
int startcolumn, int buffersize)
{
inputStream = dstream;
+ currentBuffer = new StringBuffer();
line = startline;
column = startcolumn - 1;
prevCharIsLF = prevCharIsCR = false;
tokenBegin = inBuf = maxNextCharInd = 0;
bufpos = -1;
+ position = 0;
+ beginOffset = 0;
+ endOffset = 0;
}
public void ReInit(java.io.Reader dstream, int startline,
buffer = null;
bufline = null;
bufcolumn = null;
+
}
/**
bufcolumn[j] = newCol + columnDiff;
columnDiff = nextColDiff;
i++;
- }
+ }
if (i < len)
{
while (i++ < len)
{
- if (bufline[j = start % bufsize] != bufline[++start % bufsize])
+ if (bufline[j = start % bufsize] != bufline[++start % bufsize]) {
bufline[j] = newLine++;
- else
+ } else {
bufline[j] = newLine;
+ }
}
}
column = bufcolumn[j];
}
+ /**
+ * @deprecated
+ * @return
+ */
+ public static int getPosition() {
+ return position + bufpos;
+ }
}