Package org.antlr.runtime.debug
Class DebugEventSocketProxy
- java.lang.Object
-
- org.antlr.runtime.debug.BlankDebugEventListener
-
- org.antlr.runtime.debug.DebugEventSocketProxy
-
- All Implemented Interfaces:
DebugEventListener
public class DebugEventSocketProxy extends BlankDebugEventListener
A proxy debug event listener that forwards events over a socket to a debugger (or any other listener) using a simple text-based protocol; one event per line. ANTLRWorks listens on server socket with a RemoteDebugEventSocketListener instance. These two objects must therefore be kept in sync. New events must be handled on both sides of socket.
-
-
Field Summary
Fields Modifier and Type Field Description protected TreeAdaptoradaptorAlmost certainly the recognizer will have adaptor set, but we don't know how to cast it (Parser or TreeParser) to get the adaptor field.static intDEFAULT_DEBUGGER_PORTprotected StringgrammarFileNameprotected BufferedReaderinprotected PrintWriteroutprotected intportprotected BaseRecognizerrecognizerWho am i debugging?protected ServerSocketserverSocketprotected Socketsocket-
Fields inherited from interface org.antlr.runtime.debug.DebugEventListener
FALSE, PROTOCOL_VERSION, TRUE
-
-
Constructor Summary
Constructors Constructor Description DebugEventSocketProxy(BaseRecognizer recognizer, int port, TreeAdaptor adaptor)DebugEventSocketProxy(BaseRecognizer recognizer, TreeAdaptor adaptor)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected voidack()voidaddChild(Object root, Object child)Make childID a child of rootID.voidbecomeRoot(Object newRoot, Object oldRoot)Make a node the new root of an existing root.voidbeginBacktrack(int level)voidbeginResync()Indicates the recognizer is about to consume tokens to resynchronize the parser.voidcommence()Announce that parsing has begun.voidconsumeHiddenToken(Token t)An off-channel input token was consumed.voidconsumeNode(Object t)Input for a tree parser is an AST, but we know nothing for sure about a node except its type and text (obtained from the adaptor).voidconsumeToken(Token t)An input token was consumed; matched by any kind of element.voidcreateNode(Object t)Announce a new node built from token elements such as type etc...voidcreateNode(Object node, Token token)Announce a new node built from an existing token.voidendBacktrack(int level, boolean successful)voidendResync()Indicates that the recognizer has finished consuming tokens in order to resychronize.voidenterAlt(int alt)Because rules can have lots of alternatives, it is very useful to know which alt you are entering.voidenterDecision(int decisionNumber, boolean couldBacktrack)Every decision, fixed k or arbitrary, has an enter/exit event so that a GUI can easily track what LT/consume events are associated with prediction.voidenterRule(String grammarFileName, String ruleName)The parser has just entered a rule.voidenterSubRule(int decisionNumber)Track entry into any (...) subrule other EBNF constructvoiderrorNode(Object t)Upon syntax error, recognizers bracket the error with an error node if they are building ASTs.protected StringescapeNewlines(String txt)voidexitDecision(int decisionNumber)voidexitRule(String grammarFileName, String ruleName)This is the last thing executed before leaving a rule.voidexitSubRule(int decisionNumber)TreeAdaptorgetTreeAdaptor()voidhandshake()voidlocation(int line, int pos)To watch a parser move through the grammar, the parser needs to inform the debugger what line/charPos it is passing in the grammar.voidLT(int i, Object t)The tree parser lookedahead.voidLT(int i, Token t)Somebody (anybody) looked ahead.voidmark(int i)The parser is going to look arbitrarily ahead; mark this location, the token stream's marker is sent in case you need it.voidnilNode(Object t)A nil was created (even nil nodes have a unique ID...voidrecognitionException(RecognitionException e)A recognition exception occurred such as NoViableAltException.voidrewind()Rewind to the input position of the last marker.voidrewind(int i)After an arbitrairly long lookahead as with a cyclic DFA (or with any backtrack), this informs the debugger that stream should be rewound to the position associated with marker.voidsemanticPredicate(boolean result, String predicate)A semantic predicate was evaluate with this result and action textprotected voidserializeNode(StringBuffer buf, Object t)protected voidserializeText(StringBuffer buf, String text)protected StringserializeToken(Token t)voidsetTokenBoundaries(Object t, int tokenStartIndex, int tokenStopIndex)Set the token start/stop token index for a subtree root or node.voidsetTreeAdaptor(TreeAdaptor adaptor)voidterminate()Parsing is over; successfully or not.protected voidtransmit(String event)
-
-
-
Field Detail
-
DEFAULT_DEBUGGER_PORT
public static final int DEFAULT_DEBUGGER_PORT
- See Also:
- Constant Field Values
-
port
protected int port
-
serverSocket
protected ServerSocket serverSocket
-
socket
protected Socket socket
-
grammarFileName
protected String grammarFileName
-
out
protected PrintWriter out
-
in
protected BufferedReader in
-
recognizer
protected BaseRecognizer recognizer
Who am i debugging?
-
adaptor
protected TreeAdaptor adaptor
Almost certainly the recognizer will have adaptor set, but we don't know how to cast it (Parser or TreeParser) to get the adaptor field. Must be set with a constructor. :(
-
-
Constructor Detail
-
DebugEventSocketProxy
public DebugEventSocketProxy(BaseRecognizer recognizer, TreeAdaptor adaptor)
-
DebugEventSocketProxy
public DebugEventSocketProxy(BaseRecognizer recognizer, int port, TreeAdaptor adaptor)
-
-
Method Detail
-
handshake
public void handshake() throws IOException- Throws:
IOException
-
commence
public void commence()
Description copied from interface:DebugEventListenerAnnounce that parsing has begun. Not technically useful except for sending events over a socket. A GUI for example will launch a thread to connect and communicate with a remote parser. The thread will want to notify the GUI when a connection is made. ANTLR parsers trigger this upon entry to the first rule (the ruleLevel is used to figure this out).- Specified by:
commencein interfaceDebugEventListener- Overrides:
commencein classBlankDebugEventListener
-
terminate
public void terminate()
Description copied from interface:DebugEventListenerParsing is over; successfully or not. Mostly useful for telling remote debugging listeners that it's time to quit. When the rule invocation level goes to zero at the end of a rule, we are done parsing.- Specified by:
terminatein interfaceDebugEventListener- Overrides:
terminatein classBlankDebugEventListener
-
ack
protected void ack()
-
transmit
protected void transmit(String event)
-
enterRule
public void enterRule(String grammarFileName, String ruleName)
Description copied from interface:DebugEventListenerThe parser has just entered a rule. No decision has been made about which alt is predicted. This is fired AFTER init actions have been executed. Attributes are defined and available etc... The grammarFileName allows composite grammars to jump around among multiple grammar files.- Specified by:
enterRulein interfaceDebugEventListener- Overrides:
enterRulein classBlankDebugEventListener
-
enterAlt
public void enterAlt(int alt)
Description copied from interface:DebugEventListenerBecause rules can have lots of alternatives, it is very useful to know which alt you are entering. This is 1..n for n alts.- Specified by:
enterAltin interfaceDebugEventListener- Overrides:
enterAltin classBlankDebugEventListener
-
exitRule
public void exitRule(String grammarFileName, String ruleName)
Description copied from interface:DebugEventListenerThis is the last thing executed before leaving a rule. It is executed even if an exception is thrown. This is triggered after error reporting and recovery have occurred (unless the exception is not caught in this rule). This implies an "exitAlt" event. The grammarFileName allows composite grammars to jump around among multiple grammar files.- Specified by:
exitRulein interfaceDebugEventListener- Overrides:
exitRulein classBlankDebugEventListener
-
enterSubRule
public void enterSubRule(int decisionNumber)
Description copied from interface:DebugEventListenerTrack entry into any (...) subrule other EBNF construct- Specified by:
enterSubRulein interfaceDebugEventListener- Overrides:
enterSubRulein classBlankDebugEventListener
-
exitSubRule
public void exitSubRule(int decisionNumber)
- Specified by:
exitSubRulein interfaceDebugEventListener- Overrides:
exitSubRulein classBlankDebugEventListener
-
enterDecision
public void enterDecision(int decisionNumber, boolean couldBacktrack)Description copied from interface:DebugEventListenerEvery decision, fixed k or arbitrary, has an enter/exit event so that a GUI can easily track what LT/consume events are associated with prediction. You will see a single enter/exit subrule but multiple enter/exit decision events, one for each loop iteration.- Specified by:
enterDecisionin interfaceDebugEventListener- Overrides:
enterDecisionin classBlankDebugEventListener
-
exitDecision
public void exitDecision(int decisionNumber)
- Specified by:
exitDecisionin interfaceDebugEventListener- Overrides:
exitDecisionin classBlankDebugEventListener
-
consumeToken
public void consumeToken(Token t)
Description copied from interface:DebugEventListenerAn input token was consumed; matched by any kind of element. Trigger after the token was matched by things like match(), matchAny().- Specified by:
consumeTokenin interfaceDebugEventListener- Overrides:
consumeTokenin classBlankDebugEventListener
-
consumeHiddenToken
public void consumeHiddenToken(Token t)
Description copied from interface:DebugEventListenerAn off-channel input token was consumed. Trigger after the token was matched by things like match(), matchAny(). (unless of course the hidden token is first stuff in the input stream).- Specified by:
consumeHiddenTokenin interfaceDebugEventListener- Overrides:
consumeHiddenTokenin classBlankDebugEventListener
-
LT
public void LT(int i, Token t)Description copied from interface:DebugEventListenerSomebody (anybody) looked ahead. Note that this actually gets triggered by both LA and LT calls. The debugger will want to know which Token object was examined. Like consumeToken, this indicates what token was seen at that depth. A remote debugger cannot look ahead into a file it doesn't have so LT events must pass the token even if the info is redundant.- Specified by:
LTin interfaceDebugEventListener- Overrides:
LTin classBlankDebugEventListener
-
mark
public void mark(int i)
Description copied from interface:DebugEventListenerThe parser is going to look arbitrarily ahead; mark this location, the token stream's marker is sent in case you need it.- Specified by:
markin interfaceDebugEventListener- Overrides:
markin classBlankDebugEventListener
-
rewind
public void rewind(int i)
Description copied from interface:DebugEventListenerAfter an arbitrairly long lookahead as with a cyclic DFA (or with any backtrack), this informs the debugger that stream should be rewound to the position associated with marker.- Specified by:
rewindin interfaceDebugEventListener- Overrides:
rewindin classBlankDebugEventListener
-
rewind
public void rewind()
Description copied from interface:DebugEventListenerRewind to the input position of the last marker. Used currently only after a cyclic DFA and just before starting a sem/syn predicate to get the input position back to the start of the decision. Do not "pop" the marker off the state. mark(i) and rewind(i) should balance still.- Specified by:
rewindin interfaceDebugEventListener- Overrides:
rewindin classBlankDebugEventListener
-
beginBacktrack
public void beginBacktrack(int level)
- Specified by:
beginBacktrackin interfaceDebugEventListener- Overrides:
beginBacktrackin classBlankDebugEventListener
-
endBacktrack
public void endBacktrack(int level, boolean successful)- Specified by:
endBacktrackin interfaceDebugEventListener- Overrides:
endBacktrackin classBlankDebugEventListener
-
location
public void location(int line, int pos)Description copied from interface:DebugEventListenerTo watch a parser move through the grammar, the parser needs to inform the debugger what line/charPos it is passing in the grammar. For now, this does not know how to switch from one grammar to the other and back for island grammars etc... This should also allow breakpoints because the debugger can stop the parser whenever it hits this line/pos.- Specified by:
locationin interfaceDebugEventListener- Overrides:
locationin classBlankDebugEventListener
-
recognitionException
public void recognitionException(RecognitionException e)
Description copied from interface:DebugEventListenerA recognition exception occurred such as NoViableAltException. I made this a generic event so that I can alter the exception hierachy later without having to alter all the debug objects. Upon error, the stack of enter rule/subrule must be properly unwound. If no viable alt occurs it is within an enter/exit decision, which also must be rewound. Even the rewind for each mark must be unwount. In the Java target this is pretty easy using try/finally, if a bit ugly in the generated code. The rewind is generated in DFA.predict() actually so no code needs to be generated for that. For languages w/o this "finally" feature (C++?), the target implementor will have to build an event stack or something. Across a socket for remote debugging, only the RecognitionException data fields are transmitted. The token object or whatever that caused the problem was the last object referenced by LT. The immediately preceding LT event should hold the unexpected Token or char. Here is a sample event trace for grammar: b : C ({;}A|B) // {;} is there to prevent A|B becoming a set | D ; The sequence for this rule (with no viable alt in the subrule) for input 'c c' (there are 3 tokens) is: commence LT(1) enterRule b location 7 1 enter decision 3 LT(1) exit decision 3 enterAlt1 location 7 5 LT(1) consumeToken [c/<4>,1:0] location 7 7 enterSubRule 2 enter decision 2 LT(1) LT(1) recognitionException NoViableAltException 2 1 2 exit decision 2 exitSubRule 2 beginResync LT(1) consumeToken [c/<4>,1:1] LT(1) endResync LT(-1) exitRule b terminate- Specified by:
recognitionExceptionin interfaceDebugEventListener- Overrides:
recognitionExceptionin classBlankDebugEventListener
-
beginResync
public void beginResync()
Description copied from interface:DebugEventListenerIndicates the recognizer is about to consume tokens to resynchronize the parser. Any consume events from here until the recovered event are not part of the parse--they are dead tokens.- Specified by:
beginResyncin interfaceDebugEventListener- Overrides:
beginResyncin classBlankDebugEventListener
-
endResync
public void endResync()
Description copied from interface:DebugEventListenerIndicates that the recognizer has finished consuming tokens in order to resychronize. There may be multiple beginResync/endResync pairs before the recognizer comes out of errorRecovery mode (in which multiple errors are suppressed). This will be useful in a gui where you want to probably grey out tokens that are consumed but not matched to anything in grammar. Anything between a beginResync/endResync pair was tossed out by the parser.- Specified by:
endResyncin interfaceDebugEventListener- Overrides:
endResyncin classBlankDebugEventListener
-
semanticPredicate
public void semanticPredicate(boolean result, String predicate)Description copied from interface:DebugEventListenerA semantic predicate was evaluate with this result and action text- Specified by:
semanticPredicatein interfaceDebugEventListener- Overrides:
semanticPredicatein classBlankDebugEventListener
-
consumeNode
public void consumeNode(Object t)
Description copied from interface:DebugEventListenerInput for a tree parser is an AST, but we know nothing for sure about a node except its type and text (obtained from the adaptor). This is the analog of the consumeToken method. Again, the ID is the hashCode usually of the node so it only works if hashCode is not implemented. If the type is UP or DOWN, then the ID is not really meaningful as it's fixed--there is just one UP node and one DOWN navigation node.- Specified by:
consumeNodein interfaceDebugEventListener- Overrides:
consumeNodein classBlankDebugEventListener
-
LT
public void LT(int i, Object t)Description copied from interface:DebugEventListenerThe tree parser lookedahead. If the type is UP or DOWN, then the ID is not really meaningful as it's fixed--there is just one UP node and one DOWN navigation node.- Specified by:
LTin interfaceDebugEventListener- Overrides:
LTin classBlankDebugEventListener
-
serializeNode
protected void serializeNode(StringBuffer buf, Object t)
-
nilNode
public void nilNode(Object t)
Description copied from interface:DebugEventListenerA nil was created (even nil nodes have a unique ID... they are not "null" per se). As of 4/28/2006, this seems to be uniquely triggered when starting a new subtree such as when entering a subrule in automatic mode and when building a tree in rewrite mode. If you are receiving this event over a socket via RemoteDebugEventSocketListener then only t.ID is set.- Specified by:
nilNodein interfaceDebugEventListener- Overrides:
nilNodein classBlankDebugEventListener
-
errorNode
public void errorNode(Object t)
Description copied from interface:DebugEventListenerUpon syntax error, recognizers bracket the error with an error node if they are building ASTs.- Specified by:
errorNodein interfaceDebugEventListener- Overrides:
errorNodein classBlankDebugEventListener
-
createNode
public void createNode(Object t)
Description copied from interface:DebugEventListenerAnnounce a new node built from token elements such as type etc... If you are receiving this event over a socket via RemoteDebugEventSocketListener then only t.ID, type, text are set.- Specified by:
createNodein interfaceDebugEventListener- Overrides:
createNodein classBlankDebugEventListener
-
createNode
public void createNode(Object node, Token token)
Description copied from interface:DebugEventListenerAnnounce a new node built from an existing token. If you are receiving this event over a socket via RemoteDebugEventSocketListener then only node.ID and token.tokenIndex are set.- Specified by:
createNodein interfaceDebugEventListener- Overrides:
createNodein classBlankDebugEventListener
-
becomeRoot
public void becomeRoot(Object newRoot, Object oldRoot)
Description copied from interface:DebugEventListenerMake a node the new root of an existing root. See Note: the newRootID parameter is possibly different than the TreeAdaptor.becomeRoot() newRoot parameter. In our case, it will always be the result of calling TreeAdaptor.becomeRoot() and not root_n or whatever. The listener should assume that this event occurs only when the current subrule (or rule) subtree is being reset to newRootID. If you are receiving this event over a socket via RemoteDebugEventSocketListener then only IDs are set.- Specified by:
becomeRootin interfaceDebugEventListener- Overrides:
becomeRootin classBlankDebugEventListener- See Also:
TreeAdaptor.becomeRoot(java.lang.Object, java.lang.Object)
-
addChild
public void addChild(Object root, Object child)
Description copied from interface:DebugEventListenerMake childID a child of rootID. If you are receiving this event over a socket via RemoteDebugEventSocketListener then only IDs are set.- Specified by:
addChildin interfaceDebugEventListener- Overrides:
addChildin classBlankDebugEventListener- See Also:
TreeAdaptor.addChild(java.lang.Object, java.lang.Object)
-
setTokenBoundaries
public void setTokenBoundaries(Object t, int tokenStartIndex, int tokenStopIndex)
Description copied from interface:DebugEventListenerSet the token start/stop token index for a subtree root or node. If you are receiving this event over a socket via RemoteDebugEventSocketListener then only t.ID is set.- Specified by:
setTokenBoundariesin interfaceDebugEventListener- Overrides:
setTokenBoundariesin classBlankDebugEventListener
-
setTreeAdaptor
public void setTreeAdaptor(TreeAdaptor adaptor)
-
getTreeAdaptor
public TreeAdaptor getTreeAdaptor()
-
serializeText
protected void serializeText(StringBuffer buf, String text)
-
-