File exchange_manager_consumer.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_consumer.hpp>
Public Functions
An exchange_manager_consumer reads from the shared memory serialized items produced by an instance of exchange_manager_producer (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
the – consumer is to be “permanent”, while different producers may provide data. Implies the deletion of the underlying share memory upon destruction.
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
lock the mutex required for writting in the shared memory without any collision with any producer.
Should be called before calls to “consume”. 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 producer.
Not required if the constructor was called with autolock set to true
read from the underlying shared memory a serialized object (set by a producer).
Should be called only if ready_to_consume returns true.
- Returns:
true if an item has been read
returns true if a producer is also running.
‘consume’ should be called only if ready_to_consume returns true.
When this instance consumes an item, the item id is written in a shared queue for the producer to read (and acquire the feedback the item has been consumed).
This shared queue may get full (e.g the producer does not read it fast enough), in which case the item id is buffered in this instance. If this instance stops to consume, the buffered item ids will never be written in the shared queue, and the producer will not receive the corresponding feedback. This attempts to write the buffered ids into the queue, and returns true if the buffer is not empty after the call (i.e. some feedbacks have not been sent yet), false otherwise. Usage: to call before exit until true is returned
returns the number of char that have been read from the exchange queue.
For debugging purposes
Public Static Functions
Private Types
Private Functions
Private Members