C++ API and example¶
1. Introduction¶
This page exist in order to extract the examples from the Doxygen documentation, Please have look at the end of this page there are all the examples.
2. C++ API and example¶
- #include <exceptions.hpp>
Public Functions
Private Members
- #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
- #include <condition_variable.hpp>
Public Functions
A condition variable shared over the memory The condition variable is cleaned from the memory on destruction if clean_memory_on_destruction is set to true.
notify_all is notifying all condition variables with the same mutex
notify_one notifies one condition variable with the same mutex
timed_wait wait a notify during a certain certain time and then wake up
- Parameters:
wait_duration – in microsecond
- Returns:
true: the condition variable has been notified, false otherwize
wait waits until another thread notifies this object
Public Static Functions
Private Members
condition_id_ is the condition variable name in the shared memory
if true (the default), clean the shared memory of the hosted mutex and condition.
condition_variable_ is the boost condition variable that is used
mutex_id_ is the mutex name in the shared memory
-
class
Config
Public Members
-
std::vector<int> *
vector
-
std::atomic<bool> *
running
-
int
value
-
std::string
message
-
std::condition_variable *
condition
-
std::mutex *
mutex
-
std::vector<int> *
- #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
- #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
- #include <four_int_values.hpp>
Example of an instance that can be serialized.
Notice: There is a default constructor There is a serialize function It is friend to private_serialization
Public Functions
Private Members
-
friend private_serialization
Private Static Functions
-
- #include <item.hpp>
Public Functions
Public Members
- #include <lock.hpp>
A scope lock object for locking a shared memory mutex, to use for example with a shared memory condition variable.
The scope is unlocked on destruction.
Public Functions
lock the mutex
Private Members
-
friend ConditionVariable
- #include <locked_condition_variable.hpp>
The LockedConditionVariable class is here as a anonymous layer on top of the boost intersprocess condition variable labrary.
It creates a condition variable in a shared memory automatically.
Public Functions
A condition variable shared over the memory The condition variable is cleaned from the memory on destruction if clean_memory_on_destruction is set to true.
Contrary to shared_memory::ConditionVariable, instances of this class manages their mutex and lock internally, with the consequence the mutex can be locked and unlocked exclusively through other instances of LockedConditionVariable.
notify_all is notifying all condition variables with the same mutex
notify_one notifies one condition variable with the same mutex
wait waits until another thread notifies this object
timed_wait wait a notify during a certain certain time and then wake up
- Parameters:
wait_duration – in microsecond
- Returns:
true: the condition variable has been notified, false otherwize
try_lock Tries to acquire the lock without waiting.
- Throws :
- Returns:
true if manages to acquire the lock, false otherwise.
unlock Unlocks the lock.
- Throws :
lock_scope this function is used to lock the part of the code that needs protection.
It locks the mutex until unlock_scope is used
unlock_scope this function unlock the mutex so remove the protection of the code
Public Members
mutex_ is the mutex associated to the condition variable
condition_variable_ is the boost condition variable that is used
lock_ is a object that protects the codes with a mutex, see the boost documentation about “boost::interprocess::scoped_lock”
if true (the default), clean the shared memory of the hosted mutex and condition.
Public Static Functions
LockedConditionVariable clean their shared memory on destruction.
But the destructor may have failed to be called if for some reason the program crashed.
Private Members
mutex_id_ is the mutex name in the shared memory
condition_id_ is the condition variable name in the shared memory
shm_segment is the boost object that manages the shared memory segment
-
struct
MeasureTime
- #include <benchmark_common.hh>
Public Functions
-
inline
MeasureTime
()
-
inline void
start
()
-
inline void
update
()
Friends
-
friend std::ostream &
operator<<
(std::ostream &os, const MeasureTime &dt)
-
inline
- #include <exceptions.hpp>
Public Functions
Private Members
- #include <mutex.hpp>
Public Functions
A Mutex accessible to several processes via the shared memory The mutex is cleaned from the shared memory on destruction if clean_memory_on_destruction is true (the default)
lock the mutex
unlock the mutex
Public Static Functions
Private Members
-
friend Lock
- #include <exceptions.hpp>
Public Functions
Private Members
- #include <exceptions.hpp>
Public Functions
Private Members
- #include <segment_info.hpp>
encapsulate information related to a shared memory segment
Public Functions
introspection of the shared memory segment
total size of the segment
free memory of the segment
used memory of the segment
report on the status of the internal structures of the segment
number of objects allocated in the segment
print in the terminal informations about the segment
Private Members
-
template<int
SIZE
>
classSerializable
Public Functions
-
inline
Serializable
()
-
inline void
set
(int index, double v)
-
inline double
get
(int index)
-
template<class
Archive
>
inline voidserialize
(Archive &archive)
Private Types
-
typedef Eigen::Matrix<double, SIZE, 1>
Vector
-
inline
- #include <serializable_exchange.hpp>
Public Functions
Private Members
-
class
SerializableExample
Public Functions
-
inline
SerializableExample
()
-
inline
SerializableExample
(int i1, int i2, double d1)
-
inline void
add
(int value)
-
template<class
Archive
>
inline voidserialize
(Archive &archive)
-
inline void
print
()
Private Members
-
int
i1_
-
int
i2_
-
double
d1_
-
std::vector<int>
v_
-
inline
- #include <serializer.hpp>
Public Functions
serialize an (almost) arbitrary instance to a string.
The method uses cereal internally and the instance must implement a serialize function. See for details: https://uscilab.github.io/cereal/ Supplementary requirements:
Serializable must also have a default constructor.
All instances of Serializable must be of the same size. (e.g. vectors must be of fixed size) The generated and returned string is a private member of the Serializer instance. Successive calls to serialize overwrite this string.
- Parameters:
instance – to serialize to a string
Restore the instance of serializable based on the string data, which should have been generated via the serialize function.
- Parameters:
the – serialized instance
instance – of Serializable to be restored
Public Static Functions
Returns the serialized size (i.e.
the size of the string) of an instance of Serializable
Private Members
- #include <shared_memory.hpp>
The SharedMemorySegment contains the pointers of the shared objects in on shared memrory segment.
We use unamed mutext (interprocess_mutex) and unamed condition variables (interprocess_condition) to be able to instanciate them with classic pointers
Public Functions
SharedMemorySegment constructor.
SharedMemorySegment destructor.
clear_memory free the shared memory
get_object registers the object in the current struc and in the shared memory once only.
And returns the pointer to the object and its size. The size will be 1 for simple type and could greater to one for arrays.
- Parameters:
object_id – [in] the name of the object in the shared memory.
- Param :
get_object registers the object in the current struc and in the shared memory once only.
And returns the pointer to the object and its size. The size will be 1 for simple type and could greater to one for arrays.
- Parameters:
object_id – [in] the name of the object in the shared memory.
- Param :
set_object registers the object in the current struc and in the shared memory once only.
And returns the pointer to the object and its size. The size will be 1 for simple type and could greater to one for arrays.
- Parameters:
object_id – [in] the name of the object in the shared memory.
set_ – [in] the reference to the fetched object.
register_object registers the object in the segment uniquely.
- Parameters:
object_id – is the name of the object to register.
obj_ – is the object to be registered.
- Returns:
true of a new object has been registered
register_object_read_only registers the object in the segment uniquely.
- Parameters:
object_id – is the name of the object to register
obj_ – is the object to be registered
- Returns:
true of a new object has been registered
delete_object delete and object from the shared memory.
- Parameters:
object_id – [in] the name of the object in the shared memory.
create_mutex small factory that allow to make sure that the mutex is created.
destroy_mutex small destructor of the mutext to make sure that it is unlock at critical time.
is_object_registered used to check if the object has been registered or not.
- Parameters:
object_id – [in] the name of the object in the shared memory.
- Returns:
true if it has been registered
set_clear_upon_destruction is a standard setter
- Parameters:
clear_upon_destruction – [in] is the value to set
get_segment_id is a standard getter
- Returns:
the segment name
performs introspection on the segment and return related information
Public Members
mutex_ this mutex secure ALL the shared memory.
Private Members
shm_segment is the boost object that manages the shared memory segment
objects_ are all the data stored in the segment.
WARNING here we use void* so the use of the set and get functions is the RESPONSABILITY of the user.
The user is to use the SAME type when calling set and get using the shared memory
segment_id_ is the name of the segment inside the shared memory
clear_upon_destruction_ flag decides if the segment should be cleared upon destruction.
Usage: typically only one process should set this flag to true.
- #include <shared_memory.hpp>
ShmTypeHelper is a small struct that allow the definition of templated typedef.
Public Types
ShmemAllocator typedef allows to create std::allocator with the boost interprocess library.
- #include <exceptions.hpp>
Public Functions
Private Members
- #include <exceptions.hpp>
Public Functions
Private Members
All templated types in this namespaces are elementary types: int, double, float, char*, …
Typedefs
ShmObjects typedef is a simple renaming that ease the for loop writting.
Create a char allocator to ease the creation of strings.
Create a basic_string type for the Shared Memory.
SegmentMap typedef is a simple short cut to the GLOBAL_SHM_SEGMENTS type.
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.
sets the size of the segments that will be newly created via the set methods.
Until this function is called, segments are created with a size of 65536 bytes. This function is not interprocess : it will set the size of segments created in the current process
- Parameters:
multiplier_1025 – the size of create segment will be multiplier_1025 * 1025 bytes (because memory segment sizes have to be a multiple of 1025)
set the size of segment newly created to the default size value of 65536
get_segment creates or give back a pointer to a SharedMemorySegment object.
- Parameters:
segment_id – is the name of the shared memory segment.
performs introspection on the segment and return related information.
If the segment does not exists, creates it first.
returns true if a segment exists under this id
- Parameters:
segment_id – is the name of the shared memory segment.
delete_segment deletes the segment of existing shared memory.
it makes sure that all element created in it is destroyed first. (is this needed? I do not know.)
- Parameters:
segment_id – is the name of the shared memory segment.
delete_all_segment delete all mapping to the shared memory used during the current process
alias for delete_all_segments (for retro compatibility)
delete_object deletes a particular object in the shared memory segment
- Parameters:
segment_id – [in] is the name of the shared memory segment.
- Returns:
true if everything went fine.
get_sgement_mutex aquiere a reference to the semgent global mutex.
- Parameters:
segment_id – [in] is the name of the shared memory segment.
- Returns:
a reference to a boost mutex
clear_shared_memory_segment destroys the shared memory
- Parameters:
segment_id – [in] is the name of the shared memory segment.
set instanciates or get pointer to any elementary types in the shared memory.
All set functions make sure that the pointer is uniquely created to avoid useless computation time consumption.
- Parameters:
segment_id – [in] is the name of the shared memory segment.
object_id – [in] is the name of the shared memory object to set.
set_ – [in] is the string to be created in the shared memory
set instanciates or get pointer to a fixed sized array of the templated type “T” in the shared memory.
All set functions make sure that the pointer is uniquely created to avoid useless computation time consumption.
- Parameters:
segment_id – [in] is the name of the shared memory segment.
object_id – [in] is the name of the shared memory object to set.
set_ – [in] is the pointer to the array of objects to set in the memory.
size – [in] is the array size.
set instanciates or get pointer to a string in the shared memory.
All set functions make sure that the pointer is uniquely created to avoid useless computation time consumption.
- Parameters:
segment_id – [in] is the name of the shared memory segment.
object_id – [in] is the name of the shared memory object to set.
set_ – [in] is the string to be created in the shared memory
set instanciates or get pointer to a std::vector<ElemType> in the shared memory.
This will translated as a fixed sized array in the shared memory
All set functions make sure that the pointer is uniquely created to avoid useless computation time consumption.
- Parameters:
segment_id – [in] is the name of the shared memory segment.
object_id – [in] is the name of the shared memory object to set.
set_ – [in] is the string to be created in the shared memory
set instanciates or get pointer to a Eigen::Matrix<ElemType, Eigen::Dynamic, 1> in the shared memory.
This will translated as a fixed sized array in the shared memory
All set functions make sure that the pointer is uniquely created to avoid useless computation time consumption.
- Parameters:
segment_id – [in] is the name of the shared memory segment.
object_id – [in] is the name of the shared memory object to set.
set_ – [in] is the string to be created in the shared memory
set instanciates or get pointer to a std::pair<FirstType, SecondType> in the shared memory.
This is very usefull to dump maps in the shared memory
All set functions make sure that the pointer is uniquely created to avoid useless computation time consumption.
- Parameters:
segment_id – [in] is the name of the shared memory segment.
object_id – [in] is the name of the shared memory object to set.
set_ – [in] is the string to be created in the shared memory
set instanciates or get pointer to a std::vector<ElemType> or an Eigen::Matrix<ElemType, any, any> in the shared memory.
This will translated as a fixed sized array in the shared memory
All set functions make sure that the pointer is uniquely created to avoid useless computation time consumption.
- Parameters:
segment_id – [in] is the name of the shared memory segment.
object_id – [in] is the name of the shared memory object to set.
set_ – [in] is the string to be created in the shared memory
get gets a pointer to any elementary types in the shared memory.
All set functions make sure that the pointer is uniquely created to avoid useless computation time consumption.
- Parameters:
segment_id – [in] is the name of the shared memory segment.
object_id – [in] is the name of the shared memory object to set.
get_ – [in] is the string to be created in the shared memory
get gets a pointer to a fixed sized array of the templated type “T” in the shared memory.
All set functions make sure that the pointer is uniquely created to avoid useless computation time consumption.
- Parameters:
segment_id – [in] is the name of the shared memory segment.
object_id – [in] is the name of the shared memory object to set.
get_ – [in] is the pointer to the array of objects to set in the memory.
size – [in] is the array size.
create – [in] : if false, raise a Non_existing_segment_exception if the segment does not already exist
get gets a pointer to a string in the shared memory.
All set functions make sure that the pointer is uniquely created to avoid useless computation time consumption.
- Parameters:
segment_id – [in] is the name of the shared memory segment.
object_id – [in] is the name of the shared memory object to set.
get_ – [in] is the string to be created in the shared memory
create – [in] : if false, raise a Non_existing_segment_exception if the segment does not already exist
get gets a pointer to a std::vector<ElemType> in the shared memory.
This will translated as a fixed sized array in the shared memory
All set functions make sure that the pointer is uniquely created to avoid useless computation time consumption.
- Parameters:
segment_id – [in] is the name of the shared memory segment.
object_id – [in] is the name of the shared memory object to set.
set_ – [in] is the string to be created in the shared memory
create – [in] : if false, raise a Non_existing_segment_exception if the segment does not already exist
get gets a pointer to a Eigen::Matrix<ElemType, Eigen::Dynamic, 1> in the shared memory.
This will translated as a fixed sized array in the shared memory
All set functions make sure that the pointer is uniquely created to avoid useless computation time consumption.
- Parameters:
segment_id – [in] is the name of the shared memory segment.
object_id – [in] is the name of the shared memory object to set.
set_ – [in] is the string to be created in the shared memory
create – [in] : if false, raise a Non_existing_segment_exception if the segment does not already exist
get instanciates or get pointer to a std::pair<FirstType, SecondType> in the shared memory.
This is very usefull to dump maps in the shared memory
All set functions make sure that the pointer is uniquely created to avoid useless computation time consumption.
- Parameters:
segment_id – [in] is the name of the shared memory segment.
object_id – [in] is the name of the shared memory object to set.
get_ – [in] is the string to be created in the shared memory
create – [in] : if false, raise a Non_existing_segment_exception if the segment does not already exist
get gets a pointer to a std::vector<ElemType> or an Eigen::Matrix<ElemType, any, any> in the shared memory.
This will translated as a fixed sized array in the shared memory
All set functions make sure that the pointer is uniquely created to avoid useless computation time consumption.
- Parameters:
segment_id – [in] is the name of the shared memory segment.
object_id – [in] is the name of the shared memory object to set.
get_ – [in] is the string to be created in the shared memory
create – [in] : if false, raise a Non_existing_segment_exception if the segment does not already exist
Serialize the instance into a string which is written in the shared memory.
This uses cereal for serialization, and Serializable must implement a serialize function, see: https://uscilab.github.io/cereal/
- Parameters:
segment_id – [in] is the name of the shared memory segment.
object_id – [in] is the name of the shared memory object to set.
serializable – [in] is the instance to serialize
Read from the memory a string that is deserialized into the passed instance of Serializable.
This assumes the serialization and writting in the shared memory has been performed using the serialize function.
- Parameters:
segment_id – [in] is the name of the shared memory segment.
object_id – [in] is the name of the shared memory object to set.
serializable – [in] is the instance in which the string will be deserialized
if verbose mode set to true (starting default is false), informaton about newly created objects will be displayed in the terminal.
Call to this function will change the verbose mode only for the current process.
wait until the segment is created either via call to a get or set function.
- Parameters:
segment_id – [in] is the name of the shared memory segment.
timeout_ms – [in] is a timeout in ms
- Returns:
true if the segment has been created before the timeout expired, false otherwise.
Variables
GLOBAL_SHARED_MEMORY_SEGMENT is global variable that acts as a a shared memory manager.
The use of the std::unique_ptr allows to delete the object and re-create at will.
Enums
Values:
Functions
-
const std::string segment_id ("unit_test_segment")
-
const std::string segment_cv_id ("unit_test_cv_segment")
-
const std::string segment_mutex_id ("unit_test_mutex_segment")
-
const std::string object_id ("unit_test_object")
-
const std::string cond_var_id ("unit_test_cond_var")
-
const std::string exchange_manager_segment_id ("em_test_segment")
-
const std::string exchange_manager_object_id ("em_test_object")
-
const std::string concurrent_proc1_ready ("concurrent_proc1_ready")
-
const std::string concurrent_proc2_ready ("concurrent_proc2_ready")
-
const std::string test_string ("test_string")
-
const std::string map_string_keys1 ("s1")
-
const std::string map_string_keys2 ("s2")
Variables
-
file
clean_shared_memory.cpp
- #include <boost/interprocess/managed_shared_memory.hpp>#include <boost/interprocess/sync/named_mutex.hpp>#include “shared_memory/benchmarks/benchmark_common.hh”
Clean the shared memory of the benchmark, the unnittests, …
- License:
License BSD-3-Clause
- Author
Vincent Berenz
- Copyright
Copyright (c) 2019, New York University and Max Planck Gesellschaft.
- Date
2019-05-22
Functions
-
int
main
()
-
file
serialization_frequency.cpp
- #include <chrono>#include “shared_memory/demos/four_int_values.hpp”#include “shared_memory/serializer.hpp”
Functions
-
void
execute
()
-
int
main
()
-
void
-
file
stress_get_api.cpp
- #include <shared_memory/benchmarks/benchmark_common.hh>#include “shared_memory/shared_memory.hpp”
Benchmark on the get method of the API.
- License:
License BSD-3-Clause
- Author
Vincent Berenz
- Copyright
Copyright (c) 2019, New York University and Max Planck Gesellschaft.
- Date
2019-05-22
Functions
-
void
cleaning_memory
(int)
-
int
main
()
-
file
stress_get_raw_boost_efficient.cpp
- #include <boost/interprocess/managed_shared_memory.hpp>#include <boost/interprocess/sync/named_mutex.hpp>#include “shared_memory/benchmarks/benchmark_common.hh”
Use the raw boost API in order to compare the efficiency of the new API compare to the standard boost API.
- License:
License BSD-3-Clause
- Author
Vincent Berenz
- Copyright
Copyright (c) 2019, New York University and Max Planck Gesellschaft.
- Date
2019-05-22
Functions
-
void
cleaning_memory
(int)
-
int
main
()
-
file
stress_get_raw_boost_inefficient.cpp
- #include <boost/interprocess/managed_shared_memory.hpp>#include <boost/interprocess/sync/named_mutex.hpp>#include “shared_memory/benchmarks/benchmark_common.hh”
Use the raw boost API in order to compare the efficiency of the new API compare to the standard boost API.
- License:
License BSD-3-Clause
- Author
Vincent Berenz
- Copyright
Copyright (c) 2019, New York University and Max Planck Gesellschaft.
- Date
2019-05-22
Functions
-
void
cleaning_memory
(int)
-
int
main
()
-
file
stress_set_api.cpp
- #include “shared_memory/benchmarks/benchmark_common.hh”#include “shared_memory/shared_memory.hpp”
Benchmark the set method form the API.
- License:
License BSD-3-Clause
- Author
Vincent Berenz
- Copyright
Copyright (c) 2019, New York University and Max Planck Gesellschaft.
- Date
2019-05-22
Functions
-
void
cleaning_memory
(int)
-
int
main
()
-
file
stress_set_raw_boost_efficient.cpp
- #include <boost/interprocess/managed_shared_memory.hpp>#include <boost/interprocess/sync/named_mutex.hpp>#include “shared_memory/benchmarks/benchmark_common.hh”
Use the raw boost API in order to compare the efficiency of the new API compare to the standard boost API.
- License:
License BSD-3-Clause
- Author
Vincent Berenz
- Copyright
Copyright (c) 2019, New York University and Max Planck Gesellschaft.
- Date
2019-05-22
Functions
-
void
cleaning_memory
(int)
-
int
main
()
-
file
stress_set_raw_boost_inefficient.cpp
- #include <boost/interprocess/managed_shared_memory.hpp>#include <boost/interprocess/sync/named_mutex.hpp>#include “shared_memory/benchmarks/benchmark_common.hh”
Use the raw boost API in order to compare the efficiency of the new API compare to the standard boost API.
- License:
License BSD-3-Clause
- Author
Vincent Berenz
- Copyright
Copyright (c) 2019, New York University and Max Planck Gesellschaft.
- Date
2019-05-22
Functions
-
void
cleaning_memory
(int)
-
int
main
()
-
file
cond_var.cpp
- #include <unistd.h>#include <atomic>#include <condition_variable>#include <iostream>#include <mutex>#include <thread>#include <vector>
Functions
-
void *
update_vector_async
(void *config_)
-
void *
update_vector
(void *config_)
-
int
main
()
-
void *
-
file
cond_var_ping.cpp
- #include <unistd.h>#include <atomic>#include <iostream>#include <thread>#include <vector>#include “shared_memory/condition_variable.hpp”#include “shared_memory/lock.hpp”#include “shared_memory/mutex.hpp”
Defines
-
MUTEX_ID
-
CV_SEGMENT_ID
-
RUNNING_SEGMENT_ID
-
RUNNING_OBJECT_ID
-
VALUE
Functions
-
bool
should_run
()
-
void
update_vector
()
-
int
main
()
-
-
file
cond_var_pong.cpp
- #include <unistd.h>#include <atomic>#include <iostream>#include <thread>#include <vector>#include “shared_memory/condition_variable.hpp”#include “shared_memory/lock.hpp”#include “shared_memory/mutex.hpp”
Defines
-
MUTEX_ID
-
CV_SEGMENT_ID
-
RUNNING_SEGMENT_ID
-
RUNNING_OBJECT_ID
-
VALUE
Functions
-
void
update_vector
()
-
int
main
()
-
-
file
cond_var_timeout.cpp
- #include <iostream>#include <thread>#include “shared_memory/locked_condition_variable.hpp”
Functions
-
static int
thread_callback
()
-
int
main
()
-
static int
-
file
create_segment.cpp
- #include <signal.h>#include <unistd.h>#include <iostream>#include <vector>#include “shared_memory/shared_memory.hpp”
Functions
-
int
main
()
-
int
-
file
eigen.cpp
- #include <iostream>#include “shared_memory/serializer.hpp”#include “shared_memory/shared_memory.hpp”
Defines
-
SIZE
Functions
-
int
main
()
-
-
file
exchange_manager.cpp
- #include “shared_memory/demos/four_int_values.hpp”#include “shared_memory/exchange_manager_consumer.hpp”#include “shared_memory/exchange_manager_producer.hpp”
Defines
-
SEGMENT_ID
-
OBJECT_ID
-
MAX_EXCHANGE_SIZE
Functions
-
int
main
()
-
-
file
exchange_manager_clean.cpp
- #include <signal.h>#include <stdlib.h>#include <time.h>#include <unistd.h>#include <iostream>#include “shared_memory/demos/four_int_values.hpp”#include “shared_memory/exchange_manager_producer.hpp”
Defines
-
SEGMENT_ID
-
QUEUE_SIZE
Functions
-
int
main
()
-
-
file
exchange_manager_consumer.cpp
- #include “shared_memory/exchange_manager_consumer.hpp”#include <signal.h>#include <stdlib.h>#include <time.h>#include <unistd.h>#include <iostream>#include “shared_memory/demos/four_int_values.hpp”
Demonstrate how to use the exchange manage consummer.
- License:
License BSD-3-Clause
- Author
Vincent Berenz
- Copyright
Copyright (c) 2019, New York University and Max Planck Gesellschaft.
- Date
2019-05-22
Defines
-
SEGMENT_ID
-
OBJECT_ID
-
QUEUE_SIZE
Functions
-
void
stop
(int)
-
void
execute
()
-
int
main
()
Variables
-
static bool
RUNNING
= true
-
file
exchange_manager_producer.cpp
- #include “shared_memory/exchange_manager_producer.hpp”#include <signal.h>#include <stdlib.h>#include <time.h>#include <unistd.h>#include <iostream>#include “shared_memory/demos/four_int_values.hpp”#include “shared_memory/exchange_manager_consumer.hpp”
Demonstrate the use of the exhange manager producer.
- License:
License BSD-3-Clause
- Author
Vincent Berenz
- Copyright
Copyright (c) 2019, New York University and Max Planck Gesellschaft.
- Date
2019-05-22
Defines
-
SEGMENT_ID
-
OBJECT_ID
-
QUEUE_SIZE
Functions
-
void
stop
(int)
-
static int
_get_int
(int max)
-
void
execute
()
-
int
main
()
Variables
-
static bool
RUNNING
= true
-
file
four_int_values.cpp
- #include “shared_memory/demos/four_int_values.hpp”
Demonstrate how to create a message with the exchange manager.
- License:
License BSD-3-Clause
- Author
Vincent Berenz
- Copyright
Copyright (c) 2019, New York University and Max Planck Gesellschaft.
- Date
2019-05-22
-
file
get_data.cpp
- #include <signal.h>#include <unistd.h>#include <iostream>#include <vector>#include “shared_memory/shared_memory.hpp”
Create a small app that fetch the data from a shared memory. This memory is filled with the counter part of this app: set_data.
- License:
License BSD-3-Clause
- Author
Vincent Berenz
- Copyright
Copyright (c) 2019, New York University and Max Planck Gesellschaft.
- Date
2019-05-22
Functions
-
void
exiting_memory
(int)
-
int
main
()
Variables
-
static bool
RUNNING
= true
-
file
locked_cond_var_ping.cpp
- #include <iostream>#include <thread>#include “shared_memory/locked_condition_variable.hpp”#include “shared_memory/shared_memory.hpp”#include <signal.h>#include <stdlib.h>#include <time.h>#include <unistd.h>
Functions
-
void
stop
(int)
-
void
execute
()
-
int
main
()
Variables
-
static bool
RUNNING
= true
-
void
-
file
locked_cond_var_pong.cpp
- #include <iostream>#include <thread>#include “shared_memory/locked_condition_variable.hpp”#include “shared_memory/shared_memory.hpp”#include <signal.h>#include <stdlib.h>#include <time.h>#include <unistd.h>
Functions
-
void
stop
(int)
-
void
execute
()
-
int
main
()
Variables
-
static bool
RUNNING
= true
-
void
-
file
non_existing_segment.cpp
- #include <signal.h>#include <unistd.h>#include <iostream>#include <vector>#include “shared_memory/shared_memory.hpp”
checks exceptions are throwm when reading non existing segment
- License:
License BSD-3-Clause
- License:
License BSD-3-Clause
- License:
License BSD-3-Clause
- Author
Vincent Berenz
- Copyright
Copyright (c) 2020, New York University and Max Planck Gesellschaft.
- Date
2020-10-22
- Author
Vincent Berenz
- Copyright
Copyright (c) 2020, New York University and Max Planck Gesellschaft.
- Date
2020-10-22
- Author
Vincent Berenz
- Copyright
Copyright (c) 2020, New York University and Max Planck Gesellschaft.
- Date
2020-10-22
Functions
-
int
main
()
-
file
read_array.cpp
- #include <signal.h>#include <unistd.h>#include “shared_memory/array.hpp”#include “shared_memory/demos/item.hpp”
Defines
-
SIZE
-
SEGMENT_SERIALIZED
-
SEGMENT_FUNDAMENTAL
-
SEGMENT_FUNDAMENTAL_ARRAY
Functions
-
void
stop
(int)
-
void
print_array
(int *values, int size)
-
void
run
() read from the array created by demo_write_array, which should have been started before this demo was (infinite hanging expected otherwise)
-
int
main
()
Variables
-
static bool
RUNNING
= true
-
-
file
serialization.cpp
- #include “shared_memory/serializer.hpp”#include “shared_memory/shared_memory.hpp”
Functions
-
int
main
()
-
int
-
file
set_data.cpp
- #include <signal.h>#include <unistd.h>#include <iostream>#include <vector>#include “shared_memory/shared_memory.hpp”
shows how to serialize an instance of a class with an eigen matrix as attribute
shows how to turn of console prints
Create a small app that set the data into a shared memory. This memory is read from the counter part of this app: get_data.
- License:
License BSD-3-Clause
- License:
License BSD-3-Clause
- License:
License BSD-3-Clause
- Author
Vincent Berenz
- Copyright
Copyright (c) 2019, New York University and Max Planck Gesellschaft.
- Date
2019-05-22
- Author
Vincent Berenz
- Copyright
Copyright (c) 2019, New York University and Max Planck Gesellschaft.
- Date
2019-05-22
- Author
Vincent Berenz
- Copyright
Copyright (c) 2019, New York University and Max Planck Gesellschaft.
- Date
2019-05-22
Functions
-
void
cleaning_memory
(int)
-
int
main
()
Variables
-
static bool
RUNNING
= true
-
file
sm_cond_var.cpp
- #include <unistd.h>#include <atomic>#include <iostream>#include <thread>#include <vector>#include “shared_memory/condition_variable.hpp”#include “shared_memory/lock.hpp”#include “shared_memory/mutex.hpp”
Defines
-
MUTEX_ID
-
CV_SEGMENT_ID
Functions
-
void *
update_vector_async
(void *config_)
-
void *
update_vector
(void *config_)
-
int
main
()
-
-
file
std_string_vector.cpp
- #include <boost/interprocess/allocators/allocator.hpp>#include <boost/interprocess/containers/string.hpp>#include <boost/interprocess/containers/vector.hpp>#include <boost/interprocess/managed_shared_memory.hpp>
This demonstrate how to use the equivalent of std::string in the shared memory.
- License:
License BSD-3-Clause
- Author
Vincent Berenz
- Copyright
Copyright (c) 2019, New York University and Max Planck Gesellschaft.
- Date
2019-05-22
Functions
-
int
main
()
-
file
verbose.cpp
- #include “shared_memory/shared_memory.hpp”
Functions
-
int
main
()
-
int
-
file
wait_for_segment.cpp
- #include <signal.h>#include <unistd.h>#include <iostream>#include <vector>#include “shared_memory/shared_memory.hpp”
Functions
-
int
main
()
-
int
-
file
write_array.cpp
- #include <signal.h>#include <unistd.h>#include “shared_memory/array.hpp”#include “shared_memory/demos/item.hpp”
Defines
-
SIZE
-
SEGMENT_SERIALIZED
-
SEGMENT_FUNDAMENTAL
-
SEGMENT_FUNDAMENTAL_ARRAY
Functions
-
void
stop
(int)
-
void
run
() create interprocesses arrays and write into them.
Run demo_read_array for a process reading these arrays
-
int
main
()
Variables
-
static bool
RUNNING
= true
-
-
file
array.hpp
- #include “shared_memory/mutex.hpp”#include “shared_memory/serializer.hpp”#include “shared_memory/shared_memory.hpp”#include “shared_memory/internal/array_members.hpp”#include <cstring>#include <stdexcept>#include “array.hxx”#include “array_fundamental.hxx”#include “array_fundamental_array.hxx”#include “array_serializable.hxx”
-
file
array.hxx
Functions
-
static uint
get_segment_size
(size_t size_array, size_t size_item)
-
static uint
-
file
array_fundamental.hxx
-
file
array_fundamental_array.hxx
-
file
array_serializable.hxx
-
file
benchmark_common.hh
- #include <signal.h>#include <unistd.h>#include <chrono>#include <cmath>#include <iostream>#include <vector>
Common tools for benchmarking.
- License:
License BSD-3-Clause
- Author
Vincent Berenz
- Copyright
Copyright (c) 2019, New York University and Max Planck Gesellschaft.
- Date
2019-05-22
Defines
-
SHARED_MEMORY_SIZE
-
SIZE
-
NUMBER_OR_MEASURED_ITERATIONS
-
MAX_NUNMBER_OF_ITERATION
Typedefs
-
typedef std::chrono::high_resolution_clock::time_point
TimeType
Functions
-
static std::vector< double > DATA (SIZE, 2)
-
static std::string SHM_NAME ("stress_test")
-
static std::string SHM_OBJECT_NAME ("stress_object")
-
std::ostream &
operator<<
(std::ostream &os, const MeasureTime &time)
-
void
init_benchmark
()
-
void
code_to_benchamrk
()
-
void
end_benchmark
()
Variables
-
bool
RUNNING
-
file
condition_variable.hpp
- #include “shared_memory/lock.hpp”#include <boost/interprocess/sync/named_condition.hpp>
-
file
four_int_values.hpp
- #include <iostream>#include “shared_memory/serializer.hpp”
o *
- License:
License BSD-3-Clause
- Author
Vincent Berenz
- Copyright
Copyright (c) 2019, New York University and Max Planck Gesellschaft.
- Date
2019-05-22
-
file
item.hpp
- #include <array>#include <iostream>
-
file
exceptions.hpp
- #include <exception>#include <iostream>#include <sstream>#include <string>
-
file
exchange_manager_consumer.hpp
- #include “shared_memory/internal/exchange_manager_memory.hpp”#include “exchange_manager_consumer.hxx”
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
-
file
exchange_manager_consumer.hxx
-
file
exchange_manager_producer.hpp
- #include “shared_memory/internal/exchange_manager_memory.hpp”#include “exchange_manager_producer.hxx”
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
-
file
exchange_manager_producer.hxx
-
file
lock.hpp
- #include <boost/interprocess/sync/scoped_lock.hpp>#include “shared_memory/mutex.hpp”
-
file
locked_condition_variable.hpp
- #include <memory>#include <boost/interprocess/sync/named_condition.hpp>#include <boost/interprocess/sync/named_mutex.hpp>#include <boost/interprocess/sync/scoped_lock.hpp>#include “shared_memory/mutex.hpp”#include “shared_memory/shared_memory.hpp”
-
file
mutex.hpp
- #include <boost/interprocess/sync/named_mutex.hpp>#include <memory>#include <shared_memory/shared_memory.hpp>
-
file
segment_info.hpp
- #include <boost/interprocess/managed_shared_memory.hpp>#include <iostream>
-
file
serializable_exchange.hpp
- #include <cstring>#include <deque>#include <stdexcept>#include <string>#include “shared_memory/serializable.hpp”#include “shared_memory/shared_memory.hpp”#include “serializable_exchange.hxx”
Interface to a serializable object.
- License:
License BSD-3-Clause
- Author
Vincent Berenz
- Copyright
Copyright (c) 2019, New York University and Max Planck Gesellschaft.
- Date
2019-05-22
-
file
serializable_exchange.hxx
Define the template method of the Serializable_exchange.
- License:
License BSD-3-Clause
- License:
License BSD-3-Clause
- Author
Vincent Berenz
- Copyright
Copyright (c) 2019, New York University and Max Planck Gesellschaft.
- Date
2019-05-22
- Author
Vincent Berenz
- Copyright
Copyright (c) 2019, New York University and Max Planck Gesellschaft.
- Date
2019-05-22
-
file
serializable_read.hxx
-
file
serializer.hpp
- #include <cereal/archives/binary.hpp>#include <cereal/types/array.hpp>#include <cereal/types/vector.hpp>#include <sstream>#include <utility>#include “shared_memory/serializer.hxx”
Defines
-
CEREAL_THREAD_SAFE
-
-
file
serializer.hxx
-
file
shared_memory.hpp
- #include <chrono>#include <iostream>#include <map>#include <mutex>#include <string>#include <vector>#include <Eigen/Dense>#include <boost/interprocess/allocators/allocator.hpp>#include <boost/interprocess/containers/deque.hpp>#include <boost/interprocess/containers/string.hpp>#include <boost/interprocess/containers/vector.hpp>#include <boost/interprocess/managed_shared_memory.hpp>#include “shared_memory/exceptions.hpp”#include “shared_memory/segment_info.hpp”#include “shared_memory/serializer.hpp”#include <shared_memory/shared_memory.hxx>
This file declares a class that is used for shared memory segment introspection (e.g. used and free memory)
This file declares some function that encapsulate the use of the shared memory using the boost::interprocess package. usage: see demos and unit tests and documentation.
- License:
License BSD-3-Clause
- License:
License BSD-3-Clause
- Author
Vincent Berenz
- Author
Maximilien Naveau (maximilien.naveau@gmail.com)
- Copyright
Copyright (c) 2019, New York University and Max Planck Gesellschaft.
- Date
2019-05-22
- Author
Vincent Berenz
- Author
Maximilien Naveau (maximilien.naveau@gmail.com)
- Copyright
Copyright (c) 2019, New York University and Max Planck Gesellschaft.
- Date
2019-05-22
Defines
-
SHARED_MEMORY_HPP
-
DEFAULT_SHARED_MEMORY_SIZE
-
MAP_STRING_KEY_SEPARATOR
-
file
shared_memory.hxx
- #include <shared_memory/shared_memory.hpp>
This file implements the functions from shared_memory.hpp that encapsulate the use of the shared memory using the boost::interprocess package. usage: see demos and unit tests and documentation.
- License:
License BSD-3-Clause
- Author
Vincent Berenz
- Author
Maximilien Naveau (maximilien.naveau@gmail.com)
- Copyright
Copyright (c) 2019, New York University and Max Planck Gesellschaft.
- Date
2019-05-22
-
file
tests.h
- #include <map>#include <string>#include <vector>
Header of the unittests of this package.
- License:
License BSD-3-Clause
- Author
Vincent Berenz
- Copyright
Copyright (c) 2019, New York University and Max Planck Gesellschaft.
- Date
2019-05-22
Defines
-
DATA_EXCHANGE_QUEUE_SIZE
-
file
shared_memory.cpp
- #include “shared_memory/shared_memory.hpp”#include “shared_memory/condition_variable.hpp”#include “shared_memory/lock.hpp”#include “shared_memory/locked_condition_variable.hpp”#include “shared_memory/mutex.hpp”#include <pybind11/pybind11.h>#include <pybind11/stl.h>
Functions
-
page
license
- File benchmark_common.hh
License BSD-3-Clause
- File clean_shared_memory.cpp
License BSD-3-Clause
- File exchange_manager_consumer.cpp
License BSD-3-Clause
- File exchange_manager_consumer.hpp
License BSD-3-Clause
- File exchange_manager_producer.cpp
License BSD-3-Clause
- File exchange_manager_producer.hpp
License BSD-3-Clause
- File four_int_values.cpp
License BSD-3-Clause
- File four_int_values.hpp
License BSD-3-Clause
- File get_data.cpp
License BSD-3-Clause
- File non_existing_segment.cpp
License BSD-3-Clause
License BSD-3-Clause
License BSD-3-Clause
- File serializable_exchange.hpp
License BSD-3-Clause
- File serializable_exchange.hxx
License BSD-3-Clause
License BSD-3-Clause
- File set_data.cpp
License BSD-3-Clause
License BSD-3-Clause
License BSD-3-Clause
- File shared_memory.hpp
License BSD-3-Clause
License BSD-3-Clause
- File shared_memory.hxx
License BSD-3-Clause
- File std_string_vector.cpp
License BSD-3-Clause
- File stress_get_api.cpp
License BSD-3-Clause
- File stress_get_raw_boost_efficient.cpp
License BSD-3-Clause
- File stress_get_raw_boost_inefficient.cpp
License BSD-3-Clause
- File stress_set_api.cpp
License BSD-3-Clause
- File stress_set_raw_boost_efficient.cpp
License BSD-3-Clause
- File stress_set_raw_boost_inefficient.cpp
License BSD-3-Clause
- File tests.h
License BSD-3-Clause
-
dir
benchmarks
-
dir
include/shared_memory/benchmarks
-
dir
demos
-
dir
include/shared_memory/demos
-
dir
include
-
dir
include/shared_memory
-
dir
srcpy
-
dir
include/shared_memory/tests