Class ASCII_UCodeESC_CharStream
- java.lang.Object
-
- org.apache.taglibs.standard.extra.spath.ASCII_UCodeESC_CharStream
-
public final class ASCII_UCodeESC_CharStream extends java.lang.ObjectAn implementation of interface CharStream, where the stream is assumed to contain only ASCII characters (with java-like unicode escape processing).
-
-
Field Summary
Fields Modifier and Type Field Description (package private) intavailableprivate int[]bufcolumnprivate char[]bufferprivate int[]buflineintbufpos(package private) intbufsizeprivate intcolumnprivate intinBufprivate java.io.ReaderinputStreamprivate intlineprivate intmaxNextCharIndprivate char[]nextCharBufprivate intnextCharIndprivate booleanprevCharIsCRprivate booleanprevCharIsLFstatic booleanstaticFlag(package private) inttokenBegin
-
Constructor Summary
Constructors Constructor Description ASCII_UCodeESC_CharStream(java.io.InputStream dstream, int startline, int startcolumn)ASCII_UCodeESC_CharStream(java.io.InputStream dstream, int startline, int startcolumn, int buffersize)ASCII_UCodeESC_CharStream(java.io.Reader dstream, int startline, int startcolumn)ASCII_UCodeESC_CharStream(java.io.Reader dstream, int startline, int startcolumn, int buffersize)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description voidadjustBeginLineColumn(int newLine, int newCol)Method to adjust line and column numbers for the start of a token.private voidAdjustBuffSize()voidbackup(int amount)charBeginToken()voidDone()private voidExpandBuff(boolean wrapAround)private voidFillBuff()intgetBeginColumn()intgetBeginLine()intgetColumn()Deprecated.intgetEndColumn()intgetEndLine()java.lang.StringGetImage()intgetLine()Deprecated.char[]GetSuffix(int len)(package private) static inthexval(char c)private charReadByte()charreadChar()voidReInit(java.io.InputStream dstream, int startline, int startcolumn)voidReInit(java.io.InputStream dstream, int startline, int startcolumn, int buffersize)voidReInit(java.io.Reader dstream, int startline, int startcolumn)voidReInit(java.io.Reader dstream, int startline, int startcolumn, int buffersize)private voidUpdateLineColumn(char c)
-
-
-
Field Detail
-
staticFlag
public static final boolean staticFlag
- See Also:
- Constant Field Values
-
bufpos
public int bufpos
-
bufsize
int bufsize
-
available
int available
-
tokenBegin
int tokenBegin
-
bufline
private int[] bufline
-
bufcolumn
private int[] bufcolumn
-
column
private int column
-
line
private int line
-
inputStream
private java.io.Reader inputStream
-
prevCharIsCR
private boolean prevCharIsCR
-
prevCharIsLF
private boolean prevCharIsLF
-
nextCharBuf
private char[] nextCharBuf
-
buffer
private char[] buffer
-
maxNextCharInd
private int maxNextCharInd
-
nextCharInd
private int nextCharInd
-
inBuf
private int inBuf
-
-
Constructor Detail
-
ASCII_UCodeESC_CharStream
public ASCII_UCodeESC_CharStream(java.io.Reader dstream, int startline, int startcolumn, int buffersize)
-
ASCII_UCodeESC_CharStream
public ASCII_UCodeESC_CharStream(java.io.Reader dstream, int startline, int startcolumn)
-
ASCII_UCodeESC_CharStream
public ASCII_UCodeESC_CharStream(java.io.InputStream dstream, int startline, int startcolumn, int buffersize)
-
ASCII_UCodeESC_CharStream
public ASCII_UCodeESC_CharStream(java.io.InputStream dstream, int startline, int startcolumn)
-
-
Method Detail
-
hexval
static final int hexval(char c) throws java.io.IOException- Throws:
java.io.IOException
-
ExpandBuff
private final void ExpandBuff(boolean wrapAround)
-
FillBuff
private final void FillBuff() throws java.io.IOException- Throws:
java.io.IOException
-
ReadByte
private final char ReadByte() throws java.io.IOException- Throws:
java.io.IOException
-
BeginToken
public final char BeginToken() throws java.io.IOException- Throws:
java.io.IOException
-
AdjustBuffSize
private final void AdjustBuffSize()
-
UpdateLineColumn
private final void UpdateLineColumn(char c)
-
readChar
public final char readChar() throws java.io.IOException- Throws:
java.io.IOException
-
getColumn
public final int getColumn()
Deprecated.- See Also:
getEndColumn()
-
getLine
public final int getLine()
Deprecated.- See Also:
getEndLine()
-
getEndColumn
public final int getEndColumn()
-
getEndLine
public final int getEndLine()
-
getBeginColumn
public final int getBeginColumn()
-
getBeginLine
public final int getBeginLine()
-
backup
public final void backup(int amount)
-
ReInit
public void ReInit(java.io.Reader dstream, int startline, int startcolumn, int buffersize)
-
ReInit
public void ReInit(java.io.Reader dstream, int startline, int startcolumn)
-
ReInit
public void ReInit(java.io.InputStream dstream, int startline, int startcolumn, int buffersize)
-
ReInit
public void ReInit(java.io.InputStream dstream, int startline, int startcolumn)
-
GetImage
public final java.lang.String GetImage()
-
GetSuffix
public final char[] GetSuffix(int len)
-
Done
public void Done()
-
adjustBeginLineColumn
public void adjustBeginLineColumn(int newLine, int newCol)Method to adjust line and column numbers for the start of a token.
-
-