casacore
|
AipsIO table storage manager class. More...
#include <StManAipsIO.h>
Public Member Functions | |
StManAipsIO () | |
Create an AipsIO storage manager. More... | |
StManAipsIO (const String &storageManagerName) | |
Create an AipsIO storage manager with the given name. More... | |
StManAipsIO (const String &storageManagerName, const Record &) | |
virtual | ~StManAipsIO () |
virtual DataManager * | clone () const |
Clone this object. More... | |
virtual String | dataManagerType () const |
Get the type name of the data manager (i.e. More... | |
uInt | uniqueNr () |
Get a unique column number for the column (it is only unique for this storage manager). More... | |
StManArrayFile * | openArrayFile (ByteIO::OpenOption opt) |
Open (if needed) the file for indirect arrays with the given mode. More... | |
Public Member Functions inherited from casacore::MSMBase | |
MSMBase () | |
Create a memory storage manager. More... | |
MSMBase (const String &storageManagerName) | |
Create a memory storage manager with the given name. More... | |
MSMBase (const String &storageManagerName, const Record &) | |
virtual | ~MSMBase () |
virtual String | dataManagerName () const |
Get the name given to this storage manager. More... | |
void | setHasPut () |
Set the hasPut_p flag. More... | |
rownr_t | nrow () const |
Get the nr of rows in this storage manager. More... | |
virtual Bool | canAddRow () const |
Does the storage manager allow to add rows? (yes) More... | |
virtual Bool | canRemoveRow () const |
Does the storage manager allow to delete rows? (yes) More... | |
virtual Bool | canAddColumn () const |
Does the storage manager allow to add columns? (yes) More... | |
virtual Bool | canRemoveColumn () const |
Does the storage manager allow to delete columns? (yes) More... | |
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 | dataManagerSpec () const |
Return a record containing data manager specifications. 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 | isStorageManager () const |
Is the data manager a storage manager? The default is yes. 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 DataManager * | makeObject (const String &dataManagerType, const Record &spec) |
Make the object from the string. More... | |
Static Public Member Functions inherited from casacore::MSMBase | |
static DataManager * | makeObject (const String &dataManagerType, const Record &spec) |
Make the object from the string. 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 | |
StManAipsIO (const StManAipsIO &) | |
Forbid copy constructor. More... | |
StManAipsIO & | operator= (const StManAipsIO &) |
Forbid assignment. More... | |
virtual Bool | flush (AipsIO &, Bool fsync) |
Flush and optionally fsync the data. More... | |
virtual void | create64 (rownr_t nrrow) |
Let the storage manager create files as needed for a new table. More... | |
virtual rownr_t | open64 (rownr_t nrrow, AipsIO &) |
Open the storage manager file for an existing table and read in the data and let the StManColumnAipsIO objects read their data. More... | |
virtual rownr_t | resync64 (rownr_t nrrow) |
Resync the storage manager with the new file contents. More... | |
virtual void | reopenRW () |
Reopen the storage manager files for read/write. More... | |
virtual void | deleteManager () |
The data manager will be deleted (because all its columns are requested to be deleted). More... | |
DataManagerColumn * | makeScalarColumn (const String &name, int dataType, const String &dataTypeID) |
Create a column in the storage manager on behalf of a table column. More... | |
DataManagerColumn * | makeDirArrColumn (const String &name, int dataType, const String &dataTypeID) |
Create a direct array column. More... | |
DataManagerColumn * | makeIndArrColumn (const String &name, int dataType, const String &dataTypeID) |
Create an indirect array column. More... | |
Private Attributes | |
uInt | uniqnr_p |
Unique nr for column in this storage manager. More... | |
StManArrayFile * | iosfile_p |
The file containing the indirect arrays. More... | |
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::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... | |
Protected Attributes inherited from casacore::MSMBase | |
String | stmanName_p |
Name given by user to this storage manager. More... | |
rownr_t | nrrow_p |
The number of rows in the columns. More... | |
rownr_t | nrrowCreate_p |
The number of rows in create(). More... | |
PtrBlock< MSMColumn * > | colSet_p |
The assembly of all columns. More... | |
Bool | hasPut_p |
Has anything been put since the last flush? More... | |
AipsIO table storage manager class.
Public interface
StManAipsIO is the storage manager using AipsIO.
StManAipsIO is a table storage manager based on AipsIO. It holds the data in the columns in memory and writes them to a file when the table gets closed. Only the data of indirect arrays are directly read/written from/to a file. It contains pointers to the underlying StManColumnAipsIO objects, which do the actual data handling.
The AipsIO storage manager does fully support addition and removal of rows and columns.
All data, except indirect columns, for this storage manager are kept in one file. The file name is the table name appended with .N_AipsIO, where N is the (unique) storage manager sequence number. Each column containing indirect arrays is stored in a separate file using class StManIndArrayColumnAipsIO. The name of such a file is the storage manager file name appended with _cM, where M is a unique column sequence number acquired using function uniqueNr().
Definition at line 194 of file StManAipsIO.h.
casacore::StManAipsIO::StManAipsIO | ( | ) |
Create an AipsIO storage manager.
Its name will be blank.
casacore::StManAipsIO::StManAipsIO | ( | const String & | storageManagerName | ) |
Create an AipsIO storage manager with the given name.
Its name can be used later in e.g. Table::addColumn to add a column to this storage manager.
Note that the 2nd constructor is needed for table creation from a record specification.
|
virtual |
|
private |
Forbid copy constructor.
|
virtual |
Clone this object.
It does not clone StManAipsIOColumn objects possibly used.
Reimplemented from casacore::MSMBase.
|
privatevirtual |
Let the storage manager create files as needed for a new table.
This allows a column with an indirect array to create its file.
Reimplemented from casacore::MSMBase.
|
virtual |
|
privatevirtual |
The data manager will be deleted (because all its columns are requested to be deleted).
So clean up the things needed (e.g. delete files).
Reimplemented from casacore::MSMBase.
Flush and optionally fsync the data.
It returns a True status if it had to flush (i.e. if data have changed).
Reimplemented from casacore::MSMBase.
|
privatevirtual |
Create a direct array column.
Reimplemented from casacore::MSMBase.
|
privatevirtual |
Create an indirect array column.
Reimplemented from casacore::MSMBase.
|
static |
Make the object from the string.
This function gets registered in the DataManager "constructor" map.
|
privatevirtual |
Create a column in the storage manager on behalf of a table column.
Create a scalar column.
Reimplemented from casacore::MSMBase.
Open the storage manager file for an existing table and read in the data and let the StManColumnAipsIO objects read their data.
Reimplemented from casacore::MSMBase.
StManArrayFile* casacore::StManAipsIO::openArrayFile | ( | ByteIO::OpenOption | opt | ) |
Open (if needed) the file for indirect arrays with the given mode.
Return a pointer to the object.
|
private |
Forbid assignment.
|
privatevirtual |
Reopen the storage manager files for read/write.
Reimplemented from casacore::DataManager.
Resync the storage manager with the new file contents.
This is done by clearing the cache.
Reimplemented from casacore::MSMBase.
|
inline |
Get a unique column number for the column (it is only unique for this storage manager).
This is used by StManIndArrayColumnAipsIO to create a unique file name.
Definition at line 224 of file StManAipsIO.h.
References uniqnr_p.
|
private |
The file containing the indirect arrays.
Definition at line 285 of file StManAipsIO.h.
|
private |
Unique nr for column in this storage manager.
Definition at line 283 of file StManAipsIO.h.
Referenced by uniqueNr().