2018-09-04 19:32:29 -04:00
|
|
|
///////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Copyright (C) 2018 Edouard Griffiths, F4EXB. //
|
|
|
|
// //
|
|
|
|
// SDRdaemon sink channel (Rx) UDP sender thread //
|
|
|
|
// //
|
|
|
|
// 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/>. //
|
|
|
|
///////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#include <QThread>
|
|
|
|
#include <QMutex>
|
|
|
|
#include <QWaitCondition>
|
|
|
|
#include <QHostAddress>
|
|
|
|
|
2018-09-05 22:36:56 -04:00
|
|
|
#include "cm256.h"
|
|
|
|
|
2018-09-04 19:32:29 -04:00
|
|
|
#include "util/message.h"
|
|
|
|
#include "util/messagequeue.h"
|
|
|
|
|
|
|
|
class SDRDaemonDataBlock;
|
|
|
|
class CM256;
|
|
|
|
class QUdpSocket;
|
|
|
|
|
|
|
|
class DaemonSinkThread : public QThread {
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
class MsgStartStop : public Message {
|
|
|
|
MESSAGE_CLASS_DECLARATION
|
|
|
|
|
|
|
|
public:
|
|
|
|
bool getStartStop() const { return m_startStop; }
|
|
|
|
|
|
|
|
static MsgStartStop* create(bool startStop) {
|
|
|
|
return new MsgStartStop(startStop);
|
|
|
|
}
|
|
|
|
|
|
|
|
protected:
|
|
|
|
bool m_startStop;
|
|
|
|
|
|
|
|
MsgStartStop(bool startStop) :
|
|
|
|
Message(),
|
|
|
|
m_startStop(startStop)
|
|
|
|
{ }
|
|
|
|
};
|
|
|
|
|
2018-09-05 23:39:28 -04:00
|
|
|
DaemonSinkThread(QObject* parent = 0);
|
2018-09-04 19:32:29 -04:00
|
|
|
~DaemonSinkThread();
|
|
|
|
|
|
|
|
void startStop(bool start);
|
|
|
|
|
2018-09-05 23:21:43 -04:00
|
|
|
public slots:
|
|
|
|
void processDataBlock(SDRDaemonDataBlock *dataBlock);
|
|
|
|
|
2018-09-04 19:32:29 -04:00
|
|
|
private:
|
|
|
|
QMutex m_startWaitMutex;
|
|
|
|
QWaitCondition m_startWaiter;
|
2018-11-18 03:39:22 -05:00
|
|
|
volatile bool m_running;
|
2018-09-04 19:32:29 -04:00
|
|
|
|
2018-09-05 22:36:56 -04:00
|
|
|
CM256 m_cm256;
|
|
|
|
CM256 *m_cm256p;
|
2018-09-04 19:32:29 -04:00
|
|
|
|
|
|
|
QHostAddress m_address;
|
|
|
|
QUdpSocket *m_socket;
|
|
|
|
|
|
|
|
MessageQueue m_inputMessageQueue;
|
|
|
|
|
|
|
|
void startWork();
|
|
|
|
void stopWork();
|
|
|
|
|
|
|
|
void run();
|
2018-09-05 23:21:43 -04:00
|
|
|
void handleDataBlock(SDRDaemonDataBlock& dataBlock);
|
2018-09-04 19:32:29 -04:00
|
|
|
|
|
|
|
private slots:
|
|
|
|
void handleInputMessages();
|
|
|
|
};
|