casacore
|
#include <SetupNewTab.h>
Public Member Functions | |
SetupNewTableRep (const String &tableName, const String &tableDescName, Table::TableOption, const StorageOption &) | |
Create a new table using the table description with the given name. More... | |
SetupNewTableRep (const String &tableName, const TableDesc &, Table::TableOption, const StorageOption &) | |
Create a new table using the given table description. More... | |
~SetupNewTableRep () | |
const String & | name () const |
Get the name of the table. More... | |
int | option () const |
Get the table create option. More... | |
const StorageOption & | storageOption () const |
Get the storage option. More... | |
Bool | isMarkedForDelete () const |
Test if the table is marked for delete. More... | |
const TableDesc & | tableDesc () const |
Get the table description. More... | |
void | bindColumn (const String &columnName, const DataManager &) |
Bind a column to the given data manager. More... | |
void | bindColumn (const String &columnName, const String &otherColumn) |
Bind a column to the given data manager of the other column. More... | |
void | bindGroup (const String &columnGroup, const DataManager &, Bool rebind=False) |
Bind a group of columns to the given data manager. More... | |
void | bindAll (const DataManager &, Bool rebind=False) |
Bind all columns to the given data manager. More... | |
void | bindCreate (const Record &spec) |
Create data managers and bind the columns using the specifications in the given record (which is obtained using Table::dataManagerInfo()). More... | |
void | setShapeColumn (const String &columnName, const IPosition &shape) |
Define the shape of fixed shaped arrays in a column. More... | |
Bool | isUsed () const |
Test if object is already in use. More... | |
const CountedPtr< ColumnSet > & | columnSetPtr () const |
Get pointer to column set. More... | |
const CountedPtr< TableDesc > & | tableDescPtr () const |
Get pointer to table description. More... | |
void | setInUse () |
Set object to in use by a (Plain)Table object. More... | |
void | handleUnbound () |
Make a data manager for all unbound columns. More... | |
Private Member Functions | |
SetupNewTableRep (const SetupNewTableRep &) | |
Copy constructor is forbidden, because copying a table requires some more knowledge (like table name of result). More... | |
SetupNewTableRep & | operator= (const SetupNewTableRep &) |
Assignment is forbidden, because copying a table requires some more knowledge (like table name of result). More... | |
void | setup () |
Setup the new table. More... | |
DataManager * | getDataManager (const DataManager &dataMan) |
Get the internal data manager object for the given data manager. More... | |
Private Attributes | |
String | tabName_p |
Table name. More... | |
int | option_p |
Constructor options. More... | |
StorageOption | storageOpt_p |
Bool | delete_p |
Marked for delete? More... | |
CountedPtr< TableDesc > | tdescPtr_p |
CountedPtr< ColumnSet > | colSetPtr_p |
std::map< void *, void * > | dataManMap_p |
Representation for handle class SetupNewTable
Internal
SetupNewTableRep is the representation of class SetupNewTable.
SetupNewTableRep is the representation of class SetupNewTable. Its functionality is described there.
Copying a SetupNewTable object as such is very difficult, if not impossible. However, being able to use a SetupNewTable copy constructor was required to be able to have (static) functions constructing a SetupNewTable object and return it by value (as done for example by ForwardColumn::setupNewTable
). Therefore SetupNewTable is implemented using the handle idiom. SetupNewTable is the interface (i.e. the handle) for the user, while underneath SetupNewTableRep is doing all the work. The SetupNewTable copy constructor can simply copy yhe pointer to the underlying SetupNewTableRep object.
Definition at line 93 of file SetupNewTab.h.
casacore::SetupNewTableRep::SetupNewTableRep | ( | const String & | tableName, |
const String & | tableDescName, | ||
Table::TableOption | , | ||
const StorageOption & | |||
) |
Create a new table using the table description with the given name.
The description will be read from a file.
casacore::SetupNewTableRep::SetupNewTableRep | ( | const String & | tableName, |
const TableDesc & | , | ||
Table::TableOption | , | ||
const StorageOption & | |||
) |
Create a new table using the given table description.
casacore::SetupNewTableRep::~SetupNewTableRep | ( | ) |
|
private |
Copy constructor is forbidden, because copying a table requires some more knowledge (like table name of result).
Declaring it private, makes it unusable.
void casacore::SetupNewTableRep::bindAll | ( | const DataManager & | , |
Bool | rebind = False |
||
) |
Bind all columns to the given data manager.
The flag rebind tells if the binding of an already bound column will be overwritten. It cannot be used anymore once the SetupNewTableRep object is used to construct a Table object.
void casacore::SetupNewTableRep::bindColumn | ( | const String & | columnName, |
const DataManager & | |||
) |
Bind a column to the given data manager.
If already bound, the binding will be overwritten. It cannot be used anymore once the SetupNewTableRep object is used to construct a Table object.
void casacore::SetupNewTableRep::bindColumn | ( | const String & | columnName, |
const String & | otherColumn | ||
) |
Bind a column to the given data manager of the other column.
If the other column is not bound, nothing will be done. If columnName is already bound, the binding will be overwritten. It cannot be used anymore once the SetupNewTableRep object is used to construct a Table object.
void casacore::SetupNewTableRep::bindCreate | ( | const Record & | spec | ) |
Create data managers and bind the columns using the specifications in the given record (which is obtained using Table::dataManagerInfo()).
void casacore::SetupNewTableRep::bindGroup | ( | const String & | columnGroup, |
const DataManager & | , | ||
Bool | rebind = False |
||
) |
Bind a group of columns to the given data manager.
The flag rebind tells if the binding of an already bound column will be overwritten. It cannot be used anymore once the SetupNewTableRep object is used to construct a Table object.
|
inline |
Get pointer to column set.
This function is used by PlainTable.
Definition at line 177 of file SetupNewTab.h.
References colSetPtr_p.
|
private |
Get the internal data manager object for the given data manager.
If it does not exist yet, it will be cloned and stored internally.
void casacore::SetupNewTableRep::handleUnbound | ( | ) |
Make a data manager for all unbound columns.
|
inline |
Test if the table is marked for delete.
Definition at line 120 of file SetupNewTab.h.
References delete_p.
|
inline |
Test if object is already in use.
Definition at line 172 of file SetupNewTab.h.
References colSetPtr_p.
|
inline |
|
private |
Assignment is forbidden, because copying a table requires some more knowledge (like table name of result).
Declaring it private, makes it unusable.
|
inline |
|
inline |
Set object to in use by a (Plain)Table object.
This function is used by PlainTable.
Definition at line 187 of file SetupNewTab.h.
References colSetPtr_p.
void casacore::SetupNewTableRep::setShapeColumn | ( | const String & | columnName, |
const IPosition & | shape | ||
) |
Define the shape of fixed shaped arrays in a column.
The shape of those arrays has to be known before the table can be constructed. It has to be defined via this function, if it was not already defined in the column description. If only the dimensionality was defined in the column description, the shape's dimensionality must match it. Calling this function for an non-fixed shaped array results in an exception. It cannot be used anymore once the SetupNewTableRep object is used to construct a Table object.
|
private |
Setup the new table.
This checks various things and creates the set of columns.
|
inline |
|
inline |
|
inline |
Get pointer to table description.
This function is used by PlainTable.
Definition at line 182 of file SetupNewTab.h.
References tdescPtr_p.
|
private |
Definition at line 202 of file SetupNewTab.h.
Referenced by columnSetPtr(), isUsed(), and setInUse().
|
private |
Definition at line 203 of file SetupNewTab.h.
|
private |
|
private |
|
private |
Definition at line 198 of file SetupNewTab.h.
Referenced by storageOption().
|
private |
|
private |
Definition at line 201 of file SetupNewTab.h.
Referenced by tableDesc(), and tableDescPtr().