CharStreamImpl

io.joern.pythonparser.CharStreamImpl
See theCharStreamImpl companion object
class CharStreamImpl(inputStream: InputStream, inputBufferSize: Int, minimumReadSize: Int) extends CharStream

Attributes

Companion
object
Graph
Supertypes
trait CharStream
class Object
trait Matchable
class Any

Members list

Value members

Constructors

def this(inputStream: InputStream)

Concrete methods

override def BeginToken(): Char

Returns the next character that marks the beginning of the next token. All characters must remain in the buffer between two successive calls to this method to implement backup correctly.

Returns the next character that marks the beginning of the next token. All characters must remain in the buffer between two successive calls to this method to implement backup correctly.

Attributes

Definition Classes
CharStream
override def Done(): Unit

The lexer calls this function to indicate that it is done with the stream and hence implementations can free any resources held by this class. Again, the body of this function can be just empty and it will not affect the lexer's operation.

The lexer calls this function to indicate that it is done with the stream and hence implementations can free any resources held by this class. Again, the body of this function can be just empty and it will not affect the lexer's operation.

Attributes

Definition Classes
CharStream
override def GetImage(): String

Returns a string made up of characters from the marked token beginning to the current buffer position. Implementations have the choice of returning anything that they want to. For example, for efficiency, one might decide to just return null, which is a valid implementation.

Returns a string made up of characters from the marked token beginning to the current buffer position. Implementations have the choice of returning anything that they want to. For example, for efficiency, one might decide to just return null, which is a valid implementation.

Attributes

Definition Classes
CharStream
override def GetSuffix(len: Int): Array[Char]

Returns an array of characters that make up the suffix of length 'len' for the currently matched token. This is used to build up the matched string for use in actions in the case of MORE. A simple and inefficient implementation of this is as follows :

Returns an array of characters that make up the suffix of length 'len' for the currently matched token. This is used to build up the matched string for use in actions in the case of MORE. A simple and inefficient implementation of this is as follows :

{ String t = GetImage(); return t.substring(t.length() - len, t.length()).toCharArray(); }

Attributes

Definition Classes
CharStream
override def backup(amount: Int): Unit

Backs up the input stream by amount steps. Lexer calls this method if it had already read some characters, but could not use them to match a (longer) token. So, they will be used again as the prefix of the next token and it is the implementation's responsibility to do this right.

Backs up the input stream by amount steps. Lexer calls this method if it had already read some characters, but could not use them to match a (longer) token. So, they will be used again as the prefix of the next token and it is the implementation's responsibility to do this right.

Attributes

Definition Classes
CharStream
override def getBeginColumn: Int

Returns the column number of the first character for current token (being matched after the last call to BeginTOken).

Returns the column number of the first character for current token (being matched after the last call to BeginTOken).

Attributes

Definition Classes
CharStream
override def getBeginLine: Int

Returns the line number of the first character for current token (being matched after the last call to BeginTOken).

Returns the line number of the first character for current token (being matched after the last call to BeginTOken).

Attributes

Definition Classes
CharStream
def getBeginPos: Int
override def getColumn: Int

Returns the column position of the character last read.

Returns the column position of the character last read.

Attributes

See also

#getEndColumn

Definition Classes
CharStream
override def getEndColumn: Int

Returns the column number of the last character for current token (being matched after the last call to BeginTOken).

Returns the column number of the last character for current token (being matched after the last call to BeginTOken).

Attributes

Definition Classes
CharStream
override def getEndLine: Int

Returns the line number of the last character for current token (being matched after the last call to BeginTOken).

Returns the line number of the last character for current token (being matched after the last call to BeginTOken).

Attributes

Definition Classes
CharStream
override def getLine: Int

Returns the line number of the character last read.

Returns the line number of the character last read.

Attributes

See also

#getEndLine

Definition Classes
CharStream
override def getTabSize: Int

Attributes

Definition Classes
CharStream
override def getTrackLineColumn: Boolean

Attributes

Definition Classes
CharStream
override def readChar(): Char

Returns the next character from the selected input. The method of selecting the input is the responsibility of the class implementing this interface. Can throw any java.io.IOException.

Returns the next character from the selected input. The method of selecting the input is the responsibility of the class implementing this interface. Can throw any java.io.IOException.

Attributes

Definition Classes
CharStream
override def setTabSize(i: Int): Unit

Attributes

Definition Classes
CharStream
override def setTrackLineColumn(trackLineColumn: Boolean): Unit

Attributes

Definition Classes
CharStream