Interface ASTVisitor
- All Superinterfaces:
Visitor
A Visitor which handles nodes in Derby's abstract syntax trees. In addition to this contract, it is expected that an ASTVisitor will have a 0-arg constructor. You use an ASTVisitor like this:
// initialize your visitor MyASTVisitor myVisitor = new MyASTVisitor(); myVisitor.initializeVisitor(); languageConnectionContext.setASTVisitor( myVisitor ); // then run your queries. ... // when you're done inspecting query trees, release resources and // remove your visitor languageConnectionContext.setASTVisitor( null ); myVisitor.teardownVisitor();
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final intstatic final intstatic final int -
Method Summary
Modifier and TypeMethodDescriptionvoidThe compiler calls this method just before walking a query tree.voidend(int phase) The compiler calls this method when it's done walking a tree.voidInitialize the Visitor before processing any trees.voidFinal call to the Visitor.Methods inherited from interface Visitor
skipChildren, stopTraversal, visit, visitChildrenFirst
-
Field Details
-
AFTER_PARSE
static final int AFTER_PARSE- See Also:
-
AFTER_BIND
static final int AFTER_BIND- See Also:
-
AFTER_OPTIMIZE
static final int AFTER_OPTIMIZE- See Also:
-
-
Method Details
-
initializeVisitor
Initialize the Visitor before processing any trees. User-written code calls this method before poking the Visitor into the LanguageConnectionContext. For example, an implementation of this method might open a trace file.- Throws:
StandardException
-
teardownVisitor
Final call to the Visitor. User-written code calls this method when it is done inspecting query trees. For instance, an implementation of this method might release resources, closing files it has opened.- Throws:
StandardException
-
begin
The compiler calls this method just before walking a query tree.- Parameters:
statementText- Text used to create the tree.phase- of compilation (AFTER_PARSE, AFTER_BIND, or AFTER_OPTIMIZE).- Throws:
StandardException
-
end
The compiler calls this method when it's done walking a tree.- Parameters:
phase- of compilation (AFTER_PARSE, AFTER_BIND, or AFTER_OPTIMIZE).- Throws:
StandardException
-