source: flair-dev/trunk/include/FlairCore/SharedMem.h@ 66

Last change on this file since 66 was 62, checked in by Sanahuja Guillaume, 6 years ago

m

File size: 1.7 KB
RevLine 
[2]1// %flair:license{
[13]2// This file is part of the Flair framework distributed under the
3// CECILL-C License, Version 1.0.
[2]4// %flair:license}
5/*!
6 * \file SharedMem.h
7 * \brief Class defining a shared memory
8 * \author Guillaume Sanahuja, Copyright Heudiasyc UMR UTC/CNRS 7253
9 * \date 2014/02/10
10 * \version 4.0
11 */
12
13#ifndef SHAREDMEM_H
14#define SHAREDMEM_H
15
16#include <Object.h>
17#include <semaphore.h>
18
19class SharedMem_impl;
20
[13]21namespace flair {
22namespace core {
[2]23
[13]24/*! \class SharedMem
25*
26* \brief Class defining a shared memory
27*
28* Shared memory is identified by its name so it can be accessed
[62]29* by another process using its name.
[13]30*/
[2]31
[13]32class SharedMem : public Object {
33public:
[50]34 enum class Type { mutex, producerConsumer };
[13]35 /*!
36 * \brief Constructor
37 *
38 * Construct a shared memory object
39 *
40 * \param parent parent
41 * \param name name
42 * \param size size of the shared memory
[50]43 * \param blockOnRead if true reading will block if nothing written
[13]44 */
[50]45 SharedMem(const Object *parent, std::string name, size_t size, Type type=Type::mutex);
[2]46
[13]47 /*!
48 * \brief Destructor
49 *
50 */
51 ~SharedMem();
[2]52
[13]53 /*!
54 * \brief Write
55 *
56 * \param buf input buffer to write to memory
57 * \param size buffer size
58 */
59 void Write(const char *buf, size_t size);
[2]60
[13]61 /*!
62 * \brief Read
63 *
64 * \param buf output buffer to write from memory
65 * \param size buffer size
66 */
[62]67 bool Read(char *buf, size_t size, Time nsTimeout=TIME_INFINITE) const;
[2]68
[50]69
70 /*!
[62]71 * \brief This function should be called when reader is ready (in case of a SharedMem of type producerConsumer)
[50]72 */
73 void ReaderReady();
[13]74private:
75 SharedMem_impl *pimpl_;
[50]76 Type type;
[13]77};
[2]78
79} // end namespace core
80} // end namespace flair
81
82#endif // SHAREDMEM_H
Note: See TracBrowser for help on using the repository browser.