casa
5.7.0-16
|
Class holding the row numbers in a RefTable. More...
#include <RefRows.h>
Public Member Functions | |
RefRows (const Vector< uInt > &rowNumbers, Bool isSliced=False, Bool collapse=False) | |
Create the object from a Vector containing the row numbers. More... | |
RefRows (uInt start, uInt end, uInt incr=1) | |
Create the object from a single start,end,incr slice. More... | |
RefRows (const RefRows &other) | |
Copy constructor (reference semantics). More... | |
RefRows & | operator= (const RefRows &other) |
Assignment (copy semantics). More... | |
~RefRows () | |
Bool | operator== (const RefRows &other) const |
Do this and the other object reference the same rows? More... | |
Vector< uInt > | convert (const Vector< uInt > &rootRownrs) const |
Convert this object to a Vector<uInt> by applying the given row numbers. More... | |
Vector< uInt > | convert () const |
Convert this object to a Vector<uInt> by de-slicing it. More... | |
uInt | nrows () const |
Return the number of rows given by this object. More... | |
uInt | nrow () const |
uInt | firstRow () const |
Return the first row in the object. More... | |
Bool | isSliced () const |
Represents the vector a slice? More... | |
const Vector< uInt > & | rowVector () const |
Get the row vector as is (thus sliced if the object contains slices). More... | |
Private Member Functions | |
uInt | fillNrows () const |
Fill the itsNrows variable. More... | |
Private Attributes | |
Vector< uInt > | itsRows |
uInt | itsNrows |
Bool | itsSliced |
Class holding the row numbers in a RefTable.
Internal
RefRows is used to hold the row numbers forming a view on another table. It contains a vector which can hold the row numbers in 2 ways:
ScalarColumn::getColumnRange
. Class RefRowsSliceIter can be used to iterate through a RefRows object. Each step in the iteration goes to the next a slice. If the RefRows objct contains a simple series of row numbers, each slice contains only one row number. This can degrade performance, so it is possible to use shortcuts by testing if the object contains slices (using isSliced()
) and getting the row number vector directly (using rowVector()
).
RefRows is meant to have one class representing the various ways of picking row numbers. This simplifies the interface of the table and data manager classes dealing with getting/putting the data.
casacore::RefRows::RefRows | ( | const Vector< uInt > & | rowNumbers, |
Bool | isSliced = False , |
||
Bool | collapse = False |
||
) |
Create the object from a Vector containing the row numbers.
When isSliced==False
, the vector is treated as containing individual row numbers, otherwise as containing slices in the form start,end,incr. When collapse==True
, it will try to collapse the individual row numbers to the slice form (to save memory).
Create the object from a single start,end,incr slice.
casacore::RefRows::RefRows | ( | const RefRows & | other | ) |
Copy constructor (reference semantics).
casacore::RefRows::~RefRows | ( | ) |
Convert this object to a Vector<uInt> by applying the given row numbers.
It is used to convert the RefRows object with row numbers in a RefTable to row numbers in the original root table.
Referenced by casacore::Adios2StManColumnT< T >::getArrayColumnCellsV(), and casacore::Adios2StManColumnT< T >::putArrayColumnCellsV().
Convert this object to a Vector<uInt> by de-slicing it.
I.e. it linearizes the row numbers.
|
private |
|
inline |
|
inline |
Represents the vector a slice?
Definition at line 136 of file RefRows.h.
References itsSliced.
Referenced by casacore::Adios2StManColumnT< T >::getArrayColumnCellsV(), and casacore::Adios2StManColumnT< T >::putArrayColumnCellsV().
|
inline |
Definition at line 127 of file RefRows.h.
References fillNrows(), and itsNrows.
|
inline |
Return the number of rows given by this object.
If the object contains slices, it counts the number of rows represented by each slice.
Definition at line 125 of file RefRows.h.
References fillNrows(), and itsNrows.
Do this and the other object reference the same rows?
Get the row vector as is (thus sliced if the object contains slices).
It is mainly useful to get all row numbers when the object does not contain slices.
Definition at line 142 of file RefRows.h.
References itsRows.
Referenced by casacore::Adios2StManColumnT< T >::getArrayColumnCellsV(), and casacore::Adios2StManColumnT< T >::putArrayColumnCellsV().
|
private |
Definition at line 149 of file RefRows.h.
Referenced by firstRow(), and rowVector().
|
private |
Definition at line 151 of file RefRows.h.
Referenced by isSliced().