2018-08-27 12:27:09 -04:00
|
|
|
///////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Copyright (C) 2018 Edouard Griffiths, F4EXB. //
|
|
|
|
// //
|
2018-08-28 00:33:15 -04:00
|
|
|
// SDRdaemon sink channel (Rx) data blocks to read queue //
|
2018-08-27 12:27:09 -04:00
|
|
|
// //
|
|
|
|
// SDRdaemon is a detached SDR front end that handles the interface with a //
|
|
|
|
// physical device and sends or receives the I/Q samples stream to or from a //
|
|
|
|
// SDRangel instance via UDP. It is controlled via a Web REST API. //
|
|
|
|
// //
|
|
|
|
// 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/>. //
|
|
|
|
///////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2018-08-28 00:33:15 -04:00
|
|
|
#ifndef SDRDAEMON_CHANNEL_SDRDAEMONDATAREADQUEUE_H_
|
|
|
|
#define SDRDAEMON_CHANNEL_SDRDAEMONDATAREADQUEUE_H_
|
2018-08-27 12:27:09 -04:00
|
|
|
|
2018-08-28 00:33:15 -04:00
|
|
|
#include <QQueue>
|
2018-08-27 12:27:09 -04:00
|
|
|
|
2018-08-28 00:33:15 -04:00
|
|
|
class SDRDaemonDataBlock;
|
|
|
|
class Sample;
|
|
|
|
|
|
|
|
class SDRDaemonDataReadQueue
|
2018-08-27 12:27:09 -04:00
|
|
|
{
|
|
|
|
public:
|
2018-09-12 20:33:56 -04:00
|
|
|
SDRDaemonDataReadQueue();
|
2018-08-28 00:33:15 -04:00
|
|
|
~SDRDaemonDataReadQueue();
|
|
|
|
|
|
|
|
void push(SDRDaemonDataBlock* dataBlock); //!< push block on the queue
|
|
|
|
SDRDaemonDataBlock* pop(); //!< Pop block from the queue
|
2018-09-12 20:33:56 -04:00
|
|
|
void readSample(Sample& s, bool scaleForTx = false); //!< Read sample from queue possibly scaling to Tx size
|
2018-08-29 19:56:53 -04:00
|
|
|
uint32_t length() const { return m_dataReadQueue.size(); } //!< Returns queue length
|
|
|
|
uint32_t size() const { return m_maxSize; } //!< Returns queue size (max length)
|
|
|
|
void setSize(uint32_t size); //!< Sets the queue size (max length)
|
2018-08-31 02:47:18 -04:00
|
|
|
uint32_t readSampleCount() const { return m_sampleCount; } //!< Returns the absolute number of samples read
|
2018-08-28 00:33:15 -04:00
|
|
|
|
2018-08-29 02:48:57 -04:00
|
|
|
static const uint32_t MinimumMaxSize;
|
2018-08-27 12:27:09 -04:00
|
|
|
|
|
|
|
private:
|
2018-08-28 00:33:15 -04:00
|
|
|
QQueue<SDRDaemonDataBlock*> m_dataReadQueue;
|
|
|
|
SDRDaemonDataBlock *m_dataBlock;
|
2018-08-29 02:48:57 -04:00
|
|
|
uint32_t m_maxSize;
|
2018-08-28 00:33:15 -04:00
|
|
|
uint32_t m_blockIndex;
|
|
|
|
uint32_t m_sampleIndex;
|
2018-08-31 02:47:18 -04:00
|
|
|
uint32_t m_sampleCount; //!< use a counter capped below 2^31 as it is going to be converted to an int in the web interface
|
2018-08-28 08:04:30 -04:00
|
|
|
bool m_full; //!< full condition was hit
|
2018-09-10 12:52:40 -04:00
|
|
|
|
2018-09-12 20:33:56 -04:00
|
|
|
inline void convertDataToSample(Sample& s, uint32_t blockIndex, uint32_t sampleIndex, bool scaleForTx)
|
2018-09-10 12:52:40 -04:00
|
|
|
{
|
2018-09-12 20:33:56 -04:00
|
|
|
int sampleSize = m_dataBlock->m_superBlocks[blockIndex].m_header.m_sampleBytes * 2; // I/Q sample size in data block
|
|
|
|
int samplebits = m_dataBlock->m_superBlocks[blockIndex].m_header.m_sampleBits; // I or Q sample size in bits
|
|
|
|
int32_t iconv, qconv;
|
|
|
|
|
|
|
|
if (sizeof(Sample) == sampleSize) // generally 16->16 or 24->24 bits
|
2018-09-10 12:52:40 -04:00
|
|
|
{
|
2018-09-12 20:33:56 -04:00
|
|
|
s = *((Sample*) &(m_dataBlock->m_superBlocks[blockIndex].m_protectedBlock.buf[sampleIndex*sampleSize]));
|
2018-09-10 12:52:40 -04:00
|
|
|
}
|
2018-09-12 20:33:56 -04:00
|
|
|
else if ((sizeof(Sample) == 4) && (sampleSize == 8)) // generally 24->16 bits
|
2018-09-10 12:52:40 -04:00
|
|
|
{
|
2018-09-12 20:33:56 -04:00
|
|
|
iconv = ((int32_t*) &(m_dataBlock->m_superBlocks[blockIndex].m_protectedBlock.buf[sampleIndex*sampleSize]))[0];
|
|
|
|
qconv = ((int32_t*) &(m_dataBlock->m_superBlocks[blockIndex].m_protectedBlock.buf[sampleIndex*sampleSize+4]))[0];
|
|
|
|
iconv >>= scaleForTx ? (SDR_TX_SAMP_SZ-SDR_RX_SAMP_SZ) : (samplebits-SDR_RX_SAMP_SZ);
|
|
|
|
qconv >>= scaleForTx ? (SDR_TX_SAMP_SZ-SDR_RX_SAMP_SZ) : (samplebits-SDR_RX_SAMP_SZ);
|
|
|
|
s.setReal(iconv);
|
|
|
|
s.setImag(qconv);
|
2018-09-10 12:52:40 -04:00
|
|
|
}
|
2018-09-12 20:33:56 -04:00
|
|
|
else if ((sizeof(Sample) == 8) && (sampleSize == 4)) // generally 16->24 bits
|
2018-09-10 12:52:40 -04:00
|
|
|
{
|
2018-09-12 20:33:56 -04:00
|
|
|
iconv = ((int16_t*) &(m_dataBlock->m_superBlocks[blockIndex].m_protectedBlock.buf[sampleIndex*sampleSize]))[0];
|
|
|
|
qconv = ((int16_t*) &(m_dataBlock->m_superBlocks[blockIndex].m_protectedBlock.buf[sampleIndex*sampleSize+2]))[0];
|
|
|
|
iconv <<= scaleForTx ? (SDR_TX_SAMP_SZ-samplebits) : (SDR_RX_SAMP_SZ-samplebits);
|
|
|
|
qconv <<= scaleForTx ? (SDR_TX_SAMP_SZ-samplebits) : (SDR_RX_SAMP_SZ-samplebits);
|
|
|
|
s.setReal(iconv);
|
|
|
|
s.setImag(qconv);
|
2018-09-10 12:52:40 -04:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
s = Sample{0, 0};
|
|
|
|
}
|
|
|
|
}
|
2018-08-27 12:27:09 -04:00
|
|
|
};
|
2018-08-28 00:33:15 -04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#endif /* SDRDAEMON_CHANNEL_SDRDAEMONDATAREADQUEUE_H_ */
|