Package org.antlr.runtime
Class Lexer
- java.lang.Object
-
- org.antlr.runtime.BaseRecognizer
-
- org.antlr.runtime.Lexer
-
- All Implemented Interfaces:
TokenSource
public abstract class Lexer extends BaseRecognizer implements TokenSource
A lexer is recognizer that draws input symbols from a character stream. lexer grammars result in a subclass of this object. A Lexer object uses simplified match() and error recovery mechanisms in the interest of speed.
-
-
Field Summary
Fields Modifier and Type Field Description protected CharStreaminputWhere is the lexer drawing characters from?-
Fields inherited from class org.antlr.runtime.BaseRecognizer
DEFAULT_TOKEN_CHANNEL, HIDDEN, INITIAL_FOLLOW_STACK_SIZE, MEMO_RULE_FAILED, MEMO_RULE_UNKNOWN, NEXT_TOKEN_RULE_NAME, state
-
-
Constructor Summary
Constructors Constructor Description Lexer()Lexer(CharStream input)Lexer(CharStream input, RecognizerSharedState state)
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description Tokenemit()The standard method called to automatically emit a token at the outermost lexical rule.voidemit(Token token)Currently does not support multiple emits per nextToken invocation for efficiency reasons.StringgetCharErrorDisplay(int c)intgetCharIndex()What is the index of the current character of lookahead?intgetCharPositionInLine()CharStreamgetCharStream()TokengetEOFToken()Returns the EOF token (default), if you need to return a custom token instead override this method.StringgetErrorMessage(RecognitionException e, String[] tokenNames)What error message should be generated for the various exception types? Not very object-oriented code, but I like having all error message generation within one method rather than spread among all of the exception classes.intgetLine()StringgetSourceName()Where are you getting tokens from? normally the implication will simply ask lexers input stream.StringgetText()Return the text matched so far for the current token or any text override.voidmatch(int c)voidmatch(String s)voidmatchAny()voidmatchRange(int a, int b)abstract voidmTokens()This is the lexer entry point that sets instance var 'token'TokennextToken()Return a token from this source; i.e., match a token on the char stream.voidrecover(RecognitionException re)Lexers can normally match any char in it's vocabulary after matching a token, so do the easy thing and just kill a character and hope it all works out.voidreportError(RecognitionException e)Report a recognition problem.voidreset()reset the parser's state; subclasses must rewinds the input streamvoidsetCharStream(CharStream input)Set the char stream and reset the lexervoidsetText(String text)Set the complete text of this token; it wipes any previous changes to the text.voidskip()Instruct the lexer to skip creating a token for current lexer rule and look for another token.voidtraceIn(String ruleName, int ruleIndex)voidtraceOut(String ruleName, int ruleIndex)-
Methods inherited from class org.antlr.runtime.BaseRecognizer
alreadyParsedRule, beginResync, combineFollows, computeContextSensitiveRuleFOLLOW, computeErrorRecoverySet, consumeUntil, consumeUntil, displayRecognitionError, emitErrorMessage, endResync, failed, getBacktrackingLevel, getCurrentInputSymbol, getErrorHeader, getGrammarFileName, getMissingSymbol, getNumberOfSyntaxErrors, getRuleInvocationStack, getRuleInvocationStack, getRuleMemoization, getRuleMemoizationCacheSize, getTokenErrorDisplay, getTokenNames, match, matchAny, memoize, mismatchIsMissingToken, mismatchIsUnwantedToken, pushFollow, recover, recoverFromMismatchedSet, recoverFromMismatchedToken, setBacktrackingLevel, toStrings, traceIn, traceOut
-
-
-
-
Field Detail
-
input
protected CharStream input
Where is the lexer drawing characters from?
-
-
Constructor Detail
-
Lexer
public Lexer()
-
Lexer
public Lexer(CharStream input)
-
Lexer
public Lexer(CharStream input, RecognizerSharedState state)
-
-
Method Detail
-
reset
public void reset()
Description copied from class:BaseRecognizerreset the parser's state; subclasses must rewinds the input stream- Overrides:
resetin classBaseRecognizer
-
nextToken
public Token nextToken()
Return a token from this source; i.e., match a token on the char stream.- Specified by:
nextTokenin interfaceTokenSource
-
getEOFToken
public Token getEOFToken()
Returns the EOF token (default), if you need to return a custom token instead override this method.
-
skip
public void skip()
Instruct the lexer to skip creating a token for current lexer rule and look for another token. nextToken() knows to keep looking when a lexer rule finishes with token set to SKIP_TOKEN. Recall that if token==null at end of any token rule, it creates one for you and emits it.
-
mTokens
public abstract void mTokens() throws RecognitionExceptionThis is the lexer entry point that sets instance var 'token'- Throws:
RecognitionException
-
setCharStream
public void setCharStream(CharStream input)
Set the char stream and reset the lexer
-
getCharStream
public CharStream getCharStream()
-
getSourceName
public String getSourceName()
Description copied from interface:TokenSourceWhere are you getting tokens from? normally the implication will simply ask lexers input stream.- Specified by:
getSourceNamein interfaceTokenSource- Specified by:
getSourceNamein classBaseRecognizer
-
emit
public void emit(Token token)
Currently does not support multiple emits per nextToken invocation for efficiency reasons. Subclass and override this method and nextToken (to push tokens into a list and pull from that list rather than a single variable as this implementation does).
-
emit
public Token emit()
The standard method called to automatically emit a token at the outermost lexical rule. The token object should point into the char buffer start..stop. If there is a text override in 'text', use that to set the token's text. Override this method to emit custom Token objects. If you are building trees, then you should also override Parser or TreeParser.getMissingSymbol().
-
match
public void match(String s) throws MismatchedTokenException
- Throws:
MismatchedTokenException
-
matchAny
public void matchAny()
-
match
public void match(int c) throws MismatchedTokenException- Throws:
MismatchedTokenException
-
matchRange
public void matchRange(int a, int b) throws MismatchedRangeException- Throws:
MismatchedRangeException
-
getLine
public int getLine()
-
getCharPositionInLine
public int getCharPositionInLine()
-
getCharIndex
public int getCharIndex()
What is the index of the current character of lookahead?
-
getText
public String getText()
Return the text matched so far for the current token or any text override.
-
setText
public void setText(String text)
Set the complete text of this token; it wipes any previous changes to the text.
-
reportError
public void reportError(RecognitionException e)
Description copied from class:BaseRecognizerReport a recognition problem. This method sets errorRecovery to indicate the parser is recovering not parsing. Once in recovery mode, no errors are generated. To get out of recovery mode, the parser must successfully match a token (after a resync). So it will go: 1. error occurs 2. enter recovery mode, report error 3. consume until token found in resynch set 4. try to resume parsing 5. next match() will reset errorRecovery mode If you override, make sure to update syntaxErrors if you care about that.- Overrides:
reportErrorin classBaseRecognizer
-
getErrorMessage
public String getErrorMessage(RecognitionException e, String[] tokenNames)
Description copied from class:BaseRecognizerWhat error message should be generated for the various exception types? Not very object-oriented code, but I like having all error message generation within one method rather than spread among all of the exception classes. This also makes it much easier for the exception handling because the exception classes do not have to have pointers back to this object to access utility routines and so on. Also, changing the message for an exception type would be difficult because you would have to subclassing exception, but then somehow get ANTLR to make those kinds of exception objects instead of the default. This looks weird, but trust me--it makes the most sense in terms of flexibility. For grammar debugging, you will want to override this to add more information such as the stack frame with getRuleInvocationStack(e, this.getClass().getName()) and, for no viable alts, the decision description and state etc... Override this to change the message generated for one or more exception types.- Overrides:
getErrorMessagein classBaseRecognizer
-
getCharErrorDisplay
public String getCharErrorDisplay(int c)
-
recover
public void recover(RecognitionException re)
Lexers can normally match any char in it's vocabulary after matching a token, so do the easy thing and just kill a character and hope it all works out. You can instead use the rule invocation stack to do sophisticated error recovery if you are in a fragment rule.
-
traceIn
public void traceIn(String ruleName, int ruleIndex)
-
traceOut
public void traceOut(String ruleName, int ruleIndex)
-
-