1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2024-09-07 13:46:35 -04:00
sdrangel/plugins/samplesource/sdrdaemon/sdrdaemonbuffer.cpp

370 lines
9.5 KiB
C++
Raw Normal View History

2016-01-24 17:38:55 -05:00
///////////////////////////////////////////////////////////////////////////////////
// Copyright (C) 2016 Edouard Griffiths, F4EXB //
// //
// This program 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 as version 3 of the License, or //
// //
// This program 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 V3 for more details. //
// //
// You should have received a copy of the GNU General Public License //
// along with this program. If not, see <http://www.gnu.org/licenses/>. //
///////////////////////////////////////////////////////////////////////////////////
#include <cassert>
#include <cstring>
2016-02-19 21:41:20 -05:00
#include <cstdlib>
2016-01-24 17:38:55 -05:00
#include <iostream>
#include "sdrdaemonbuffer.h"
2016-02-19 21:41:20 -05:00
const int SDRdaemonBuffer::m_udpPayloadSize = 512;
const int SDRdaemonBuffer::m_sampleSize = 2;
const int SDRdaemonBuffer::m_iqSampleSize = 2 * m_sampleSize;
SDRdaemonBuffer::SDRdaemonBuffer(uint32_t rateDivider) :
2016-02-17 13:42:26 -05:00
m_rateDivider(rateDivider),
2016-01-24 17:38:55 -05:00
m_sync(false),
m_syncLock(false),
2016-01-24 17:38:55 -05:00
m_lz4(false),
2016-01-27 22:54:16 -05:00
m_inCount(0),
2016-01-24 17:38:55 -05:00
m_lz4InBuffer(0),
m_lz4InCount(0),
m_lz4InSize(0),
m_lz4OutBuffer(0),
2016-01-27 02:24:00 -05:00
m_frameSize(0),
2016-02-20 17:02:34 -05:00
m_nbLz4Decodes(0),
m_nbLz4SuccessfulDecodes(0),
m_nbLz4CRCOK(0),
m_nbLastLz4SuccessfulDecodes(0),
m_nbLastLz4CRCOK(0),
m_dataCRC(0),
m_sampleRateStream(0),
m_sampleRate(0),
m_sampleBytes(2),
m_sampleBits(12),
2016-02-19 21:41:20 -05:00
m_writeIndex(0),
m_readChunkIndex(0),
2016-01-27 22:54:16 -05:00
m_rawSize(0),
m_rawBuffer(0),
2016-02-19 21:48:04 -05:00
m_chunkSize(0),
m_bytesInBlock(0),
m_nbBlocks(0),
m_readCycles(0),
m_lastWriteIndex(0),
m_skewRateSum(0.0),
m_skewRate(0.0),
m_autoFollowRate(false)
2016-01-24 17:38:55 -05:00
{
m_currentMeta.init();
}
SDRdaemonBuffer::~SDRdaemonBuffer()
{
if (m_rawBuffer) {
delete[] m_rawBuffer;
}
2016-01-27 02:24:00 -05:00
if (m_lz4InBuffer) {
delete[] m_lz4InBuffer;
}
2016-01-27 22:54:16 -05:00
if (m_lz4OutBuffer) {
delete[] m_lz4OutBuffer;
}
2016-01-24 17:38:55 -05:00
}
2016-01-27 22:54:16 -05:00
bool SDRdaemonBuffer::readMeta(char *array, uint32_t length)
2016-01-24 17:38:55 -05:00
{
assert(length >= sizeof(MetaData) + 8);
2016-01-24 17:38:55 -05:00
MetaData *metaData = (MetaData *) array;
if (m_crc64.calculate_crc((uint8_t *)array, sizeof(MetaData) - 8) == metaData->m_crc)
2016-01-24 17:38:55 -05:00
{
// sync condition:
if (m_currentMeta.m_blockSize > 0)
{
uint32_t nbBlocks = m_currentMeta.m_nbBytes / m_currentMeta.m_blockSize;
m_syncLock = nbBlocks + (m_lz4 ? 2 : 1) == m_nbBlocks;
//qDebug("SDRdaemonBuffer::readMeta: m_nbBlocks: %d:%d %s", nbBlocks, m_nbBlocks, (m_syncLock ? "locked" : "unlocked"));
}
else
{
m_syncLock = false;
}
2016-01-24 17:38:55 -05:00
memcpy((void *) &m_dataCRC, (const void *) &array[sizeof(MetaData)], 8);
m_nbBlocks = 0;
2016-01-27 22:54:16 -05:00
m_inCount = 0;
2016-01-24 17:38:55 -05:00
if (!m_lz4 && !(m_currentMeta == *metaData))
2016-01-24 17:38:55 -05:00
{
std::cerr << "SDRdaemonBuffer::readMeta: ";
2016-01-24 17:38:55 -05:00
printMeta(metaData);
}
m_currentMeta = *metaData;
// sanity checks
2016-02-19 21:41:20 -05:00
if (metaData->m_blockSize == m_udpPayloadSize) // sent blocksize matches given blocksize
2016-01-24 17:38:55 -05:00
{
2016-01-27 22:54:16 -05:00
m_sampleBytes = metaData->m_sampleBytes & 0x0F;
2016-02-19 21:41:20 -05:00
uint32_t frameSize = m_iqSampleSize * metaData->m_nbSamples * metaData->m_nbBlocks;
2016-02-22 22:50:15 -05:00
int sampleRate = metaData->m_sampleRate;
2016-01-27 02:24:00 -05:00
if (m_autoFollowRate)
{
if (sampleRate != m_sampleRateStream)
{
m_sampleRateStream = sampleRate;
}
else
{
sampleRate = m_sampleRate;
}
sampleRate += sampleRate * m_skewRate;
sampleRate = (sampleRate / m_rateDivider) * m_rateDivider;
}
else
{
m_sampleRateStream = sampleRate;
}
2016-01-24 17:38:55 -05:00
if (metaData->m_sampleBytes & 0x10)
{
m_lz4 = true;
2016-01-27 02:24:00 -05:00
m_lz4InSize = metaData->m_nbBytes; // compressed input size
m_lz4InCount = 0;
if (frameSize != m_frameSize)
{
updateLZ4Sizes(frameSize);
}
2016-01-24 17:38:55 -05:00
}
else
{
m_lz4 = false;
}
2016-02-19 21:41:20 -05:00
if (sampleRate != m_sampleRate)
2016-01-27 02:24:00 -05:00
{
2016-02-19 21:41:20 -05:00
updateBufferSize(sampleRate);
2016-01-27 02:24:00 -05:00
}
m_sampleRate = sampleRate;
2016-01-27 02:24:00 -05:00
m_frameSize = frameSize;
2016-01-24 17:38:55 -05:00
m_sync = true;
}
else
{
m_sync = false;
}
return m_sync;
}
else
{
return false;
}
}
2016-01-27 22:54:16 -05:00
void SDRdaemonBuffer::writeData(char *array, uint32_t length)
{
2016-01-27 22:54:16 -05:00
if ((m_sync) && (m_nbBlocks > 0))
2016-01-24 17:38:55 -05:00
{
if (m_lz4)
2016-01-24 17:38:55 -05:00
{
writeDataLZ4(array, length);
2016-01-24 17:38:55 -05:00
}
else
{
2016-02-17 13:42:26 -05:00
writeToRawBufferUncompressed(array, length);
2016-01-24 17:38:55 -05:00
}
}
}
2016-01-27 22:54:16 -05:00
void SDRdaemonBuffer::writeDataLZ4(const char *array, uint32_t length)
2016-01-24 17:38:55 -05:00
{
if (m_lz4InCount + length < m_lz4InSize)
{
std::memcpy((void *) &m_lz4InBuffer[m_lz4InCount], (const void *) array, length);
2016-01-24 17:38:55 -05:00
m_lz4InCount += length;
}
else
{
std::memcpy((void *) &m_lz4InBuffer[m_lz4InCount], (const void *) array, m_lz4InSize - m_lz4InCount); // copy rest of data in compressed Buffer
m_lz4InCount += length;
}
if (m_lz4InCount >= m_lz4InSize) // full input compressed block retrieved
{
2016-02-20 17:02:34 -05:00
if (m_nbLz4Decodes == 100)
2016-01-24 17:38:55 -05:00
{
std::cerr << "SDRdaemonBuffer::writeAndReadLZ4:"
2016-02-20 17:02:34 -05:00
<< " decoding: " << m_nbLz4CRCOK
<< ":" << m_nbLz4SuccessfulDecodes
<< "/" << m_nbLz4Decodes
2016-01-24 17:38:55 -05:00
<< std::endl;
m_nbLastLz4SuccessfulDecodes = m_nbLz4SuccessfulDecodes;
m_nbLastLz4CRCOK = m_nbLz4CRCOK;
2016-02-20 17:02:34 -05:00
m_nbLz4Decodes = 0;
m_nbLz4SuccessfulDecodes = 0;
m_nbLz4CRCOK = 0;
2016-01-24 17:38:55 -05:00
}
writeToRawBufferLZ4();
2016-01-24 17:38:55 -05:00
m_lz4InCount = 0;
}
}
2016-01-27 22:54:16 -05:00
void SDRdaemonBuffer::writeToRawBufferUncompressed(const char *array, uint32_t length)
{
// TODO: handle the 1 byte per I or Q sample
2016-02-19 21:41:20 -05:00
if (m_writeIndex + length < m_rawSize)
2016-01-27 22:54:16 -05:00
{
2016-02-19 21:41:20 -05:00
std::memcpy((void *) &m_rawBuffer[m_writeIndex], (const void *) array, length);
m_writeIndex += length;
2016-01-27 22:54:16 -05:00
}
else
{
2016-02-19 21:41:20 -05:00
std::memcpy((void *) &m_rawBuffer[m_writeIndex], (const void *) array, m_rawSize - m_writeIndex);
length -= m_rawSize - m_writeIndex;
std::memcpy((void *) m_rawBuffer, (const void *) &array[m_rawSize - m_writeIndex], length);
m_writeIndex = length;
2016-01-27 22:54:16 -05:00
}
}
void SDRdaemonBuffer::writeToRawBufferLZ4()
2016-01-27 22:54:16 -05:00
{
uint64_t crc64 = m_crc64.calculate_crc(m_lz4InBuffer, m_lz4InSize);
if (memcmp(&crc64, &m_dataCRC, 8) == 0)
{
m_nbLz4CRCOK++;
}
else
{
return;
}
2016-01-27 22:54:16 -05:00
int compressedSize = LZ4_decompress_fast((const char*) m_lz4InBuffer, (char*) m_lz4OutBuffer, m_frameSize);
2016-02-20 17:02:34 -05:00
m_nbLz4Decodes++;
2016-01-27 22:54:16 -05:00
if (compressedSize == m_lz4InSize)
{
2016-02-20 17:02:34 -05:00
m_nbLz4SuccessfulDecodes++;
writeToRawBufferUncompressed((const char *) m_lz4OutBuffer, m_frameSize);
2016-01-27 22:54:16 -05:00
}
}
2016-02-19 21:41:20 -05:00
uint8_t *SDRdaemonBuffer::readDataChunk()
2016-01-29 02:17:34 -05:00
{
2016-02-19 21:41:20 -05:00
// relies on the fact that we always have an integer number of chunks in the raw buffer
if (m_readChunkIndex == m_rateDivider * 2) // go back to start of raw buffer
2016-01-29 02:17:34 -05:00
{
double oneCycleSkew = 0;
if (m_readCycles > 0)
2016-02-19 21:41:20 -05:00
{
oneCycleSkew = (double) ((int) m_writeIndex - (int) m_lastWriteIndex) / (double) m_rawSize;
m_skewRateSum += oneCycleSkew;
2016-02-19 21:41:20 -05:00
}
//qDebug("SDRdaemonBuffer::readDataChunk: %d / %d (%lf)", m_writeIndex, m_rawSize, oneCycleSkew);
if (!m_autoFollowRate)
{
m_skewRate = 0.0;
}
else if (m_readCycles && ((m_writeIndex < m_rawSize / 10) || (m_rawSize - m_writeIndex < m_rawSize / 10)))
2016-02-19 21:41:20 -05:00
{
m_skewRate = m_skewRateSum / m_readCycles;
if (m_skewRate > 0.2) {
m_skewRate = 0.2;
} else if (m_skewRate < -0.2) {
m_skewRate = -0.2;
}
qDebug("SDRdaemonBuffer::readDataChunk: m_skewRate: %lf", m_skewRate);
2016-02-19 02:48:14 -05:00
}
m_readChunkIndex = 0; // go to start
m_lastWriteIndex = m_writeIndex;
m_readCycles++;
2016-01-29 02:17:34 -05:00
}
2016-02-19 21:41:20 -05:00
uint32_t readIndex = m_readChunkIndex;
m_readChunkIndex++;
return &m_rawBuffer[readIndex * m_chunkSize];
2016-01-29 02:17:34 -05:00
}
2016-01-27 02:24:00 -05:00
void SDRdaemonBuffer::updateLZ4Sizes(uint32_t frameSize)
2016-01-24 17:38:55 -05:00
{
2016-01-27 22:54:16 -05:00
uint32_t maxInputSize = LZ4_compressBound(frameSize);
2016-01-24 17:38:55 -05:00
2016-01-27 02:24:00 -05:00
if (m_lz4InBuffer) {
delete[] m_lz4InBuffer;
}
2016-01-24 17:38:55 -05:00
2016-01-27 22:54:16 -05:00
m_lz4InBuffer = new uint8_t[maxInputSize];
2016-01-24 17:38:55 -05:00
2016-01-27 02:24:00 -05:00
if (m_lz4OutBuffer) {
delete[] m_lz4OutBuffer;
2016-01-24 17:38:55 -05:00
}
2016-01-27 02:24:00 -05:00
m_lz4OutBuffer = new uint8_t[frameSize];
2016-01-24 17:38:55 -05:00
}
2016-02-19 21:41:20 -05:00
void SDRdaemonBuffer::updateBufferSize(uint32_t sampleRate)
{
2016-02-19 21:41:20 -05:00
assert(sampleRate % m_rateDivider == 0); // make sure we get an integer number of samples in a chunk
2016-01-27 02:24:00 -05:00
2016-02-19 21:41:20 -05:00
// Store 2 seconds long of samples so we have two one second long half buffers
m_chunkSize = (sampleRate * m_iqSampleSize) / m_rateDivider;
m_rawSize = m_chunkSize * m_rateDivider * 2;
2016-01-27 02:24:00 -05:00
if (m_rawBuffer) {
delete[] m_rawBuffer;
}
2016-01-27 22:54:16 -05:00
m_rawBuffer = new uint8_t[m_rawSize];
2016-01-29 02:17:34 -05:00
2016-02-19 21:41:20 -05:00
m_writeIndex = 0;
m_readChunkIndex = m_rateDivider;
m_readCycles = 0;
m_skewRateSum = 0;
m_skewRate = 0;
2016-01-29 02:17:34 -05:00
2016-02-19 21:41:20 -05:00
std::cerr << "SDRdaemonBuffer::updateBufferSize:"
<< " sampleRate: " << sampleRate
<< " m_chunkSize: " << m_chunkSize
<< " m_rawSize: " << m_rawSize
<< std::endl;
}
2016-01-24 17:38:55 -05:00
void SDRdaemonBuffer::updateBlockCounts(uint32_t nbBytesReceived)
{
2016-02-19 21:41:20 -05:00
m_nbBlocks += m_bytesInBlock + nbBytesReceived > m_udpPayloadSize ? 1 : 0;
m_bytesInBlock = m_bytesInBlock + nbBytesReceived > m_udpPayloadSize ? nbBytesReceived : m_bytesInBlock + nbBytesReceived;
}
2016-01-24 17:38:55 -05:00
void SDRdaemonBuffer::printMeta(MetaData *metaData)
{
std::cerr
<< "|" << metaData->m_centerFrequency
<< ":" << metaData->m_sampleRate
<< ":" << (int) (metaData->m_sampleBytes & 0xF)
<< ":" << (int) metaData->m_sampleBits
<< ":" << metaData->m_blockSize
<< ":" << metaData->m_nbSamples
<< "||" << metaData->m_nbBlocks
<< ":" << metaData->m_nbBytes
<< "|" << metaData->m_tv_sec
<< ":" << metaData->m_tv_usec
<< std::endl;
}