truck-code
Public Member Functions | List of all members
CircularBuffer Class Reference

#include <buffer.h>

Public Member Functions

void init (int max_data, int item_size)
 
int get_circular_index ()
 
int empty ()
 
void add (void *new_msg)
 
void * read_first ()
 
void * pop_first ()
 
int get_count ()
 

Detailed Description

Circular buffer type used with data item saving.

Data from last "data_size" samples can be saved in this structure.

Member Function Documentation

◆ add()

void CircularBuffer::add ( void *  new_msg)

Add a new message to the message buffer.

Parameters
new_mgthe new message that should be added to the buffer

◆ empty()

int CircularBuffer::empty ( )

Remove all elements from the circular buffer.

Used to throw out buffered input when a receiver first connects to the driver.

Returns
number of elements that were removed from the queue

◆ get_circular_index()

int CircularBuffer::get_circular_index ( )

Return the index of the most recent element to be added the buffer.

This method also increments the value of data_start in the buffer. This is used to get the index of insertion into the circular buffer's data array.

Returns
index of the most recent element to be added the buffer.

◆ get_count()

int CircularBuffer::get_count ( )

Return the number of elements in the buffer.

◆ init()

void CircularBuffer::init ( int  max_data,
int  item_size 
)

Initialize the circular buffer.

This method is used to set up buffer of items of a type defined by call program. sizeof(the_type_name) is used for the item_size parameter. The most recent max_data items will be saved.

Parameters
max_datamaximum number of elements that can be stored in the buffer
item_sizesize of a single element in data_array

◆ pop_first()

void * CircularBuffer::pop_first ( )

Pop the first element from the the message buffer.

Returns
the first message

◆ read_first()

void * CircularBuffer::read_first ( )

Read the first element from the the message buffer.

Returns
the first message

The documentation for this class was generated from the following files: