File exchange_manager_producer.hpp¶
Interprocess exchange of serialized items.
- License:
License BSD-3-Clause
- Author
Vincent Berenz (vberenz@tuebingen.mpg.de)
- Copyright
Copyright (c) 2019, New York University and Max Planck Gesellschaft.
- Date
2019-06-07
All templated types in this namespaces are elementary types: int, double, float, char*, …
- #include <exchange_manager_producer.hpp>
Public Functions
An exchange_manager_producer writes in the shared memory serialized items expected to be consumed by an instance of exchange_manager_consumer (which should use the same segment_id and object_id), possibly running in a separate process.
- Parameters:
segment_id – id of the shared memory segment
object_id – id of the shared memory object prefix
autolock – mutex locking mechanism internally managed by the producer. If false, lock has to be “manually” called. This allows for example to set several items in one shot
clean_memory_on_exit. – If true, the destructor will clean the underlined shared memory items.
returns true if a consumer is also running.
‘set’ should be called only if ready_to_produce returns true.
lock the mutex required for writting in the shared memory without any collision with any consumer.
Should be called before calls to “set”. Not required if the constructor was called with autolock set to true
unlock the mutex for writting in the shared memory without any collision with any consumer.
Not required if the constructor was called with autolock set to true
Set this serializable to be consumed.
Throws shared_memory::Memory_overflow_exception if the shared memory is full. Some of the shared memory should get free once items have been consumed by a consumer. This method should be called only if ‘ready_to_produce’ returns true; Returns true if all data could be written in the shared memory, false if some data required to be buffered (any following call to set, if any, will perform a new attempt to write remaining buffer to the shared memory)
removed all elements from the shared queue
write into get_consumed_ids the ids of serialized items that have been successfully consumed by a consumer
returns the number of characters that have been serialized and written to the exchange queue.
For debug purposes.
reset the count of characters written to the exchange queue to zero
Public Static Functions
(unlock) and erase the mutex from the shared memory.
To be used if some executable using the exchange manager crashed without calls to destructors.
wipe out the corresponding shared memory.
To be used if some executable using the exchange manager crashed without calls to destructors.
Private Types
Private Functions
Private Members