casacore
|
#include <TableExprId.h>
Public Member Functions | |
TableExprId () | |
Default constructor sets rownr to -1. | |
TableExprId (rownr_t rowNumber) | |
Construct it from a row number. | |
TableExprId (const RecordInterface &) | |
Construct it from a Record object. | |
TableExprId (const TableExprData &data) | |
Construct it from pointers to data. | |
~TableExprId () | |
Bool | byRow () const |
Is the id given by row number? | |
Bool | byRecord () const |
Is the id given as a RecordInterface? | |
Bool | byData () const |
Is the id given as a TableExprData? | |
Int64 | rownr () const |
Get the row number. | |
const RecordInterface & | record () const |
Get the Record reference. | |
const TableExprData & | data () const |
Get the data reference. | |
void | setRownr (rownr_t rownr) |
Set the row number. | |
void | setRecord (const RecordInterface &) |
Set the record. | |
Private Attributes | ||
Int | type_p | |
union { | ||
Int64 row_p | ||
const RecordInterface * record_p | ||
const TableExprData * data_p | ||
}; | ||
The identification of a TaQL selection subject.
Public interface
This class provides the user the ability to identify the data objects to test in a TaQL expression. In this way a TaQL expression is not limited to tables, but can be used for any set of data. Three types are available:
The TaQL expression must be setup with this in mind by constructing the appropriate TableExprNode leaf objects.
When used for tables, the function Table::col should be used to create the TableExprNode
objects for the table columns to be used in the expression.
For the other cases class TableExprNodeRecordField has to be used to know the index of the fields in the expression. It uses a record (description) for this purpose.
This class makes it possible that TaQL can be used in a very versatile way.
Definition at line 94 of file TableExprId.h.
|
inline |
Default constructor sets rownr to -1.
Definition at line 147 of file TableExprId.h.
|
inline |
Construct it from a row number.
Definition at line 152 of file TableExprId.h.
|
inline |
Construct it from a Record object.
Definition at line 157 of file TableExprId.h.
|
inline |
Construct it from pointers to data.
Definition at line 162 of file TableExprId.h.
|
inline |
Definition at line 109 of file TableExprId.h.
|
inline |
Is the id given as a TableExprData?
Definition at line 202 of file TableExprId.h.
References type_p.
|
inline |
Is the id given as a RecordInterface?
Definition at line 197 of file TableExprId.h.
References type_p.
|
inline |
|
inline |
|
inline |
Get the Record reference.
Definition at line 172 of file TableExprId.h.
References record_p.
Referenced by setRecord().
|
inline |
Get the row number.
Definition at line 167 of file TableExprId.h.
References row_p.
Referenced by setRownr().
|
inline |
|
inline |
Set the row number.
Definition at line 182 of file TableExprId.h.
References row_p, and rownr().
Referenced by casacore::TableParseGroupby::singleKey().
union { ... } casacore::TableExprId |
const TableExprData* casacore::TableExprId::data_p |
Definition at line 141 of file TableExprId.h.
Referenced by data().
const RecordInterface* casacore::TableExprId::record_p |
Definition at line 140 of file TableExprId.h.
Referenced by record(), and setRecord().
Int64 casacore::TableExprId::row_p |
Definition at line 139 of file TableExprId.h.
Referenced by rownr(), and setRownr().
|
private |
Definition at line 137 of file TableExprId.h.
Referenced by byData(), byRecord(), and byRow().