sdrangel/plugins/channelrx/remotesink/remotesinksender.h

78 lines
3.1 KiB
C
Raw Normal View History

2018-09-04 19:32:29 -04:00
///////////////////////////////////////////////////////////////////////////////////
// Copyright (C) 2012 maintech GmbH, Otto-Hahn-Str. 15, 97204 Hoechberg, Germany //
// written by Christian Daniel //
// Copyright (C) 2015-2019, 2021 Edouard Griffiths, F4EXB <f4exb06@gmail.com> //
// Copyright (C) 2015 John Greb <hexameron@spam.no> //
// Copyright (C) 2019 Davide Gerhard <rainbow@irh.it> //
2018-09-04 19:32:29 -04:00
// //
// Remote sink channel (Rx) UDP sender thread //
2018-09-04 19:32:29 -04: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-12-11 17:19:22 -05:00
#include <QObject>
2018-09-04 19:32:29 -04:00
#include <QMutex>
#include <QWaitCondition>
#include <QHostAddress>
#include <QUdpSocket>
2018-09-04 19:32:29 -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"
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
bool startWork();
void stopWork();
RemoteDataFrame *getDataFrame();
2018-09-05 23:21:43 -04:00
2018-09-04 19:32:29 -04:00
private:
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;
QUdpSocket m_socket;
2018-09-04 19:32:29 -04:00
void sendDataFrame(RemoteDataFrame *dataFrame);
2018-09-04 19:32:29 -04:00
private slots:
void started();
void finished();
2019-12-11 17:19:22 -05:00
void handleData();
2018-09-04 19:32:29 -04:00
};
2019-12-11 17:19:22 -05:00
#endif // PLUGINS_CHANNELRX_REMOTESINK_REMOTESINKSENDER_H_