mirror of
https://github.com/JorjBauer/aiie.git
synced 2024-10-31 09:15:51 +00:00
38 lines
649 B
C++
38 lines
649 B
C++
#ifndef __LRINGBUFFER_H
|
|
#define __LRINGBUFFER_H
|
|
|
|
#include <stdint.h>
|
|
|
|
class LRingBuffer {
|
|
public:
|
|
LRingBuffer(int16_t length);
|
|
~LRingBuffer();
|
|
|
|
bool Serialize(int8_t fd);
|
|
bool Deserialize(int8_t fd);
|
|
|
|
void clear();
|
|
|
|
bool isFull();
|
|
bool hasData();
|
|
bool addByte(uint8_t b);
|
|
bool addBytes(uint8_t *b, int count);
|
|
bool replaceByte(uint8_t b);
|
|
uint8_t consumeByte();
|
|
uint8_t peek(int16_t idx);
|
|
uint16_t getPeekCursor();
|
|
void setPeekCursor(int16_t idx);
|
|
void resetPeekCursor();
|
|
uint8_t peekNext();
|
|
int16_t count();
|
|
|
|
private:
|
|
uint8_t *buffer;
|
|
int16_t max;
|
|
int16_t ptr;
|
|
int16_t fill;
|
|
int16_t cursor;
|
|
};
|
|
|
|
#endif
|