casacore
|
#include <TableIter.h>
Public Types | |
enum | Order { Ascending , Descending } |
Define the possible iteration orders. More... | |
enum | Option { QuickSort , HeapSort , InsSort , ParSort , NoSort } |
Define the possible sorts. More... | |
Public Member Functions | |
TableIterator () | |
Create a null TableIterator object (i.e. More... | |
TableIterator (const Table &, const String &columnName, Order=Ascending, Option=ParSort) | |
Create a table iterator on the given column(s) for the given table. More... | |
TableIterator (const Table &, const Block< String > &columnNames, Order=Ascending, Option=ParSort) | |
TableIterator (const Table &, const Block< String > &columnNames, const Block< Int > &orders, Option=ParSort) | |
Give the iteration order per column. More... | |
TableIterator (const Table &, const Block< String > &columnNames, const Block< CountedPtr< BaseCompare > > &cmpObjs, const Block< Int > &orders, Option=ParSort, bool cacheIterationBoundaries=false) | |
Give the iteration order per column. More... | |
TableIterator (const TableIterator &) | |
Copy constructor (copy semantics). More... | |
~TableIterator () | |
TableIterator & | operator= (const TableIterator &) |
Assignment (copy semantics). More... | |
Bool | isNull () const |
Test if the object is null, i.e. More... | |
void | throwIfNull () const |
Throw an exception if the object is null, i.e. More... | |
void | reset () |
Reset the iterator (i.e. More... | |
Bool | pastEnd () const |
Test if at the end. More... | |
void | next () |
Go to the next group. More... | |
void | operator++ () |
void | operator++ (int) |
void | copyState (const TableIterator &) |
const String & | keyChangeAtLastNext () const |
Report Name of slowest column that changes at end of current iteration. More... | |
Table | table () const |
Get the current group. More... | |
Protected Attributes | |
BaseTableIterator * | tabIterPtr_p |
Table | subTable_p |
Iterate through a Table
Public interface
TableIterator is a class allowing one to iterate in an arbitrary way through a table. Each iteration step returns a Table containing the result of the iteration step. It is possible to have more than one iterator on a table.
An iteration is defined by giving the columns over which to iterate. For example, take a UV data set with "axes" frequency, baseline and time. Getting all frequencies per time and baseline can be done by iterating over columns time and baseline (as shown in the example). The main iteration column must be given first. It is possible to define an iteration order per column.
It is also possible to define a compare object per column. For example, CompareIntervalReal can be used to iterate in intervals over, say, the TIME column by treating a range of values as equal (e.g. iterate in 60 seconds time intervals).
The table is sorted before doing the iteration unless TableIterator::NoSort is given.
It is sometimes needed to access all data in a table in a grouped way; for example, all frequencies per time and baseline. This can perfectly be done with an iterator.
Definition at line 117 of file TableIter.h.
Define the possible sorts.
Enumerator | |
---|---|
QuickSort | |
HeapSort | |
InsSort | |
ParSort | |
NoSort |
Definition at line 124 of file TableIter.h.
Define the possible iteration orders.
Enumerator | |
---|---|
Ascending | |
Descending |
Definition at line 122 of file TableIter.h.
casacore::TableIterator::TableIterator | ( | ) |
Create a null TableIterator object (i.e.
no iterator is attached yet). The sole purpose of this constructor is to allow construction of an array of TableIterator objects. The assignment operator can be used to make a null object reference a column. Note that sort functions, etc. will cause a segmentation fault when operating on a null object. It was felt it was too expensive to test on null over and over again. The user should use the isNull or throwIfNull function in case of doubt.
casacore::TableIterator::TableIterator | ( | const Table & | , |
const String & | columnName, | ||
Order | = Ascending , |
||
Option | = ParSort |
||
) |
Create a table iterator on the given column(s) for the given table.
Each iteration step results in a Table containing all rows in which the values in each given column is equal. The column vector can be empty, resulting in a single iteration step giving the entire table. An iteration order can be given; it defaults to Ascending. Per column a compare object can be given to use other compare functions than the standard ones defined in Compare.h. The compare functions are used for both the sort and the iteration. The option argument makes it possible to choose from various sorting algorithms. Usually ParSort is the fastest, but for a single core machine QuickSort usually performs better. InsSort (insertion sort) should only be used if the input is almost in order. If it is known that the table is already in order, the sort step can be bypassed by giving the option TableIterator::NoSort. The default option is ParSort.
casacore::TableIterator::TableIterator | ( | const Table & | , |
const Block< String > & | columnNames, | ||
Order | = Ascending , |
||
Option | = ParSort |
||
) |
casacore::TableIterator::TableIterator | ( | const Table & | , |
const Block< String > & | columnNames, | ||
const Block< Int > & | orders, | ||
Option | = ParSort |
||
) |
Give the iteration order per column.
Note: If an interval comparison object like CompareIntervalReal is used, the data are sorted on the interval, not on the value; One should consider to do an explicitsort on value and no iteration sort;
casacore::TableIterator::TableIterator | ( | const Table & | , |
const Block< String > & | columnNames, | ||
const Block< CountedPtr< BaseCompare > > & | cmpObjs, | ||
const Block< Int > & | orders, | ||
Option | = ParSort , |
||
bool | cacheIterationBoundaries = false |
||
) |
Give the iteration order per column.
Give an optional compare object per column. A zero pointer means that the default compare function will be used. If cacheIterationBoundaries is set to true then the iteration boundaries computed at construction time while sorting the table are used when advancing with next(). Otherwise, for each next() call the comparison functions are reevaluated again to get the iteration boundary. This improves performance in general but will break existing applications that change the comparison objects (cmpObjs) between iterations.
casacore::TableIterator::TableIterator | ( | const TableIterator & | ) |
Copy constructor (copy semantics).
casacore::TableIterator::~TableIterator | ( | ) |
void casacore::TableIterator::copyState | ( | const TableIterator & | ) |
|
inline |
Test if the object is null, i.e.
does not reference a table yet. This is the case if the default constructor is used.
Definition at line 196 of file TableIter.h.
References casacore::False, tabIterPtr_p, and casacore::True.
Referenced by casacore::TableIterProxy::isNull().
const String& casacore::TableIterator::keyChangeAtLastNext | ( | ) | const |
Report Name of slowest column that changes at end of current iteration.
void casacore::TableIterator::next | ( | ) |
Go to the next group.
Referenced by operator++().
|
inline |
Definition at line 238 of file TableIter.h.
References next().
|
inline |
Definition at line 241 of file TableIter.h.
References next().
TableIterator& casacore::TableIterator::operator= | ( | const TableIterator & | ) |
Assignment (copy semantics).
|
inline |
Test if at the end.
Definition at line 232 of file TableIter.h.
References casacore::False, casacore::Table::nrow(), subTable_p, and casacore::True.
void casacore::TableIterator::reset | ( | ) |
Reset the iterator (i.e.
restart iteration).
|
inline |
void casacore::TableIterator::throwIfNull | ( | ) | const |
Throw an exception if the object is null, i.e.
if function isNull() is True.
|
protected |
Definition at line 226 of file TableIter.h.
|
protected |
Definition at line 225 of file TableIter.h.
Referenced by isNull().