casacore
|
#include <TaQLNodeHandler.h>
Static Public Member Functions | |
static const TaQLNodeHRValue & | getHR (const TaQLNodeResult &) |
Get the actual result object from the result. More... | |
Private Member Functions | |
TableParseSelect * | pushStack (TableParseSelect::CommandType) |
Push a new TableParseSelect on the stack. More... | |
TableParseSelect * | topStack () const |
Get the top of the TableParseSelect stack. More... | |
void | popStack () |
Pop the top from the TableParseSelect stack. More... | |
void | clearStack () |
Clear the select stack. More... | |
TaQLNodeResult | handleSelect (const TaQLSelectNodeRep &node, Bool doExec) |
Handle the select command. More... | |
void | handleTableName (TaQLNodeHRValue *hrval, const TaQLNode &node) |
Handle a table name or temptable number in the given node and put it in the value result. More... | |
void | handleTables (const TaQLMultiNode &, Bool addToFromList=True) |
Handle a MultiNode containing table info. More... | |
Table | makeConcatTable (const TaQLMultiNodeRep &node) |
Make a ConcatTable from a nested set of tables. More... | |
void | handleWhere (const TaQLNode &) |
Handle the WHERE clause. More... | |
void | handleHaving (const TaQLNode &) |
Handle the HAVING clause. More... | |
void | handleUpdate (const TaQLMultiNode &) |
Handle the UPDATE SET clause. More... | |
void | handleInsCol (const TaQLMultiNode &) |
Handle the INSERT columns. More... | |
void | handleInsVal (const TaQLNode &) |
Handle the INSERT values. More... | |
void | handleLikeDrop (const TaQLMultiNode &node) |
Handle the possible LIKE table DROP COLUMN part. More... | |
void | handleColSpecs (const TaQLMultiNode &) |
Handle a column specification in a create table or add column. More... | |
Record | handleMultiRecFld (const TaQLNode &node) |
Handle a Multi RecFld representing a Record. More... | |
Private Attributes | |
std::vector< TableParseSelect * > | itsStack |
std::vector< const Table * > | itsTempTables |
Additional Inherited Members | |
Protected Member Functions inherited from casacore::TaQLNodeVisitor | |
TaQLNodeResult | visitNode (const TaQLNode &node) |
A convenience function to visit the given node using this visitor. More... | |
Class to handle the nodes in the raw TaQL parse tree.
Internal
TaQLNodeHandler is a specialization of class TaQLNodeVisitor. It processes the raw TaQL parse tree generated by TableGram. The processing is done in a recursive way. It starts at the top (which is a SELECT, UPDATE, etc. expression) and the processing results of a query are stored in a TableParseSelect object. These objects are kept in a stack for possible nested queries. After a query is fully processed, it is executed. Usually the result is a table; only a CALC command gives a TableExprNode as result.
Separating the raw query parsing from the query processing has several advantages compared to the old situation where parsing and processing were combined.
Definition at line 95 of file TaQLNodeHandler.h.
|
virtual |
|
private |
Clear the select stack.
|
inlinestatic |
Get the actual result object from the result.
Definition at line 324 of file TaQLNodeHandler.h.
References casacore::TaQLNodeResult::getRep().
|
private |
Handle a column specification in a create table or add column.
|
private |
Handle the HAVING clause.
|
private |
Handle the INSERT columns.
|
private |
Handle the INSERT values.
|
private |
Handle the possible LIKE table DROP COLUMN part.
Handle a Multi RecFld representing a Record.
|
private |
Handle the select command.
Optionally the command is not executed (needed for the EXISTS operator).
|
private |
Handle a table name or temptable number in the given node and put it in the value result.
|
private |
Handle a MultiNode containing table info.
TaQLNodeResult casacore::TaQLNodeHandler::handleTree | ( | const TaQLNode & | tree, |
const std::vector< const Table * > & | |||
) |
Handle and process the raw parse tree.
The result contains a Table or TableExprNode object.
|
private |
Handle the UPDATE SET clause.
|
private |
Handle the WHERE clause.
|
private |
Make a ConcatTable from a nested set of tables.
|
private |
Pop the top from the TableParseSelect stack.
|
private |
Push a new TableParseSelect on the stack.
|
private |
Get the top of the TableParseSelect stack.
|
virtual |
Implements casacore::TaQLNodeVisitor.
|
virtual |
Implements casacore::TaQLNodeVisitor.
|
virtual |
Implements casacore::TaQLNodeVisitor.
|
virtual |
Implements casacore::TaQLNodeVisitor.
|
virtual |
Implements casacore::TaQLNodeVisitor.
|
virtual |
Implements casacore::TaQLNodeVisitor.
|
virtual |
Implements casacore::TaQLNodeVisitor.
|
virtual |
Implements casacore::TaQLNodeVisitor.
|
virtual |
Implements casacore::TaQLNodeVisitor.
|
virtual |
Define the functions to visit each node type.
Implements casacore::TaQLNodeVisitor.
|
virtual |
Implements casacore::TaQLNodeVisitor.
|
virtual |
Implements casacore::TaQLNodeVisitor.
|
virtual |
Implements casacore::TaQLNodeVisitor.
|
virtual |
Implements casacore::TaQLNodeVisitor.
|
virtual |
Implements casacore::TaQLNodeVisitor.
|
virtual |
Implements casacore::TaQLNodeVisitor.
|
virtual |
Implements casacore::TaQLNodeVisitor.
|
virtual |
Implements casacore::TaQLNodeVisitor.
|
virtual |
Implements casacore::TaQLNodeVisitor.
|
virtual |
Implements casacore::TaQLNodeVisitor.
|
virtual |
Implements casacore::TaQLNodeVisitor.
|
virtual |
Implements casacore::TaQLNodeVisitor.
|
virtual |
Implements casacore::TaQLNodeVisitor.
|
virtual |
Implements casacore::TaQLNodeVisitor.
|
virtual |
Implements casacore::TaQLNodeVisitor.
|
virtual |
Implements casacore::TaQLNodeVisitor.
|
virtual |
Implements casacore::TaQLNodeVisitor.
|
virtual |
Implements casacore::TaQLNodeVisitor.
|
virtual |
Implements casacore::TaQLNodeVisitor.
|
virtual |
Implements casacore::TaQLNodeVisitor.
|
virtual |
Implements casacore::TaQLNodeVisitor.
|
virtual |
Implements casacore::TaQLNodeVisitor.
|
virtual |
Implements casacore::TaQLNodeVisitor.
|
virtual |
Implements casacore::TaQLNodeVisitor.
|
virtual |
Implements casacore::TaQLNodeVisitor.
|
virtual |
Implements casacore::TaQLNodeVisitor.
|
virtual |
Implements casacore::TaQLNodeVisitor.
|
virtual |
Implements casacore::TaQLNodeVisitor.
|
private |
Definition at line 204 of file TaQLNodeHandler.h.
|
private |
Definition at line 206 of file TaQLNodeHandler.h.