-
Notifications
You must be signed in to change notification settings - Fork 11
/
Streaming.cpp
409 lines (338 loc) · 11.5 KB
/
Streaming.cpp
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
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
/*
* The MIT License (MIT)
*
* Copyright (c) 2015 Charles J. Cliffe
* 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.
*/
#include "SoapySDRPlay.hpp"
std::vector<std::string> SoapySDRPlay::getStreamFormats(const int direction, const size_t channel) const
{
std::vector<std::string> formats;
formats.push_back("CS16");
formats.push_back("CF32");
return formats;
}
std::string SoapySDRPlay::getNativeStreamFormat(const int direction, const size_t channel, double &fullScale) const
{
fullScale = 32767;
return "CS16";
}
SoapySDR::ArgInfoList SoapySDRPlay::getStreamArgsInfo(const int direction, const size_t channel) const
{
SoapySDR::ArgInfoList streamArgs;
return streamArgs;
}
/*******************************************************************
* Async thread work
******************************************************************/
static void _rx_callback(short *xi, short *xq, unsigned int firstSampleNum, int grChanged, int rfChanged,
int fsChanged, unsigned int numSamples, unsigned int reset, unsigned int hwRemoved, void *cbContext)
{
SoapySDRPlay *self = (SoapySDRPlay *)cbContext;
return self->rx_callback(xi, xq, numSamples);
}
static void _gr_callback(unsigned int gRdB, unsigned int lnaGRdB, void *cbContext)
{
SoapySDRPlay *self = (SoapySDRPlay *)cbContext;
return self->gr_callback(gRdB, lnaGRdB);
}
void SoapySDRPlay::rx_callback(short *xi, short *xq, unsigned int numSamples)
{
std::lock_guard<std::mutex> lock(_buf_mutex);
if (_buf_count == numBuffers)
{
_overflowEvent = true;
return;
}
int spaceReqd = numSamples * elementsPerSample * shortsPerWord;
if ((_buffs[_buf_tail].size() + spaceReqd) >= (bufferLength / decM))
{
// increment the tail pointer and buffer count
_buf_tail = (_buf_tail + 1) % numBuffers;
_buf_count++;
// notify readStream()
_buf_cond.notify_one();
}
// get current fill buffer
auto &buff = _buffs[_buf_tail];
buff.resize(buff.size() + spaceReqd);
// copy into the buffer queue
unsigned int i = 0;
if (useShort)
{
short *dptr = buff.data();
dptr += (buff.size() - spaceReqd);
for (i = 0; i < numSamples; i++)
{
*dptr++ = xi[i];
*dptr++ = xq[i];
}
}
else
{
float *dptr = (float *)buff.data();
dptr += ((buff.size() - spaceReqd) / shortsPerWord);
for (i = 0; i < numSamples; i++)
{
*dptr++ = (float)xi[i] / 32768.0f;
*dptr++ = (float)xq[i] / 32768.0f;
}
}
return;
}
void SoapySDRPlay::gr_callback(unsigned int gRdB, unsigned int lnaGRdB)
{
//Beware, lnaGRdB is really the LNA GR, NOT the LNA state !
mir_sdr_GainValuesT gainVals;
mir_sdr_GetCurrentGain(&gainVals);
if (gRdB < 200)
{
current_gRdB = gRdB;
}
if (gRdB < mir_sdr_GAIN_MESSAGE_START_ID)
{
// gainVals.curr is a calibrated gain value
}
else if (gRdB == mir_sdr_ADC_OVERLOAD_DETECTED)
{
mir_sdr_GainChangeCallbackMessageReceived();
// OVERLOAD DECTECTED
}
else
{
mir_sdr_GainChangeCallbackMessageReceived();
// OVERLOAD CORRECTED
}
}
/*******************************************************************
* Stream API
******************************************************************/
SoapySDR::Stream *SoapySDRPlay::setupStream(const int direction,
const std::string &format,
const std::vector<size_t> &channels,
const SoapySDR::Kwargs &args)
{
// check the channel configuration
if (channels.size() > 1 or (channels.size() > 0 and channels.at(0) != 0))
{
throw std::runtime_error("setupStream invalid channel selection");
}
// check the format
if (format == "CS16")
{
useShort = true;
shortsPerWord = 1;
bufferLength = bufferElems * elementsPerSample * shortsPerWord;
SoapySDR_log(SOAPY_SDR_INFO, "Using format CS16.");
}
else if (format == "CF32")
{
useShort = false;
shortsPerWord = sizeof(float) / sizeof(short);
bufferLength = bufferElems * elementsPerSample * shortsPerWord; // allocate enough space for floats instead of shorts
SoapySDR_log(SOAPY_SDR_INFO, "Using format CF32.");
}
else
{
throw std::runtime_error( "setupStream invalid format '" + format +
"' -- Only CS16 or CF32 are supported by the SoapySDRPlay module.");
}
std::lock_guard<std::mutex> lock(_buf_mutex);
// clear async fifo counts
_buf_tail = 0;
_buf_head = 0;
_buf_count = 0;
// allocate buffers
_buffs.resize(numBuffers);
for (auto &buff : _buffs) buff.reserve(bufferLength);
for (auto &buff : _buffs) buff.clear();
return (SoapySDR::Stream *) this;
}
void SoapySDRPlay::closeStream(SoapySDR::Stream *stream)
{
std::lock_guard <std::mutex> lock(_general_state_mutex);
if (streamActive)
{
mir_sdr_StreamUninit();
}
streamActive = false;
}
size_t SoapySDRPlay::getStreamMTU(SoapySDR::Stream *stream) const
{
// is a constant in practice
return bufferElems;
}
int SoapySDRPlay::activateStream(SoapySDR::Stream *stream,
const int flags,
const long long timeNs,
const size_t numElems)
{
if (flags != 0)
{
return SOAPY_SDR_NOT_SUPPORTED;
}
resetBuffer = true;
bufferedElems = 0;
mir_sdr_ErrT err;
std::lock_guard <std::mutex> lock(_general_state_mutex);
//Enable (= 1) API calls tracing,
//but only for debug purposes due to its performance impact.
mir_sdr_DebugEnable(0);
//temporary fix for ARM targets.
#if defined(__arm__) || defined(__aarch64__)
mir_sdr_SetTransferMode(mir_sdr_BULK);
#endif
err = mir_sdr_StreamInit(&gRdB, sampleRate / 1e6, centerFrequency / 1e6, bwMode,
ifMode, lnaState, &gRdBsystem, mir_sdr_USE_RSP_SET_GR, &sps,
_rx_callback, _gr_callback, (void *)this);
if (err != mir_sdr_Success)
{
//throw std::runtime_error("StreamInit Error: " + std::to_string(err));
return SOAPY_SDR_NOT_SUPPORTED;
}
mir_sdr_DecimateControl(decEnable, decM, 1);
mir_sdr_SetDcMode(4,0);
mir_sdr_SetDcTrackTime(63);
streamActive = true;
return 0;
}
int SoapySDRPlay::deactivateStream(SoapySDR::Stream *stream, const int flags, const long long timeNs)
{
if (flags != 0)
{
return SOAPY_SDR_NOT_SUPPORTED;
}
std::lock_guard <std::mutex> lock(_general_state_mutex);
if (streamActive)
{
mir_sdr_StreamUninit();
}
streamActive = false;
return 0;
}
int SoapySDRPlay::readStream(SoapySDR::Stream *stream,
void * const *buffs,
const size_t numElems,
int &flags,
long long &timeNs,
const long timeoutUs)
{
// this is the user's buffer for channel 0
void *buff0 = buffs[0];
// are elements left in the buffer? if not, do a new read.
if (bufferedElems == 0)
{
int ret = this->acquireReadBuffer(stream, _currentHandle, (const void **)&_currentBuff, flags, timeNs, timeoutUs);
if (ret < 0)
{
return ret;
}
bufferedElems = ret;
}
size_t returnedElems = std::min(bufferedElems.load(), numElems);
// copy into user's buff0
if (useShort)
{
std::memcpy(buff0, _currentBuff, returnedElems * 2 * sizeof(short));
}
else
{
std::memcpy(buff0, (float *)_currentBuff, returnedElems * 2 * sizeof(float));
}
// bump variables for next call into readStream
bufferedElems -= returnedElems;
// scope lock here to update _currentBuff position
{
std::lock_guard <std::mutex> lock(_buf_mutex);
_currentBuff += returnedElems * elementsPerSample * shortsPerWord;
}
// return number of elements written to buff0
if (bufferedElems != 0)
{
flags |= SOAPY_SDR_MORE_FRAGMENTS;
}
else
{
this->releaseReadBuffer(stream, _currentHandle);
}
return (int)returnedElems;
}
/*******************************************************************
* Direct buffer access API
******************************************************************/
size_t SoapySDRPlay::getNumDirectAccessBuffers(SoapySDR::Stream *stream)
{
std::lock_guard <std::mutex> lock(_buf_mutex);
return _buffs.size();
}
int SoapySDRPlay::getDirectAccessBufferAddrs(SoapySDR::Stream *stream, const size_t handle, void **buffs)
{
std::lock_guard <std::mutex> lock(_buf_mutex);
buffs[0] = (void *)_buffs[handle].data();
return 0;
}
int SoapySDRPlay::acquireReadBuffer(SoapySDR::Stream *stream,
size_t &handle,
const void **buffs,
int &flags,
long long &timeNs,
const long timeoutUs)
{
std::unique_lock <std::mutex> lock(_buf_mutex);
// reset is issued by various settings
// overflow set in the rx callback thread
if (resetBuffer || _overflowEvent)
{
// drain all buffers from the fifo
_buf_tail = 0;
_buf_head = 0;
_buf_count = 0;
for (auto &buff : _buffs) buff.clear();
_overflowEvent = false;
if (resetBuffer)
{
resetBuffer = false;
}
else
{
SoapySDR_log(SOAPY_SDR_SSI, "O");
return SOAPY_SDR_OVERFLOW;
}
}
// wait for a buffer to become available
if (_buf_count == 0)
{
_buf_cond.wait_for(lock, std::chrono::microseconds(timeoutUs));
if (_buf_count == 0)
{
return SOAPY_SDR_TIMEOUT;
}
}
// extract handle and buffer
handle = _buf_head;
buffs[0] = (void *)_buffs[handle].data();
flags = 0;
_buf_head = (_buf_head + 1) % numBuffers;
// return number available
return (int)(_buffs[handle].size() / (elementsPerSample * shortsPerWord));
}
void SoapySDRPlay::releaseReadBuffer(SoapySDR::Stream *stream, const size_t handle)
{
std::lock_guard <std::mutex> lock(_buf_mutex);
_buffs[handle].clear();
_buf_count--;
}