-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLockfreeSPSCBuffer.h
230 lines (201 loc) · 5.16 KB
/
LockfreeSPSCBuffer.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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
#pragma once
#include <atomic>
#include <iostream>
#include <vector>
#include <fstream>
#include <new>
#include <utility>
template< class T,
unsigned int align,
template<class,unsigned int> class BufferAllocPolicy>
class LockfreeSPSCBuffer : private BufferAllocPolicy<T, align>
{
public:
LockfreeSPSCBuffer(int NoofTUnits) :begin(0), end(0), sizeinTUnits(NoofTUnits){
unsigned int sizeinbytes;
sizeinbytes = NoofTUnits*sizeof(T);
try {
circular_buffer = this->BufferAlloc(sizeinbytes);
}
catch (std::bad_alloc& ba) {
std::cerr << "allocation failed for size " << sizeinbytes << "\n" << ba.what() <<std::endl;
}
buffered.store(0, std::memory_order_relaxed);
baseptr = GetCircBufferBasePtr();
eos_ = false;
writebusy = false;
readbusy = false;
}
bool AquireWritePtr(T*& writeptr) {
auto index = GetCircularBufferWriteOffset();
if (index == -1)return false;
if (writebusy) {
std::cout << "you have to release the write pointer" << "\n";
return false;
}
writeptr = index + baseptr;
writebusy = true;
return true;
}
bool AquireWritePtr(std::pair<T*, int>&wrinfo) {
int noofTunitstowr;
auto index = GetCircularBufferWriteOffset(noofTunitstowr);
if(index == -1)
return false;
if(writebusy) {
std::cout << "you have to release the write pointer" << "\n";
return false;
}
wrinfo.first=index + baseptr;
wrinfo.second=noofTunitstowr;
writebusy = true;
return true;
}
void ReleaseWritePtr(int objswritten) {
if (!writebusy) {
std::cout << "aquire writeptr before releasing" << "\n";
return;
}
IncrementCircularBufferWriteOffset(objswritten);
writebusy = false;
}
bool AquireReadPtr(std::pair<T*, int>& rinfo) {
auto rsize = GetCircularBufferReadSize();
auto roffset = GetCircularBufferReadOffset();
if (rsize == 0)return false;
if (readbusy) {
std::cout << "you have to release readptr" << "\n";
return false;
}
rinfo.first = roffset + baseptr;
rinfo.second = rsize;
readbusy = true;
return true;
}
void ReleaseReadPtr(int objsread) {
if (!readbusy) {
std::cout << "you have to first aquire read ptr" << "\n";
return;
}
SetCircularBufferReadOffset(objsread);
readbusy = false;
}
void ResetCircularBuffer(){
buffered.store(0, std::memory_order_relaxed);
begin = 0;
end = 0;
}
void SetEOS() {
eos_ = true;
}
bool GetEOS() {
return eos_;
}
LockfreeSPSCBuffer(const LockfreeSPSCBuffer&) = delete;
LockfreeSPSCBuffer& operator= (const LockfreeSPSCBuffer&) = delete;
~LockfreeSPSCBuffer() {
DestroyCB();
}
private:
T* GetCircBufferBasePtr(){
return circular_buffer;
}
int GetCircularBufferWriteOffset(){//0=means buffer is full overflow condition
int temp;
temp = buffered.load(std::memory_order_acquire);
if (temp == sizeinTUnits)
return -1;
else
return end;
}
int GetCircularBufferWriteOffset(int& NoOfTUnitsEmpty){
int temp;
temp = buffered.load(std::memory_order_acquire);
if (temp == sizeinTUnits)
return -1;
else{
NoOfTUnitsEmpty = sizeinTUnits-temp;
if((NoOfTUnitsEmpty + end) > sizeinTUnits){ //readoffset < writeoffset return T units upto end of buffer
NoOfTUnitsEmpty=sizeinTUnits-end;
}
return end;
}
}
void IncrementCircularBufferWriteOffset(int temp){ //temp->no of T units to advance the write pointer with.
end = (end + temp) % sizeinTUnits; //sizeinTUnits
buffered.fetch_add(temp, std::memory_order_relaxed);
// cout<<"end::"<<end<<std::endl;
}
int GetCircularBufferReadSize(){ //if retval 0-: underflow condition
int temp;
//int sizetosend = 0;
temp = buffered.load(std::memory_order_consume);
if((temp + begin) > sizeinTUnits){
temp = sizeinTUnits-begin;
}
return temp;
}
int GetCircularBufferReadOffset(){
return begin;
}
void SetCircularBufferReadOffset(int TunitsConsumed){
begin = (begin + TunitsConsumed) % sizeinTUnits;
buffered.fetch_sub(TunitsConsumed, std::memory_order_relaxed);
}
int getsize(){
return sizeinTUnits;
}
void DestroyCB(){
this->BufferRelease(circular_buffer);
}
T* circular_buffer;
int sizeinTUnits;
std::atomic<int> buffered;
std::atomic<bool> eos_;
bool writebusy;
bool readbusy;
T* baseptr;
int begin, end;
};
//allocation policy class
template <class T, unsigned int align>
class BufferAllocUsingNew
{
public:
T* BufferAlloc(unsigned int size)
{
unsigned int minallocvalue;
unsigned int nooflcmchunks;
unsigned int sizeofT = sizeof(T);
minallocvalue = gcd(align, sizeofT); //
minallocvalue = (align*sizeofT) / minallocvalue; //lcm
if (size%minallocvalue) {
nooflcmchunks = size / minallocvalue;
size = minallocvalue*(nooflcmchunks + 1);
}
SizeAllocated = size;
return new T[size / sizeofT];
}
int BufferRelease(T* ptr)
{
delete[] ptr;
return 0;
}
private:
unsigned int gcd(unsigned int x, unsigned int y)
{
if (x == 0) {
return y;
}
while (y != 0) {
if (x > y) {
x = x - y;
}
else {
y = y - x;
}
}
return x;
}
unsigned long SizeAllocated;
};