You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
196 lines
4.6 KiB
196 lines
4.6 KiB
/**************************************************************************** |
|
* |
|
* Copyright (C) 2015 PX4 Development Team. All rights reserved. |
|
* |
|
* Redistribution and use in source and binary forms, with or without |
|
* modification, are permitted provided that the following conditions |
|
* are met: |
|
* |
|
* 1. Redistributions of source code must retain the above copyright |
|
* notice, this list of conditions and the following disclaimer. |
|
* 2. Redistributions in binary form must reproduce the above copyright |
|
* notice, this list of conditions and the following disclaimer in |
|
* the documentation and/or other materials provided with the |
|
* distribution. |
|
* 3. Neither the name PX4 nor the names of its contributors may be |
|
* used to endorse or promote products derived from this software |
|
* without specific prior written permission. |
|
* |
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
|
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
|
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS |
|
* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE |
|
* COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, |
|
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, |
|
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS |
|
* OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED |
|
* AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN |
|
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
|
* POSSIBILITY OF SUCH DAMAGE. |
|
* |
|
****************************************************************************/ |
|
|
|
/** |
|
* @file RingBuffer.h |
|
* @author Roman Bapst <bapstroman@gmail.com> |
|
* Template RingBuffer. |
|
*/ |
|
|
|
#include <inttypes.h> |
|
#include <cstdio> |
|
#include <cstring> |
|
|
|
template <typename data_type> |
|
class RingBuffer |
|
{ |
|
public: |
|
RingBuffer() |
|
{ |
|
_buffer = NULL; |
|
_head = _tail = _size = 0; |
|
_first_write = true; |
|
} |
|
~RingBuffer() { delete[] _buffer; } |
|
|
|
bool allocate(int size) |
|
{ |
|
if (size <= 0) { |
|
return false; |
|
} |
|
|
|
if (_buffer != NULL) { |
|
delete[] _buffer; |
|
} |
|
|
|
_buffer = new data_type[size]; |
|
|
|
if (_buffer == NULL) { |
|
return false; |
|
} |
|
|
|
_size = size; |
|
// set the time elements to zero so that bad data is not retrieved from the buffers |
|
for (unsigned index = 0; index < _size; index++) { |
|
_buffer[index].time_us = 0; |
|
} |
|
_first_write = true; |
|
return true; |
|
} |
|
|
|
void unallocate() |
|
{ |
|
if (_buffer != NULL) { |
|
delete[] _buffer; |
|
} |
|
} |
|
|
|
inline void push(data_type sample) |
|
{ |
|
int head_new = _head; |
|
|
|
if (_first_write) { |
|
head_new = _head; |
|
|
|
} else { |
|
head_new = (_head + 1) % _size; |
|
} |
|
|
|
_buffer[head_new] = sample; |
|
_head = head_new; |
|
|
|
// move tail if we overwrite it |
|
if (_head == _tail && !_first_write) { |
|
_tail = (_tail + 1) % _size; |
|
|
|
} else { |
|
_first_write = false; |
|
} |
|
} |
|
|
|
inline data_type get_oldest() |
|
{ |
|
return _buffer[_tail]; |
|
} |
|
|
|
unsigned get_oldest_index() |
|
{ |
|
return _tail; |
|
} |
|
|
|
inline data_type get_newest() |
|
{ |
|
return _buffer[_head]; |
|
} |
|
|
|
inline bool pop_first_older_than(uint64_t timestamp, data_type *sample) |
|
{ |
|
// start looking from newest observation data |
|
for (unsigned i = 0; i < _size; i++) { |
|
int index = (_head - i); |
|
index = index < 0 ? _size + index : index; |
|
|
|
if (timestamp >= _buffer[index].time_us && timestamp - _buffer[index].time_us < 100000) { |
|
|
|
// TODO Re-evaluate the static cast and usage patterns |
|
memcpy(static_cast<void *>(sample), static_cast<void *>(&_buffer[index]), sizeof(*sample)); |
|
|
|
// Now we can set the tail to the item which comes after the one we removed |
|
// since we don't want to have any older data in the buffer |
|
if (index == static_cast<int>(_head)) { |
|
_tail = _head; |
|
_first_write = true; |
|
|
|
} else { |
|
_tail = (index + 1) % _size; |
|
} |
|
|
|
_buffer[index].time_us = 0; |
|
|
|
return true; |
|
} |
|
|
|
if (index == static_cast<int>(_tail)) { |
|
// we have reached the tail and haven't got a match |
|
return false; |
|
} |
|
} |
|
|
|
return false; |
|
} |
|
|
|
data_type &operator[](unsigned index) |
|
{ |
|
return _buffer[index]; |
|
} |
|
|
|
// return data at the specified index |
|
inline data_type get_from_index(unsigned index) |
|
{ |
|
if (index >= _size) { |
|
index = _size-1; |
|
} |
|
return _buffer[index]; |
|
} |
|
|
|
// push data to the specified index |
|
inline void push_to_index(unsigned index, data_type sample) |
|
{ |
|
if (index >= _size) { |
|
index = _size-1; |
|
} |
|
_buffer[index] = sample; |
|
} |
|
|
|
// return the length of the buffer |
|
unsigned get_length() |
|
{ |
|
return _size; |
|
} |
|
|
|
private: |
|
data_type *_buffer; |
|
unsigned _head, _tail, _size; |
|
bool _first_write; |
|
|
|
};
|
|
|