File array.hpp¶
All templated types in this namespaces are elementary types: int, double, float, char*, …
Functions
wipe the shared memory segment created by an instance of shared_memory::array, including mutexes, if any.
If there are no memory segment of this id, there will be no effect. If shared_memory::array instances are pointing to the wiped out segment, their get and set functions may hang indefinitely.
- #include <array.hpp>
Implement a shared array stored on a shared memory segment.
Items hosted by the array may be of (1) fundamental type (e.g. int, double, char), (2) array of fundamental type (e.g. int[10]); or (3) instances of a class implementing a serializable function (see shared_memory::serializer).
Public Functions
- Parameters:
segment_id – should be the same for all array pointing to the same shared memory segment
size – : number of elements to be stored by the array
clear_on_destruction – if true, the shared memory segment will be wiped on destruction of the array. Note that any other array pointing to this segment may hang indefinitely as a result. If no arrays pointing to the shared memory segment delete the segment, then users are expected to call shared_memory::clear_array. Failing to do so may result in new array pointing to a new memory segment of the same id to hang indefinitely at construction.
multiprocess_safe – if false, it is strongly adviced to protect accesses via a shared_memory::Mutex
wipe the related shared memory segment if clear_on_destruction is true (true by default)
this array and other array will point to the same memory segment, and will have same values for clear_on_destruction and multiprocess_safe
This array will point to the share memory segment pointed at by other; and will have same value for multprocess_safe and clear_on_destruction.
Warning: even if other.clear_on_destruction is true, the segment memory will not be wiped on the destruction of other. The duty of deleting the shared memory is passed to the new instance, so to speak
This array will point to the share memory segment pointed at by other; and will have same value for multprocess_safe and clear_on_destruction.
Warning: even if other.clear_on_destruction is true, the segment memory will not be wiped on the destruction of other. The duty of deleting the shared memory is passed to the new instance, so to speak
set element t at index
set element t at index
read element at index into t
read element at index into t
max number of elements in the array
return the serialized string representation of the element if T is a serializable class.
Throws a logic error otherwise.
print in terminal info about array’s memory usage
Private Functions
Private Members