PSCF v1.2
|
Archive to computed packed size of a sequence of objects, in bytes. More...
#include <MemoryCounter.h>
Public Member Functions | |
MemoryCounter () | |
Constructor. | |
~MemoryCounter () | |
Destructor. | |
void | clear () |
Resets the size counter to zero. | |
template<typename T > | |
MemoryCounter & | operator<< (T &data) |
Add packed size of one object via operator <<. | |
template<typename T > | |
MemoryCounter & | operator& (T &data) |
Add packed size of one object via operator &. | |
template<typename T , size_t N> | |
MemoryCounter & | operator<< (T(&data)[N]) |
Add packed size of a fixed size array via operator <<. | |
template<typename T , size_t N> | |
MemoryCounter & | operator& (T(&data)[N]) |
Add packed size of a fixed size array via operator &. | |
template<typename T > | |
void | count (const T &data) |
Add size of one object in memory. | |
template<typename T > | |
void | count (T *array, int n) |
Compute the size in memory of a C array. | |
size_t | size () const |
Return size required for archive, in Bytes. | |
Static Public Member Functions | |
static bool | is_saving () |
Returns true. | |
static bool | is_loading () |
Returns false. | |
Archive to computed packed size of a sequence of objects, in bytes.
This class computes the number of bytes required to pack a sequence of objects within a MemoryOArchive. The interface is that of a loading Archive, but the << and & operators are overloaded to compute the size required for an object and to increment a size counter, rather than to actually save data.
The size() method returns the number of bytes required to pack all of the objects serialized thus far. The size counter is set to zero upon construction. The clear() method resets the size counter to zero.
Definition at line 35 of file MemoryCounter.h.
Util::MemoryCounter::MemoryCounter | ( | ) |
Constructor.
Definition at line 16 of file MemoryCounter.cpp.
Util::MemoryCounter::~MemoryCounter | ( | ) |
Destructor.
Definition at line 24 of file MemoryCounter.cpp.
|
inlinestatic |
Returns true.
Definition at line 159 of file MemoryCounter.h.
|
inlinestatic |
Returns false.
Definition at line 162 of file MemoryCounter.h.
void Util::MemoryCounter::clear | ( | ) |
Resets the size counter to zero.
Definition at line 30 of file MemoryCounter.cpp.
|
inline |
Add packed size of one object via operator <<.
data | object to be analyzed |
Definition at line 175 of file MemoryCounter.h.
|
inline |
Add packed size of one object via operator &.
data | object to be analyzed |
Definition at line 185 of file MemoryCounter.h.
|
inline |
Add packed size of a fixed size array via operator <<.
data | fixed size array to be analyzed |
Definition at line 195 of file MemoryCounter.h.
|
inline |
Add packed size of a fixed size array via operator &.
data | fixed size array to be analyzed |
Definition at line 207 of file MemoryCounter.h.
|
inline |
Add size of one object in memory.
This method just increments the size by sizeof(T). It is appropriate only for primitive C++ variables and POD types for which a bitwise copy is appropriate.
Definition at line 221 of file MemoryCounter.h.
|
inline |
Compute the size in memory of a C array.
This method increments the size by n*sizeof(T). It is appropriate for C arrays of primitive variables and of POD types for which a bitwise copy is appropriate.
Definition at line 228 of file MemoryCounter.h.
|
inline |
Return size required for archive, in Bytes.
Definition at line 168 of file MemoryCounter.h.
Referenced by pscfpp.file.File::__eq__(), pscfpp.file.File::__init__(), pscfpp.text.Record::__init__(), pscfpp.file.File::__repr__(), pscfpp.text.Record::__str__(), and Util::memorySize().