RTC::RingBuffer< DataType > Class Template Reference

Ring buffer implementation class. More...

#include <RingBuffer.h>

Inheritance diagram for RTC::RingBuffer< DataType >:
RTC::BufferBase< DataType > RTC::BufferStatus

List of all members.

Classes

struct  condition
 struct for condition variable

Public Member Functions

 RingBuffer (long int length=RINGBUFFER_DEFAULT_LENGTH)
 Constructor.
virtual ~RingBuffer (void)
 Virtual destractor.
virtual void init (const coil::Properties &prop)
 Set the buffer.
virtual size_t length (void) const
 Get the buffer length.
virtual ReturnCode length (size_t n)
 Get the buffer length.
virtual ReturnCode reset ()
 Get the buffer length.
virtual DataType * wptr (long int n=0)
 Get the buffer length.
virtual ReturnCode advanceWptr (long int n=1)
 Get the buffer length.
virtual ReturnCode put (const DataType &value)
 Write data into the buffer.
virtual ReturnCode write (const DataType &value, long int sec=-1, long int nsec=0)
 Write data into the buffer.
virtual size_t writable () const
 Write data into the buffer.
virtual bool full (void) const
 Check on whether the buffer is full.
virtual DataType * rptr (long int n=0)
 Get the buffer length.
virtual ReturnCode advanceRptr (long int n=1)
 Get the buffer length.
virtual ReturnCode get (DataType &value)
 Write data into the buffer.
virtual DataType & get ()
 Reading data from the buffer.
virtual ReturnCode read (DataType &value, long int sec=-1, long int nsec=0)
 Readout data from the buffer.
virtual size_t readable () const
 Write data into the buffer.
virtual bool empty (void) const
 Check on whether the buffer is empty.

Public Attributes

BUFFERSTATUS_ENUM typedef
coil::Guard< coil::Mutex
Guard

Detailed Description

template<class DataType>
class RTC::RingBuffer< DataType >

Ring buffer implementation class.

This is the buffer implementation class with ring shaped buffer of specified length. If data is stored in the entire buffer, data from now on will be overwritten from old data one by one. Therefore, only the length of latest data is stored in the buffer.

Note: In the current implementation, only last stored data can be read from the buffer.

Parameters:
DataType Data type to store in the buffer
Since:
0.4.0

Constructor & Destructor Documentation

template<class DataType >
RTC::RingBuffer< DataType >::RingBuffer ( long int  length = RINGBUFFER_DEFAULT_LENGTH  )  [inline]

Constructor.

Constructor. Initialize the buffer by specified buffer length. However, if the specified length is less than two, the buffer should be initialized by two in length.

Parameters:
length Buffer length

References RTC::RingBuffer< DataType >::reset().

template<class DataType >
virtual RTC::RingBuffer< DataType >::~RingBuffer ( void   )  [inline, virtual]

Virtual destractor.

Virtual destractor


Member Function Documentation

template<class DataType >
virtual ReturnCode RTC::RingBuffer< DataType >::advanceRptr ( long int  n = 1  )  [inline, virtual]

Get the buffer length.

Pure virtual function to get the buffer length.

Returns:
buffer length

Implements RTC::BufferBase< DataType >.

References RTC::RingBuffer< DataType >::Guard.

Referenced by RTC::RingBuffer< DataType >::read(), and RTC::RingBuffer< DataType >::write().

template<class DataType >
virtual ReturnCode RTC::RingBuffer< DataType >::advanceWptr ( long int  n = 1  )  [inline, virtual]

Get the buffer length.

Pure virtual function to get the buffer length.

Returns:
buffer length

Implements RTC::BufferBase< DataType >.

References RTC::RingBuffer< DataType >::Guard.

Referenced by RTC::RingBuffer< DataType >::write().

template<class DataType >
virtual bool RTC::RingBuffer< DataType >::empty ( void   )  const [inline, virtual]

Check on whether the buffer is empty.

Pure virtual function to check on whether the buffer is empty.

Returns:
True if the buffer is empty, else false.

Implements RTC::BufferBase< DataType >.

References RTC::RingBuffer< DataType >::Guard.

Referenced by RTC::RingBuffer< DataType >::read(), and RTC::RingBuffer< DataType >::write().

template<class DataType >
virtual bool RTC::RingBuffer< DataType >::full ( void   )  const [inline, virtual]

Check on whether the buffer is full.

Pure virtual function to check on whether the buffer is full.

Returns:
True if the buffer is full, else false.

Implements RTC::BufferBase< DataType >.

References RTC::RingBuffer< DataType >::Guard.

Referenced by RTC::RingBuffer< DataType >::read(), and RTC::RingBuffer< DataType >::write().

template<class DataType >
virtual DataType& RTC::RingBuffer< DataType >::get ( void   )  [inline, virtual]

Reading data from the buffer.

Returns:
Read data

Implements RTC::BufferBase< DataType >.

References RTC::RingBuffer< DataType >::Guard.

template<class DataType >
virtual ReturnCode RTC::RingBuffer< DataType >::get ( DataType &  value  )  [inline, virtual]

Write data into the buffer.

Pure virtual function to write data into the buffer.

Parameters:
value Target data to write.
Returns:
Result of having written in data (true:Successful, false:Failed)

Implements RTC::BufferBase< DataType >.

References RTC::RingBuffer< DataType >::Guard.

template<class DataType >
virtual void RTC::RingBuffer< DataType >::init ( const coil::Properties prop  )  [inline, virtual]

Set the buffer.

Implements RTC::BufferBase< DataType >.

template<class DataType >
virtual ReturnCode RTC::RingBuffer< DataType >::length ( size_t  n  )  [inline, virtual]

Get the buffer length.

Pure virtual function to get the buffer length.

Returns:
buffer length

Implements RTC::BufferBase< DataType >.

References RTC::RingBuffer< DataType >::reset().

template<class DataType >
virtual size_t RTC::RingBuffer< DataType >::length ( void   )  const [inline, virtual]

Get the buffer length.

Get the buffer length.

Returns:
Buffer length

Implements RTC::BufferBase< DataType >.

References RTC::RingBuffer< DataType >::Guard.

template<class DataType >
virtual ReturnCode RTC::RingBuffer< DataType >::put ( const DataType &  value  )  [inline, virtual]

Write data into the buffer.

Pure virtual function to write data into the buffer. Always BUFFER_OK will be returned in this implementation.

Parameters:
value Target data to write.
Returns:
BUFFER_OK: Successful BUFFER_ERROR: Failed

Implements RTC::BufferBase< DataType >.

References RTC::RingBuffer< DataType >::Guard.

Referenced by RTC::RingBuffer< DataType >::write().

template<class DataType >
virtual ReturnCode RTC::RingBuffer< DataType >::read ( DataType &  value,
long int  sec = -1,
long int  nsec = 0 
) [inline, virtual]

Readout data from the buffer.

Readout data stored into the buffer.

Parameters:
value Readout data
Returns:
Readout result (Always true: readout success is returned)

Implements RTC::BufferBase< DataType >.

References RTC::RingBuffer< DataType >::advanceRptr(), RTC::RingBuffer< DataType >::empty(), RTC::RingBuffer< DataType >::full(), RTC::RingBuffer< DataType >::Guard, coil::TimeValue::sec(), and coil::TimeValue::usec().

template<class DataType >
virtual size_t RTC::RingBuffer< DataType >::readable (  )  const [inline, virtual]

Write data into the buffer.

Pure virtual function to write data into the buffer.

Parameters:
value Target data to write.
Returns:
Result of having written in data (true:Successful, false:Failed)

Implements RTC::BufferBase< DataType >.

References RTC::RingBuffer< DataType >::Guard.

template<class DataType >
virtual ReturnCode RTC::RingBuffer< DataType >::reset (  )  [inline, virtual]

Get the buffer length.

Pure virtual function to get the buffer length.

Returns:
buffer length

Implements RTC::BufferBase< DataType >.

References RTC::RingBuffer< DataType >::Guard.

Referenced by RTC::RingBuffer< DataType >::length(), and RTC::RingBuffer< DataType >::RingBuffer().

template<class DataType >
virtual DataType* RTC::RingBuffer< DataType >::rptr ( long int  n = 0  )  [inline, virtual]

Get the buffer length.

Pure virtual function to get the buffer length.

Returns:
buffer length

Implements RTC::BufferBase< DataType >.

References RTC::RingBuffer< DataType >::Guard.

template<class DataType >
virtual DataType* RTC::RingBuffer< DataType >::wptr ( long int  n = 0  )  [inline, virtual]

Get the buffer length.

Pure virtual function to get the buffer length.

Returns:
buffer length

Implements RTC::BufferBase< DataType >.

References RTC::RingBuffer< DataType >::Guard.

template<class DataType >
virtual size_t RTC::RingBuffer< DataType >::writable (  )  const [inline, virtual]

Write data into the buffer.

Pure virtual function to write data into the buffer.

Parameters:
value Target data to write.
Returns:
Result of having written in data (true:Successful, false:Failed)

Implements RTC::BufferBase< DataType >.

References RTC::RingBuffer< DataType >::Guard.

template<class DataType >
virtual ReturnCode RTC::RingBuffer< DataType >::write ( const DataType &  value,
long int  sec = -1,
long int  nsec = 0 
) [inline, virtual]

Write data into the buffer.

Write data which is given argument into the buffer.

Parameters:
value Target data for writing
Returns:
Writing result (Always true: writing success is returned)

Implements RTC::BufferBase< DataType >.

References RTC::RingBuffer< DataType >::advanceRptr(), RTC::RingBuffer< DataType >::advanceWptr(), RTC::RingBuffer< DataType >::empty(), RTC::RingBuffer< DataType >::full(), RTC::RingBuffer< DataType >::Guard, RTC::RingBuffer< DataType >::put(), coil::TimeValue::sec(), and coil::TimeValue::usec().


Member Data Documentation

template<class DataType >
BUFFERSTATUS_ENUM typedef coil::Guard<coil::Mutex> RTC::RingBuffer< DataType >::Guard
Generated on Fri Oct 28 18:31:19 2016 for OpenRTM-aist by  doxygen 1.6.3