2018-09-04 19:32:29 -04:00
|
|
|
///////////////////////////////////////////////////////////////////////////////////
|
2019-01-22 17:39:12 -05:00
|
|
|
// Copyright (C) 2018-2019 Edouard Griffiths, F4EXB. //
|
2018-09-04 19:32:29 -04:00
|
|
|
// //
|
2019-01-22 17:39:12 -05:00
|
|
|
// Remote sink channel (Rx) UDP sender thread //
|
2018-09-04 19:32:29 -04:00
|
|
|
// //
|
2019-01-22 17:39:12 -05:00
|
|
|
// SDRangel can work as a detached SDR front end. With this plugin it can //
|
|
|
|
// sends the I/Q samples stream to another SDRangel instance via UDP. //
|
|
|
|
// It is controlled via a Web REST API. //
|
2018-09-04 19:32:29 -04:00
|
|
|
// //
|
|
|
|
// 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 //
|
2019-04-11 00:39:30 -04:00
|
|
|
// (at your option) any later version. //
|
2018-09-04 19:32:29 -04:00
|
|
|
// //
|
|
|
|
// 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/>. //
|
|
|
|
///////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2019-12-11 17:19:22 -05:00
|
|
|
#ifndef PLUGINS_CHANNELRX_REMOTESINK_REMOTESINKSENDER_H_
|
|
|
|
#define PLUGINS_CHANNELRX_REMOTESINK_REMOTESINKSENDER_H_
|
2019-01-22 17:39:12 -05:00
|
|
|
|
2019-12-11 17:19:22 -05:00
|
|
|
#include <QObject>
|
2018-09-04 19:32:29 -04:00
|
|
|
#include <QMutex>
|
|
|
|
#include <QWaitCondition>
|
|
|
|
#include <QHostAddress>
|
2021-12-22 19:47:38 -05:00
|
|
|
#include <QUdpSocket>
|
2018-09-04 19:32:29 -04:00
|
|
|
|
2019-04-15 04:42:39 -04:00
|
|
|
#include "cm256cc/cm256.h"
|
2018-09-05 22:36:56 -04:00
|
|
|
|
2018-09-04 19:32:29 -04:00
|
|
|
#include "util/message.h"
|
|
|
|
#include "util/messagequeue.h"
|
|
|
|
|
2019-12-11 17:19:22 -05:00
|
|
|
#include "remotesinkfifo.h"
|
|
|
|
|
2021-12-12 04:44:58 -05:00
|
|
|
class RemoteDataFrame;
|
2018-09-04 19:32:29 -04:00
|
|
|
class CM256;
|
|
|
|
class QUdpSocket;
|
|
|
|
|
2019-12-11 17:19:22 -05:00
|
|
|
class RemoteSinkSender : public QObject {
|
2018-09-04 19:32:29 -04:00
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
2019-12-11 17:19:22 -05:00
|
|
|
RemoteSinkSender();
|
|
|
|
~RemoteSinkSender();
|
2018-09-04 19:32:29 -04:00
|
|
|
|
2021-12-22 19:47:38 -05:00
|
|
|
bool startWork();
|
|
|
|
void stopWork();
|
2021-12-12 04:44:58 -05:00
|
|
|
RemoteDataFrame *getDataFrame();
|
2018-09-05 23:21:43 -04:00
|
|
|
|
2018-09-04 19:32:29 -04:00
|
|
|
private:
|
2021-12-22 19:47:38 -05:00
|
|
|
volatile bool m_running;
|
2019-12-11 17:19:22 -05:00
|
|
|
RemoteSinkFifo m_fifo;
|
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;
|
2021-12-22 19:47:38 -05:00
|
|
|
QUdpSocket m_socket;
|
2018-09-04 19:32:29 -04:00
|
|
|
|
2021-12-12 04:44:58 -05:00
|
|
|
void sendDataFrame(RemoteDataFrame *dataFrame);
|
2018-09-04 19:32:29 -04:00
|
|
|
|
|
|
|
private slots:
|
2021-12-22 19:47:38 -05:00
|
|
|
void started();
|
|
|
|
void finished();
|
2019-12-11 17:19:22 -05:00
|
|
|
void handleData();
|
2018-09-04 19:32:29 -04:00
|
|
|
};
|
2019-01-22 17:39:12 -05:00
|
|
|
|
2019-12-11 17:19:22 -05:00
|
|
|
#endif // PLUGINS_CHANNELRX_REMOTESINK_REMOTESINKSENDER_H_
|
2019-01-22 17:39:12 -05:00
|
|
|
|