Equalizer  1.2.1
Public Member Functions
co::base::Monitor< T > Class Template Reference

A monitor primitive. More...

#include <monitor.h>

List of all members.

Public Member Functions

 Monitor ()
 Construct a new monitor with a default value of 0.
 Monitor (const T &value)
 Construct a new monitor with a given default value.
 Monitor (const Monitor< T > &from)
 Ctor initializing with the given monitor value.
 ~Monitor ()
 Destructs the monitor.
template<>
Monitor< bool > & operator++ ()
template<>
Monitor< bool > & operator-- ()
template<>
Monitor< bool > & operator|= (const bool &value)
Changing the monitored value.
Monitoroperator++ ()
 Increment the monitored value, prefix only.
Monitoroperator-- ()
 Decrement the monitored value, prefix only.
Monitoroperator= (const T &value)
 Assign a new value.
const Monitoroperator= (const Monitor< T > &from)
 Assign a new value.
Monitoroperator|= (const T &value)
 Perform an or operation on the value.
void set (const T &value)
 Set a new value.
Monitor the value.
const T & waitEQ (const T &value) const
 Block until the monitor has the given value.
const T waitNE (const T &value) const
 Block until the monitor has not the given value.
const T waitNE (const T &v1, const T &v2) const
 Block until the monitor has none of the given values.
const T waitGE (const T &value) const
 Block until the monitor has a value greater or equal to the given value.
const T waitLE (const T &value) const
 Block until the monitor has a value less or equal to the given value.
Monitor the value with a timeout.
bool timedWaitEQ (const T &value, const uint32_t timeout) const
 Block until the monitor has the given value.
bool timedWaitGE (const T &value, const uint32_t timeout) const
 Block until the monitor has a value greater or equal to the given value.
Comparison Operators. @version 1.0
bool operator== (const T &value) const
bool operator!= (const T &value) const
bool operator< (const T &value) const
bool operator> (const T &value) const
bool operator<= (const T &value) const
bool operator>= (const T &value) const
bool operator== (const Monitor< T > &rhs) const
bool operator!= (const Monitor< T > &rhs) const
bool operator< (const Monitor< T > &rhs) const
bool operator> (const Monitor< T > &rhs) const
bool operator<= (const Monitor< T > &rhs) const
bool operator>= (const Monitor< T > &rhs) const
Data Access.
const T & operator-> () const
const T & get () const
operator+ (const T &value) const
operator| (const T &value) const
operator& (const T &value) const

Detailed Description

template<typename T>
class co::base::Monitor< T >

A monitor primitive.

A monitor has a value, which can be monitored to reach a certain state. The caller is blocked until the condition is fulfilled. The concept is similar to a pthread condition, with more usage convenience.

Definition at line 42 of file monitor.h.


Constructor & Destructor Documentation

template<typename T>
co::base::Monitor< T >::Monitor ( ) [inline]

Construct a new monitor with a default value of 0.

Version:
1.0

Definition at line 46 of file monitor.h.

template<typename T>
co::base::Monitor< T >::Monitor ( const T &  value) [inline, explicit]

Construct a new monitor with a given default value.

Version:
1.0

Definition at line 49 of file monitor.h.

template<typename T>
co::base::Monitor< T >::Monitor ( const Monitor< T > &  from) [inline]

Ctor initializing with the given monitor value.

Version:
1.1.5

Definition at line 52 of file monitor.h.

template<typename T>
co::base::Monitor< T >::~Monitor ( ) [inline]

Destructs the monitor.

Version:
1.0

Definition at line 55 of file monitor.h.


Member Function Documentation

template<typename T>
const T& co::base::Monitor< T >::get ( ) const [inline]
Returns:
the current value.
Version:
1.0

Definition at line 291 of file monitor.h.

Referenced by eq::Config::getFinishedFrame(), eq::FrameData::isReady(), and co::base::operator<<().

+ Here is the caller graph for this function:

template<typename T>
T co::base::Monitor< T >::operator& ( const T &  value) const [inline]
Returns:
the current and the given value.
Version:
1.0

Definition at line 301 of file monitor.h.

template<typename T>
T co::base::Monitor< T >::operator+ ( const T &  value) const [inline]
Returns:
the current plus the given value.
Version:
1.0

Definition at line 294 of file monitor.h.

template<typename T>
Monitor& co::base::Monitor< T >::operator++ ( void  ) [inline]

Increment the monitored value, prefix only.

Version:
1.0

Definition at line 60 of file monitor.h.

template<typename T>
Monitor& co::base::Monitor< T >::operator-- ( void  ) [inline]

Decrement the monitored value, prefix only.

Version:
1.0

Definition at line 70 of file monitor.h.

template<typename T>
const T& co::base::Monitor< T >::operator-> ( ) const [inline]
Returns:
the current value.
Version:
1.0

Definition at line 288 of file monitor.h.

template<typename T>
Monitor& co::base::Monitor< T >::operator= ( const T &  value) [inline]

Assign a new value.

Version:
1.0

Definition at line 80 of file monitor.h.

template<typename T>
const Monitor& co::base::Monitor< T >::operator= ( const Monitor< T > &  from) [inline]

Assign a new value.

Version:
1.1.5

Definition at line 87 of file monitor.h.

template<typename T>
T co::base::Monitor< T >::operator| ( const T &  value) const [inline]
Returns:
the current or'ed with the given value.
Version:
1.0

Definition at line 297 of file monitor.h.

template<typename T>
Monitor& co::base::Monitor< T >::operator|= ( const T &  value) [inline]

Perform an or operation on the value.

Version:
1.0

Definition at line 94 of file monitor.h.

template<typename T>
void co::base::Monitor< T >::set ( const T &  value) [inline]

Set a new value.

Version:
1.0

Definition at line 104 of file monitor.h.

template<typename T>
bool co::base::Monitor< T >::timedWaitEQ ( const T &  value,
const uint32_t  timeout 
) const [inline]

Block until the monitor has the given value.

Parameters:
valuethe exact value to monitor.
timeoutthe timeout in milliseconds to wait for the value.
Returns:
true on success, false on timeout.
Version:
1.1

Definition at line 217 of file monitor.h.

template<typename T>
bool co::base::Monitor< T >::timedWaitGE ( const T &  value,
const uint32_t  timeout 
) const [inline]

Block until the monitor has a value greater or equal to the given value.

Parameters:
valuethe exact value to monitor.
timeoutthe timeout in milliseconds to wait for the value.
Returns:
true on success, false on timeout.
Version:
1.1

Definition at line 243 of file monitor.h.

template<typename T>
const T& co::base::Monitor< T >::waitEQ ( const T &  value) const [inline]

Block until the monitor has the given value.

Returns:
the value when reaching the condition.
Version:
1.0

Definition at line 120 of file monitor.h.

template<typename T>
const T co::base::Monitor< T >::waitGE ( const T &  value) const [inline]

Block until the monitor has a value greater or equal to the given value.

Returns:
the value when reaching the condition.
Version:
1.0

Definition at line 175 of file monitor.h.

template<typename T>
const T co::base::Monitor< T >::waitLE ( const T &  value) const [inline]

Block until the monitor has a value less or equal to the given value.

Returns:
the value when reaching the condition.
Version:
1.0

Definition at line 194 of file monitor.h.

template<typename T>
const T co::base::Monitor< T >::waitNE ( const T &  value) const [inline]

Block until the monitor has not the given value.

Returns:
the value when reaching the condition.
Version:
1.0

Definition at line 136 of file monitor.h.

template<typename T>
const T co::base::Monitor< T >::waitNE ( const T &  v1,
const T &  v2 
) const [inline]

Block until the monitor has none of the given values.

Returns:
the value when reaching the condition.
Version:
1.0

Definition at line 155 of file monitor.h.


The documentation for this class was generated from the following file:
Generated on Fri Jun 8 2012 15:44:34 for Equalizer 1.2.1 by  doxygen 1.8.0