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-08-28 00:33:15 -04:00
|
|
|
SDRDaemonDataReadQueue();
|
|
|
|
~SDRDaemonDataReadQueue();
|
|
|
|
|
|
|
|
void push(SDRDaemonDataBlock* dataBlock); //!< push block on the queue
|
|
|
|
SDRDaemonDataBlock* pop(); //!< Pop block from the queue
|
|
|
|
void readSample(Sample& s); //!< Read sample from queue
|
|
|
|
uint32_t size(); //!< Returns queue size
|
|
|
|
|
|
|
|
static const uint32_t MaxSize;
|
2018-08-27 12:27:09 -04:00
|
|
|
|
|
|
|
private:
|
2018-08-28 00:33:15 -04:00
|
|
|
QQueue<SDRDaemonDataBlock*> m_dataReadQueue;
|
|
|
|
SDRDaemonDataBlock *m_dataBlock;
|
|
|
|
uint32_t m_blockIndex;
|
|
|
|
uint32_t m_sampleIndex;
|
2018-08-28 08:04:30 -04:00
|
|
|
bool m_full; //!< full condition was hit
|
2018-08-27 12:27:09 -04:00
|
|
|
};
|
2018-08-28 00:33:15 -04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#endif /* SDRDAEMON_CHANNEL_SDRDAEMONDATAREADQUEUE_H_ */
|