-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathBuffer.h
62 lines (48 loc) · 1.35 KB
/
Buffer.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
#pragma once
#include <cstdint>
// простейший кольцевой буфер.
// проверки при добавлении/извлечении данных отсутствуют, надо проверять отдельно!!
template <typename Type = char, int Size = 32>
class CircularBuffer
{
private:
Type buff[Size];
volatile uint32_t putIdx;
volatile uint32_t getIdx;
public:
CircularBuffer()
{
Flush ();
}
void Put (const Type & data)
{
buff[putIdx] = data;
putIdx = (putIdx + 1) % Size;
}
Type Get ()
{
Type data = buff[getIdx];
getIdx = (getIdx + 1) % Size;
return data;
}
Type & View ()
{
return buff[getIdx];
}
uint32_t Avail () const
{
int32_t avail = putIdx - getIdx;
if (avail < 0) avail += Size;
return avail;
}
uint32_t Free () const
{
int32_t free = getIdx - putIdx - 1;
if (free < 0) free += Size;
return free;
}
void Flush ()
{
putIdx = getIdx = 0;
}
};