Package net.sf.okapi.filters.yaml.parser
Class JavaCharStream
- java.lang.Object
-
- net.sf.okapi.filters.yaml.parser.JavaCharStream
-
public class JavaCharStream extends Object
An 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 protected int[]bufcolumnprotected char[]bufferprotected int[]buflineintbufposPosition in buffer.protected intcolumnprotected intinBufprotected ProviderinputStreamprotected intlineprotected intmaxNextCharIndprotected char[]nextCharBufprotected intnextCharIndprotected booleanprevCharIsCRprotected booleanprevCharIsLFstatic booleanstaticFlagWhether parser is static.protected inttabSizeprotected booleantrackLineColumn
-
Constructor Summary
Constructors Constructor Description JavaCharStream(Provider dstream)Constructor.JavaCharStream(Provider dstream, int startline, int startcolumn)Constructor.JavaCharStream(Provider dstream, int startline, int startcolumn, int buffersize)Constructor.
-
Method Summary
All 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.protected voidAdjustBuffSize()voidbackup(int amount)Retreat.charBeginToken()voidDone()Set buffers back to null when finished.protected voidExpandBuff(boolean wrapAround)protected voidFillBuff()intgetBeginColumn()intgetBeginLine()intgetColumn()Deprecated.intgetEndColumn()Get end column.intgetEndLine()Get end line.StringGetImage()intgetLine()Deprecated.char[]GetSuffix(int len)intgetTabSize(int i)protected charReadByte()charreadChar()Read a character.voidReInit(Provider dstream)Reinitialise.voidReInit(Provider dstream, int startline, int startcolumn)Reinitialise.voidReInit(Provider dstream, int startline, int startcolumn, int buffersize)Reinitialise.voidsetTabSize(int i)protected voidUpdateLineColumn(char c)
-
-
-
Field Detail
-
staticFlag
public static final boolean staticFlag
Whether parser is static.- See Also:
- Constant Field Values
-
bufpos
public int bufpos
Position in buffer.
-
bufline
protected int[] bufline
-
bufcolumn
protected int[] bufcolumn
-
column
protected int column
-
line
protected int line
-
prevCharIsCR
protected boolean prevCharIsCR
-
prevCharIsLF
protected boolean prevCharIsLF
-
inputStream
protected Provider inputStream
-
nextCharBuf
protected char[] nextCharBuf
-
buffer
protected char[] buffer
-
maxNextCharInd
protected int maxNextCharInd
-
nextCharInd
protected int nextCharInd
-
inBuf
protected int inBuf
-
tabSize
protected int tabSize
-
trackLineColumn
protected boolean trackLineColumn
-
-
Constructor Detail
-
JavaCharStream
public JavaCharStream(Provider dstream, int startline, int startcolumn, int buffersize)
Constructor.
-
JavaCharStream
public JavaCharStream(Provider dstream, int startline, int startcolumn)
Constructor.
-
JavaCharStream
public JavaCharStream(Provider dstream)
Constructor.
-
-
Method Detail
-
setTabSize
public void setTabSize(int i)
-
getTabSize
public int getTabSize(int i)
-
ExpandBuff
protected void ExpandBuff(boolean wrapAround)
-
FillBuff
protected void FillBuff() throws IOException- Throws:
IOException
-
ReadByte
protected char ReadByte() throws IOException- Throws:
IOException
-
BeginToken
public char BeginToken() throws IOException- Returns:
- starting character for token.
- Throws:
IOException
-
AdjustBuffSize
protected void AdjustBuffSize()
-
UpdateLineColumn
protected void UpdateLineColumn(char c)
-
readChar
public char readChar() throws IOExceptionRead a character.- Throws:
IOException
-
getColumn
@Deprecated public int getColumn()
Deprecated.- See Also:
getEndColumn()
-
getLine
@Deprecated public int getLine()
Deprecated.- See Also:
getEndLine()
-
getEndColumn
public int getEndColumn()
Get end column.
-
getEndLine
public int getEndLine()
Get end line.
-
getBeginColumn
public int getBeginColumn()
- Returns:
- column of token start
-
getBeginLine
public int getBeginLine()
- Returns:
- line number of token start
-
backup
public void backup(int amount)
Retreat.
-
ReInit
public void ReInit(Provider dstream, int startline, int startcolumn, int buffersize)
Reinitialise.
-
ReInit
public void ReInit(Provider dstream, int startline, int startcolumn)
Reinitialise.
-
ReInit
public void ReInit(Provider dstream)
Reinitialise.
-
GetImage
public String GetImage()
- Returns:
- token image as String
-
GetSuffix
public char[] GetSuffix(int len)
- Returns:
- suffix
-
Done
public void Done()
Set buffers back to null when finished.
-
adjustBeginLineColumn
public void adjustBeginLineColumn(int newLine, int newCol)Method to adjust line and column numbers for the start of a token.
-
-