| 
									
										
										
										
											2018-09-05 01:32:29 +02:00
										 |  |  | ///////////////////////////////////////////////////////////////////////////////////
 | 
					
						
							| 
									
										
										
										
											2019-01-22 23:39:12 +01:00
										 |  |  | // Copyright (C) 2018-2019 Edouard Griffiths, F4EXB.                             //
 | 
					
						
							| 
									
										
										
										
											2018-09-05 01:32:29 +02:00
										 |  |  | //                                                                               //
 | 
					
						
							| 
									
										
										
										
											2019-01-22 23:39:12 +01:00
										 |  |  | // Remote sink channel (Rx) UDP sender thread                                    //
 | 
					
						
							| 
									
										
										
										
											2018-09-05 01:32:29 +02:00
										 |  |  | //                                                                               //
 | 
					
						
							| 
									
										
										
										
											2019-01-22 23:39:12 +01: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-05 01:32:29 +02: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 06:39:30 +02:00
										 |  |  | // (at your option) any later version.                                           //
 | 
					
						
							| 
									
										
										
										
											2018-09-05 01:32:29 +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-12-11 23:19:22 +01:00
										 |  |  | #ifndef PLUGINS_CHANNELRX_REMOTESINK_REMOTESINKSENDER_H_
 | 
					
						
							|  |  |  | #define PLUGINS_CHANNELRX_REMOTESINK_REMOTESINKSENDER_H_
 | 
					
						
							| 
									
										
										
										
											2019-01-22 23:39:12 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-12-11 23:19:22 +01:00
										 |  |  | #include <QObject>
 | 
					
						
							| 
									
										
										
										
											2018-09-05 01:32:29 +02:00
										 |  |  | #include <QMutex>
 | 
					
						
							|  |  |  | #include <QWaitCondition>
 | 
					
						
							|  |  |  | #include <QHostAddress>
 | 
					
						
							| 
									
										
										
										
											2021-12-23 01:47:38 +01:00
										 |  |  | #include <QUdpSocket>
 | 
					
						
							| 
									
										
										
										
											2018-09-05 01:32:29 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-04-15 10:42:39 +02:00
										 |  |  | #include "cm256cc/cm256.h"
 | 
					
						
							| 
									
										
										
										
											2018-09-06 04:36:56 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-09-05 01:32:29 +02:00
										 |  |  | #include "util/message.h"
 | 
					
						
							|  |  |  | #include "util/messagequeue.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-12-11 23:19:22 +01:00
										 |  |  | #include "remotesinkfifo.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-12 10:44:58 +01:00
										 |  |  | class RemoteDataFrame; | 
					
						
							| 
									
										
										
										
											2018-09-05 01:32:29 +02:00
										 |  |  | class CM256; | 
					
						
							|  |  |  | class QUdpSocket; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-12-11 23:19:22 +01:00
										 |  |  | class RemoteSinkSender : public QObject { | 
					
						
							| 
									
										
										
										
											2018-09-05 01:32:29 +02:00
										 |  |  |     Q_OBJECT | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | public: | 
					
						
							| 
									
										
										
										
											2019-12-11 23:19:22 +01:00
										 |  |  |     RemoteSinkSender(); | 
					
						
							|  |  |  |     ~RemoteSinkSender(); | 
					
						
							| 
									
										
										
										
											2018-09-05 01:32:29 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-23 01:47:38 +01:00
										 |  |  |     bool startWork(); | 
					
						
							|  |  |  |     void stopWork(); | 
					
						
							| 
									
										
										
										
											2021-12-12 10:44:58 +01:00
										 |  |  |     RemoteDataFrame *getDataFrame(); | 
					
						
							| 
									
										
										
										
											2018-09-06 05:21:43 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-09-05 01:32:29 +02:00
										 |  |  | private: | 
					
						
							| 
									
										
										
										
											2021-12-23 01:47:38 +01:00
										 |  |  |     volatile bool m_running; | 
					
						
							| 
									
										
										
										
											2019-12-11 23:19:22 +01:00
										 |  |  |     RemoteSinkFifo m_fifo; | 
					
						
							| 
									
										
										
										
											2018-09-06 04:36:56 +02:00
										 |  |  |     CM256 m_cm256; | 
					
						
							|  |  |  |     CM256 *m_cm256p; | 
					
						
							| 
									
										
										
										
											2018-09-05 01:32:29 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     QHostAddress m_address; | 
					
						
							| 
									
										
										
										
											2021-12-23 01:47:38 +01:00
										 |  |  |     QUdpSocket m_socket; | 
					
						
							| 
									
										
										
										
											2018-09-05 01:32:29 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-12 10:44:58 +01:00
										 |  |  |     void sendDataFrame(RemoteDataFrame *dataFrame); | 
					
						
							| 
									
										
										
										
											2018-09-05 01:32:29 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | private slots: | 
					
						
							| 
									
										
										
										
											2021-12-23 01:47:38 +01:00
										 |  |  |     void started(); | 
					
						
							|  |  |  |     void finished(); | 
					
						
							| 
									
										
										
										
											2019-12-11 23:19:22 +01:00
										 |  |  |     void handleData(); | 
					
						
							| 
									
										
										
										
											2018-09-05 01:32:29 +02:00
										 |  |  | }; | 
					
						
							| 
									
										
										
										
											2019-01-22 23:39:12 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-12-11 23:19:22 +01:00
										 |  |  | #endif // PLUGINS_CHANNELRX_REMOTESINK_REMOTESINKSENDER_H_
 | 
					
						
							| 
									
										
										
										
											2019-01-22 23:39:12 +01:00
										 |  |  | 
 |