casacore
|
#include <ISMColumn.h>
Public Member Functions | |
ISMColumn (ISMBase *parent, int dataType, uInt colnr) | |
Create a ISMColumn object with the given parent. More... | |
~ISMColumn () | |
virtual void | setShapeColumn (const IPosition &shape) |
Set the shape of an array in the column. More... | |
virtual uInt | ndim (rownr_t rownr) |
Get the dimensionality of the item in the given row. More... | |
virtual IPosition | shape (rownr_t rownr) |
Get the shape of the array in the given row. More... | |
virtual void | doCreate (ISMBucket *) |
Let the column object initialize itself for a newly created table. More... | |
virtual void | getFile (rownr_t nrrow) |
Let the column object initialize itself for an existing table. More... | |
virtual Bool | flush (rownr_t nrrow, Bool fsync) |
Flush and optionally fsync the data. More... | |
void | resync (rownr_t nrrow) |
Resync the storage manager with the new file contents. More... | |
virtual void | reopenRW () |
Let the column reopen its data files for read/write access. More... | |
virtual void | getBool (rownr_t rownr, Bool *dataPtr) |
Get a scalar value in the given row. More... | |
virtual void | getuChar (rownr_t rownr, uChar *dataPtr) |
virtual void | getShort (rownr_t rownr, Short *dataPtr) |
virtual void | getuShort (rownr_t rownr, uShort *dataPtr) |
virtual void | getInt (rownr_t rownr, Int *dataPtr) |
virtual void | getuInt (rownr_t rownr, uInt *dataPtr) |
virtual void | getInt64 (rownr_t rownr, Int64 *dataPtr) |
virtual void | getfloat (rownr_t rownr, float *dataPtr) |
virtual void | getdouble (rownr_t rownr, double *dataPtr) |
virtual void | getComplex (rownr_t rownr, Complex *dataPtr) |
virtual void | getDComplex (rownr_t rownr, DComplex *dataPtr) |
virtual void | getString (rownr_t rownr, String *dataPtr) |
virtual void | putBool (rownr_t rownr, const Bool *dataPtr) |
Put a scalar value in the given row. More... | |
virtual void | putuChar (rownr_t rownr, const uChar *dataPtr) |
virtual void | putShort (rownr_t rownr, const Short *dataPtr) |
virtual void | putuShort (rownr_t rownr, const uShort *dataPtr) |
virtual void | putInt (rownr_t rownr, const Int *dataPtr) |
virtual void | putuInt (rownr_t rownr, const uInt *dataPtr) |
virtual void | putInt64 (rownr_t rownr, const Int64 *dataPtr) |
virtual void | putfloat (rownr_t rownr, const float *dataPtr) |
virtual void | putdouble (rownr_t rownr, const double *dataPtr) |
virtual void | putComplex (rownr_t rownr, const Complex *dataPtr) |
virtual void | putDComplex (rownr_t rownr, const DComplex *dataPtr) |
virtual void | putString (rownr_t rownr, const String *dataPtr) |
virtual void | getScalarColumnV (ArrayBase &dataPtr) |
Get the scalar values in the entire column. More... | |
virtual void | putScalarColumnV (const ArrayBase &dataPtr) |
Put the scalar values into the entire column. More... | |
virtual void | getScalarColumnCellsV (const RefRows &rownrs, ArrayBase &dataPtr) |
Get the scalar values in some cells of the column. More... | |
virtual void | getArrayV (rownr_t rownr, ArrayBase &dataPtr) |
Get an array value in the given row. More... | |
virtual void | putArrayV (rownr_t rownr, const ArrayBase &dataPtr) |
Put an array value in the given row. More... | |
virtual void | addRow (rownr_t newNrrow, rownr_t oldNrrow) |
Add (newNrrow-oldNrrow) rows to the column and initialize the new rows when needed. More... | |
void | remove (rownr_t bucketRownr, ISMBucket *bucket, rownr_t bucketNrrow, rownr_t newNrrow) |
Remove the given row in the bucket from the column. More... | |
virtual void | handleCopy (rownr_t rownr, const char *value) |
Give a derived class the opportunity to react on the duplication of a value. More... | |
virtual void | handleRemove (rownr_t rownr, const char *value) |
Give a derived class the opportunity to react on the removal of a value. More... | |
uInt | getFixedLength () const |
Get the fixed length of the data value in a cell of this column (0 = variable length). More... | |
uInt | nelements () const |
Get the nr of elements in this data value. More... | |
Public Member Functions inherited from casacore::StManColumnBase | |
StManColumnBase (int dataType) | |
Default constructor. More... | |
~StManColumnBase () | |
virtual int | dataType () const |
Return the data type of the column. More... | |
DataType | dtype () const |
Int | elemSize () const |
Return the size of an element of the column's data type. More... | |
Public Member Functions inherited from casacore::DataManagerColumn | |
DataManagerColumn () | |
Create a column. More... | |
virtual | ~DataManagerColumn () |
Frees up the storage. More... | |
void | setIsFixedShape (Bool isFixedShape) |
Set the isFixedShape flag. More... | |
Bool | isFixedShape () const |
Is this a fixed shape column? More... | |
virtual String | dataTypeId () const |
Get the data type id of the column for dataType==TpOther. More... | |
virtual Bool | isWritable () const |
Test if data can be put into this column. More... | |
virtual void | setMaxLength (uInt maxLength) |
Set the maximum length of the value (can be used for strings). More... | |
void | setFixedShapeColumn (const IPosition &shape) |
Set the shape of all (fixed-shaped) arrays in the column. More... | |
virtual void | setShape (rownr_t rownr, const IPosition &shape) |
Set the shape of an (variable-shaped) array in the given row. More... | |
virtual void | setShapeTiled (rownr_t rownr, const IPosition &shape, const IPosition &tileShape) |
Set the shape and tile shape of an (variable-shaped) array in the given row. More... | |
virtual Bool | isShapeDefined (rownr_t rownr) |
Is the value shape defined in the given row? By default it returns True. More... | |
virtual IPosition | tileShape (rownr_t rownr) |
Get the tile shape of the item in the given row. More... | |
virtual Bool | canChangeShape () const |
Can the data manager handle chaging the shape of an existing array? Default is no. More... | |
ColumnCache & | columnCache () |
Get access to the ColumnCache object. More... | |
const ColumnCache * | columnCachePtr () const |
void | get (rownr_t rownr, Bool *dataPtr) |
Get the scalar value in the given row. More... | |
void | get (rownr_t rownr, uChar *dataPtr) |
void | get (rownr_t rownr, Short *dataPtr) |
void | get (rownr_t rownr, uShort *dataPtr) |
void | get (rownr_t rownr, Int *dataPtr) |
void | get (rownr_t rownr, uInt *dataPtr) |
void | get (rownr_t rownr, Int64 *dataPtr) |
void | get (rownr_t rownr, float *dataPtr) |
void | get (rownr_t rownr, double *dataPtr) |
void | get (rownr_t rownr, Complex *dataPtr) |
void | get (rownr_t rownr, DComplex *dataPtr) |
void | get (rownr_t rownr, String *dataPtr) |
void | get (rownr_t rownr, void *dataPtr) |
This function is the get for all non-standard data types. More... | |
void | put (rownr_t rownr, const Bool *dataPtr) |
Put the scalar value into the given row. More... | |
void | put (rownr_t rownr, const uChar *dataPtr) |
void | put (rownr_t rownr, const Short *dataPtr) |
void | put (rownr_t rownr, const uShort *dataPtr) |
void | put (rownr_t rownr, const Int *dataPtr) |
void | put (rownr_t rownr, const uInt *dataPtr) |
void | put (rownr_t rownr, const Int64 *dataPtr) |
void | put (rownr_t rownr, const float *dataPtr) |
void | put (rownr_t rownr, const double *dataPtr) |
void | put (rownr_t rownr, const Complex *dataPtr) |
void | put (rownr_t rownr, const DComplex *dataPtr) |
void | put (rownr_t rownr, const String *dataPtr) |
void | put (rownr_t rownr, const void *dataPtr) |
This function is the put for all non-standard data types. More... | |
virtual void | putScalarColumnCellsV (const RefRows &rownrs, const ArrayBase &dataPtr) |
Put some scalar values in the column. More... | |
virtual void | getArrayColumnV (ArrayBase &data) |
Get all array values in the column. More... | |
virtual void | putArrayColumnV (const ArrayBase &data) |
Put all array values in the column. More... | |
virtual void | getArrayColumnCellsV (const RefRows &rownrs, ArrayBase &data) |
Get some array values in the column. More... | |
virtual void | putArrayColumnCellsV (const RefRows &rownrs, const ArrayBase &data) |
Put some array values in the column. More... | |
virtual void | getSliceV (rownr_t rownr, const Slicer &slicer, ArrayBase &data) |
Get a section of the array in the given row. More... | |
virtual void | putSliceV (rownr_t rownr, const Slicer &slicer, const ArrayBase &data) |
Put into a section of the array in the given row. More... | |
virtual void | getColumnSliceV (const Slicer &slicer, ArrayBase &data) |
Get a section of all arrays in the column. More... | |
virtual void | putColumnSliceV (const Slicer &slicer, const ArrayBase &data) |
Put into a section of all arrays in the column. More... | |
virtual void | getColumnSliceCellsV (const RefRows &rownrs, const Slicer &slicer, ArrayBase &data) |
Get a section of some arrays in the column. More... | |
virtual void | putColumnSliceCellsV (const RefRows &rownrs, const Slicer &slicer, const ArrayBase &data) |
Put into a section of some arrays in the column. More... | |
void | throwGet () const |
Throw an "invalid operation" exception for the default implementation of get. More... | |
void | throwPut () const |
Throw an "invalid operation" exception for the default implementation of put. More... | |
void | setColumnName (const String &colName) |
Set the column name. More... | |
const String & | columnName () const |
Get rhe column name. More... | |
Static Public Member Functions | |
static Conversion::ValueFunction * | getReaduInt (Bool asCanonical) |
Get the function needed to read/write a uInt and rownr from/to external format. More... | |
static Conversion::ValueFunction * | getReadRownr (Bool asCanonical) |
static Conversion::ValueFunction * | getWriteuInt (Bool asCanonical) |
static Conversion::ValueFunction * | getWriteRownr (Bool asCanonical) |
Static Public Member Functions inherited from casacore::StManColumnBase | |
static Bool | isNativeDataType (int dtype) |
Test if the given data type is supported by storage managers. More... | |
Protected Member Functions | |
Bool | isLastValueInvalid (rownr_t rownr) |
Test if the last value is invalid for this row. More... | |
void | getValue (rownr_t rownr, void *value, Bool setCache) |
Get the value for this row. More... | |
void | putValue (rownr_t rownr, const void *value) |
Put the value for this row. More... | |
Protected Member Functions inherited from casacore::DataManagerColumn | |
virtual void | getOther (rownr_t rownr, void *dataPtr) |
This function is the get for all non-standard data types. More... | |
virtual void | putOther (rownr_t rownr, const void *dataPtr) |
This function is the put for all non-standard data types. More... | |
void | getScalarColumnBase (ArrayBase &dataPtr) |
The default implementations of get and put functions. More... | |
void | putScalarColumnBase (const ArrayBase &dataPtr) |
void | getScalarColumnCellsBase (const RefRows &rownrs, ArrayBase &dataPtr) |
void | putScalarColumnCellsBase (const RefRows &rownrs, const ArrayBase &dataPtr) |
void | getArrayColumnBase (ArrayBase &data) |
void | putArrayColumnBase (const ArrayBase &data) |
void | getArrayColumnCellsBase (const RefRows &rownrs, ArrayBase &data) |
void | putArrayColumnCellsBase (const RefRows &rownrs, const ArrayBase &data) |
void | getSliceBase (rownr_t rownr, const Slicer &slicer, ArrayBase &data) |
void | putSliceBase (rownr_t rownr, const Slicer &slicer, const ArrayBase &data) |
void | getColumnSliceBase (const Slicer &slicer, ArrayBase &data) |
void | putColumnSliceBase (const Slicer &slicer, const ArrayBase &data) |
void | getColumnSliceCellsBase (const RefRows &rownrs, const Slicer &slicer, ArrayBase &data) |
void | putColumnSliceCellsBase (const RefRows &rownrs, const Slicer &slicer, const ArrayBase &data) |
Protected Attributes | |
ISMBase * | stmanPtr_p |
Pointer to the parent storage manager. More... | |
uInt | fixedLength_p |
Length of column cell value in storage format (0 = variable length). More... | |
uInt | colnr_p |
Column sequence number of this column. More... | |
IPosition | shape_p |
The shape of the column. More... | |
uInt | nrelem_p |
Number of elements in a value for this column. More... | |
uInt | nrcopy_p |
Number of values to be copied. More... | |
rownr_t | startRow_p |
Cache for interval for which last value read is valid. More... | |
rownr_t | endRow_p |
void * | lastValue_p |
rownr_t | lastRowPut_p |
The last row for which a value has been put. More... | |
uInt | typeSize_p |
The size of the data type in local format. More... | |
Conversion::ValueFunction * | writeFunc_p |
Pointer to a convert function for writing. More... | |
Conversion::ValueFunction * | readFunc_p |
Pointer to a convert function for reading. More... | |
ObjCompareFunc * | compareFunc_p |
Pointer to a compare function. More... | |
Private Member Functions | |
ISMColumn (const ISMColumn &) | |
Forbid copy constructor. More... | |
ISMColumn & | operator= (const ISMColumn &) |
Forbid assignment. More... | |
void | init () |
Initialize part of the object. More... | |
void | clear () |
Clear the object (used by destructor and init). More... | |
void | putFromRow (rownr_t rownr, const char *data, uInt lenData) |
Put the value in all buckets from the given row on. More... | |
void | putData (ISMBucket *bucket, rownr_t bucketStartRow, rownr_t bucketNrrow, rownr_t bucketRownr, const char *data, uInt lenData, Bool afterLastRow, Bool canSplit) |
Put a data value into the bucket. More... | |
void | replaceData (ISMBucket *bucket, rownr_t bucketStartRow, rownr_t bucketNrrow, rownr_t bucketRownr, uInt &offset, const char *data, uInt lenData, Bool canSplit=True) |
Replace a value at the given offset in the bucket. More... | |
Bool | addData (ISMBucket *bucket, rownr_t bucketStartRow, rownr_t bucketNrrow, rownr_t bucketRownr, uInt inx, const char *data, uInt lenData, Bool afterLastRow=False, Bool canSplit=True) |
Add a value at the given index in the bucket. More... | |
void | handleSplit (ISMBucket &bucket, const Block< Bool > &duplicated) |
Handle the duplicated values after a bucket split. More... | |
virtual Bool | compareValue (const void *val1, const void *val2) const |
Compare the values. More... | |
void | getScaCol (Vector< Bool > &) |
void | getScaCol (Vector< uChar > &) |
void | getScaCol (Vector< Short > &) |
void | getScaCol (Vector< uShort > &) |
void | getScaCol (Vector< Int > &) |
void | getScaCol (Vector< uInt > &) |
void | getScaCol (Vector< Int64 > &) |
void | getScaCol (Vector< float > &) |
void | getScaCol (Vector< double > &) |
void | getScaCol (Vector< Complex > &) |
void | getScaCol (Vector< DComplex > &) |
void | getScaCol (Vector< String > &) |
void | getScaColCells (const RefRows &, Vector< Bool > &) |
void | getScaColCells (const RefRows &, Vector< uChar > &) |
void | getScaColCells (const RefRows &, Vector< Short > &) |
void | getScaColCells (const RefRows &, Vector< uShort > &) |
void | getScaColCells (const RefRows &, Vector< Int > &) |
void | getScaColCells (const RefRows &, Vector< uInt > &) |
void | getScaColCells (const RefRows &, Vector< Int64 > &) |
void | getScaColCells (const RefRows &, Vector< float > &) |
void | getScaColCells (const RefRows &, Vector< double > &) |
void | getScaColCells (const RefRows &, Vector< Complex > &) |
void | getScaColCells (const RefRows &, Vector< DComplex > &) |
void | getScaColCells (const RefRows &, Vector< String > &) |
void | putScaCol (const Vector< Bool > &) |
void | putScaCol (const Vector< uChar > &) |
void | putScaCol (const Vector< Short > &) |
void | putScaCol (const Vector< uShort > &) |
void | putScaCol (const Vector< Int > &) |
void | putScaCol (const Vector< uInt > &) |
void | putScaCol (const Vector< Int64 > &) |
void | putScaCol (const Vector< float > &) |
void | putScaCol (const Vector< double > &) |
void | putScaCol (const Vector< Complex > &) |
void | putScaCol (const Vector< DComplex > &) |
void | putScaCol (const Vector< String > &) |
Static Private Member Functions | |
static size_t | fromString (void *out, const void *in, size_t n, Conversion::ValueFunction *writeLeng) |
Handle a String in copying to/from external format. More... | |
static size_t | toString (void *out, const void *in, size_t n, Conversion::ValueFunction *readLeng) |
static size_t | writeStringBE (void *out, const void *in, size_t n) |
static size_t | readStringBE (void *out, const void *in, size_t n) |
static size_t | writeStringLE (void *out, const void *in, size_t n) |
static size_t | readStringLE (void *out, const void *in, size_t n) |
A Column in the Incremental Storage Manager.
Internal
ISMColumn represents a Column in the Incremental Storage Manager.
ISMColumn handles the access to a column containing scalars or direct arrays of the various data types. It uses class ISMBucket to get and put the data into the correct bucket. When the value does not fit in the bucket, the bucket is split and the new bucket is added to the storage manager.
The object maintains a variable indicating the last row ever put. This is used to decide if a put of a value is valid until the end of the table or for that one row only. In this way it does not make any difference if rows are added before or after a value is put
A value put before or at the last row ever put will only affect that one row. The rows before and after it keep their original value. If needed that value is copied.
To optimize (especially sequential) access to the column, ISMColumn maintains the last value gotten and the rows for which it is valid. In this way a get does not need to access the data in the bucket.
ISMColumn use the static conversion functions in the Conversion framework to get/put the data in external format (be it canonical or local). Most data types are fixed length, but some are variable length (e.g. String). In external format variable length data is preceeded by its total length (which includes the length itself). This makes it possible to get the length of a data value without having to interpret it, which is easy when (re)moving a value. For this reason ISMColumn contains its own conversion functions for Strings.
ISMColumn also acts as the base class for more specialized ISM column classes (i.e. ISMIndColumn for indirect columns). In this way ISMBase can hold a block of ISMColumn*
for any column. Furthermore ISMColumn
contains the hooks to allow a derived class to use other ISMColumn functions (e.g. there are "action" functions for a derived class to react on the duplication or removal of a data value (e.g. due to a bucket split).
ISMColumn encapsulates all operations on an ISM Column.
Definition at line 115 of file ISMColumn.h.
Create a ISMColumn object with the given parent.
It initializes the various variables. It keeps the pointer to its parent (but does not own it).
casacore::ISMColumn::~ISMColumn | ( | ) |
|
private |
Forbid copy constructor.
|
private |
Add a value at the given index in the bucket.
If the bucket is too small, it will be split (if allowed).
Add (newNrrow-oldNrrow) rows to the column and initialize the new rows when needed.
Reimplemented in casacore::ISMIndColumn.
|
private |
Clear the object (used by destructor and init).
|
privatevirtual |
Compare the values.
Reimplemented in casacore::ISMIndColumn.
|
virtual |
Let the column object initialize itself for a newly created table.
This is meant for a derived class.
Reimplemented in casacore::ISMIndColumn.
Flush and optionally fsync the data.
This is meant for a derived class.
Reimplemented in casacore::ISMIndColumn.
|
staticprivate |
Handle a String in copying to/from external format.
Get an array value in the given row.
Reimplemented from casacore::DataManagerColumn.
Reimplemented in casacore::ISMIndColumn.
Get a scalar value in the given row.
Reimplemented from casacore::DataManagerColumn.
|
virtual |
Reimplemented from casacore::DataManagerColumn.
|
virtual |
Reimplemented from casacore::DataManagerColumn.
|
virtual |
Reimplemented from casacore::DataManagerColumn.
|
virtual |
Let the column object initialize itself for an existing table.
Reimplemented in casacore::ISMIndColumn.
|
inline |
Get the fixed length of the data value in a cell of this column (0 = variable length).
Definition at line 388 of file ISMColumn.h.
References fixedLength_p.
|
virtual |
Reimplemented from casacore::DataManagerColumn.
Reimplemented from casacore::DataManagerColumn.
Reimplemented from casacore::DataManagerColumn.
|
static |
|
static |
Get the function needed to read/write a uInt and rownr from/to external format.
This is used by other classes to read the length of a variable data value.
|
private |
|
private |
|
private |
|
private |
|
virtual |
Get the scalar values in some cells of the column.
The buffer pointed to by dataPtr has to have the correct length. (which is guaranteed by the ScalarColumn getColumnCells function).
Reimplemented from casacore::DataManagerColumn.
|
virtual |
Get the scalar values in the entire column.
The buffer pointed to by dataPtr has to have the correct length. (which is guaranteed by the ScalarColumn getColumn function).
Reimplemented from casacore::DataManagerColumn.
Reimplemented from casacore::DataManagerColumn.
Reimplemented from casacore::DataManagerColumn.
Reimplemented from casacore::DataManagerColumn.
Reimplemented from casacore::DataManagerColumn.
Reimplemented from casacore::DataManagerColumn.
Get the value for this row.
Set the cache if the flag is set.
|
static |
|
static |
|
virtual |
Give a derived class the opportunity to react on the duplication of a value.
It is used by ISMIndColumn.
Reimplemented in casacore::ISMIndColumn.
|
virtual |
Give a derived class the opportunity to react on the removal of a value.
It is used by ISMIndColumn.
Reimplemented in casacore::ISMIndColumn.
|
private |
Handle the duplicated values after a bucket split.
|
private |
Initialize part of the object.
It is used by doCreate and getFile.
Test if the last value is invalid for this row.
Definition at line 383 of file ISMColumn.h.
References endRow_p.
Get the dimensionality of the item in the given row.
This is the same for all rows.
Reimplemented from casacore::DataManagerColumn.
Reimplemented in casacore::ISMIndColumn.
|
inline |
Get the nr of elements in this data value.
Definition at line 393 of file ISMColumn.h.
References nrelem_p.
Put an array value in the given row.
Reimplemented from casacore::DataManagerColumn.
Reimplemented in casacore::ISMIndColumn.
Put a scalar value in the given row.
Reimplemented from casacore::DataManagerColumn.
|
virtual |
Reimplemented from casacore::DataManagerColumn.
|
private |
Put a data value into the bucket.
When it is at the first row of the bucket, it replaces the value. Otherwise it is added.
|
virtual |
Reimplemented from casacore::DataManagerColumn.
|
virtual |
Reimplemented from casacore::DataManagerColumn.
|
virtual |
Reimplemented from casacore::DataManagerColumn.
Put the value in all buckets from the given row on.
Reimplemented from casacore::DataManagerColumn.
Reimplemented from casacore::DataManagerColumn.
|
private |
|
private |
|
private |
|
private |
|
virtual |
Put the scalar values into the entire column.
The buffer pointed to by dataPtr has to have the correct length. (which is guaranteed by the ScalarColumn putColumn function).
Reimplemented from casacore::DataManagerColumn.
Reimplemented from casacore::DataManagerColumn.
Reimplemented from casacore::DataManagerColumn.
Reimplemented from casacore::DataManagerColumn.
Reimplemented from casacore::DataManagerColumn.
Reimplemented from casacore::DataManagerColumn.
|
protected |
Put the value for this row.
|
staticprivate |
|
staticprivate |
void casacore::ISMColumn::remove | ( | rownr_t | bucketRownr, |
ISMBucket * | bucket, | ||
rownr_t | bucketNrrow, | ||
rownr_t | newNrrow | ||
) |
Remove the given row in the bucket from the column.
|
virtual |
Let the column reopen its data files for read/write access.
Reimplemented in casacore::ISMIndColumn.
|
private |
Replace a value at the given offset in the bucket.
If the bucket is too small, it will be split (if allowed).
void casacore::ISMColumn::resync | ( | rownr_t | nrrow | ) |
Resync the storage manager with the new file contents.
It resets the last rownr put.
|
virtual |
Set the shape of an array in the column.
Reimplemented from casacore::DataManagerColumn.
Reimplemented in casacore::ISMIndColumn.
Get the shape of the array in the given row.
This is the same for all rows.
Reimplemented from casacore::DataManagerColumn.
Reimplemented in casacore::ISMIndColumn.
|
staticprivate |
|
staticprivate |
|
staticprivate |
|
protected |
Column sequence number of this column.
Definition at line 260 of file ISMColumn.h.
|
protected |
Pointer to a compare function.
Definition at line 283 of file ISMColumn.h.
|
protected |
Definition at line 272 of file ISMColumn.h.
Referenced by isLastValueInvalid().
|
protected |
Length of column cell value in storage format (0 = variable length).
If 0, the value is always preceeded by a uInt giving the length.
Definition at line 258 of file ISMColumn.h.
Referenced by getFixedLength().
|
protected |
The last row for which a value has been put.
Definition at line 275 of file ISMColumn.h.
|
protected |
Definition at line 273 of file ISMColumn.h.
|
protected |
Number of values to be copied.
Normally this is nrelem_p, but for complex types it is 2*nrelem_p. When local format is used, it is the number of bytes.
Definition at line 268 of file ISMColumn.h.
|
protected |
Number of elements in a value for this column.
Definition at line 264 of file ISMColumn.h.
Referenced by nelements().
|
protected |
Pointer to a convert function for reading.
Definition at line 281 of file ISMColumn.h.
|
protected |
The shape of the column.
Definition at line 262 of file ISMColumn.h.
|
protected |
Cache for interval for which last value read is valid.
The last value is valid for startRow_p till endRow_p (inclusive).
Definition at line 271 of file ISMColumn.h.
|
protected |
Pointer to the parent storage manager.
Definition at line 255 of file ISMColumn.h.
|
protected |
The size of the data type in local format.
Definition at line 277 of file ISMColumn.h.
|
protected |
Pointer to a convert function for writing.
Definition at line 279 of file ISMColumn.h.