-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathBip.h
221 lines (183 loc) · 4.52 KB
/
Bip.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
/*
* Bi-partitioned circular buffer.
*/
#ifndef BIP_H_INCLUDED
#define BIP_H_INCLUDED
#include <cstdint>
#include <cstring>
namespace bip {
namespace internal {
template <typename T>
struct Partition {
inline Partition(T* const* lower, const T* const* upper) noexcept;
inline void put(const T* data, std::size_t size) noexcept;
inline void get(T* data, std::size_t size) noexcept;
inline void skip(std::size_t size) noexcept;
inline std::size_t avail() const noexcept;
inline std::size_t free() const noexcept;
inline void reset() noexcept;
T* begin;
T* end;
private:
T* const* m_lower;
const T* const* m_upper;
}; // struct Partition
} // namespace internal
template <typename T>
class BIP {
public:
/*
* Construct a BIP buffer at memory block 'buf', with total elements count 'size'
*/
BIP(T* buf, std::size_t size) noexcept;
/*
* Attempt to write 'size' elements from 'data'. Returns the count of actual elements written
*/
std::size_t put(const T* data, std::size_t size) noexcept;
/*
* Attempt to read 'size' elements into 'data'. Returns the count of actual elements read
*/
std::size_t get(T* data, std::size_t size) noexcept;
/*
* Attempt to skip 'size' elements. Returns the count of actual elements skipped
*/
inline std::size_t skip(std::size_t size) noexcept;
/*
* Returns how many elements are available for a single read
*/
inline std::size_t avail() const noexcept;
/*
* Returns how many elements can be written in a single write
*/
inline std::size_t free() const noexcept;
/*
* Returns true if there are no elements available for read
*/
inline bool empty() const noexcept;
/*
* Returns true if the buffer can't accept more elements
*/
inline bool full() const noexcept;
/*
* Returns true if there are any elements to be read
*/
inline bool have() const noexcept;
private:
T* const lower;
const T* const upper;
internal::Partition<T> A;
internal::Partition<T> B;
internal::Partition<T>* Get;
internal::Partition<T>* Put;
internal::Partition<T>* NextGet;
internal::Partition<T>* NextPut;
}; // class BIP
} // namespace bip
namespace bip {
template <typename T>
BIP<T>::BIP(T* buf, std::size_t size) noexcept :
lower{buf},
upper{buf + size},
A{&lower, &B.begin},
B{&A.end, &upper},
Get{&B},
Put{&B},
NextGet{&A},
NextPut{&A} {
}
template <typename T>
std::size_t BIP<T>::put(const T* data, std::size_t size) noexcept {
const auto f = free();
if (size >= f) {
Put->put(data, f);
NextGet = Put;
Put = NextPut;
return f;
}
Put->put(data, size);
return size;
}
template <typename T>
std::size_t BIP<T>::get(T* data, std::size_t size) noexcept {
const auto a = avail();
if (size >= a) {
Get->get(data, a);
Get->reset();
NextPut = Get;
Get = NextGet;
return a;
}
Get->get(data, size);
return size;
}
template <typename T>
std::size_t BIP<T>::skip(std::size_t size) noexcept {
const auto a = avail();
if (size >= a) {
Get->skip(a);
Get->reset();
NextPut = Get;
Get = NextGet;
return a;
}
Get->skip(size);
return size;
}
template <typename T>
std::size_t BIP<T>::avail() const noexcept {
return Get->avail();
}
template <typename T>
std::size_t BIP<T>::free() const noexcept {
return Put->free();
}
template <typename T>
bool BIP<T>::empty() const noexcept {
return avail() == 0;
}
template <typename T>
bool BIP<T>::full() const noexcept {
return free() == 0;
}
template <typename T>
bool BIP<T>::have() const noexcept {
return !empty();
}
namespace internal {
template <typename T>
Partition<T>::Partition(T* const* lower, const T* const* upper) noexcept :
begin{},
end{},
m_lower{lower},
m_upper{upper} {
reset();
}
template <typename T>
void Partition<T>::put(const T* data, std::size_t size) noexcept {
memcpy(end, data, size * sizeof(T));
end += size;
}
template <typename T>
void Partition<T>::get(T* data, std::size_t size) noexcept {
memcpy(data, begin, size * sizeof(T));
begin += size;
}
template <typename T>
void Partition<T>::skip(std::size_t size) noexcept {
begin += size;
}
template <typename T>
std::size_t Partition<T>::avail() const noexcept {
return end - begin;
}
template <typename T>
std::size_t Partition<T>::free() const noexcept {
return *m_upper - end;
}
template <typename T>
void Partition<T>::reset() noexcept {
begin = end = *m_lower;
}
} // namespace internal
} // namespace bip
#endif // BIP_H_INCLUDED