| 
									
										
										
										
											2018-09-16 11:23:24 +02:00
										 |  |  | ///////////////////////////////////////////////////////////////////////////////////
 | 
					
						
							|  |  |  | // Copyright (C) 2017 Edouard Griffiths, F4EXB                                   //
 | 
					
						
							|  |  |  | //                                                                               //
 | 
					
						
							|  |  |  | // 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 06:39:30 +02:00
										 |  |  | // (at your option) any later version.                                           //
 | 
					
						
							| 
									
										
										
										
											2018-09-16 11:23:24 +02: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-02-02 22:58:42 +01:00
										 |  |  | #ifndef PLUGINS_SAMPLESINK_REMOTEOUTPUT_UDPSINKFECWORKER_H_
 | 
					
						
							|  |  |  | #define PLUGINS_SAMPLESINK_REMOTEOUTPUT_UDPSINKFECWORKER_H_
 | 
					
						
							| 
									
										
										
										
											2018-09-16 11:23:24 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-02 22:58:42 +01:00
										 |  |  | #include <channel/remotedatablock.h>
 | 
					
						
							| 
									
										
										
										
											2018-09-17 03:33:18 +02:00
										 |  |  | #include <QThread>
 | 
					
						
							|  |  |  | #include <QMutex>
 | 
					
						
							|  |  |  | #include <QWaitCondition>
 | 
					
						
							| 
									
										
										
										
											2018-09-17 03:42:08 +02:00
										 |  |  | #include <QHostAddress>
 | 
					
						
							| 
									
										
										
										
											2018-09-16 11:23:24 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-04-15 10:42:39 +02:00
										 |  |  | #include "cm256cc/cm256.h"
 | 
					
						
							| 
									
										
										
										
											2018-09-16 11:23:24 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | #include "util/messagequeue.h"
 | 
					
						
							|  |  |  | #include "util/message.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-09-17 03:42:08 +02:00
										 |  |  | class QUdpSocket; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-09-17 03:33:18 +02:00
										 |  |  | class UDPSinkFECWorker : public QThread | 
					
						
							| 
									
										
										
										
											2018-09-16 11:23:24 +02:00
										 |  |  | { | 
					
						
							|  |  |  |     Q_OBJECT | 
					
						
							|  |  |  | public: | 
					
						
							|  |  |  |     class MsgUDPFECEncodeAndSend : public Message | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         MESSAGE_CLASS_DECLARATION | 
					
						
							|  |  |  |     public: | 
					
						
							| 
									
										
										
										
											2019-02-02 22:58:42 +01:00
										 |  |  |         RemoteSuperBlock *getTxBlocks() const { return m_txBlockx; } | 
					
						
							| 
									
										
										
										
											2018-09-16 11:23:24 +02:00
										 |  |  |         uint32_t getNbBlocsFEC() const { return m_nbBlocksFEC; } | 
					
						
							|  |  |  |         uint32_t getTxDelay() const { return m_txDelay; } | 
					
						
							|  |  |  |         uint16_t getFrameIndex() const { return m_frameIndex; } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         static MsgUDPFECEncodeAndSend* create( | 
					
						
							| 
									
										
										
										
											2019-02-02 22:58:42 +01:00
										 |  |  |                 RemoteSuperBlock *txBlocks, | 
					
						
							| 
									
										
										
										
											2018-09-16 11:23:24 +02:00
										 |  |  |                 uint32_t nbBlocksFEC, | 
					
						
							|  |  |  |                 uint32_t txDelay, | 
					
						
							|  |  |  |                 uint16_t frameIndex) | 
					
						
							|  |  |  |         { | 
					
						
							|  |  |  |             return new MsgUDPFECEncodeAndSend(txBlocks, nbBlocksFEC, txDelay, frameIndex); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     private: | 
					
						
							| 
									
										
										
										
											2019-02-02 22:58:42 +01:00
										 |  |  |         RemoteSuperBlock *m_txBlockx; | 
					
						
							| 
									
										
										
										
											2018-09-16 11:23:24 +02:00
										 |  |  |         uint32_t m_nbBlocksFEC; | 
					
						
							|  |  |  |         uint32_t m_txDelay; | 
					
						
							|  |  |  |         uint16_t m_frameIndex; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         MsgUDPFECEncodeAndSend( | 
					
						
							| 
									
										
										
										
											2019-02-02 22:58:42 +01:00
										 |  |  |                 RemoteSuperBlock *txBlocks, | 
					
						
							| 
									
										
										
										
											2018-09-16 11:23:24 +02:00
										 |  |  |                 uint32_t nbBlocksFEC, | 
					
						
							|  |  |  |                 uint32_t txDelay, | 
					
						
							|  |  |  |                 uint16_t frameIndex) : | 
					
						
							|  |  |  |             m_txBlockx(txBlocks), | 
					
						
							|  |  |  |             m_nbBlocksFEC(nbBlocksFEC), | 
					
						
							|  |  |  |             m_txDelay(txDelay), | 
					
						
							|  |  |  |             m_frameIndex(frameIndex) | 
					
						
							|  |  |  |         {} | 
					
						
							|  |  |  |     }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     class MsgConfigureRemoteAddress : public Message | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         MESSAGE_CLASS_DECLARATION | 
					
						
							|  |  |  |     public: | 
					
						
							|  |  |  |         const QString& getAddress() const { return m_address; } | 
					
						
							|  |  |  |         uint16_t getPort() const { return m_port; } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         static MsgConfigureRemoteAddress* create(const QString& address, uint16_t port) | 
					
						
							|  |  |  |         { | 
					
						
							|  |  |  |             return new MsgConfigureRemoteAddress(address, port); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     private: | 
					
						
							|  |  |  |         QString m_address; | 
					
						
							|  |  |  |         uint16_t m_port; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         MsgConfigureRemoteAddress(const QString& address, uint16_t port) : | 
					
						
							|  |  |  |             m_address(address), | 
					
						
							|  |  |  |             m_port(port) | 
					
						
							|  |  |  |         {} | 
					
						
							|  |  |  |     }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-09-17 03:33:18 +02:00
										 |  |  |     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-16 11:23:24 +02:00
										 |  |  |     UDPSinkFECWorker(); | 
					
						
							|  |  |  |     ~UDPSinkFECWorker(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-09-17 03:33:18 +02:00
										 |  |  |     void startStop(bool start); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-02 22:58:42 +01:00
										 |  |  |     void pushTxFrame(RemoteSuperBlock *txBlocks, | 
					
						
							| 
									
										
										
										
											2018-09-16 11:23:24 +02:00
										 |  |  |         uint32_t nbBlocksFEC, | 
					
						
							|  |  |  |         uint32_t txDelay, | 
					
						
							|  |  |  |         uint16_t frameIndex); | 
					
						
							|  |  |  |     void setRemoteAddress(const QString& address, uint16_t port); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     MessageQueue m_inputMessageQueue;    //!< Queue for asynchronous inbound communication
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | private slots: | 
					
						
							|  |  |  |     void handleInputMessages(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | private: | 
					
						
							| 
									
										
										
										
											2018-09-17 03:33:18 +02:00
										 |  |  |     void startWork(); | 
					
						
							|  |  |  |     void stopWork(); | 
					
						
							|  |  |  |     void run(); | 
					
						
							| 
									
										
										
										
											2019-02-02 22:58:42 +01:00
										 |  |  |     void encodeAndTransmit(RemoteSuperBlock *txBlockx, uint16_t frameIndex, uint32_t nbBlocksFEC, uint32_t txDelay); | 
					
						
							| 
									
										
										
										
											2018-09-16 11:23:24 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-09-17 03:33:18 +02:00
										 |  |  |     QMutex m_startWaitMutex; | 
					
						
							|  |  |  |     QWaitCondition m_startWaiter; | 
					
						
							| 
									
										
										
										
											2018-11-18 09:39:22 +01:00
										 |  |  |     volatile bool m_running; | 
					
						
							| 
									
										
										
										
											2018-09-16 11:23:24 +02:00
										 |  |  |     CM256 m_cm256;                       //!< CM256 library object
 | 
					
						
							|  |  |  |     bool m_cm256Valid;                   //!< true if CM256 library is initialized correctly
 | 
					
						
							| 
									
										
										
										
											2018-09-17 03:42:08 +02:00
										 |  |  |     QUdpSocket   *m_udpSocket; | 
					
						
							| 
									
										
										
										
											2018-09-16 11:23:24 +02:00
										 |  |  |     QString      m_remoteAddress; | 
					
						
							|  |  |  |     uint16_t     m_remotePort; | 
					
						
							| 
									
										
										
										
											2018-09-17 03:42:08 +02:00
										 |  |  |     QHostAddress m_remoteHostAddress; | 
					
						
							| 
									
										
										
										
											2018-09-16 11:23:24 +02:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-02 22:58:42 +01:00
										 |  |  | #endif /* PLUGINS_SAMPLESINK_REMOTEOUTPUT_UDPSINKFECWORKER_H_ */
 |