forked from JvanKatwijk/dab-cmdline
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ringbuffer.h
321 lines (290 loc) · 11.2 KB
/
ringbuffer.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
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
#
/*
* $Id: pa_ringbuffer.c 1738 2011-08-18 11:47:28Z rossb $
* Portable Audio I/O Library
* Ring Buffer utility.
*
* Author: Phil Burk, http://www.softsynth.com
* modified for SMP safety on Mac OS X by Bjorn Roche
* modified for SMP safety on Linux by Leland Lucius
* also, allowed for const where possible
* modified for multiple-byte-sized data elements by Sven Fischer
*
* Note that this is safe only for a single-thread reader and a
* single-thread writer.
*
* This program uses the PortAudio Portable Audio Library.
* For more information see: http://www.portaudio.com
* Copyright (c) 1999-2000 Ross Bencina and Phil Burk
*
* Permission is hereby granted, free of charge, to any person obtaining
* a copy of this software and associated documentation files
* (the "Software"), to deal in the Software without restriction,
* including without limitation the rights to use, copy, modify, merge,
* publish, distribute, sublicense, and/or sell copies of the Software,
* and to permit persons to whom the Software is furnished to do so,
* subject to the following conditions:
*
* The above copyright notice and this permission notice shall be
* included in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR
* ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF
* CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
/*
*
* Copyright (C) 2008, 2009, 2010
* Jan van Katwijk ([email protected])
* Lazy Chair Computing
*
* The ringbuffer here is a rewrite of the ringbuffer used in the PA code
* All rights remain with their owners
* This file is part of the SDR-J.
* Many of the ideas as implemented in SDR-J are derived from
* other work, made available through the GNU general Public License.
* All copyrights of the original authors are recognized.
*
* SDR-J is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* SDR-J is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with ESDR; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#ifndef __RINGBUFFER
#define __RINGBUFFER
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <stdint.h>
/*
* a simple ringbuffer, lockfree, however only for a
* single reader and a single writer.
* Mostly used for getting samples from or to the soundcard
*/
#if defined(__APPLE__)
# include <libkern/OSAtomic.h>
/* Here are the memory barrier functions. Mac OS X only provides
full memory barriers, so the three types of barriers are the same,
however, these barriers are superior to compiler-based ones. */
# define PaUtil_FullMemoryBarrier() OSMemoryBarrier()
# define PaUtil_ReadMemoryBarrier() OSMemoryBarrier()
# define PaUtil_WriteMemoryBarrier() OSMemoryBarrier()
#elif defined(__GNUC__)
/* GCC >= 4.1 has built-in intrinsics. We'll use those */
# if (__GNUC__ > 4) || (__GNUC__ == 4 && __GNUC_MINOR__ >= 1)
# define PaUtil_FullMemoryBarrier() __sync_synchronize()
# define PaUtil_ReadMemoryBarrier() __sync_synchronize()
# define PaUtil_WriteMemoryBarrier() __sync_synchronize()
/* as a fallback, GCC understands volatile asm and "memory" to mean it
* should not reorder memory read/writes */
# elif defined( __PPC__ )
# define PaUtil_FullMemoryBarrier() asm volatile("sync":::"memory")
# define PaUtil_ReadMemoryBarrier() asm volatile("sync":::"memory")
# define PaUtil_WriteMemoryBarrier() asm volatile("sync":::"memory")
# elif defined( __i386__ ) || defined( __i486__ ) || defined( __i586__ ) || defined( __i686__ ) || defined( __x86_64__ )
# define PaUtil_FullMemoryBarrier() asm volatile("mfence":::"memory")
# define PaUtil_ReadMemoryBarrier() asm volatile("lfence":::"memory")
# define PaUtil_WriteMemoryBarrier() asm volatile("sfence":::"memory")
# else
# ifdef ALLOW_SMP_DANGERS
# warning Memory barriers not defined on this system or system unknown
# warning For SMP safety, you should fix this.
# define PaUtil_FullMemoryBarrier()
# define PaUtil_ReadMemoryBarrier()
# define PaUtil_WriteMemoryBarrier()
# else
# error Memory barriers are not defined on this system. You can still compile by defining ALLOW_SMP_DANGERS, but SMP safety will not be guaranteed.
# endif
# endif
#else
# ifdef ALLOW_SMP_DANGERS
# warning Memory barriers not defined on this system or system unknown
# warning For SMP safety, you should fix this.
# define PaUtil_FullMemoryBarrier()
# define PaUtil_ReadMemoryBarrier()
# define PaUtil_WriteMemoryBarrier()
# else
# error Memory barriers are not defined on this system. You can still compile by defining ALLOW_SMP_DANGERS, but SMP safety will not be guaranteed.
# endif
#endif
template <class elementtype>
class RingBuffer {
private:
uint32_t bufferSize;
volatile uint32_t writeIndex;
volatile uint32_t readIndex;
uint32_t bigMask;
uint32_t smallMask;
char *buffer;
public:
RingBuffer (uint32_t elementCount) {
if (((elementCount - 1) & elementCount) != 0)
elementCount = 2 * 16384; /* default */
bufferSize = elementCount;
buffer = new char [2 * bufferSize * sizeof (elementtype)];
writeIndex = 0;
readIndex = 0;
smallMask = (elementCount)- 1;
bigMask = (elementCount * 2) - 1;
}
~RingBuffer () {
delete[] buffer;
}
/*
* functions for checking available data for reading and space
* for writing
*/
int32_t GetRingBufferReadAvailable (void) {
return (writeIndex - readIndex) & bigMask;
}
int32_t ReadSpace (void){
return GetRingBufferReadAvailable ();
}
int32_t GetRingBufferWriteAvailable (void) {
return bufferSize - GetRingBufferReadAvailable ();
}
int32_t WriteSpace (void) {
return GetRingBufferWriteAvailable ();
}
void FlushRingBuffer () {
writeIndex = 0;
readIndex = 0;
}
/* ensure that previous writes are seen before we update the write index
(write after write)
*/
int32_t AdvanceRingBufferWriteIndex (int32_t elementCount) {
PaUtil_WriteMemoryBarrier();
return writeIndex = (writeIndex + elementCount) & bigMask;
}
/* ensure that previous reads (copies out of the ring buffer) are
* always completed before updating (writing) the read index.
* (write-after-read) => full barrier
*/
int32_t AdvanceRingBufferReadIndex (int32_t elementCount) {
PaUtil_FullMemoryBarrier();
return readIndex = (readIndex + elementCount) & bigMask;
}
/***************************************************************************
** Get address of region(s) to which we can write data.
** If the region is contiguous, size2 will be zero.
** If non-contiguous, size2 will be the size of second region.
** Returns room available to be written or elementCount, whichever is smaller.
*/
int32_t GetRingBufferWriteRegions (uint32_t elementCount,
void **dataPtr1, int32_t *sizePtr1,
void **dataPtr2, int32_t *sizePtr2 ) {
uint32_t index;
uint32_t available = GetRingBufferWriteAvailable ();
if (elementCount > available)
elementCount = available;
/* Check to see if write is not contiguous. */
index = writeIndex & smallMask;
if ((index + elementCount) > bufferSize ) {
/* Write data in two blocks that wrap the buffer. */
int32_t firstHalf = bufferSize - index;
*dataPtr1 = &buffer[index * sizeof(elementtype)];
*sizePtr1 = firstHalf;
*dataPtr2 = &buffer [0];
*sizePtr2 = elementCount - firstHalf;
}
else { // fits
*dataPtr1 = &buffer [index * sizeof(elementtype)];
*sizePtr1 = elementCount;
*dataPtr2 = NULL;
*sizePtr2 = 0;
}
if (available > 0)
PaUtil_FullMemoryBarrier(); /* (write-after-read) => full barrier */
return elementCount;
}
/***************************************************************************
** Get address of region(s) from which we can read data.
** If the region is contiguous, size2 will be zero.
** If non-contiguous, size2 will be the size of second region.
** Returns room available to be read or elementCount, whichever is smaller.
*/
int32_t GetRingBufferReadRegions (uint32_t elementCount,
void **dataPtr1, int32_t *sizePtr1,
void **dataPtr2, int32_t *sizePtr2) {
uint32_t index;
uint32_t available = GetRingBufferReadAvailable (); /* doesn't use memory barrier */
if (elementCount > available)
elementCount = available;
/* Check to see if read is not contiguous. */
index = readIndex & smallMask;
if ((index + elementCount) > bufferSize) {
/* Write data in two blocks that wrap the buffer. */
int32_t firstHalf = bufferSize - index;
*dataPtr1 = &buffer [index * sizeof(elementtype)];
*sizePtr1 = firstHalf;
*dataPtr2 = &buffer [0];
*sizePtr2 = elementCount - firstHalf;
}
else {
*dataPtr1 = &buffer [index * sizeof(elementtype)];
*sizePtr1 = elementCount;
*dataPtr2 = NULL;
*sizePtr2 = 0;
}
if (available)
PaUtil_ReadMemoryBarrier(); /* (read-after-read) => read barrier */
return elementCount;
}
int32_t putDataIntoBuffer (const void *data, int32_t elementCount) {
int32_t size1, size2, numWritten;
void *data1;
void *data2;
numWritten = GetRingBufferWriteRegions (elementCount,
&data1, &size1,
&data2, &size2 );
if (size2 > 0) {
memcpy (data1, data, size1 * sizeof(elementtype));
data = ((char *)data) + size1 * sizeof(elementtype);
memcpy (data2, data, size2 * sizeof(elementtype));
}
else
memcpy (data1, data, size1 * sizeof(elementtype));
AdvanceRingBufferWriteIndex (numWritten );
return numWritten;
}
int32_t getDataFromBuffer (void *data, int32_t elementCount ) {
int32_t size1, size2, numRead;
void *data1;
void *data2;
numRead = GetRingBufferReadRegions (elementCount,
&data1, &size1,
&data2, &size2 );
if (size2 > 0) {
memcpy (data, data1, size1 * sizeof(elementtype));
data = ((char *)data) + size1 * sizeof(elementtype);
memcpy (data, data2, size2 * sizeof(elementtype));
}
else
memcpy (data, data1, size1 * sizeof(elementtype));
AdvanceRingBufferReadIndex (numRead );
return numRead;
}
int32_t skipDataInBuffer (uint32_t n_values) {
// ensure that we have the correct read and write indices
PaUtil_FullMemoryBarrier ();
if (n_values > GetRingBufferReadAvailable ())
n_values = GetRingBufferReadAvailable ();
AdvanceRingBufferReadIndex (n_values);
return n_values;
}
};
#endif