DUECA/DUSIME
|
A Snapshot object can be used to send the data from a state snapshot, i.e. More...
#include <Snapshot.hxx>
Public Types | |
enum | SnapCoding { UnSpecified , Base64 , JSON , XML , Floats , Doubles , BinaryFile , FloatFile , DoubleFile , JSONFile , XMLFile , Base64File } |
Enumerated type for an automatically generated object class. More... | |
typedef Snapshot | __ThisDCOType__ |
typedef for internal reference | |
Public Member Functions | |
Snapshot () | |
default constructor. | |
Snapshot (const dueca::smartstring &data, const NameSet &originator, const SnapCoding &coding) | |
Constructor with arguments. | |
Snapshot (const Snapshot &o) | |
copy constructor. | |
Snapshot (::dueca::AmorphReStore &r) | |
constructor to restore an Snapshot from amorphous storage. | |
~Snapshot () | |
destructor. | |
void | packData (::dueca::AmorphStore &s) const |
packs the Snapshot into amorphous storage. | |
void | packDataDiff (::dueca::AmorphStore &s, const Snapshot &ref) const |
packs the Snapshot into amorphous storage. | |
void | unPackData (::dueca::AmorphReStore &s) |
unpacks the Snapshot from an amorphous storage. | |
void | unPackDataDiff (::dueca::AmorphReStore &s) |
unpacks the differences for Snapshot from an amorphous storage. | |
bool | operator== (const Snapshot &o) const |
Test for equality. | |
bool | operator!= (const Snapshot &o) const |
Test for inequality. | |
Snapshot & | operator= (const Snapshot &o) |
Assignment operator. | |
std::ostream & | print (std::ostream &s) const |
prints the Snapshot to a stream. | |
Snapshot (size_t data_size, SnapCoding coding=UnSpecified) | |
Constructor. | |
Snapshot (dueca::DataWriterArraySize data_size, SnapCoding coding=UnSpecified) | |
Constructor. | |
Snapshot (size_t data_size, const NameSet &originator, SnapCoding coding=UnSpecified) | |
Constructor. | |
Snapshot (const toml::value &coded) | |
Constructor from a toml-parsed object. | |
toml::value | tomlCode (const std::string &fname=std::string()) const |
Create a toml object. | |
bool | saveExternal () const |
return true if the snapshot is to be saved in an external file | |
const char * | fileExtension () const |
Return an appropriate extension for an external file. | |
const char * | accessData () const |
This directly accesses the data area of the snapshot. | |
char * | accessData () |
This directly accesses the data area of the snapshot. | |
char * | AllocAndAccessData (uint32_t dsize) |
This initializes, and subsequently accesses the data area of the snapshot. | |
uint32_t | getDataSize () const |
Read back the maximum size of the data. | |
std::string | getSample (unsigned size=20) const |
Return the complete snapshot, or a sample. | |
Static Public Member Functions | |
static void * | operator new (size_t size) |
new operator "new", which places objects not on a heap, but in one of the memory arenas. | |
static void * | operator new (size_t size, void *mem) |
accompanying placement operator "new" | |
static void | operator delete (void *p) |
new operator "delete", to go with the new version of operator new. | |
static void * | operator new (size_t size, Snapshot *&o) |
placement "new", needed for stl. | |
Public Attributes | |
dueca::smartstring | data |
A place for the data, variable size. | |
NameSet | originator |
Identifies the object that sent the snapshot. | |
SnapCoding | coding |
Snapshot encoding, if specified. | |
size_t | data_size |
For convenience, additional data_size member. | |
A Snapshot object can be used to send the data from a state snapshot, i.e.
the data describing a (piece of) your model state in time, to a repository for snapshot, and conversely, for sending this data back to a SimulationModule, for restoration of an old state.
The Snapshot object allocates a data buffer for you. It is possible to use an AmorphStore object to pack the data in this buffer, like:
Alternatively, the snapshot can be packed with JSON or XML data. The "data" member in the snapshot is a smart string that can be easily fed with data, first a JSON example, using rapidjson:
The same can be done with XML, using pugixml. Of course, you might encounter code with the "old" XMLSnapshot approach, that produces equally valid XML
Enumerated type for an automatically generated object class.
Enumerator | |
---|---|
UnSpecified | old-style, no indication about coding. Treated as Base64 |
Base64 | probably AmorphStore coded binary, stored in Base64 in toml |
JSON | data directly encoded and stored as JSON string in inco toml |
XML | data directly encoded and stored as XML string in inco toml |
Floats | data encoded in AmorphStore, all floats, stored in toml |
Doubles | data encoded in AmorphStore, all doubles, stored in toml |
BinaryFile | External binary file, binary storage, no information on format. |
FloatFile | External ASCII formatted file, data AmorphStore packed as floats. |
DoubleFile | External ASCII formatted file, data AmorphStore packed as double. |
JSONFile | data directly encoded and stored as JSON string in external file |
XMLFile | data directly encoded and stored as XML string in external file |
Base64File | data stored in Base64 in external file |
dueca::Snapshot::Snapshot | ( | size_t | data_size, |
SnapCoding | coding = UnSpecified ) |
Constructor.
The Snapshot constructor at this point allocates room for the data you want to send. Use the accessData() method to access this room. Careful! There is no protection here, please don't mis-use or your application might fail.
dueca::Snapshot::Snapshot | ( | dueca::DataWriterArraySize | data_size, |
SnapCoding | coding = UnSpecified ) |
Constructor.
The Snapshot constructor at this point allocates room for the data you want to send. Use the accessData() method to access this room. Careful! There is no protection here, please don't mis-use or your application might fail.
dueca::Snapshot::Snapshot | ( | size_t | data_size, |
const NameSet & | originator, | ||
SnapCoding | coding = UnSpecified ) |
Constructor.
The Snapshot constructor at this point allocates room for the data you want to send. Use the accessData() method to access this room. Careful! There is no protection here, please don't mis-use or your application might fail.
|
static |
new operator "new", which places objects not on a heap, but in one of the memory arenas.
This to speed up memory management.
void dueca::Snapshot::packDataDiff | ( | ::dueca::AmorphStore & | s, |
const Snapshot & | ref ) const |
packs the Snapshot into amorphous storage.
only differences with a previous object are packed.
|
inline |
This directly accesses the data area of the snapshot.
Please be careful, there is no protection here.
|
inline |
This directly accesses the data area of the snapshot.
Please be careful, there is no protection here.
|
inline |
This initializes, and subsequently accesses the data area of the snapshot.
Please be careful, there is no protection here.
dueca::smartstring dueca::Snapshot::data |
A place for the data, variable size.
Use this with ASCII converted data (XML, JSON), or use an AmorphStore to pack as binary data.