casacore
|
Virtual column engine forwarding to other columns/rows. More...
#include <ForwardColRow.h>
Public Member Functions | |
ForwardColumnIndexedRowEngine (const String &dataManagerName, const Record &spec) | |
The default constructor is required for reconstruction of the engine when a table is read back. More... | |
ForwardColumnIndexedRowEngine (const Table &referencedTable, const String &rowColumnName, const String &dataManagerName) | |
Create the engine. More... | |
ForwardColumnIndexedRowEngine (const Table &referencedTable, const String &rowColumnName) | |
Create the engine. More... | |
~ForwardColumnIndexedRowEngine () | |
Destructor is mandatory. More... | |
DataManager * | clone () const |
Clone the engine object. More... | |
String | dataManagerType () const |
Return the type name of the engine (i.e. More... | |
virtual Record | dataManagerSpec () const |
Record a record containing data manager specifications. More... | |
rownr_t | convertRownr (rownr_t rownr) |
Convert the rownr to the rownr in the underlying table. More... | |
Public Member Functions inherited from casacore::ForwardColumnEngine | |
ForwardColumnEngine (const String &dataManagerName, const Record &spec) | |
The default constructor is required for reconstruction of the engine when a table is read back. More... | |
ForwardColumnEngine (const Table &referencedTable, const String &dataManagerName) | |
Create the engine. More... | |
ForwardColumnEngine (const Table &referencedTable) | |
Create the engine. More... | |
~ForwardColumnEngine () | |
Destructor is mandatory. More... | |
String | dataManagerName () const |
Return the name of the data manager. More... | |
const String & | suffix () const |
Get the suffix to be used for names. More... | |
void | setRefTable (const Table &refTable) |
Set RefTable_p if not set yet. More... | |
Public Member Functions inherited from casacore::VirtualColumnEngine | |
VirtualColumnEngine () | |
Create the object. More... | |
virtual | ~VirtualColumnEngine () |
Public Member Functions inherited from casacore::DataManager | |
DataManager () | |
Default constructor. More... | |
virtual | ~DataManager () |
void | dataManagerInfo (Record &info) const |
Add SEQNR and SPEC (the DataManagerSpec subrecord) to the info. More... | |
virtual Record | getProperties () const |
Get data manager properties that can be modified. More... | |
virtual void | setProperties (const Record &spec) |
Modify data manager properties given in record fields. More... | |
virtual Bool | canReallocateColumns () const |
Tell if the data manager wants to reallocate the data manager column objects. More... | |
virtual DataManagerColumn * | reallocateColumn (DataManagerColumn *column) |
Reallocate the column object if it is part of this data manager. More... | |
uInt | sequenceNr () const |
Get the (unique) sequence nr of this data manager. More... | |
uInt | ncolumn () const |
Get the nr of columns in this data manager (can be zero). More... | |
Bool | asBigEndian () const |
Have the data to be stored in big or little endian canonical format? More... | |
const TSMOption & | tsmOption () const |
Get the TSM option. More... | |
MultiFileBase * | multiFile () |
Get the MultiFile pointer (can be 0). More... | |
String | keywordName (const String &keyword) const |
Compose a keyword name from the given keyword appended with the sequence number (e.g. More... | |
String | fileName () const |
Compose a unique filename from the table name and sequence number. More... | |
ByteIO::OpenOption | fileOption () const |
Get the AipsIO option of the underlying file. More... | |
virtual Bool | isRegular () const |
Is this a regular storage manager? It is regular if it allows addition of rows and writing data in them. More... | |
Table & | table () const |
Get the table this object is associated with. More... | |
virtual Bool | canRenameColumn () const |
Does the data manager allow to rename columns? (default yes) More... | |
virtual void | setMaximumCacheSize (uInt nMiB) |
Set the maximum cache size (in bytes) to be used by a storage manager. More... | |
virtual void | showCacheStatistics (std::ostream &) const |
Show the data manager's IO statistics. More... | |
DataManagerColumn * | createScalarColumn (const String &columnName, int dataType, const String &dataTypeId) |
Create a column in the data manager on behalf of a table column. More... | |
DataManagerColumn * | createDirArrColumn (const String &columnName, int dataType, const String &dataTypeId) |
Create a direct array column. More... | |
DataManagerColumn * | createIndArrColumn (const String &columnName, int dataType, const String &dataTypeId) |
Create an indirect array column. More... | |
DataManager * | getClone () const |
Has the object already been cloned? More... | |
void | setClone (DataManager *clone) const |
Set the pointer to the clone. More... | |
Static Public Member Functions | |
static String | className () |
Return the name of the class. More... | |
static void | registerClass () |
Register the class name and the static makeObject "constructor". More... | |
static DataManager * | makeObject (const String &dataManagerName, const Record &spec) |
Define the "constructor" to construct this engine when a table is read back. More... | |
Static Public Member Functions inherited from casacore::ForwardColumnEngine | |
static String | className () |
Return the name of the class. More... | |
static void | registerClass () |
Register the class name and the static makeObject "constructor". More... | |
static DataManager * | makeObject (const String &dataManagerType, const Record &spec) |
Define the "constructor" to construct this engine when a table is read back. More... | |
Static Public Member Functions inherited from casacore::DataManager | |
static void | registerCtor (const String &type, DataManagerCtor func) |
Register a mapping of a data manager type to its static construction function. More... | |
static DataManagerCtor | getCtor (const String &dataManagerType) |
Get the "constructor" of a data manager (thread-safe). More... | |
static Bool | isRegistered (const String &dataManagerType) |
Test if a data manager is registered (thread-safe). More... | |
static DataManager * | unknownDataManager (const String &dataManagerType, const Record &spec) |
Serve as default function for theirRegisterMap, which catches all unknown data manager types. More... | |
Private Member Functions | |
ForwardColumnIndexedRowEngine (const ForwardColumnIndexedRowEngine &) | |
The copy constructor is forbidden (so it is private). More... | |
ForwardColumnIndexedRowEngine & | operator= (const ForwardColumnIndexedRowEngine &) |
Assignment is forbidden (so it is private). More... | |
DataManagerColumn * | makeScalarColumn (const String &columnName, int dataType, const String &dataTypeId) |
Create the column object for the scalar column in this engine. More... | |
DataManagerColumn * | makeIndArrColumn (const String &columnName, int dataType, const String &dataTypeId) |
Create the column object for the indirect array column in this engine. More... | |
void | create64 (rownr_t initialNrrow) |
Initialize the object for a new table. More... | |
void | prepare () |
Initialize the engine. More... | |
void | reopenRW () |
Reopen the engine for read/write access. More... | |
Private Attributes | |
String | rowColumnName_p |
Define the column with the row numbers (must have data type uInt). More... | |
ScalarColumn< uInt > | rowColumn_p |
PtrBlock< ForwardColumnIndexedRow * > | refColumns_p |
Define the various engine column objects. More... | |
Int64 | lastRow_p |
Cache of last row used to get row number. More... | |
rownr_t | rowNumber_p |
Additional Inherited Members | |
Static Public Attributes inherited from casacore::DataManager | |
static rownr_t | MAXROWNR32 |
Define the highest row number that can be represented as signed 32-bit. More... | |
Protected Member Functions inherited from casacore::ForwardColumnEngine | |
void | setSuffix (const String &suffix) |
Set the suffix. More... | |
void | addForwardColumn (ForwardColumn *colp) |
Add a ForwardColumn object to the block. More... | |
const Table & | refTable () const |
Get access to the refTable_p data member. More... | |
void | baseCreate () |
Do the creation (i.e. More... | |
void | basePrepare () |
Do the preparation of the engine by preparing all columns. More... | |
Protected Member Functions inherited from casacore::DataManager | |
void | decrementNcolumn () |
Decrement number of columns (in case a column is deleted). More... | |
void | setEndian (Bool bigEndian) |
Tell the data manager if big or little endian format is needed. More... | |
void | setTsmOption (const TSMOption &tsmOption) |
Tell the data manager which TSM option to use. More... | |
void | setMultiFile (MultiFileBase *mfile) |
Tell the data manager that MultiFile can be used. More... | |
virtual Bool | hasMultiFileSupport () const |
Does the data manager support use of MultiFile? A derived class has to return True if it can use the MultiFile. More... | |
void | throwDataTypeOther (const String &columnName, int dataType) const |
Throw an exception in case data type is TpOther, because the storage managers (and maybe other data managers) do not support such columns. More... | |
Virtual column engine forwarding to other columns/rows.
Public interface
ForwardColumnIndexedRowEngine is a virtual column engine which forwards the gets and puts of columns to corresponding columns in another table. Furthermore it maps the row number by indexing the row number in the referenced table.
ForwardColumnIndexedRowEngine is a data manager which forwards the gets and puts of columns to columns with the same names in another table. In that sense it is the same as the virtual column engine
ForwardColumnEngine. However, it also forwards the row number. That is, it uses a column containing row numbers to index the correct row in the referenced table. The name of this column and the name of the referenced table have to be given when constructing the engine.
For example:
Table TABA contains columns A, B and C and consists of N rows. Table TABF uses ForwardColumnIndexedRowEngine to forward its columns A, B and C to the corresponding columns in TABA. Furthermore it contains a column ROW containing row numbers in TABA. This column is the mapping of row numbers in TABF to rows in TABA. E.g. if ROW has the value 25 in row 10, row 10 of TABF is forwarded to row 25 in TABA.
Actually, puts are not possible. When multiple rows map to the same row in the referenced table, putting a value in one row would also change the value in another row referencing the same underlying row. This could result in unexpected behaviour.
The engine consists of a set of
ForwardColumnIndexedRow objects, which handle the actual gets.
In some ways it overlaps the functionality of the storage manager StManMirAIO. They both allow to have the same value used by multiple rows. However, StManMirAIO only allows that for consecutive rows, while this engine allows it for any row. On the other side, StManMirAIO is faster.
Definition at line 282 of file ForwardColRow.h.
casacore::ForwardColumnIndexedRowEngine::ForwardColumnIndexedRowEngine | ( | const String & | dataManagerName, |
const Record & | spec | ||
) |
The default constructor is required for reconstruction of the engine when a table is read back.
casacore::ForwardColumnIndexedRowEngine::ForwardColumnIndexedRowEngine | ( | const Table & | referencedTable, |
const String & | rowColumnName, | ||
const String & | dataManagerName | ||
) |
Create the engine.
The columns using this engine will reference the given table. The column with the given name contains the row number mapping, i.e. a row number in a get or put is converted to a row number in the referenced table using the value in this column. The data manager gets the given name.
casacore::ForwardColumnIndexedRowEngine::ForwardColumnIndexedRowEngine | ( | const Table & | referencedTable, |
const String & | rowColumnName | ||
) |
Create the engine.
The columns using this engine will reference the given table. The column with the given name contains the row number mapping, i.e. a row number in a get or put is converted to a row number in the referenced table using the value in this column. The data manager has no name.
casacore::ForwardColumnIndexedRowEngine::~ForwardColumnIndexedRowEngine | ( | ) |
Destructor is mandatory.
|
private |
The copy constructor is forbidden (so it is private).
|
static |
Return the name of the class.
|
virtual |
Clone the engine object.
Reimplemented from casacore::ForwardColumnEngine.
Convert the rownr to the rownr in the underlying table.
Definition at line 391 of file ForwardColRow.h.
References lastRow_p, rowColumn_p, and rowNumber_p.
Referenced by casacore::ForwardColumnIndexedRow::convertRownr().
|
privatevirtual |
Initialize the object for a new table.
It defines the column keywords containing the name of the original table, which can be the parent of the referenced table. It also defines a keyword containing the row column name.
Reimplemented from casacore::ForwardColumnEngine.
|
virtual |
Record a record containing data manager specifications.
Reimplemented from casacore::ForwardColumnEngine.
|
virtual |
Return the type name of the engine (i.e.
its class name ForwardColumnIndexedRowEngine).
Reimplemented from casacore::ForwardColumnEngine.
|
privatevirtual |
Create the column object for the indirect array column in this engine.
Reimplemented from casacore::ForwardColumnEngine.
|
static |
Define the "constructor" to construct this engine when a table is read back.
This "constructor" has to be registered by the user of the engine. If the engine is commonly used, its registration can be added into the registerAllCtor function in DataManReg.cc. This function gets automatically invoked by the table system.
|
privatevirtual |
Create the column object for the scalar column in this engine.
Reimplemented from casacore::ForwardColumnEngine.
|
private |
Assignment is forbidden (so it is private).
|
privatevirtual |
Initialize the engine.
It gets the name of the original table(s) from the column keywords, opens those tables and attaches the ForwardColumnIndexedRow objects to the columns in those tables.
Reimplemented from casacore::ForwardColumnEngine.
|
static |
Register the class name and the static makeObject "constructor".
This will make the engine known to the table system.
|
privatevirtual |
Reopen the engine for read/write access.
This cannot be done, so all columns remain readonly. The function is needed to override the behaviour of its base class.
Reimplemented from casacore::ForwardColumnEngine.
|
private |
Cache of last row used to get row number.
Definition at line 372 of file ForwardColRow.h.
Referenced by convertRownr().
|
private |
Define the various engine column objects.
Definition at line 370 of file ForwardColRow.h.
|
private |
Definition at line 368 of file ForwardColRow.h.
Referenced by convertRownr().
|
private |
Define the column with the row numbers (must have data type uInt).
Definition at line 367 of file ForwardColRow.h.
|
private |
Definition at line 373 of file ForwardColRow.h.
Referenced by convertRownr().