| 
									
										
										
										
											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/>.          //
 | 
					
						
							|  |  |  | ///////////////////////////////////////////////////////////////////////////////////
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-23 01:47:38 +01:00
										 |  |  | #include <QThread>
 | 
					
						
							| 
									
										
										
										
											2018-09-05 01:32:29 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-04-15 10:42:39 +02:00
										 |  |  | #include "cm256cc/cm256.h"
 | 
					
						
							| 
									
										
										
										
											2018-09-05 01:32:29 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-12-11 23:19:22 +01:00
										 |  |  | #include "channel/remotedatablock.h"
 | 
					
						
							|  |  |  | #include "remotesinksender.h"
 | 
					
						
							| 
									
										
										
										
											2018-09-05 01:32:29 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-12-11 23:19:22 +01:00
										 |  |  | RemoteSinkSender::RemoteSinkSender() : | 
					
						
							| 
									
										
										
										
											2021-12-23 01:47:38 +01:00
										 |  |  |     m_running(false), | 
					
						
							| 
									
										
										
										
											2019-12-11 23:19:22 +01:00
										 |  |  |     m_fifo(20, this), | 
					
						
							| 
									
										
										
										
											2018-09-05 01:32:29 +02:00
										 |  |  |     m_address(QHostAddress::LocalHost), | 
					
						
							| 
									
										
										
										
											2021-12-23 01:47:38 +01:00
										 |  |  |     m_socket(this) | 
					
						
							| 
									
										
										
										
											2018-09-05 01:32:29 +02:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2019-12-11 23:19:22 +01:00
										 |  |  |     qDebug("RemoteSinkSender::RemoteSinkSender"); | 
					
						
							|  |  |  |     m_cm256p = m_cm256.isInitialized() ? &m_cm256 : nullptr; | 
					
						
							| 
									
										
										
										
											2021-12-23 01:47:38 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | RemoteSinkSender::~RemoteSinkSender() | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     qDebug("RemoteSinkSender::~RemoteSinkSender"); | 
					
						
							|  |  |  |     m_socket.close(); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2019-12-11 23:19:22 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-23 01:47:38 +01:00
										 |  |  | bool RemoteSinkSender::startWork() | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     qDebug("RemoteSinkSender::startWork"); | 
					
						
							| 
									
										
										
										
											2019-12-11 23:19:22 +01:00
										 |  |  |     QObject::connect( | 
					
						
							|  |  |  |         &m_fifo, | 
					
						
							|  |  |  |         &RemoteSinkFifo::dataBlockServed, | 
					
						
							|  |  |  |         this, | 
					
						
							|  |  |  |         &RemoteSinkSender::handleData, | 
					
						
							|  |  |  |         Qt::QueuedConnection | 
					
						
							|  |  |  |     ); | 
					
						
							| 
									
										
										
										
											2021-12-23 01:47:38 +01:00
										 |  |  |     connect(thread(), SIGNAL(started()), this, SLOT(started())); | 
					
						
							|  |  |  |     connect(thread(), SIGNAL(finished()), this, SLOT(finished())); | 
					
						
							|  |  |  |     m_running = true; | 
					
						
							|  |  |  |     return m_running; | 
					
						
							| 
									
										
										
										
											2018-09-05 01:32:29 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-23 01:47:38 +01:00
										 |  |  | void RemoteSinkSender::started() | 
					
						
							| 
									
										
										
										
											2018-09-05 01:32:29 +02:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2021-12-23 01:47:38 +01:00
										 |  |  |     disconnect(thread(), SIGNAL(started()), this, SLOT(started())); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void RemoteSinkSender::stopWork() | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     qDebug("RemoteSinkSender::stopWork"); | 
					
						
							| 
									
										
										
										
											2021-12-23 16:27:19 +01:00
										 |  |  |     QObject::disconnect( | 
					
						
							|  |  |  |         &m_fifo, | 
					
						
							|  |  |  |         &RemoteSinkFifo::dataBlockServed, | 
					
						
							|  |  |  |         this, | 
					
						
							|  |  |  |         &RemoteSinkSender::handleData | 
					
						
							|  |  |  |     ); | 
					
						
							| 
									
										
										
										
											2021-12-23 01:47:38 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void RemoteSinkSender::finished() | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     // Close any existing connection
 | 
					
						
							|  |  |  |     if (m_socket.isOpen()) { | 
					
						
							|  |  |  |         m_socket.close(); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     m_running = false; | 
					
						
							|  |  |  |     disconnect(thread(), SIGNAL(finished()), this, SLOT(finished())); | 
					
						
							| 
									
										
										
										
											2018-09-05 01:32:29 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-12 10:44:58 +01:00
										 |  |  | RemoteDataFrame *RemoteSinkSender::getDataFrame() | 
					
						
							| 
									
										
										
										
											2018-09-05 01:32:29 +02:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2021-12-12 10:44:58 +01:00
										 |  |  |     return m_fifo.getDataFrame(); | 
					
						
							| 
									
										
										
										
											2018-09-05 01:32:29 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-12-11 23:19:22 +01:00
										 |  |  | void RemoteSinkSender::handleData() | 
					
						
							| 
									
										
										
										
											2018-09-05 01:32:29 +02:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2021-12-12 10:44:58 +01:00
										 |  |  |     RemoteDataFrame *dataFrame; | 
					
						
							| 
									
										
										
										
											2019-12-11 23:19:22 +01:00
										 |  |  |     unsigned int remainder = m_fifo.getRemainder(); | 
					
						
							| 
									
										
										
										
											2018-09-05 01:32:29 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-12-11 23:19:22 +01:00
										 |  |  |     while (remainder != 0) | 
					
						
							| 
									
										
										
										
											2018-09-05 01:32:29 +02:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2021-12-12 10:44:58 +01:00
										 |  |  |         remainder = m_fifo.readDataFrame(&dataFrame); | 
					
						
							| 
									
										
										
										
											2018-09-05 01:32:29 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-12 10:44:58 +01:00
										 |  |  |         if (dataFrame) { | 
					
						
							|  |  |  |             sendDataFrame(dataFrame); | 
					
						
							| 
									
										
										
										
											2019-12-11 23:19:22 +01:00
										 |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-09-06 05:21:43 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-12 10:44:58 +01:00
										 |  |  | void RemoteSinkSender::sendDataFrame(RemoteDataFrame *dataFrame) | 
					
						
							| 
									
										
										
										
											2018-09-05 01:32:29 +02:00
										 |  |  | { | 
					
						
							|  |  |  | 	CM256::cm256_encoder_params cm256Params;  //!< Main interface with CM256 encoder
 | 
					
						
							|  |  |  | 	CM256::cm256_block descriptorBlocks[256]; //!< Pointers to data for CM256 encoder
 | 
					
						
							| 
									
										
										
										
											2019-02-02 22:58:42 +01:00
										 |  |  | 	RemoteProtectedBlock fecBlocks[256];   //!< FEC data
 | 
					
						
							| 
									
										
										
										
											2018-09-05 01:32:29 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-12 10:44:58 +01:00
										 |  |  |     uint16_t frameIndex = dataFrame->m_txControlBlock.m_frameIndex; | 
					
						
							|  |  |  |     int nbBlocksFEC = dataFrame->m_txControlBlock.m_nbBlocksFEC; | 
					
						
							|  |  |  |     m_address.setAddress(dataFrame->m_txControlBlock.m_dataAddress); | 
					
						
							|  |  |  |     uint16_t dataPort = dataFrame->m_txControlBlock.m_dataPort; | 
					
						
							|  |  |  |     RemoteSuperBlock *txBlockx = dataFrame->m_superBlocks; | 
					
						
							| 
									
										
										
										
											2018-09-05 01:32:29 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-09-06 04:36:56 +02:00
										 |  |  |     if ((nbBlocksFEC == 0) || !m_cm256p) // Do not FEC encode
 | 
					
						
							| 
									
										
										
										
											2018-09-05 01:32:29 +02:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2021-12-23 01:47:38 +01:00
										 |  |  |         for (int i = 0; i < RemoteNbOrginalBlocks; i++) { // send block via UDP
 | 
					
						
							|  |  |  |             m_socket.writeDatagram((const char*)&txBlockx[i], (qint64 ) RemoteUdpSize, m_address, dataPort); | 
					
						
							| 
									
										
										
										
											2018-09-05 01:32:29 +02:00
										 |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     else | 
					
						
							|  |  |  |     { | 
					
						
							| 
									
										
										
										
											2019-02-02 22:58:42 +01:00
										 |  |  |         cm256Params.BlockBytes = sizeof(RemoteProtectedBlock); | 
					
						
							|  |  |  |         cm256Params.OriginalCount = RemoteNbOrginalBlocks; | 
					
						
							| 
									
										
										
										
											2018-09-05 01:32:29 +02:00
										 |  |  |         cm256Params.RecoveryCount = nbBlocksFEC; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         // Fill pointers to data
 | 
					
						
							|  |  |  |         for (int i = 0; i < cm256Params.OriginalCount + cm256Params.RecoveryCount; ++i) | 
					
						
							|  |  |  |         { | 
					
						
							|  |  |  |             if (i >= cm256Params.OriginalCount) { | 
					
						
							| 
									
										
										
										
											2019-02-02 22:58:42 +01:00
										 |  |  |                 memset((void *) &txBlockx[i].m_protectedBlock, 0, sizeof(RemoteProtectedBlock)); | 
					
						
							| 
									
										
										
										
											2018-09-05 01:32:29 +02:00
										 |  |  |             } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             txBlockx[i].m_header.m_frameIndex = frameIndex; | 
					
						
							|  |  |  |             txBlockx[i].m_header.m_blockIndex = i; | 
					
						
							| 
									
										
										
										
											2018-09-13 00:31:49 +02:00
										 |  |  |             txBlockx[i].m_header.m_sampleBytes = (SDR_RX_SAMP_SZ <= 16 ? 2 : 4); | 
					
						
							|  |  |  |             txBlockx[i].m_header.m_sampleBits = SDR_RX_SAMP_SZ; | 
					
						
							| 
									
										
										
										
											2018-09-05 01:32:29 +02:00
										 |  |  |             descriptorBlocks[i].Block = (void *) &(txBlockx[i].m_protectedBlock); | 
					
						
							|  |  |  |             descriptorBlocks[i].Index = txBlockx[i].m_header.m_blockIndex; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         // Encode FEC blocks
 | 
					
						
							| 
									
										
										
										
											2018-09-06 04:36:56 +02:00
										 |  |  |         if (m_cm256p->cm256_encode(cm256Params, descriptorBlocks, fecBlocks)) | 
					
						
							| 
									
										
										
										
											2018-09-05 01:32:29 +02:00
										 |  |  |         { | 
					
						
							| 
									
										
										
										
											2019-12-11 23:19:22 +01:00
										 |  |  |             qWarning("RemoteSinkSender::handleDataBlock: CM256 encode failed. No transmission."); | 
					
						
							| 
									
										
										
										
											2018-09-05 01:32:29 +02:00
										 |  |  |             // TODO: send without FEC changing meta data to set indication of no FEC
 | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         // Merge FEC with data to transmit
 | 
					
						
							|  |  |  |         for (int i = 0; i < cm256Params.RecoveryCount; i++) | 
					
						
							|  |  |  |         { | 
					
						
							|  |  |  |             txBlockx[i + cm256Params.OriginalCount].m_protectedBlock = fecBlocks[i]; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         // Transmit all blocks
 | 
					
						
							| 
									
										
										
										
											2021-12-23 01:47:38 +01:00
										 |  |  |         for (int i = 0; i < cm256Params.OriginalCount + cm256Params.RecoveryCount; i++) { // send block via UDP
 | 
					
						
							|  |  |  |             m_socket.writeDatagram((const char*)&txBlockx[i], (qint64 ) RemoteUdpSize, m_address, dataPort); | 
					
						
							| 
									
										
										
										
											2018-09-05 01:32:29 +02:00
										 |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-12 10:44:58 +01:00
										 |  |  |     dataFrame->m_txControlBlock.m_processed = true; | 
					
						
							| 
									
										
										
										
											2018-09-05 01:32:29 +02:00
										 |  |  | } |