[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 ConditionVariable.h
|
---|
| 7 | * \brief Class defining a condition variable
|
---|
| 8 | * \author Guillaume Sanahuja, Copyright Heudiasyc UMR UTC/CNRS 7253
|
---|
| 9 | * \date 2014/02/07
|
---|
| 10 | * \version 4.0
|
---|
| 11 | */
|
---|
| 12 |
|
---|
| 13 | #ifndef CONDITIONVARIABLE_H
|
---|
| 14 | #define CONDITIONVARIABLE_H
|
---|
| 15 |
|
---|
| 16 | #include <Mutex.h>
|
---|
| 17 |
|
---|
| 18 | class ConditionVariable_impl;
|
---|
| 19 |
|
---|
[13] | 20 | namespace flair {
|
---|
| 21 | namespace core {
|
---|
[2] | 22 |
|
---|
[13] | 23 | /*! \class ConditionVariable
|
---|
| 24 | *
|
---|
| 25 | * \brief Class defining a condition variable
|
---|
| 26 | *
|
---|
| 27 | */
|
---|
[2] | 28 |
|
---|
[13] | 29 | class ConditionVariable : public Mutex {
|
---|
| 30 | public:
|
---|
| 31 | /*!
|
---|
| 32 | * \brief Constructor
|
---|
| 33 | *
|
---|
| 34 | * Construct a condition variable with its associated mutex.
|
---|
| 35 | *
|
---|
| 36 | * \param parent parent
|
---|
| 37 | * \param name name
|
---|
| 38 | */
|
---|
| 39 | ConditionVariable(const Object *parent, std::string name);
|
---|
[2] | 40 |
|
---|
[13] | 41 | /*!
|
---|
| 42 | * \brief Destructor
|
---|
| 43 | *
|
---|
| 44 | */
|
---|
| 45 | ~ConditionVariable();
|
---|
[2] | 46 |
|
---|
[13] | 47 | /*!
|
---|
| 48 | * \brief Block on the condition variable
|
---|
| 49 | *
|
---|
| 50 | * This method must be called with mutex locked (see Mutex::GetMutex) by the
|
---|
| 51 | *calling thread or undefined behaviour will result. \n
|
---|
| 52 | * It atomically releases mutex and causes the calling thread to block on the
|
---|
| 53 | *condition variable. \n
|
---|
| 54 | * Only one thread can be blocked at the same time. \n
|
---|
| 55 | * Upon successful return, the mutex has been locked and is owned by the
|
---|
| 56 | *calling thread which should unlock it (see Mutex::ReleaseMutex).
|
---|
| 57 | */
|
---|
| 58 | void CondWait(void);
|
---|
[2] | 59 |
|
---|
[13] | 60 | /*!
|
---|
| 61 | * \brief Block on the condition variable with a timeout
|
---|
| 62 | *
|
---|
| 63 | * This method must be called with mutex locked (see Mutex::GetMutex) by the
|
---|
| 64 | *calling thread or undefined behaviour will result. \n
|
---|
| 65 | * It atomically releases mutex and causes the calling thread to block on the
|
---|
| 66 | *condition variable. \n
|
---|
| 67 | * Only one thread can be blocked at the same time. \n
|
---|
| 68 | * Upon successful return, the mutex has been locked and is owned by the
|
---|
| 69 | *calling thread which should unlock it (see Mutex::ReleaseMutex).
|
---|
| 70 | *
|
---|
| 71 | * \param date absolute date
|
---|
| 72 | * \return true if the condition variable is signaled before the date specified
|
---|
| 73 | *in parameter elapses, false otherwise
|
---|
| 74 | */
|
---|
| 75 | bool CondWaitUntil(Time date);
|
---|
[2] | 76 |
|
---|
[13] | 77 | /*!
|
---|
| 78 | * \brief Unblock threads blocked on the condition variable
|
---|
| 79 | *
|
---|
| 80 | * This method should be called with mutex locked (see Mutex::GetMutex) by the
|
---|
| 81 | *calling thread. \n
|
---|
| 82 | * In this case, upon return, the calling thread should unlock the mutex (see
|
---|
| 83 | *Mutex::ReleaseMutex).
|
---|
| 84 | *
|
---|
| 85 | */
|
---|
| 86 | void CondSignal(void);
|
---|
[2] | 87 |
|
---|
[13] | 88 | private:
|
---|
| 89 | class ConditionVariable_impl *pimpl_;
|
---|
| 90 | };
|
---|
[2] | 91 |
|
---|
| 92 | } // end namespace core
|
---|
| 93 | } // end namespace flair
|
---|
| 94 |
|
---|
| 95 | #endif // CONDITIONVARIABLE_H
|
---|