px4-firmware/EKF/RingBuffer.h

162 lines
3.9 KiB
C
Raw Normal View History

2015-11-19 13:08:04 -04:00
/****************************************************************************
*
2015-12-06 07:55:11 -04:00
* Copyright (C) 2015 PX4 Development Team. All rights reserved.
2015-11-19 13:08:04 -04:00
*
* 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.
*/
2015-12-06 07:55:11 -04:00
#include <cstdio>
#include <cstring>
2015-11-19 13:08:04 -04:00
template <typename data_type>
class RingBuffer
{
public:
2015-12-06 07:55:11 -04:00
RingBuffer()
{
_buffer = NULL;
_head = _tail = _size = 0;
2015-12-07 17:40:20 -04:00
_first_write = true;
2015-12-06 07:55:11 -04:00
}
2015-11-19 13:08:04 -04:00
~RingBuffer() {delete _buffer;}
2015-12-06 07:55:11 -04:00
bool allocate(int size)
2015-11-19 13:08:04 -04:00
{
2015-12-06 07:55:11 -04:00
if (size <= 0) {
2015-11-19 13:08:04 -04:00
return false;
}
2015-12-06 07:55:11 -04:00
if (_buffer != NULL) {
delete _buffer;
}
2015-11-19 13:08:04 -04:00
_buffer = new data_type[size];
if (_buffer == NULL) {
return false;
}
_size = size;
2015-12-07 17:40:20 -04:00
_first_write = true;
2015-11-19 13:08:04 -04:00
return true;
}
2015-12-06 07:55:11 -04:00
inline void push(data_type sample, bool debug = false)
2015-11-19 13:08:04 -04:00
{
2015-12-06 07:55:11 -04:00
if (debug) {
printf("elapsed %i\n", sample.time_us - _time_last);
_time_last = sample.time_us;
}
2015-12-07 17:40:20 -04:00
int head_new = _head;
if (_first_write) {
head_new = _head;
} else {
head_new = (_head + 1) % _size;
}
2015-12-06 07:55:11 -04:00
_buffer[head_new] = sample;
_head = head_new;
2015-11-19 13:08:04 -04:00
// move tail if we overwrite it
2015-12-07 17:40:20 -04:00
if (_head == _tail && !_first_write) {
2015-11-19 13:08:04 -04:00
_tail = (_tail + 1) % _size;
2015-12-07 17:40:20 -04:00
} else {
_first_write = false;
2015-11-19 13:08:04 -04:00
}
}
inline data_type get_oldest()
{
return _buffer[_tail];
}
2015-12-06 07:55:11 -04:00
inline data_type get_newest()
{
return _buffer[_head];
}
inline bool pop_first_older_than(uint64_t timestamp, data_type *sample)
2015-11-19 13:08:04 -04:00
{
2015-12-06 07:55:11 -04:00
// start looking from newest observation data
2015-11-19 13:08:04 -04:00
for (unsigned i = 0; i < _size; i++) {
2015-12-06 07:55:11 -04:00
int index = (_head - i);
index = index < 0 ? _size + index : index;
if (timestamp >= _buffer[index].time_us && timestamp - _buffer[index].time_us < 100000) {
memcpy(sample, &_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 == _head) {
_tail = _head;
2015-12-07 17:40:20 -04:00
_first_write = true;
2015-12-06 07:55:11 -04:00
} else {
_tail = (index + 1) % _size;
}
_buffer[index].time_us = 0;
2015-11-19 13:08:04 -04:00
return true;
}
2015-12-06 07:55:11 -04:00
if (index == _tail) {
// we have reached the tail and haven't got a match
2015-11-19 13:08:04 -04:00
return false;
}
}
return false;
}
data_type &operator[](unsigned index)
{
return _buffer[index];
}
private:
data_type *_buffer;
unsigned _head, _tail, _size;
2015-12-07 17:40:20 -04:00
bool _first_write;
2015-12-06 07:55:11 -04:00
// debug
uint64_t _time_last;
};