casa  5.7.0-16
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
Public Member Functions | Static Public Member Functions | Private Member Functions | Private Attributes | List of all members
casacore::MSMBase Class Reference

Base class for memory-based table storage manager class. More...

#include <MSMBase.h>

Inheritance diagram for casacore::MSMBase:
casacore::DataManager casacore::MemoryStMan

Public Member Functions

 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 &)
 
 ~MSMBase ()
 
DataManagerclone () const
 Clone this object. More...
 
String dataManagerType () const
 Get the type name of the data manager (i.e. More...
 
String dataManagerName () const
 Get the name given to this storage manager. More...
 
uInt nrow () const
 Get the nr of rows in this storage manager. More...
 
Bool canAddRow () const
 Does the storage manager allow to add rows? (yes) More...
 
Bool canRemoveRow () const
 Does the storage manager allow to delete rows? (yes) More...
 
Bool canAddColumn () const
 Does the storage manager allow to add columns? (yes) More...
 
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 TSMOptiontsmOption () const
 Get the TSM option. More...
 
MultiFileBasemultiFile ()
 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...
 
Tabletable () const
 Get the table this object is associated with. More...
 
virtual void reopenRW ()
 Reopen the data manager for read/write access. More...
 
virtual Bool canRenameColumn () const
 Does the data manager allow to rename columns? (default yes) More...
 
virtual void setMaximumCacheSize (uInt nbytes)
 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...
 
DataManagerColumncreateScalarColumn (const String &columnName, int dataType, const String &dataTypeId)
 Create a column in the data manager on behalf of a table column. More...
 
DataManagerColumncreateDirArrColumn (const String &columnName, int dataType, const String &dataTypeId)
 Create a direct array column. More...
 
DataManagerColumncreateIndArrColumn (const String &columnName, int dataType, const String &dataTypeId)
 Create an indirect array column. More...
 
DataManagergetClone () 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 DataManagermakeObject (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 DataManagerunknownDataManager (const String &dataManagerType, const Record &spec)
 Serve as default function for theirRegisterMap, which catches all unknown data manager types. More...
 

Private Member Functions

virtual Bool flush (AipsIO &, Bool fsync)
 Flush and optionally fsync the data. More...
 
virtual void create (uInt nrrow)
 Let the storage manager create the nr of rows needed. More...
 
virtual void open (uInt nrrow, AipsIO &)
 Open the storage manager file for an existing table. More...
 
virtual void prepare ()
 Let the data manager initialize itself further. More...
 
virtual void resync (uInt nrrow)
 Resync the storage manager with the new file contents. More...
 
virtual void deleteManager ()
 The data manager will be deleted (because all its columns are requested to be deleted). More...
 
void addRow (uInt nrrow)
 Add rows to all columns. More...
 
void removeRow (uInt rownr)
 Delete a row from all columns. More...
 
DataManagerColumnmakeScalarColumn (const String &name, int dataType, const String &dataTypeID)
 Create a column in the storage manager on behalf of a table column. More...
 
DataManagerColumnmakeDirArrColumn (const String &name, int dataType, const String &dataTypeID)
 Create a direct array column. More...
 
DataManagerColumnmakeIndArrColumn (const String &name, int dataType, const String &dataTypeID)
 Create an indirect array column. More...
 
Bool canReallocateColumns () const
 The MemoryStMan wants to do reallocateColumn. More...
 
DataManagerColumnreallocateColumn (DataManagerColumn *column)
 Reallocate the column object if it is part of this data manager. More...
 
void addColumn (DataManagerColumn *)
 Add a column. More...
 
void removeColumn (DataManagerColumn *)
 Delete a column. More...
 

Private Attributes

String stmanName_p
 Name given by user to this storage manager. More...
 
uInt nrrow_p
 The number of rows in the columns. More...
 
uInt nrrowCreate_p
 The number of rows in create(). More...
 
PtrBlock< MSMColumn * > colSet_p
 The assembly of all columns. More...
 

Additional Inherited Members

- 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...
 

Detailed Description

Base class for memory-based table storage manager class.

Intended use:

Internal

Review Status

Reviewed By:
UNKNOWN
Date Reviewed:
before2004/08/25

Prerequisite

Etymology

MSMBase is the base class for MemoryStMan.

Synopsis

See class MemoryStMan for the description.

Definition at line 67 of file MSMBase.h.

Constructor & Destructor Documentation

casacore::MSMBase::MSMBase ( )

Create a memory storage manager.

Its name will be blank.

casacore::MSMBase::MSMBase ( const String storageManagerName)

Create a memory 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.

casacore::MSMBase::MSMBase ( const String storageManagerName,
const Record  
)
casacore::MSMBase::~MSMBase ( )

Member Function Documentation

void casacore::MSMBase::addColumn ( DataManagerColumn )
privatevirtual

Add a column.

Reimplemented from casacore::DataManager.

void casacore::MSMBase::addRow ( uInt  nrrow)
privatevirtual

Add rows to all columns.

Reimplemented from casacore::DataManager.

Bool casacore::MSMBase::canAddColumn ( ) const
virtual

Does the storage manager allow to add columns? (yes)

Reimplemented from casacore::DataManager.

Bool casacore::MSMBase::canAddRow ( ) const
virtual

Does the storage manager allow to add rows? (yes)

Reimplemented from casacore::DataManager.

Bool casacore::MSMBase::canReallocateColumns ( ) const
privatevirtual

The MemoryStMan wants to do reallocateColumn.

Reimplemented from casacore::DataManager.

Bool casacore::MSMBase::canRemoveColumn ( ) const
virtual

Does the storage manager allow to delete columns? (yes)

Reimplemented from casacore::DataManager.

Bool casacore::MSMBase::canRemoveRow ( ) const
virtual

Does the storage manager allow to delete rows? (yes)

Reimplemented from casacore::DataManager.

DataManager* casacore::MSMBase::clone ( ) const
virtual

Clone this object.

It does not clone MSMColumn objects possibly used.

Implements casacore::DataManager.

virtual void casacore::MSMBase::create ( uInt  nrrow)
privatevirtual

Let the storage manager create the nr of rows needed.

Implements casacore::DataManager.

String casacore::MSMBase::dataManagerName ( ) const
virtual

Get the name given to this storage manager.

Reimplemented from casacore::DataManager.

String casacore::MSMBase::dataManagerType ( ) const
virtual

Get the type name of the data manager (i.e.

MemoryStMan).

Implements casacore::DataManager.

virtual void casacore::MSMBase::deleteManager ( )
privatevirtual

The data manager will be deleted (because all its columns are requested to be deleted).

It does not have to do anything.

Implements casacore::DataManager.

virtual Bool casacore::MSMBase::flush ( AipsIO ,
Bool  fsync 
)
privatevirtual

Flush and optionally fsync the data.

It does not done anything and always returns a False status.

Implements casacore::DataManager.

DataManagerColumn* casacore::MSMBase::makeDirArrColumn ( const String name,
int  dataType,
const String dataTypeID 
)
privatevirtual

Create a direct array column.

Implements casacore::DataManager.

DataManagerColumn* casacore::MSMBase::makeIndArrColumn ( const String name,
int  dataType,
const String dataTypeID 
)
privatevirtual

Create an indirect array column.

Implements casacore::DataManager.

static DataManager* casacore::MSMBase::makeObject ( const String dataManagerType,
const Record spec 
)
static

Make the object from the string.

This function gets registered in the DataManager "constructor" map.

DataManagerColumn* casacore::MSMBase::makeScalarColumn ( const String name,
int  dataType,
const String dataTypeID 
)
privatevirtual

Create a column in the storage manager on behalf of a table column.

Create a scalar column.

Implements casacore::DataManager.

uInt casacore::MSMBase::nrow ( ) const
inline

Get the nr of rows in this storage manager.

Definition at line 98 of file MSMBase.h.

References nrrow_p.

virtual void casacore::MSMBase::open ( uInt  nrrow,
AipsIO  
)
privatevirtual

Open the storage manager file for an existing table.

It fills the rows with 0 values.

Implements casacore::DataManager.

virtual void casacore::MSMBase::prepare ( )
privatevirtual

Let the data manager initialize itself further.

It creates nr of rows (given to create) if needed. Note this is done after reallocateColumn.

Reimplemented from casacore::DataManager.

DataManagerColumn* casacore::MSMBase::reallocateColumn ( DataManagerColumn column)
privatevirtual

Reallocate the column object if it is part of this data manager.

It returns a pointer to the new column object. It is used to replace an MSMIndColumn object for indirect array with a fixed shape by an MSMDirColumn object.

Reimplemented from casacore::DataManager.

void casacore::MSMBase::removeColumn ( DataManagerColumn )
privatevirtual

Delete a column.

Reimplemented from casacore::DataManager.

void casacore::MSMBase::removeRow ( uInt  rownr)
privatevirtual

Delete a row from all columns.

Reimplemented from casacore::DataManager.

virtual void casacore::MSMBase::resync ( uInt  nrrow)
privatevirtual

Resync the storage manager with the new file contents.

It adds or removes rows as needed. It cannot know which rows are deleted, so it always deletes the last rows.

Implements casacore::DataManager.

Member Data Documentation

PtrBlock<MSMColumn*> casacore::MSMBase::colSet_p
private

The assembly of all columns.

Definition at line 189 of file MSMBase.h.

uInt casacore::MSMBase::nrrow_p
private

The number of rows in the columns.

Definition at line 185 of file MSMBase.h.

Referenced by nrow().

uInt casacore::MSMBase::nrrowCreate_p
private

The number of rows in create().

Definition at line 187 of file MSMBase.h.

String casacore::MSMBase::stmanName_p
private

Name given by user to this storage manager.

Definition at line 183 of file MSMBase.h.


The documentation for this class was generated from the following file: