casa
5.7.0-16
|
The ScaleTable class is an Alma table. More...
#include <ScaleTable.h>
Public Member Functions | |
virtual | ~ScaleTable () |
ASDM & | getContainer () const |
Return the container to which this table belongs. More... | |
unsigned int | size () const |
Return the number of rows in the table. More... | |
std::string | getName () const |
Return the name of this table. More... | |
std::string | getVersion () const |
Return the version information about this table. More... | |
Entity | getEntity () const |
Return this table's Entity. More... | |
void | setEntity (Entity e) |
Set this table's Entity. More... | |
std::string | toXML () |
Produces an XML representation conform to the schema defined for Scale (ScaleTable.xsd). More... | |
asdmIDL::ScaleTableIDL * | toIDL () |
Conversion Methods. More... | |
void | toIDL (asdmIDL::ScaleTableIDL &x) const |
Fills the CORBA data structure passed in parameter with the content of this table. More... | |
void | fromIDL (asdmIDL::ScaleTableIDL x) |
Populate this table from the content of a ScaleTableIDL Corba structure. More... | |
ScaleRow * | newRow () |
====> Row creation. More... | |
ScaleRow * | newRow (TimeScaleMod::TimeScale timeScale, DataScaleMod::DataScale crossDataScale, DataScaleMod::DataScale autoDataScale, WeightTypeMod::WeightType weightType) |
Create a new row initialized to the specified values. More... | |
ScaleRow * | newRow (ScaleRow *row) |
Create a new row using a copy constructor mechanism. More... | |
ScaleRow * | add (ScaleRow *x) |
====> Append a row to its table. More... | |
std::vector< ScaleRow * > | get () |
====> Methods returning rows. More... | |
const std::vector< ScaleRow * > & | get () const |
Get a const reference on the collection of rows pointers internally hold by the table. More... | |
ScaleRow * | getRowByKey (Tag scaleId) |
Returns a ScaleRow* given a key. More... | |
ScaleRow * | lookup (TimeScaleMod::TimeScale timeScale, DataScaleMod::DataScale crossDataScale, DataScaleMod::DataScale autoDataScale, WeightTypeMod::WeightType weightType) |
Look up the table for a row whose all attributes except the autoincrementable one are equal to the corresponding parameters of the method. More... | |
void | setUnknownAttributeBinaryReader (const std::string &attributeName, BinaryAttributeReaderFunctor *barFctr) |
BinaryAttributeReaderFunctor * | getUnknownAttributeBinaryReader (const std::string &attributeName) const |
Public Member Functions inherited from asdm::Representable | |
virtual | ~Representable () |
Static Public Member Functions | |
static const std::vector < std::string > & | getKeyName () |
Return the list of field names that make up key key as an array of strings. More... | |
static std::string | name () |
Return the name of this table. More... | |
static const std::vector < std::string > & | getAttributesNames () |
Return the names of the attributes of this table. More... | |
static const std::vector < std::string > & | defaultAttributesNamesInBin () |
Return the default sorted list of attributes names in the binary representation of the table. More... | |
Private Member Functions | |
ScaleTable (ASDM &container) | |
Create a ScaleTable. More... | |
void | autoIncrement (std::string key, ScaleRow *x) |
ScaleRow * | checkAndAdd (ScaleRow *x, bool skipCheckUniqueness=false) |
If this table has an autoincrementable attribute then check if *x verifies the rule of uniqueness and throw exception if not. More... | |
void | append (ScaleRow *x) |
Brutally append an ScaleRow x to the collection of rows already stored in this table. More... | |
void | addWithoutCheckingUnique (ScaleRow *x) |
Brutally append an ScaleRow x to the collection of rows already stored in this table. More... | |
void | error () |
void | fromXML (std::string &xmlDoc) |
Populate this table from the content of a XML document that is required to be conform to the XML schema defined for a Scale (ScaleTable.xsd). More... | |
void | setFromMIMEFile (const std::string &directory) |
Private methods involved during the build of this table out of the content of file(s) containing an external representation of a Scale table. More... | |
void | setFromXMLFile (const std::string &directory) |
std::string | toMIME (const asdm::ByteOrder *byteOrder=asdm::ByteOrder::Machine_Endianity) |
Serialize this into a stream of bytes and encapsulates that stream into a MIME message. More... | |
void | setFromMIME (const std::string &mimeMsg) |
Extracts the binary part of a MIME message and deserialize its content to fill this with the result of the deserialization. More... | |
std::string | MIMEXMLPart (const asdm::ByteOrder *byteOrder=asdm::ByteOrder::Machine_Endianity) |
Private methods involved during the export of this table into disk file(s). More... | |
void | toFile (std::string directory) |
Stores a representation (binary or XML) of this table into a file. More... | |
void | checkPresenceInMemory () |
void | setFromFile (const std::string &directory) |
Reads and parses a file containing a representation of a ScaleTable as those produced by the toFile method. More... | |
Private Attributes | |
ASDM & | container |
bool | archiveAsBin |
bool | fileAsBin |
std::string | version |
Entity | entity |
std::map< std::string, int > | noAutoIncIds |
A map for the autoincrementation algorithm. More... | |
std::vector< ScaleRow * > | privateRows |
A data structure to store the pointers on the table's rows. More... | |
std::vector< ScaleRow * > | row |
std::map< std::string, BinaryAttributeReaderFunctor * > | unknownAttributes2Functors |
bool | loadInProgress |
Load the table in memory if necessary. More... | |
Friends | |
class | ASDM |
Additional Inherited Members | |
Protected Attributes inherited from asdm::Representable | |
bool | presentInMemory |
bool | loadInProgress |
uint32_t | declaredSize |
The ScaleTable class is an Alma table.
Generated from model's revision "-1", branch ""
Name | Type | Expected shape | Comment |
---|---|---|---|
Key | |||
scaleId | Tag | identifies a unique row in the table Scale. | |
Value | |||
timeScale | TimeScaleMod::TimeScale | a TimeScale value. | |
crossDataScale | DataScaleMod::DataScale | the unit of the cross data in the BDF. | |
autoDataScale | DataScaleMod::DataScale | the unit of the auto data in the BDF. | |
weightType | WeightTypeMod::WeightType | a type of weighting. |
Definition at line 153 of file ScaleTable.h.
|
virtual |
|
private |
Create a ScaleTable.
This constructor is private because only the container can create tables. All tables must know the container to which they belong.
container | The container to which this table belongs. |
====> Append a row to its table.
Add a row. If there table contains a row whose key's fields are equal to x's ones then return a pointer on this row (i.e. no actual insertion is performed) otherwise add x to the table and return x.
x | . A pointer on the row to be added. |
|
private |
|
private |
|
private |
If this table has an autoincrementable attribute then check if *x verifies the rule of uniqueness and throw exception if not.
Check if *x verifies the key uniqueness rule and throw an exception if not. Append x to its table.
DuplicateKey | |
UniquenessViolationException |
|
inlineprivate |
Definition at line 522 of file ScaleTable.h.
References getContainer(), loadInProgress, asdm::Representable::presentInMemory, and setFromFile().
|
static |
Return the default sorted list of attributes names in the binary representation of the table.
|
private |
void asdm::ScaleTable::fromIDL | ( | asdmIDL::ScaleTableIDL | x | ) |
Populate this table from the content of a ScaleTableIDL Corba structure.
DuplicateKey | Thrown if the method tries to add a row having a key that is already in the table. |
ConversionException |
|
privatevirtual |
Populate this table from the content of a XML document that is required to be conform to the XML schema defined for a Scale (ScaleTable.xsd).
ConversionException |
Implements asdm::Representable.
std::vector<ScaleRow *> asdm::ScaleTable::get | ( | ) |
====> Methods returning rows.
Get a collection of pointers on the rows of the table.
const std::vector<ScaleRow *>& asdm::ScaleTable::get | ( | ) | const |
Get a const reference on the collection of rows pointers internally hold by the table.
|
static |
Return the names of the attributes of this table.
ASDM& asdm::ScaleTable::getContainer | ( | ) | const |
Return the container to which this table belongs.
Referenced by checkPresenceInMemory().
|
virtual |
Return this table's Entity.
Implements asdm::Representable.
|
static |
Return the list of field names that make up key key as an array of strings.
|
virtual |
Return the name of this table.
This is a instance method of the class.
Implements asdm::Representable.
Returns a ScaleRow* given a key.
scaleId |
BinaryAttributeReaderFunctor* asdm::ScaleTable::getUnknownAttributeBinaryReader | ( | const std::string & | attributeName | ) | const |
std::string asdm::ScaleTable::getVersion | ( | ) | const |
Return the version information about this table.
ScaleRow* asdm::ScaleTable::lookup | ( | TimeScaleMod::TimeScale | timeScale, |
DataScaleMod::DataScale | crossDataScale, | ||
DataScaleMod::DataScale | autoDataScale, | ||
WeightTypeMod::WeightType | weightType | ||
) |
Look up the table for a row whose all attributes except the autoincrementable one are equal to the corresponding parameters of the method.
timeScale | |
crossDataScale | |
autoDataScale | |
weightType |
|
private |
Private methods involved during the export of this table into disk file(s).
|
static |
Return the name of this table.
This is a static method of the class.
ScaleRow* asdm::ScaleTable::newRow | ( | ) |
ScaleRow* asdm::ScaleTable::newRow | ( | TimeScaleMod::TimeScale | timeScale, |
DataScaleMod::DataScale | crossDataScale, | ||
DataScaleMod::DataScale | autoDataScale, | ||
WeightTypeMod::WeightType | weightType | ||
) |
Create a new row initialized to the specified values.
timeScale | |
crossDataScale | |
autoDataScale | |
weightType |
Create a new row using a copy constructor mechanism.
The method creates a new ScaleRow owned by this. Each attribute of the created row is a (deep) copy of the corresponding attribute of row. The method does not add the created row to this, its simply parents it to this, a call to the add method has to be done in order to get the row added (very likely after having modified some of its attributes). If row is null then the method returns a new ScaleRow with default values for its attributes.
row | the row which is to be copied. |
|
virtual |
|
private |
Reads and parses a file containing a representation of a ScaleTable as those produced by the toFile method.
This table is populated with the result of the parsing.
directory | The name of the directory containing the file te be read and parsed. |
ConversionException | If any error occurs while reading the files in the directory or parsing them. |
Referenced by checkPresenceInMemory().
|
private |
Extracts the binary part of a MIME message and deserialize its content to fill this with the result of the deserialization.
mimeMsg | the string containing the MIME message. |
ConversionException |
|
private |
Private methods involved during the build of this table out of the content of file(s) containing an external representation of a Scale table.
|
private |
void asdm::ScaleTable::setUnknownAttributeBinaryReader | ( | const std::string & | attributeName, |
BinaryAttributeReaderFunctor * | barFctr | ||
) |
|
virtual |
Return the number of rows in the table.
Implements asdm::Representable.
|
private |
Stores a representation (binary or XML) of this table into a file.
Depending on the boolean value of its private field fileAsBin a binary serialization of this (fileAsBin==true) will be saved in a file "Scale.bin" or an XML representation (fileAsBin==false) will be saved in a file "Scale.xml". The file is always written in a directory whose name is passed as a parameter.
directory | The name of directory where the file containing the table's representation will be saved. |
asdmIDL::ScaleTableIDL* asdm::ScaleTable::toIDL | ( | ) |
Conversion Methods.
Convert this table into a ScaleTableIDL CORBA structure.
void asdm::ScaleTable::toIDL | ( | asdmIDL::ScaleTableIDL & | x | ) | const |
Fills the CORBA data structure passed in parameter with the content of this table.
x | a reference to the asdmIDL::ScaleTableIDL to be populated with the content of this. |
|
private |
Serialize this into a stream of bytes and encapsulates that stream into a MIME message.
byteOrder | a const pointer to a static instance of the class ByteOrder. |
|
virtual |
Produces an XML representation conform to the schema defined for Scale (ScaleTable.xsd).
ConversionException |
Implements asdm::Representable.
|
friend |
Definition at line 154 of file ScaleTable.h.
|
private |
Definition at line 406 of file ScaleTable.h.
|
private |
Definition at line 404 of file ScaleTable.h.
|
private |
Definition at line 411 of file ScaleTable.h.
|
private |
Definition at line 407 of file ScaleTable.h.
|
private |
Load the table in memory if necessary.
Definition at line 521 of file ScaleTable.h.
Referenced by checkPresenceInMemory().
|
private |
A map for the autoincrementation algorithm.
Definition at line 418 of file ScaleTable.h.
|
private |
A data structure to store the pointers on the table's rows.
In all cases we maintain a private vector of ScaleRow s.
Definition at line 454 of file ScaleTable.h.
|
private |
Definition at line 458 of file ScaleTable.h.
|
private |
Definition at line 472 of file ScaleTable.h.
|
private |
Definition at line 409 of file ScaleTable.h.