Class 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 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 Reader inputStream
      • buffer

        protected char[] buffer
      • maxNextCharInd

        protected int maxNextCharInd
      • inBuf

        protected int inBuf
      • tabSize

        protected int tabSize
    • Method Detail

      • setTabSize

        protected void setTabSize​(int i)
      • getTabSize

        protected int getTabSize​(int i)
      • ExpandBuff

        protected void ExpandBuff​(boolean wrapAround)
      • BeginToken

        public char BeginToken()
                        throws IOException
        Returns:
        the start token.
        Throws:
        IOException - if an error occurs reading the token.
      • UpdateLineColumn

        protected void UpdateLineColumn​(char c)
      • readChar

        public char readChar()
                      throws IOException
        Returns:
        the next character from the stream.
        Throws:
        IOException - if an error occurs while reading from the stream.
      • getColumn

        @Deprecated
        public int getColumn()
        Deprecated.
        ("call getEndColumn instead")
        Returns:
        token end column number.
        See Also:
        getEndColumn()
      • getLine

        @Deprecated
        public int getLine()
        Deprecated.
        ("call getEndLine instead")
        Returns:
        token end line number.
        See Also:
        getEndLine()
      • getEndColumn

        public int getEndColumn()
        Returns:
        token end column number.
      • getEndLine

        public int getEndLine()
        Returns:
        token end line number.
      • getBeginColumn

        public int getBeginColumn()
        Returns:
        token beginning column number.
      • getBeginLine

        public int getBeginLine()
        Returns:
        token beginning line number.
      • backup

        public void backup​(int amount)
        Backup a number of characters.
        Parameters:
        amount - the amount to backup.
      • ReInit

        public void ReInit​(Reader dstream,
                           int startline,
                           int startcolumn,
                           int buffersize)
      • ReInit

        public void ReInit​(Reader dstream,
                           int startline,
                           int startcolumn)
      • ReInit

        public void ReInit​(Reader dstream)
      • ReInit

        public void ReInit​(InputStream dstream,
                           int startline,
                           int startcolumn,
                           int buffersize)
      • ReInit

        public void ReInit​(InputStream dstream,
                           int startline,
                           int startcolumn)
      • GetImage

        public String GetImage()
        Returns:
        Get token literal value.
      • GetSuffix

        public char[] GetSuffix​(int len)
        Get the suffix.
        Parameters:
        len - the length of the suffix.
        Returns:
        the suffix value.
      • Done

        public void Done()
        Reset buffer when finished.
      • adjustBeginLineColumn

        public void adjustBeginLineColumn​(int newLine,
                                          int newCol)
        Method to adjust line and column numbers for the start of a token.
        Parameters:
        newLine - the new line value.
        newCol - the new column value.