fsfw/container/FIFO.h

34 lines
808 B
C
Raw Normal View History

2020-07-06 13:26:58 +02:00
#ifndef FRAMEWORK_CONTAINER_FIFO_H_
#define FRAMEWORK_CONTAINER_FIFO_H_
#include "FIFOBase.h"
2020-07-07 17:44:15 +02:00
#include <array>
2020-07-06 13:38:11 +02:00
2020-04-23 15:03:55 +02:00
/**
2020-07-07 17:44:15 +02:00
* @brief Simple First-In-First-Out data structure with size fixed at
* compile time
2020-07-06 13:40:13 +02:00
* @details
2020-07-07 17:44:15 +02:00
* Performs no dynamic memory allocation.
2020-07-06 13:40:13 +02:00
* The public interface of FIFOBase exposes the user interface for the FIFO.
2020-04-23 15:03:55 +02:00
* @tparam T Entry Type
* @tparam capacity Maximum capacity
*/
2020-07-07 17:44:15 +02:00
template<typename T, size_t capacity>
2020-07-06 13:26:58 +02:00
class FIFO: public FIFOBase<T> {
public:
2020-07-28 13:13:40 +02:00
FIFO(): FIFOBase<T>(fifoArray.data(), capacity) {};
/**
* @brief Custom copy constructor to set pointer correctly.
* @param other
*/
FIFO(const FIFO& other): FIFOBase<T>(other) {
this->setData(fifoArray.data());
}
2020-07-06 13:26:58 +02:00
private:
2020-07-28 13:13:40 +02:00
std::array<T, capacity> fifoArray;
};
2020-07-07 17:44:15 +02:00
#endif /* FRAMEWORK_CONTAINERS_STATICFIFO_H_ */