Package bbd.jportal2
Class SimpleCharStream
- java.lang.Object
-
- bbd.jportal2.SimpleCharStream
-
public class SimpleCharStream extends Object
An implementation of interface CharStream, where the stream is assumed to contain only ASCII characters (without unicode processing).
-
-
Field Summary
Fields Modifier and Type Field Description protected static int[]bufcolumnprotected static char[]bufferprotected static int[]buflinestatic intbufposPosition in buffer.protected static intcolumnprotected static intinBufprotected static ReaderinputStreamprotected static intlineprotected static intmaxNextCharIndprotected static booleanprevCharIsCRprotected static booleanprevCharIsLFstatic booleanstaticFlagWhether parser is static.protected static inttabSizeprotected static booleantrackLineColumn
-
Constructor Summary
Constructors Constructor Description SimpleCharStream(InputStream dstream)Constructor.SimpleCharStream(InputStream dstream, int startline, int startcolumn)Constructor.SimpleCharStream(InputStream dstream, int startline, int startcolumn, int buffersize)Constructor.SimpleCharStream(InputStream dstream, String encoding)Constructor.SimpleCharStream(InputStream dstream, String encoding, int startline, int startcolumn)Constructor.SimpleCharStream(InputStream dstream, String encoding, int startline, int startcolumn, int buffersize)Constructor.SimpleCharStream(Reader dstream)Constructor.SimpleCharStream(Reader dstream, int startline, int startcolumn)Constructor.SimpleCharStream(Reader dstream, int startline, int startcolumn, int buffersize)Constructor.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static voidadjustBeginLineColumn(int newLine, int newCol)Method to adjust line and column numbers for the start of a token.static voidbackup(int amount)Backup a number of characters.static charBeginToken()Start.static voidDone()Reset buffer when finished.protected static voidExpandBuff(boolean wrapAround)protected static voidFillBuff()static intgetBeginColumn()Get token beginning column number.static intgetBeginLine()Get token beginning line number.static intgetEndColumn()Get token end column number.static intgetEndLine()Get token end line number.static StringGetImage()Get token literal value.static char[]GetSuffix(int len)Get the suffix.static intgetTabSize()static charreadChar()Read a character.voidReInit(InputStream dstream)Reinitialise.voidReInit(InputStream dstream, int startline, int startcolumn)Reinitialise.voidReInit(InputStream dstream, int startline, int startcolumn, int buffersize)Reinitialise.voidReInit(InputStream dstream, String encoding)Reinitialise.voidReInit(InputStream dstream, String encoding, int startline, int startcolumn)Reinitialise.voidReInit(InputStream dstream, String encoding, int startline, int startcolumn, int buffersize)Reinitialise.voidReInit(Reader dstream)Reinitialise.voidReInit(Reader dstream, int startline, int startcolumn)Reinitialise.voidReInit(Reader dstream, int startline, int startcolumn, int buffersize)Reinitialise.static voidsetTabSize(int i)protected static voidUpdateLineColumn(char c)
-
-
-
Field Detail
-
staticFlag
public static final boolean staticFlag
Whether parser is static.- See Also:
- Constant Field Values
-
bufpos
public static int bufpos
Position in buffer.
-
bufline
protected static int[] bufline
-
bufcolumn
protected static int[] bufcolumn
-
column
protected static int column
-
line
protected static int line
-
prevCharIsCR
protected static boolean prevCharIsCR
-
prevCharIsLF
protected static boolean prevCharIsLF
-
inputStream
protected static Reader inputStream
-
buffer
protected static char[] buffer
-
maxNextCharInd
protected static int maxNextCharInd
-
inBuf
protected static int inBuf
-
tabSize
protected static int tabSize
-
trackLineColumn
protected static boolean trackLineColumn
-
-
Constructor Detail
-
SimpleCharStream
public SimpleCharStream(Reader dstream, int startline, int startcolumn, int buffersize)
Constructor.
-
SimpleCharStream
public SimpleCharStream(Reader dstream, int startline, int startcolumn)
Constructor.
-
SimpleCharStream
public SimpleCharStream(Reader dstream)
Constructor.
-
SimpleCharStream
public SimpleCharStream(InputStream dstream, String encoding, int startline, int startcolumn, int buffersize) throws UnsupportedEncodingException
Constructor.- Throws:
UnsupportedEncodingException
-
SimpleCharStream
public SimpleCharStream(InputStream dstream, int startline, int startcolumn, int buffersize)
Constructor.
-
SimpleCharStream
public SimpleCharStream(InputStream dstream, String encoding, int startline, int startcolumn) throws UnsupportedEncodingException
Constructor.- Throws:
UnsupportedEncodingException
-
SimpleCharStream
public SimpleCharStream(InputStream dstream, int startline, int startcolumn)
Constructor.
-
SimpleCharStream
public SimpleCharStream(InputStream dstream, String encoding) throws UnsupportedEncodingException
Constructor.- Throws:
UnsupportedEncodingException
-
SimpleCharStream
public SimpleCharStream(InputStream dstream)
Constructor.
-
-
Method Detail
-
setTabSize
public static void setTabSize(int i)
-
getTabSize
public static int getTabSize()
-
ExpandBuff
protected static void ExpandBuff(boolean wrapAround)
-
FillBuff
protected static void FillBuff() throws IOException- Throws:
IOException
-
BeginToken
public static char BeginToken() throws IOExceptionStart.- Throws:
IOException
-
UpdateLineColumn
protected static void UpdateLineColumn(char c)
-
readChar
public static char readChar() throws IOExceptionRead a character.- Throws:
IOException
-
getEndColumn
public static int getEndColumn()
Get token end column number.
-
getEndLine
public static int getEndLine()
Get token end line number.
-
getBeginColumn
public static int getBeginColumn()
Get token beginning column number.
-
getBeginLine
public static int getBeginLine()
Get token beginning line number.
-
backup
public static void backup(int amount)
Backup a number of characters.
-
ReInit
public void ReInit(Reader dstream, int startline, int startcolumn, int buffersize)
Reinitialise.
-
ReInit
public void ReInit(Reader dstream, int startline, int startcolumn)
Reinitialise.
-
ReInit
public void ReInit(Reader dstream)
Reinitialise.
-
ReInit
public void ReInit(InputStream dstream, String encoding, int startline, int startcolumn, int buffersize) throws UnsupportedEncodingException
Reinitialise.- Throws:
UnsupportedEncodingException
-
ReInit
public void ReInit(InputStream dstream, int startline, int startcolumn, int buffersize)
Reinitialise.
-
ReInit
public void ReInit(InputStream dstream, String encoding) throws UnsupportedEncodingException
Reinitialise.- Throws:
UnsupportedEncodingException
-
ReInit
public void ReInit(InputStream dstream)
Reinitialise.
-
ReInit
public void ReInit(InputStream dstream, String encoding, int startline, int startcolumn) throws UnsupportedEncodingException
Reinitialise.- Throws:
UnsupportedEncodingException
-
ReInit
public void ReInit(InputStream dstream, int startline, int startcolumn)
Reinitialise.
-
GetImage
public static String GetImage()
Get token literal value.
-
GetSuffix
public static char[] GetSuffix(int len)
Get the suffix.
-
Done
public static void Done()
Reset buffer when finished.
-
adjustBeginLineColumn
public static void adjustBeginLineColumn(int newLine, int newCol)Method to adjust line and column numbers for the start of a token.
-
-