| 
									
										
										
										
											2017-05-15 00:58:56 +02:00
										 |  |  | ///////////////////////////////////////////////////////////////////////////////////
 | 
					
						
							| 
									
										
										
										
											2017-05-21 13:32:56 +02:00
										 |  |  | // Copyright (C) 2017 Edouard Griffiths, F4EXB                                   //
 | 
					
						
							| 
									
										
										
										
											2017-05-15 00:58:56 +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.                                           //
 | 
					
						
							| 
									
										
										
										
											2017-05-15 00:58:56 +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/>.          //
 | 
					
						
							|  |  |  | ///////////////////////////////////////////////////////////////////////////////////
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include <string.h>
 | 
					
						
							|  |  |  | #include <errno.h>
 | 
					
						
							|  |  |  | #include <QDebug>
 | 
					
						
							| 
									
										
										
										
											2018-09-03 09:17:29 +02:00
										 |  |  | #include <QNetworkAccessManager>
 | 
					
						
							|  |  |  | #include <QNetworkReply>
 | 
					
						
							|  |  |  | #include <QJsonParseError>
 | 
					
						
							| 
									
										
										
										
											2018-12-26 22:30:35 +01:00
										 |  |  | #include <QBuffer>
 | 
					
						
							| 
									
										
										
										
											2017-05-15 00:58:56 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-12-14 18:22:45 +01:00
										 |  |  | #include "SWGDeviceSettings.h"
 | 
					
						
							|  |  |  | #include "SWGDeviceState.h"
 | 
					
						
							| 
									
										
										
										
											2018-05-28 00:40:33 +02:00
										 |  |  | #include "SWGDeviceReport.h"
 | 
					
						
							| 
									
										
										
										
											2019-02-02 23:27:34 +01:00
										 |  |  | #include "SWGRemoteOutputReport.h"
 | 
					
						
							| 
									
										
										
										
											2017-12-14 18:22:45 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-15 00:58:56 +02:00
										 |  |  | #include "util/simpleserializer.h"
 | 
					
						
							|  |  |  | #include "dsp/dspcommands.h"
 | 
					
						
							|  |  |  | #include "dsp/dspengine.h"
 | 
					
						
							|  |  |  | #include "dsp/filerecord.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-08 22:11:53 +02:00
										 |  |  | #include "device/deviceapi.h"
 | 
					
						
							| 
									
										
										
										
											2017-05-15 00:58:56 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-02 22:58:42 +01:00
										 |  |  | #include "remoteoutput.h"
 | 
					
						
							| 
									
										
										
										
											2020-07-12 09:42:33 +02:00
										 |  |  | #include "remoteoutputworker.h"
 | 
					
						
							| 
									
										
										
										
											2017-05-15 00:58:56 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-02 22:58:42 +01:00
										 |  |  | MESSAGE_CLASS_DEFINITION(RemoteOutput::MsgConfigureRemoteOutput, Message) | 
					
						
							|  |  |  | MESSAGE_CLASS_DEFINITION(RemoteOutput::MsgConfigureRemoteOutputWork, Message) | 
					
						
							|  |  |  | MESSAGE_CLASS_DEFINITION(RemoteOutput::MsgStartStop, Message) | 
					
						
							|  |  |  | MESSAGE_CLASS_DEFINITION(RemoteOutput::MsgConfigureRemoteOutputChunkCorrection, Message) | 
					
						
							| 
									
										
										
										
											2017-05-21 04:19:12 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-02 22:58:42 +01:00
										 |  |  | const uint32_t RemoteOutput::NbSamplesForRateCorrection = 5000000; | 
					
						
							| 
									
										
										
										
											2018-09-03 18:13:57 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-08 22:11:53 +02:00
										 |  |  | RemoteOutput::RemoteOutput(DeviceAPI *deviceAPI) : | 
					
						
							| 
									
										
										
										
											2017-05-15 00:58:56 +02:00
										 |  |  |     m_deviceAPI(deviceAPI), | 
					
						
							|  |  |  | 	m_settings(), | 
					
						
							| 
									
										
										
										
											2018-09-07 00:58:09 +02:00
										 |  |  | 	m_centerFrequency(0), | 
					
						
							| 
									
										
										
										
											2020-07-12 09:42:33 +02:00
										 |  |  |     m_remoteOutputWorker(nullptr), | 
					
						
							| 
									
										
										
										
											2019-02-02 22:58:42 +01:00
										 |  |  | 	m_deviceDescription("RemoteOutput"), | 
					
						
							| 
									
										
										
										
											2017-05-25 20:13:34 +02:00
										 |  |  |     m_startingTimeStamp(0), | 
					
						
							| 
									
										
										
										
											2018-09-03 09:17:29 +02:00
										 |  |  | 	m_masterTimer(deviceAPI->getMasterTimer()), | 
					
						
							|  |  |  | 	m_tickCount(0), | 
					
						
							| 
									
										
										
										
											2018-09-03 18:13:57 +02:00
										 |  |  |     m_tickMultiplier(20), | 
					
						
							| 
									
										
										
										
											2018-09-04 08:43:07 +02:00
										 |  |  | 	m_lastRemoteSampleCount(0), | 
					
						
							| 
									
										
										
										
											2018-09-03 09:17:29 +02:00
										 |  |  | 	m_lastSampleCount(0), | 
					
						
							| 
									
										
										
										
											2018-09-04 08:43:07 +02:00
										 |  |  | 	m_lastRemoteTimestampRateCorrection(0), | 
					
						
							| 
									
										
										
										
											2018-09-03 09:17:29 +02:00
										 |  |  | 	m_lastTimestampRateCorrection(0), | 
					
						
							| 
									
										
										
										
											2018-09-07 09:22:17 +02:00
										 |  |  | 	m_lastQueueLength(-2), | 
					
						
							| 
									
										
										
										
											2018-09-04 08:43:07 +02:00
										 |  |  | 	m_nbRemoteSamplesSinceRateCorrection(0), | 
					
						
							| 
									
										
										
										
											2018-09-03 09:17:29 +02:00
										 |  |  | 	m_nbSamplesSinceRateCorrection(0), | 
					
						
							|  |  |  | 	m_chunkSizeCorrection(0) | 
					
						
							| 
									
										
										
										
											2017-05-15 00:58:56 +02:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2019-05-21 00:27:08 +02:00
										 |  |  |     m_deviceAPI->setNbSinkStreams(1); | 
					
						
							| 
									
										
										
										
											2018-09-03 09:17:29 +02:00
										 |  |  |     m_networkManager = new QNetworkAccessManager(); | 
					
						
							|  |  |  |     connect(m_networkManager, SIGNAL(finished(QNetworkReply*)), this, SLOT(networkManagerFinished(QNetworkReply*))); | 
					
						
							|  |  |  |     connect(&m_masterTimer, SIGNAL(timeout()), this, SLOT(tick())); | 
					
						
							| 
									
										
										
										
											2017-05-15 00:58:56 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-02 22:58:42 +01:00
										 |  |  | RemoteOutput::~RemoteOutput() | 
					
						
							| 
									
										
										
										
											2017-05-15 00:58:56 +02:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2018-09-03 09:17:29 +02:00
										 |  |  |     disconnect(m_networkManager, SIGNAL(finished(QNetworkReply*)), this, SLOT(networkManagerFinished(QNetworkReply*))); | 
					
						
							| 
									
										
										
										
											2017-05-15 00:58:56 +02:00
										 |  |  | 	stop(); | 
					
						
							| 
									
										
										
										
											2018-09-03 09:17:29 +02:00
										 |  |  | 	delete m_networkManager; | 
					
						
							| 
									
										
										
										
											2017-05-15 00:58:56 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-02 22:58:42 +01:00
										 |  |  | void RemoteOutput::destroy() | 
					
						
							| 
									
										
										
										
											2017-09-16 11:34:25 +02:00
										 |  |  | { | 
					
						
							|  |  |  |     delete this; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-02 22:58:42 +01:00
										 |  |  | bool RemoteOutput::start() | 
					
						
							| 
									
										
										
										
											2017-05-15 00:58:56 +02:00
										 |  |  | { | 
					
						
							|  |  |  | 	QMutexLocker mutexLocker(&m_mutex); | 
					
						
							| 
									
										
										
										
											2019-02-02 22:58:42 +01:00
										 |  |  | 	qDebug() << "RemoteOutput::start"; | 
					
						
							| 
									
										
										
										
											2017-05-15 00:58:56 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-07-12 09:42:33 +02:00
										 |  |  | 	m_remoteOutputWorker = new RemoteOutputWorker(&m_sampleSourceFifo); | 
					
						
							|  |  |  |     m_remoteOutputWorker->moveToThread(&m_remoteOutputWorkerThread); | 
					
						
							|  |  |  | 	m_remoteOutputWorker->setDataAddress(m_settings.m_dataAddress, m_settings.m_dataPort); | 
					
						
							|  |  |  | 	m_remoteOutputWorker->setSamplerate(m_settings.m_sampleRate); | 
					
						
							|  |  |  | 	m_remoteOutputWorker->setNbBlocksFEC(m_settings.m_nbFECBlocks); | 
					
						
							|  |  |  | 	m_remoteOutputWorker->connectTimer(m_masterTimer); | 
					
						
							|  |  |  | 	startWorker(); | 
					
						
							| 
									
										
										
										
											2017-05-15 00:58:56 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-09-11 00:24:18 +02:00
										 |  |  | 	// restart auto rate correction
 | 
					
						
							| 
									
										
										
										
											2018-09-04 22:28:10 +02:00
										 |  |  | 	m_lastRemoteTimestampRateCorrection = 0; | 
					
						
							|  |  |  | 	m_lastTimestampRateCorrection = 0; | 
					
						
							| 
									
										
										
										
											2018-09-07 09:22:17 +02:00
										 |  |  | 	m_lastQueueLength = -2; // set first value out of bounds
 | 
					
						
							| 
									
										
										
										
											2018-09-11 00:24:18 +02:00
										 |  |  | 	m_chunkSizeCorrection = 0; | 
					
						
							| 
									
										
										
										
											2018-09-04 22:28:10 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-07-12 09:42:33 +02:00
										 |  |  |     m_remoteOutputWorker->setTxDelay(m_settings.m_txDelay); | 
					
						
							| 
									
										
										
										
											2017-06-08 00:01:56 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-15 00:58:56 +02:00
										 |  |  | 	mutexLocker.unlock(); | 
					
						
							|  |  |  | 	//applySettings(m_generalSettings, m_settings, true);
 | 
					
						
							| 
									
										
										
										
											2019-02-02 22:58:42 +01:00
										 |  |  | 	qDebug("RemoteOutput::start: started"); | 
					
						
							| 
									
										
										
										
											2017-05-15 00:58:56 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	return true; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-02 22:58:42 +01:00
										 |  |  | void RemoteOutput::init() | 
					
						
							| 
									
										
										
										
											2017-12-25 12:59:44 +01:00
										 |  |  | { | 
					
						
							|  |  |  |     applySettings(m_settings, true); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-02 22:58:42 +01:00
										 |  |  | void RemoteOutput::stop() | 
					
						
							| 
									
										
										
										
											2017-05-15 00:58:56 +02:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2019-02-02 22:58:42 +01:00
										 |  |  | 	qDebug() << "RemoteOutput::stop"; | 
					
						
							| 
									
										
										
										
											2017-05-15 00:58:56 +02:00
										 |  |  | 	QMutexLocker mutexLocker(&m_mutex); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-07-12 09:42:33 +02:00
										 |  |  | 	if (m_remoteOutputWorker) | 
					
						
							| 
									
										
										
										
											2017-05-15 00:58:56 +02:00
										 |  |  | 	{ | 
					
						
							| 
									
										
										
										
											2020-07-12 09:42:33 +02:00
										 |  |  | 	    stopWorker(); | 
					
						
							|  |  |  | 		delete m_remoteOutputWorker; | 
					
						
							|  |  |  | 		m_remoteOutputWorker = nullptr; | 
					
						
							| 
									
										
										
										
											2017-05-15 00:58:56 +02:00
										 |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-07-12 09:42:33 +02:00
										 |  |  | void RemoteOutput::startWorker() | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     m_remoteOutputWorker->startWork(); | 
					
						
							|  |  |  |     m_remoteOutputWorkerThread.start(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void RemoteOutput::stopWorker() | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	m_remoteOutputWorker->stopWork(); | 
					
						
							|  |  |  | 	m_remoteOutputWorkerThread.quit(); | 
					
						
							|  |  |  | 	m_remoteOutputWorkerThread.wait(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-02 22:58:42 +01:00
										 |  |  | QByteArray RemoteOutput::serialize() const | 
					
						
							| 
									
										
										
										
											2017-12-28 04:04:50 +01:00
										 |  |  | { | 
					
						
							|  |  |  |     return m_settings.serialize(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-02 22:58:42 +01:00
										 |  |  | bool RemoteOutput::deserialize(const QByteArray& data) | 
					
						
							| 
									
										
										
										
											2017-12-28 04:04:50 +01:00
										 |  |  | { | 
					
						
							|  |  |  |     bool success = true; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (!m_settings.deserialize(data)) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         m_settings.resetToDefaults(); | 
					
						
							|  |  |  |         success = false; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-02 22:58:42 +01:00
										 |  |  |     MsgConfigureRemoteOutput* message = MsgConfigureRemoteOutput::create(m_settings, true); | 
					
						
							| 
									
										
										
										
											2017-12-28 04:04:50 +01:00
										 |  |  |     m_inputMessageQueue.push(message); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (m_guiMessageQueue) | 
					
						
							|  |  |  |     { | 
					
						
							| 
									
										
										
										
											2019-02-02 22:58:42 +01:00
										 |  |  |         MsgConfigureRemoteOutput* messageToGUI = MsgConfigureRemoteOutput::create(m_settings, true); | 
					
						
							| 
									
										
										
										
											2017-12-28 04:04:50 +01:00
										 |  |  |         m_guiMessageQueue->push(messageToGUI); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return success; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-02 22:58:42 +01:00
										 |  |  | const QString& RemoteOutput::getDeviceDescription() const | 
					
						
							| 
									
										
										
										
											2017-05-15 00:58:56 +02:00
										 |  |  | { | 
					
						
							|  |  |  | 	return m_deviceDescription; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-02 22:58:42 +01:00
										 |  |  | int RemoteOutput::getSampleRate() const | 
					
						
							| 
									
										
										
										
											2017-05-15 00:58:56 +02:00
										 |  |  | { | 
					
						
							|  |  |  | 	return m_settings.m_sampleRate; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-02 22:58:42 +01:00
										 |  |  | quint64 RemoteOutput::getCenterFrequency() const | 
					
						
							| 
									
										
										
										
											2017-05-15 00:58:56 +02:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2018-09-07 00:58:09 +02:00
										 |  |  | 	return m_centerFrequency; | 
					
						
							| 
									
										
										
										
											2017-12-28 04:04:50 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-02 22:58:42 +01:00
										 |  |  | std::time_t RemoteOutput::getStartingTimeStamp() const | 
					
						
							| 
									
										
										
										
											2017-05-15 00:58:56 +02:00
										 |  |  | { | 
					
						
							|  |  |  | 	return m_startingTimeStamp; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-02 22:58:42 +01:00
										 |  |  | bool RemoteOutput::handleMessage(const Message& message) | 
					
						
							| 
									
										
										
										
											2017-05-15 00:58:56 +02:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2017-05-23 01:41:30 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-02 22:58:42 +01:00
										 |  |  |     if (MsgConfigureRemoteOutput::match(message)) | 
					
						
							| 
									
										
										
										
											2017-05-15 00:58:56 +02:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2019-02-02 22:58:42 +01:00
										 |  |  |         qDebug() << "RemoteOutput::handleMessage:" << message.getIdentifier(); | 
					
						
							|  |  |  | 	    MsgConfigureRemoteOutput& conf = (MsgConfigureRemoteOutput&) message; | 
					
						
							| 
									
										
										
										
											2017-05-23 01:41:30 +02:00
										 |  |  |         applySettings(conf.getSettings(), conf.getForce()); | 
					
						
							| 
									
										
										
										
											2017-05-15 00:58:56 +02:00
										 |  |  |         return true; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2019-02-02 22:58:42 +01:00
										 |  |  | 	else if (MsgConfigureRemoteOutputWork::match(message)) | 
					
						
							| 
									
										
										
										
											2017-05-15 00:58:56 +02:00
										 |  |  | 	{ | 
					
						
							| 
									
										
										
										
											2019-02-02 22:58:42 +01:00
										 |  |  | 		MsgConfigureRemoteOutputWork& conf = (MsgConfigureRemoteOutputWork&) message; | 
					
						
							| 
									
										
										
										
											2017-05-15 00:58:56 +02:00
										 |  |  | 		bool working = conf.isWorking(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-07-12 09:42:33 +02:00
										 |  |  | 		if (m_remoteOutputWorker != 0) | 
					
						
							| 
									
										
										
										
											2017-05-15 00:58:56 +02:00
										 |  |  | 		{ | 
					
						
							|  |  |  | 			if (working) | 
					
						
							|  |  |  | 			{ | 
					
						
							| 
									
										
										
										
											2020-07-12 09:42:33 +02:00
										 |  |  | 			    m_remoteOutputWorker->startWork(); | 
					
						
							| 
									
										
										
										
											2017-05-15 00:58:56 +02:00
										 |  |  | 			} | 
					
						
							|  |  |  | 			else | 
					
						
							|  |  |  | 			{ | 
					
						
							| 
									
										
										
										
											2020-07-12 09:42:33 +02:00
										 |  |  | 			    m_remoteOutputWorker->stopWork(); | 
					
						
							| 
									
										
										
										
											2017-05-15 00:58:56 +02:00
										 |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		return true; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2017-12-14 18:02:49 +01:00
										 |  |  |     else if (MsgStartStop::match(message)) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         MsgStartStop& cmd = (MsgStartStop&) message; | 
					
						
							| 
									
										
										
										
											2019-02-02 22:58:42 +01:00
										 |  |  |         qDebug() << "RemoteOutput::handleMessage: MsgStartStop: " << (cmd.getStartStop() ? "start" : "stop"); | 
					
						
							| 
									
										
										
										
											2017-12-14 18:02:49 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |         if (cmd.getStartStop()) | 
					
						
							|  |  |  |         { | 
					
						
							| 
									
										
										
										
											2019-05-08 22:11:53 +02:00
										 |  |  |             if (m_deviceAPI->initDeviceEngine()) | 
					
						
							| 
									
										
										
										
											2017-12-14 18:02:49 +01:00
										 |  |  |             { | 
					
						
							| 
									
										
										
										
											2019-05-08 22:11:53 +02:00
										 |  |  |                 m_deviceAPI->startDeviceEngine(); | 
					
						
							| 
									
										
										
										
											2017-12-14 18:02:49 +01:00
										 |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         else | 
					
						
							|  |  |  |         { | 
					
						
							| 
									
										
										
										
											2019-05-08 22:11:53 +02:00
										 |  |  |             m_deviceAPI->stopDeviceEngine(); | 
					
						
							| 
									
										
										
										
											2017-12-14 18:02:49 +01:00
										 |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-12-26 22:30:35 +01:00
										 |  |  |         if (m_settings.m_useReverseAPI) { | 
					
						
							|  |  |  |             webapiReverseSendStartStop(cmd.getStartStop()); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-12-14 18:02:49 +01:00
										 |  |  |         return true; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2019-02-02 22:58:42 +01:00
										 |  |  | 	else if (MsgConfigureRemoteOutputChunkCorrection::match(message)) | 
					
						
							| 
									
										
										
										
											2017-06-05 01:18:35 +02:00
										 |  |  | 	{ | 
					
						
							| 
									
										
										
										
											2019-02-02 22:58:42 +01:00
										 |  |  | 	    MsgConfigureRemoteOutputChunkCorrection& conf = (MsgConfigureRemoteOutputChunkCorrection&) message; | 
					
						
							| 
									
										
										
										
											2017-06-05 01:18:35 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-07-12 09:42:33 +02:00
										 |  |  | 	    if (m_remoteOutputWorker != 0) | 
					
						
							| 
									
										
										
										
											2017-06-05 01:18:35 +02:00
										 |  |  |         { | 
					
						
							| 
									
										
										
										
											2020-07-12 09:42:33 +02:00
										 |  |  | 	        m_remoteOutputWorker->setChunkCorrection(conf.getChunkCorrection()); | 
					
						
							| 
									
										
										
										
											2017-06-05 01:18:35 +02:00
										 |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	    return true; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2017-05-15 00:58:56 +02:00
										 |  |  | 	else | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		return false; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-02 22:58:42 +01:00
										 |  |  | void RemoteOutput::applySettings(const RemoteOutputSettings& settings, bool force) | 
					
						
							| 
									
										
										
										
											2017-05-15 00:58:56 +02:00
										 |  |  | { | 
					
						
							|  |  |  |     QMutexLocker mutexLocker(&m_mutex); | 
					
						
							|  |  |  |     bool forwardChange = false; | 
					
						
							| 
									
										
										
										
											2017-06-08 00:01:56 +02:00
										 |  |  |     bool changeTxDelay = false; | 
					
						
							| 
									
										
										
										
											2018-12-26 22:30:35 +01:00
										 |  |  |     QList<QString> reverseAPIKeys; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if ((m_settings.m_dataAddress != settings.m_dataAddress) || force) { | 
					
						
							|  |  |  |         reverseAPIKeys.append("dataAddress"); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     if ((m_settings.m_dataPort != settings.m_dataPort) || force) { | 
					
						
							|  |  |  |         reverseAPIKeys.append("dataPort"); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     if ((m_settings.m_apiAddress != settings.m_apiAddress) || force) { | 
					
						
							|  |  |  |         reverseAPIKeys.append("apiAddress"); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     if ((m_settings.m_apiPort != settings.m_apiPort) || force) { | 
					
						
							|  |  |  |         reverseAPIKeys.append("apiPort"); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2017-05-15 00:58:56 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-08-29 18:39:40 +02:00
										 |  |  |     if (force || (m_settings.m_dataAddress != settings.m_dataAddress) || (m_settings.m_dataPort != settings.m_dataPort)) | 
					
						
							| 
									
										
										
										
											2017-05-21 20:13:17 +02:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2020-07-12 09:42:33 +02:00
										 |  |  |         if (m_remoteOutputWorker != 0) { | 
					
						
							|  |  |  |             m_remoteOutputWorker->setDataAddress(settings.m_dataAddress, settings.m_dataPort); | 
					
						
							| 
									
										
										
										
											2017-05-21 20:13:17 +02:00
										 |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-15 00:58:56 +02:00
										 |  |  |     if (force || (m_settings.m_sampleRate != settings.m_sampleRate)) | 
					
						
							|  |  |  |     { | 
					
						
							| 
									
										
										
										
											2018-12-26 22:30:35 +01:00
										 |  |  |         reverseAPIKeys.append("sampleRate"); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-07-12 09:42:33 +02:00
										 |  |  |         if (m_remoteOutputWorker != 0) { | 
					
						
							|  |  |  |             m_remoteOutputWorker->setSamplerate(settings.m_sampleRate); | 
					
						
							| 
									
										
										
										
											2017-05-15 00:58:56 +02:00
										 |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-09-04 08:43:07 +02:00
										 |  |  |         m_tickMultiplier = (21*NbSamplesForRateCorrection) / (2*settings.m_sampleRate); // two times per sample filling period plus small extension
 | 
					
						
							| 
									
										
										
										
											2018-09-03 18:13:57 +02:00
										 |  |  |         m_tickMultiplier = m_tickMultiplier < 20 ? 20 : m_tickMultiplier; // not below half a second
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-15 00:58:56 +02:00
										 |  |  |         forwardChange = true; | 
					
						
							| 
									
										
										
										
											2017-06-08 00:01:56 +02:00
										 |  |  |         changeTxDelay = true; | 
					
						
							| 
									
										
										
										
											2017-05-15 00:58:56 +02:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-06-08 00:01:56 +02:00
										 |  |  |     if (force || (m_settings.m_nbFECBlocks != settings.m_nbFECBlocks)) | 
					
						
							| 
									
										
										
										
											2017-05-21 20:13:17 +02:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2018-12-26 22:30:35 +01:00
										 |  |  |         reverseAPIKeys.append("nbFECBlocks"); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-07-12 09:42:33 +02:00
										 |  |  |         if (m_remoteOutputWorker != 0) { | 
					
						
							|  |  |  |             m_remoteOutputWorker->setNbBlocksFEC(settings.m_nbFECBlocks); | 
					
						
							| 
									
										
										
										
											2017-05-15 00:58:56 +02:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2017-06-08 00:01:56 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |         changeTxDelay = true; | 
					
						
							| 
									
										
										
										
											2017-05-21 20:13:17 +02:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2017-05-15 00:58:56 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-06-08 00:01:56 +02:00
										 |  |  |     if (force || (m_settings.m_txDelay != settings.m_txDelay)) | 
					
						
							| 
									
										
										
										
											2017-05-21 20:13:17 +02:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2018-12-26 22:30:35 +01:00
										 |  |  |         reverseAPIKeys.append("txDelay"); | 
					
						
							| 
									
										
										
										
											2017-06-08 00:01:56 +02:00
										 |  |  |         changeTxDelay = true; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (changeTxDelay) | 
					
						
							|  |  |  |     { | 
					
						
							| 
									
										
										
										
											2020-07-12 09:42:33 +02:00
										 |  |  |         if (m_remoteOutputWorker != 0) { | 
					
						
							|  |  |  |             m_remoteOutputWorker->setTxDelay(settings.m_txDelay); | 
					
						
							| 
									
										
										
										
											2017-05-21 20:13:17 +02:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2017-05-15 00:58:56 +02:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-21 20:13:17 +02:00
										 |  |  |     mutexLocker.unlock(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-02 22:58:42 +01:00
										 |  |  |     qDebug() << "RemoteOutput::applySettings:" | 
					
						
							| 
									
										
										
										
											2018-08-28 06:29:59 +02:00
										 |  |  |             << " m_sampleRate: " << settings.m_sampleRate | 
					
						
							|  |  |  |             << " m_txDelay: " << settings.m_txDelay | 
					
						
							|  |  |  |             << " m_nbFECBlocks: " << settings.m_nbFECBlocks | 
					
						
							| 
									
										
										
										
											2018-08-29 18:39:40 +02:00
										 |  |  |             << " m_apiAddress: " << settings.m_apiAddress | 
					
						
							|  |  |  |             << " m_apiPort: " << settings.m_apiPort | 
					
						
							|  |  |  |             << " m_dataAddress: " << settings.m_dataAddress | 
					
						
							| 
									
										
										
										
											2018-08-28 06:29:59 +02:00
										 |  |  |             << " m_dataPort: " << settings.m_dataPort; | 
					
						
							| 
									
										
										
										
											2017-05-21 12:58:57 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-15 00:58:56 +02:00
										 |  |  |     if (forwardChange) | 
					
						
							|  |  |  |     { | 
					
						
							| 
									
										
										
										
											2018-09-07 00:58:09 +02:00
										 |  |  |         DSPSignalNotification *notif = new DSPSignalNotification(settings.m_sampleRate, m_centerFrequency); | 
					
						
							| 
									
										
										
										
											2017-09-13 23:42:28 +02:00
										 |  |  |         m_deviceAPI->getDeviceEngineInputMessageQueue()->push(notif); | 
					
						
							| 
									
										
										
										
											2017-05-15 00:58:56 +02:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-08-28 06:29:59 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-12-26 22:30:35 +01:00
										 |  |  |     if (settings.m_useReverseAPI) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         bool fullUpdate = ((m_settings.m_useReverseAPI != settings.m_useReverseAPI) && settings.m_useReverseAPI) || | 
					
						
							|  |  |  |                 (m_settings.m_reverseAPIAddress != settings.m_reverseAPIAddress) || | 
					
						
							|  |  |  |                 (m_settings.m_reverseAPIPort != settings.m_reverseAPIPort) || | 
					
						
							|  |  |  |                 (m_settings.m_reverseAPIDeviceIndex != settings.m_reverseAPIDeviceIndex); | 
					
						
							|  |  |  |         webapiReverseSendSettings(reverseAPIKeys, settings, fullUpdate || force); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-08-28 06:29:59 +02:00
										 |  |  |     m_settings = settings; | 
					
						
							| 
									
										
										
										
											2017-12-14 18:22:45 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-02 22:58:42 +01:00
										 |  |  | int RemoteOutput::webapiRunGet( | 
					
						
							| 
									
										
										
										
											2017-12-14 18:22:45 +01:00
										 |  |  |         SWGSDRangel::SWGDeviceState& response, | 
					
						
							| 
									
										
										
										
											2018-11-13 08:51:14 +01:00
										 |  |  |         QString& errorMessage) | 
					
						
							| 
									
										
										
										
											2017-12-14 18:22:45 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2018-11-13 08:51:14 +01:00
										 |  |  |     (void) errorMessage; | 
					
						
							| 
									
										
										
										
											2017-12-14 18:22:45 +01:00
										 |  |  |     m_deviceAPI->getDeviceEngineStateStr(*response.getState()); | 
					
						
							|  |  |  |     return 200; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-02 22:58:42 +01:00
										 |  |  | int RemoteOutput::webapiRun( | 
					
						
							| 
									
										
										
										
											2017-12-14 18:22:45 +01:00
										 |  |  |         bool run, | 
					
						
							|  |  |  |         SWGSDRangel::SWGDeviceState& response, | 
					
						
							| 
									
										
										
										
											2018-11-13 08:51:14 +01:00
										 |  |  |         QString& errorMessage) | 
					
						
							| 
									
										
										
										
											2017-12-14 18:22:45 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2018-11-13 08:51:14 +01:00
										 |  |  |     (void) errorMessage; | 
					
						
							| 
									
										
										
										
											2017-12-14 23:29:12 +01:00
										 |  |  |     m_deviceAPI->getDeviceEngineStateStr(*response.getState()); | 
					
						
							| 
									
										
										
										
											2017-12-14 18:22:45 +01:00
										 |  |  |     MsgStartStop *message = MsgStartStop::create(run); | 
					
						
							|  |  |  |     m_inputMessageQueue.push(message); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (m_guiMessageQueue) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         MsgStartStop *messagetoGui = MsgStartStop::create(run); | 
					
						
							|  |  |  |         m_guiMessageQueue->push(messagetoGui); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2017-05-15 00:58:56 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-12-14 18:22:45 +01:00
										 |  |  |     return 200; | 
					
						
							| 
									
										
										
										
											2017-05-15 00:58:56 +02:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2017-12-14 18:22:45 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-02 22:58:42 +01:00
										 |  |  | int RemoteOutput::webapiSettingsGet( | 
					
						
							| 
									
										
										
										
											2018-05-28 00:40:33 +02:00
										 |  |  |                 SWGSDRangel::SWGDeviceSettings& response, | 
					
						
							| 
									
										
										
										
											2018-11-13 08:51:14 +01:00
										 |  |  |                 QString& errorMessage) | 
					
						
							| 
									
										
										
										
											2018-05-28 00:40:33 +02:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2018-11-13 08:51:14 +01:00
										 |  |  |     (void) errorMessage; | 
					
						
							| 
									
										
										
										
											2019-02-02 23:27:34 +01:00
										 |  |  |     response.setRemoteOutputSettings(new SWGSDRangel::SWGRemoteOutputSettings()); | 
					
						
							|  |  |  |     response.getRemoteOutputSettings()->init(); | 
					
						
							| 
									
										
										
										
											2018-05-28 00:40:33 +02:00
										 |  |  |     webapiFormatDeviceSettings(response, m_settings); | 
					
						
							|  |  |  |     return 200; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-02 22:58:42 +01:00
										 |  |  | int RemoteOutput::webapiSettingsPutPatch( | 
					
						
							| 
									
										
										
										
											2018-05-28 00:40:33 +02:00
										 |  |  |                 bool force, | 
					
						
							|  |  |  |                 const QStringList& deviceSettingsKeys, | 
					
						
							|  |  |  |                 SWGSDRangel::SWGDeviceSettings& response, // query + response
 | 
					
						
							| 
									
										
										
										
											2018-11-13 08:51:14 +01:00
										 |  |  |                 QString& errorMessage) | 
					
						
							| 
									
										
										
										
											2018-05-28 00:40:33 +02:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2018-11-13 08:51:14 +01:00
										 |  |  |     (void) errorMessage; | 
					
						
							| 
									
										
										
										
											2019-02-02 22:58:42 +01:00
										 |  |  |     RemoteOutputSettings settings = m_settings; | 
					
						
							| 
									
										
										
										
											2019-08-04 20:24:44 +02:00
										 |  |  |     webapiUpdateDeviceSettings(settings, deviceSettingsKeys, response); | 
					
						
							| 
									
										
										
										
											2018-05-28 00:40:33 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-08-04 20:24:44 +02:00
										 |  |  |     MsgConfigureRemoteOutput *msg = MsgConfigureRemoteOutput::create(settings, force); | 
					
						
							|  |  |  |     m_inputMessageQueue.push(msg); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (m_guiMessageQueue) // forward to GUI if any
 | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         MsgConfigureRemoteOutput *msgToGUI = MsgConfigureRemoteOutput::create(settings, force); | 
					
						
							|  |  |  |         m_guiMessageQueue->push(msgToGUI); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     webapiFormatDeviceSettings(response, settings); | 
					
						
							|  |  |  |     return 200; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void RemoteOutput::webapiUpdateDeviceSettings( | 
					
						
							|  |  |  |         RemoteOutputSettings& settings, | 
					
						
							|  |  |  |         const QStringList& deviceSettingsKeys, | 
					
						
							|  |  |  |         SWGSDRangel::SWGDeviceSettings& response) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2018-05-28 00:40:33 +02:00
										 |  |  |     if (deviceSettingsKeys.contains("sampleRate")) { | 
					
						
							| 
									
										
										
										
											2019-02-02 23:27:34 +01:00
										 |  |  |         settings.m_sampleRate = response.getRemoteOutputSettings()->getSampleRate(); | 
					
						
							| 
									
										
										
										
											2018-05-28 00:40:33 +02:00
										 |  |  |     } | 
					
						
							|  |  |  |     if (deviceSettingsKeys.contains("txDelay")) { | 
					
						
							| 
									
										
										
										
											2019-02-02 23:27:34 +01:00
										 |  |  |         settings.m_txDelay = response.getRemoteOutputSettings()->getTxDelay(); | 
					
						
							| 
									
										
										
										
											2018-05-28 00:40:33 +02:00
										 |  |  |     } | 
					
						
							|  |  |  |     if (deviceSettingsKeys.contains("nbFECBlocks")) { | 
					
						
							| 
									
										
										
										
											2019-02-02 23:27:34 +01:00
										 |  |  |         settings.m_nbFECBlocks = response.getRemoteOutputSettings()->getNbFecBlocks(); | 
					
						
							| 
									
										
										
										
											2018-05-28 00:40:33 +02:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-08-29 18:39:40 +02:00
										 |  |  |     if (deviceSettingsKeys.contains("apiAddress")) { | 
					
						
							| 
									
										
										
										
											2019-02-02 23:27:34 +01:00
										 |  |  |         settings.m_apiAddress = *response.getRemoteOutputSettings()->getApiAddress(); | 
					
						
							| 
									
										
										
										
											2018-05-28 00:40:33 +02:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-08-29 18:39:40 +02:00
										 |  |  |     if (deviceSettingsKeys.contains("apiPort")) { | 
					
						
							| 
									
										
										
										
											2019-02-02 23:27:34 +01:00
										 |  |  |         settings.m_apiPort = response.getRemoteOutputSettings()->getApiPort(); | 
					
						
							| 
									
										
										
										
											2018-05-28 00:40:33 +02:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-08-29 18:39:40 +02:00
										 |  |  |     if (deviceSettingsKeys.contains("dataAddress")) { | 
					
						
							| 
									
										
										
										
											2019-02-02 23:27:34 +01:00
										 |  |  |         settings.m_dataAddress = *response.getRemoteOutputSettings()->getDataAddress(); | 
					
						
							| 
									
										
										
										
											2018-05-28 00:40:33 +02:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-08-29 18:39:40 +02:00
										 |  |  |     if (deviceSettingsKeys.contains("dataPort")) { | 
					
						
							| 
									
										
										
										
											2019-02-02 23:27:34 +01:00
										 |  |  |         settings.m_dataPort = response.getRemoteOutputSettings()->getDataPort(); | 
					
						
							| 
									
										
										
										
											2018-05-28 00:40:33 +02:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-09-01 10:44:12 +02:00
										 |  |  |     if (deviceSettingsKeys.contains("deviceIndex")) { | 
					
						
							| 
									
										
										
										
											2019-02-02 23:27:34 +01:00
										 |  |  |         settings.m_deviceIndex = response.getRemoteOutputSettings()->getDeviceIndex(); | 
					
						
							| 
									
										
										
										
											2018-09-01 10:44:12 +02:00
										 |  |  |     } | 
					
						
							|  |  |  |     if (deviceSettingsKeys.contains("channelIndex")) { | 
					
						
							| 
									
										
										
										
											2019-02-02 23:27:34 +01:00
										 |  |  |         settings.m_channelIndex = response.getRemoteOutputSettings()->getChannelIndex(); | 
					
						
							| 
									
										
										
										
											2018-09-01 10:44:12 +02:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2019-01-11 14:45:00 +01:00
										 |  |  |     if (deviceSettingsKeys.contains("useReverseAPI")) { | 
					
						
							| 
									
										
										
										
											2019-02-02 23:27:34 +01:00
										 |  |  |         settings.m_useReverseAPI = response.getRemoteOutputSettings()->getUseReverseApi() != 0; | 
					
						
							| 
									
										
										
										
											2019-01-11 14:45:00 +01:00
										 |  |  |     } | 
					
						
							|  |  |  |     if (deviceSettingsKeys.contains("reverseAPIAddress")) { | 
					
						
							| 
									
										
										
										
											2019-02-02 23:27:34 +01:00
										 |  |  |         settings.m_reverseAPIAddress = *response.getRemoteOutputSettings()->getReverseApiAddress(); | 
					
						
							| 
									
										
										
										
											2019-01-11 14:45:00 +01:00
										 |  |  |     } | 
					
						
							|  |  |  |     if (deviceSettingsKeys.contains("reverseAPIPort")) { | 
					
						
							| 
									
										
										
										
											2019-02-02 23:27:34 +01:00
										 |  |  |         settings.m_reverseAPIPort = response.getRemoteOutputSettings()->getReverseApiPort(); | 
					
						
							| 
									
										
										
										
											2019-01-11 14:45:00 +01:00
										 |  |  |     } | 
					
						
							|  |  |  |     if (deviceSettingsKeys.contains("reverseAPIDeviceIndex")) { | 
					
						
							| 
									
										
										
										
											2019-02-02 23:27:34 +01:00
										 |  |  |         settings.m_reverseAPIDeviceIndex = response.getRemoteOutputSettings()->getReverseApiDeviceIndex(); | 
					
						
							| 
									
										
										
										
											2019-01-11 14:45:00 +01:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-05-28 00:40:33 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-02 22:58:42 +01:00
										 |  |  | int RemoteOutput::webapiReportGet( | 
					
						
							| 
									
										
										
										
											2018-05-28 00:40:33 +02:00
										 |  |  |         SWGSDRangel::SWGDeviceReport& response, | 
					
						
							| 
									
										
										
										
											2018-11-13 08:51:14 +01:00
										 |  |  |         QString& errorMessage) | 
					
						
							| 
									
										
										
										
											2018-05-28 00:40:33 +02:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2018-11-13 08:51:14 +01:00
										 |  |  |     (void) errorMessage; | 
					
						
							| 
									
										
										
										
											2019-02-02 23:27:34 +01:00
										 |  |  |     response.setRemoteOutputReport(new SWGSDRangel::SWGRemoteOutputReport()); | 
					
						
							|  |  |  |     response.getRemoteOutputReport()->init(); | 
					
						
							| 
									
										
										
										
											2018-05-28 00:40:33 +02:00
										 |  |  |     webapiFormatDeviceReport(response); | 
					
						
							|  |  |  |     return 200; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-02 22:58:42 +01:00
										 |  |  | void RemoteOutput::webapiFormatDeviceSettings(SWGSDRangel::SWGDeviceSettings& response, const RemoteOutputSettings& settings) | 
					
						
							| 
									
										
										
										
											2018-05-28 00:40:33 +02:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2019-08-04 20:24:44 +02:00
										 |  |  |     response.getRemoteOutputSettings()->setCenterFrequency(settings.m_centerFrequency); | 
					
						
							| 
									
										
										
										
											2019-02-02 23:27:34 +01:00
										 |  |  |     response.getRemoteOutputSettings()->setSampleRate(settings.m_sampleRate); | 
					
						
							|  |  |  |     response.getRemoteOutputSettings()->setTxDelay(settings.m_txDelay); | 
					
						
							|  |  |  |     response.getRemoteOutputSettings()->setNbFecBlocks(settings.m_nbFECBlocks); | 
					
						
							|  |  |  |     response.getRemoteOutputSettings()->setApiAddress(new QString(settings.m_apiAddress)); | 
					
						
							|  |  |  |     response.getRemoteOutputSettings()->setApiPort(settings.m_apiPort); | 
					
						
							|  |  |  |     response.getRemoteOutputSettings()->setDataAddress(new QString(settings.m_dataAddress)); | 
					
						
							|  |  |  |     response.getRemoteOutputSettings()->setDataPort(settings.m_dataPort); | 
					
						
							|  |  |  |     response.getRemoteOutputSettings()->setDeviceIndex(settings.m_deviceIndex); | 
					
						
							|  |  |  |     response.getRemoteOutputSettings()->setChannelIndex(settings.m_channelIndex); | 
					
						
							|  |  |  |     response.getRemoteOutputSettings()->setUseReverseApi(settings.m_useReverseAPI ? 1 : 0); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (response.getRemoteOutputSettings()->getReverseApiAddress()) { | 
					
						
							|  |  |  |         *response.getRemoteOutputSettings()->getReverseApiAddress() = settings.m_reverseAPIAddress; | 
					
						
							| 
									
										
										
										
											2019-01-11 14:45:00 +01:00
										 |  |  |     } else { | 
					
						
							| 
									
										
										
										
											2019-02-02 23:27:34 +01:00
										 |  |  |         response.getRemoteOutputSettings()->setReverseApiAddress(new QString(settings.m_reverseAPIAddress)); | 
					
						
							| 
									
										
										
										
											2019-01-11 14:45:00 +01:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-02 23:27:34 +01:00
										 |  |  |     response.getRemoteOutputSettings()->setReverseApiPort(settings.m_reverseAPIPort); | 
					
						
							|  |  |  |     response.getRemoteOutputSettings()->setReverseApiDeviceIndex(settings.m_reverseAPIDeviceIndex); | 
					
						
							| 
									
										
										
										
											2018-05-28 00:40:33 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-02 22:58:42 +01:00
										 |  |  | void RemoteOutput::webapiFormatDeviceReport(SWGSDRangel::SWGDeviceReport& response) | 
					
						
							| 
									
										
										
										
											2018-05-28 00:40:33 +02:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2018-11-13 14:21:36 +01:00
										 |  |  |     uint64_t ts_usecs; | 
					
						
							| 
									
										
										
										
											2019-02-02 23:27:34 +01:00
										 |  |  |     response.getRemoteOutputReport()->setBufferRwBalance(m_sampleSourceFifo.getRWBalance()); | 
					
						
							| 
									
										
										
										
											2020-07-12 09:42:33 +02:00
										 |  |  |     response.getRemoteOutputReport()->setSampleCount(m_remoteOutputWorker ? (int) m_remoteOutputWorker->getSamplesCount(ts_usecs) : 0); | 
					
						
							| 
									
										
										
										
											2018-05-28 00:40:33 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-02 22:58:42 +01:00
										 |  |  | void RemoteOutput::tick() | 
					
						
							| 
									
										
										
										
											2018-09-03 09:17:29 +02:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2018-09-03 18:13:57 +02:00
										 |  |  |     if (++m_tickCount == m_tickMultiplier) | 
					
						
							| 
									
										
										
										
											2018-09-03 09:17:29 +02:00
										 |  |  |     { | 
					
						
							|  |  |  |         QString reportURL; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         reportURL = QString("http://%1:%2/sdrangel/deviceset/%3/channel/%4/report") | 
					
						
							|  |  |  |                 .arg(m_settings.m_apiAddress) | 
					
						
							|  |  |  |                 .arg(m_settings.m_apiPort) | 
					
						
							|  |  |  |                 .arg(m_settings.m_deviceIndex) | 
					
						
							|  |  |  |                 .arg(m_settings.m_channelIndex); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         m_networkRequest.setUrl(QUrl(reportURL)); | 
					
						
							|  |  |  |         m_networkManager->get(m_networkRequest); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         m_tickCount = 0; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-02 22:58:42 +01:00
										 |  |  | void RemoteOutput::networkManagerFinished(QNetworkReply *reply) | 
					
						
							| 
									
										
										
										
											2018-09-03 09:17:29 +02:00
										 |  |  | { | 
					
						
							|  |  |  |     if (reply->error()) | 
					
						
							|  |  |  |     { | 
					
						
							| 
									
										
										
										
											2019-02-02 22:58:42 +01:00
										 |  |  |         qInfo("RemoteOutput::networkManagerFinished: error: %s", qPrintable(reply->errorString())); | 
					
						
							| 
									
										
										
										
											2018-09-03 09:17:29 +02:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2019-11-15 01:04:24 +01:00
										 |  |  |     else | 
					
						
							| 
									
										
										
										
											2018-09-03 09:17:29 +02:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2019-11-15 01:04:24 +01:00
										 |  |  |         QString answer = reply->readAll(); | 
					
						
							| 
									
										
										
										
											2018-09-03 09:17:29 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-11-15 01:04:24 +01:00
										 |  |  |         try | 
					
						
							| 
									
										
										
										
											2018-09-03 09:17:29 +02:00
										 |  |  |         { | 
					
						
							| 
									
										
										
										
											2019-11-15 01:04:24 +01:00
										 |  |  |             QByteArray jsonBytes(answer.toStdString().c_str()); | 
					
						
							|  |  |  |             QJsonParseError error; | 
					
						
							|  |  |  |             QJsonDocument doc = QJsonDocument::fromJson(jsonBytes, &error); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             if (error.error == QJsonParseError::NoError) | 
					
						
							|  |  |  |             { | 
					
						
							|  |  |  |                 analyzeApiReply(doc.object(), answer); | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |             else | 
					
						
							|  |  |  |             { | 
					
						
							|  |  |  |                 QString errorMsg = QString("Reply JSON error: ") + error.errorString() + QString(" at offset ") + QString::number(error.offset); | 
					
						
							|  |  |  |                 qInfo().noquote() << "RemoteOutput::networkManagerFinished" << errorMsg; | 
					
						
							|  |  |  |             } | 
					
						
							| 
									
										
										
										
											2018-09-03 09:17:29 +02:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2019-11-15 01:04:24 +01:00
										 |  |  |         catch (const std::exception& ex) | 
					
						
							| 
									
										
										
										
											2018-09-03 09:17:29 +02:00
										 |  |  |         { | 
					
						
							| 
									
										
										
										
											2019-11-15 01:04:24 +01:00
										 |  |  |             QString errorMsg = QString("Error parsing request: ") + ex.what(); | 
					
						
							| 
									
										
										
										
											2019-02-02 22:58:42 +01:00
										 |  |  |             qInfo().noquote() << "RemoteOutput::networkManagerFinished" << errorMsg; | 
					
						
							| 
									
										
										
										
											2018-09-03 09:17:29 +02:00
										 |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2019-11-15 01:04:24 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     reply->deleteLater(); | 
					
						
							| 
									
										
										
										
											2018-09-03 09:17:29 +02:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2017-12-14 18:22:45 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-02 22:58:42 +01:00
										 |  |  | void RemoteOutput::analyzeApiReply(const QJsonObject& jsonObject, const QString& answer) | 
					
						
							| 
									
										
										
										
											2018-09-03 09:17:29 +02:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2019-02-02 23:27:34 +01:00
										 |  |  |     if (jsonObject.contains("RemoteSourceReport")) | 
					
						
							| 
									
										
										
										
											2018-09-03 09:17:29 +02:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2019-02-02 23:27:34 +01:00
										 |  |  |         QJsonObject report = jsonObject["RemoteSourceReport"].toObject(); | 
					
						
							| 
									
										
										
										
											2019-08-04 20:24:44 +02:00
										 |  |  |         m_settings.m_centerFrequency = report["deviceCenterFreq"].toInt(); | 
					
						
							|  |  |  |         m_centerFrequency = m_settings.m_centerFrequency * 1000; | 
					
						
							| 
									
										
										
										
											2018-09-18 00:08:15 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-07-12 09:42:33 +02:00
										 |  |  |         if (!m_remoteOutputWorker) { | 
					
						
							| 
									
										
										
										
											2018-09-18 00:08:15 +02:00
										 |  |  |             return; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-09-03 09:17:29 +02:00
										 |  |  |         int queueSize = report["queueSize"].toInt(); | 
					
						
							|  |  |  |         queueSize = queueSize == 0 ? 10 : queueSize; | 
					
						
							|  |  |  |         int queueLength = report["queueLength"].toInt(); | 
					
						
							|  |  |  |         int queueLengthPercent = (queueLength*100)/queueSize; | 
					
						
							| 
									
										
										
										
											2018-09-04 08:43:07 +02:00
										 |  |  |         uint64_t remoteTimestampUs = report["tvSec"].toInt()*1000000ULL + report["tvUSec"].toInt(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         uint32_t remoteSampleCountDelta, remoteSampleCount; | 
					
						
							|  |  |  |         remoteSampleCount = report["samplesCount"].toInt(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if (remoteSampleCount < m_lastRemoteSampleCount) { | 
					
						
							|  |  |  |             remoteSampleCountDelta = (0xFFFFFFFFU - m_lastRemoteSampleCount) + remoteSampleCount + 1; | 
					
						
							|  |  |  |         } else { | 
					
						
							|  |  |  |             remoteSampleCountDelta = remoteSampleCount - m_lastRemoteSampleCount; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2018-09-03 09:17:29 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |         uint32_t sampleCountDelta, sampleCount; | 
					
						
							| 
									
										
										
										
											2018-11-13 14:21:36 +01:00
										 |  |  |         uint64_t timestampUs; | 
					
						
							| 
									
										
										
										
											2020-07-12 09:42:33 +02:00
										 |  |  |         sampleCount = m_remoteOutputWorker->getSamplesCount(timestampUs); | 
					
						
							| 
									
										
										
										
											2018-09-03 09:17:29 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |         if (sampleCount < m_lastSampleCount) { | 
					
						
							|  |  |  |             sampleCountDelta = (0xFFFFFFFFU - m_lastSampleCount) + sampleCount + 1; | 
					
						
							|  |  |  |         } else { | 
					
						
							|  |  |  |             sampleCountDelta = sampleCount - m_lastSampleCount; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-09-07 09:22:17 +02:00
										 |  |  |         // on initial state wait for queue stabilization
 | 
					
						
							|  |  |  |         if ((m_lastRemoteTimestampRateCorrection == 0) && (queueLength >= m_lastQueueLength-1) && (queueLength <= m_lastQueueLength+1)) | 
					
						
							| 
									
										
										
										
											2018-09-04 08:43:07 +02:00
										 |  |  |         { | 
					
						
							|  |  |  |             m_lastRemoteTimestampRateCorrection = remoteTimestampUs; | 
					
						
							| 
									
										
										
										
											2018-09-03 18:13:57 +02:00
										 |  |  |             m_lastTimestampRateCorrection = timestampUs; | 
					
						
							| 
									
										
										
										
											2018-09-04 22:28:10 +02:00
										 |  |  |             m_nbRemoteSamplesSinceRateCorrection = 0; | 
					
						
							|  |  |  |             m_nbSamplesSinceRateCorrection = 0; | 
					
						
							| 
									
										
										
										
											2018-09-03 18:13:57 +02:00
										 |  |  |         } | 
					
						
							|  |  |  |         else | 
					
						
							| 
									
										
										
										
											2018-09-03 09:17:29 +02:00
										 |  |  |         { | 
					
						
							| 
									
										
										
										
											2018-09-04 08:43:07 +02:00
										 |  |  |             m_nbRemoteSamplesSinceRateCorrection += remoteSampleCountDelta; | 
					
						
							| 
									
										
										
										
											2018-09-03 18:13:57 +02:00
										 |  |  |             m_nbSamplesSinceRateCorrection += sampleCountDelta; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-02 22:58:42 +01:00
										 |  |  |             qDebug("RemoteOutput::analyzeApiReply: queueLengthPercent: %d m_nbSamplesSinceRateCorrection: %u", | 
					
						
							| 
									
										
										
										
											2018-09-03 18:13:57 +02:00
										 |  |  |                 queueLengthPercent, | 
					
						
							| 
									
										
										
										
											2018-09-04 08:43:07 +02:00
										 |  |  |                 m_nbRemoteSamplesSinceRateCorrection); | 
					
						
							| 
									
										
										
										
											2018-09-03 18:13:57 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-09-04 08:43:07 +02:00
										 |  |  |             if (m_nbRemoteSamplesSinceRateCorrection > NbSamplesForRateCorrection) | 
					
						
							| 
									
										
										
										
											2018-09-03 09:17:29 +02:00
										 |  |  |             { | 
					
						
							| 
									
										
										
										
											2018-09-04 08:43:07 +02:00
										 |  |  |                 sampleRateCorrection(remoteTimestampUs - m_lastRemoteTimestampRateCorrection, | 
					
						
							|  |  |  |                         timestampUs - m_lastTimestampRateCorrection, | 
					
						
							|  |  |  |                         m_nbRemoteSamplesSinceRateCorrection, | 
					
						
							|  |  |  |                         m_nbSamplesSinceRateCorrection); | 
					
						
							|  |  |  |                 m_lastRemoteTimestampRateCorrection = remoteTimestampUs; | 
					
						
							| 
									
										
										
										
											2018-09-03 18:13:57 +02:00
										 |  |  |                 m_lastTimestampRateCorrection = timestampUs; | 
					
						
							| 
									
										
										
										
											2018-09-04 08:43:07 +02:00
										 |  |  |                 m_nbRemoteSamplesSinceRateCorrection = 0; | 
					
						
							| 
									
										
										
										
											2018-09-03 18:13:57 +02:00
										 |  |  |                 m_nbSamplesSinceRateCorrection = 0; | 
					
						
							| 
									
										
										
										
											2018-09-03 09:17:29 +02:00
										 |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-09-04 08:43:07 +02:00
										 |  |  |         m_lastRemoteSampleCount = remoteSampleCount; | 
					
						
							| 
									
										
										
										
											2018-09-03 09:17:29 +02:00
										 |  |  |         m_lastSampleCount = sampleCount; | 
					
						
							| 
									
										
										
										
											2018-09-07 09:22:17 +02:00
										 |  |  |         m_lastQueueLength = queueLength; | 
					
						
							| 
									
										
										
										
											2018-09-03 09:17:29 +02:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2019-02-02 23:27:34 +01:00
										 |  |  |     else if (jsonObject.contains("remoteOutputSettings")) | 
					
						
							| 
									
										
										
										
											2018-12-26 22:30:35 +01:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2019-02-02 22:58:42 +01:00
										 |  |  |         qDebug("RemoteOutput::analyzeApiReply: reply:\n%s", answer.toStdString().c_str()); | 
					
						
							| 
									
										
										
										
											2018-12-26 22:30:35 +01:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-09-03 09:17:29 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-02 22:58:42 +01:00
										 |  |  | void RemoteOutput::sampleRateCorrection(double remoteTimeDeltaUs, double timeDeltaUs, uint32_t remoteSampleCount, uint32_t sampleCount) | 
					
						
							| 
									
										
										
										
											2018-09-03 09:17:29 +02:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2018-09-04 08:43:07 +02:00
										 |  |  |     double deltaSR = (remoteSampleCount/remoteTimeDeltaUs) - (sampleCount/timeDeltaUs); | 
					
						
							|  |  |  |     double chunkCorr = 50000 * deltaSR; // for 50ms chunk intervals (50000us)
 | 
					
						
							|  |  |  |     m_chunkSizeCorrection += roundf(chunkCorr); | 
					
						
							| 
									
										
										
										
											2018-09-03 09:17:29 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-02 22:58:42 +01:00
										 |  |  |     qDebug("RemoteOutput::sampleRateCorrection: %d (%f) samples", m_chunkSizeCorrection, chunkCorr); | 
					
						
							| 
									
										
										
										
											2018-09-03 09:17:29 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-02 22:58:42 +01:00
										 |  |  |     MsgConfigureRemoteOutputChunkCorrection* message = MsgConfigureRemoteOutputChunkCorrection::create(m_chunkSizeCorrection); | 
					
						
							| 
									
										
										
										
											2018-09-03 09:17:29 +02:00
										 |  |  |     getInputMessageQueue()->push(message); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2018-12-26 22:30:35 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-02 22:58:42 +01:00
										 |  |  | void RemoteOutput::webapiReverseSendSettings(QList<QString>& deviceSettingsKeys, const RemoteOutputSettings& settings, bool force) | 
					
						
							| 
									
										
										
										
											2018-12-26 22:30:35 +01:00
										 |  |  | { | 
					
						
							|  |  |  |     SWGSDRangel::SWGDeviceSettings *swgDeviceSettings = new SWGSDRangel::SWGDeviceSettings(); | 
					
						
							| 
									
										
										
										
											2019-05-07 14:43:38 +02:00
										 |  |  |     swgDeviceSettings->setDirection(1); // single Tx
 | 
					
						
							| 
									
										
										
										
											2019-03-25 13:46:42 +01:00
										 |  |  |     swgDeviceSettings->setOriginatorIndex(m_deviceAPI->getDeviceSetIndex()); | 
					
						
							| 
									
										
										
										
											2019-02-02 23:27:34 +01:00
										 |  |  |     swgDeviceSettings->setDeviceHwType(new QString("RemoteOutput")); | 
					
						
							|  |  |  |     swgDeviceSettings->setRemoteOutputSettings(new SWGSDRangel::SWGRemoteOutputSettings()); | 
					
						
							|  |  |  |     SWGSDRangel::SWGRemoteOutputSettings *swgRemoteOutputSettings = swgDeviceSettings->getRemoteOutputSettings(); | 
					
						
							| 
									
										
										
										
											2018-12-26 22:30:35 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     // transfer data that has been modified. When force is on transfer all data except reverse API data
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (deviceSettingsKeys.contains("sampleRate") || force) { | 
					
						
							| 
									
										
										
										
											2019-02-02 23:27:34 +01:00
										 |  |  |         swgRemoteOutputSettings->setSampleRate(settings.m_sampleRate); | 
					
						
							| 
									
										
										
										
											2018-12-26 22:30:35 +01:00
										 |  |  |     } | 
					
						
							|  |  |  |     if (deviceSettingsKeys.contains("txDelay") || force) { | 
					
						
							| 
									
										
										
										
											2019-02-02 23:27:34 +01:00
										 |  |  |         swgRemoteOutputSettings->setTxDelay(settings.m_txDelay); | 
					
						
							| 
									
										
										
										
											2018-12-26 22:30:35 +01:00
										 |  |  |     } | 
					
						
							|  |  |  |     if (deviceSettingsKeys.contains("nbFECBlocks") || force) { | 
					
						
							| 
									
										
										
										
											2019-02-02 23:27:34 +01:00
										 |  |  |         swgRemoteOutputSettings->setNbFecBlocks(settings.m_nbFECBlocks); | 
					
						
							| 
									
										
										
										
											2018-12-26 22:30:35 +01:00
										 |  |  |     } | 
					
						
							|  |  |  |     if (deviceSettingsKeys.contains("apiAddress") || force) { | 
					
						
							| 
									
										
										
										
											2019-02-02 23:27:34 +01:00
										 |  |  |         swgRemoteOutputSettings->setApiAddress(new QString(settings.m_apiAddress)); | 
					
						
							| 
									
										
										
										
											2018-12-26 22:30:35 +01:00
										 |  |  |     } | 
					
						
							|  |  |  |     if (deviceSettingsKeys.contains("apiPort") || force) { | 
					
						
							| 
									
										
										
										
											2019-02-02 23:27:34 +01:00
										 |  |  |         swgRemoteOutputSettings->setApiPort(settings.m_apiPort); | 
					
						
							| 
									
										
										
										
											2018-12-26 22:30:35 +01:00
										 |  |  |     } | 
					
						
							|  |  |  |     if (deviceSettingsKeys.contains("dataAddress") || force) { | 
					
						
							| 
									
										
										
										
											2019-02-02 23:27:34 +01:00
										 |  |  |         swgRemoteOutputSettings->setDataAddress(new QString(settings.m_dataAddress)); | 
					
						
							| 
									
										
										
										
											2018-12-26 22:30:35 +01:00
										 |  |  |     } | 
					
						
							|  |  |  |     if (deviceSettingsKeys.contains("dataPort") || force) { | 
					
						
							| 
									
										
										
										
											2019-02-02 23:27:34 +01:00
										 |  |  |         swgRemoteOutputSettings->setDataPort(settings.m_dataPort); | 
					
						
							| 
									
										
										
										
											2018-12-26 22:30:35 +01:00
										 |  |  |     } | 
					
						
							|  |  |  |     if (deviceSettingsKeys.contains("deviceIndex") || force) { | 
					
						
							| 
									
										
										
										
											2019-02-02 23:27:34 +01:00
										 |  |  |         swgRemoteOutputSettings->setDeviceIndex(settings.m_deviceIndex); | 
					
						
							| 
									
										
										
										
											2018-12-26 22:30:35 +01:00
										 |  |  |     } | 
					
						
							|  |  |  |     if (deviceSettingsKeys.contains("channelIndex") || force) { | 
					
						
							| 
									
										
										
										
											2019-02-02 23:27:34 +01:00
										 |  |  |         swgRemoteOutputSettings->setChannelIndex(settings.m_channelIndex); | 
					
						
							| 
									
										
										
										
											2018-12-26 22:30:35 +01:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     QString deviceSettingsURL = QString("http://%1:%2/sdrangel/deviceset/%3/device/settings") | 
					
						
							|  |  |  |             .arg(settings.m_reverseAPIAddress) | 
					
						
							|  |  |  |             .arg(settings.m_reverseAPIPort) | 
					
						
							|  |  |  |             .arg(settings.m_reverseAPIDeviceIndex); | 
					
						
							|  |  |  |     m_networkRequest.setUrl(QUrl(deviceSettingsURL)); | 
					
						
							|  |  |  |     m_networkRequest.setHeader(QNetworkRequest::ContentTypeHeader, "application/json"); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-11-15 01:04:24 +01:00
										 |  |  |     QBuffer *buffer = new QBuffer(); | 
					
						
							| 
									
										
										
										
											2018-12-26 22:30:35 +01:00
										 |  |  |     buffer->open((QBuffer::ReadWrite)); | 
					
						
							|  |  |  |     buffer->write(swgDeviceSettings->asJson().toUtf8()); | 
					
						
							|  |  |  |     buffer->seek(0); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     // Always use PATCH to avoid passing reverse API settings
 | 
					
						
							| 
									
										
										
										
											2019-11-15 01:04:24 +01:00
										 |  |  |     QNetworkReply *reply = m_networkManager->sendCustomRequest(m_networkRequest, "PATCH", buffer); | 
					
						
							|  |  |  |     buffer->setParent(reply); | 
					
						
							| 
									
										
										
										
											2018-12-26 22:30:35 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     delete swgDeviceSettings; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-02 22:58:42 +01:00
										 |  |  | void RemoteOutput::webapiReverseSendStartStop(bool start) | 
					
						
							| 
									
										
										
										
											2018-12-26 22:30:35 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2019-03-25 15:26:01 +01:00
										 |  |  |     SWGSDRangel::SWGDeviceSettings *swgDeviceSettings = new SWGSDRangel::SWGDeviceSettings(); | 
					
						
							| 
									
										
										
										
											2019-05-07 14:43:38 +02:00
										 |  |  |     swgDeviceSettings->setDirection(1); // single Tx
 | 
					
						
							| 
									
										
										
										
											2019-03-25 15:26:01 +01:00
										 |  |  |     swgDeviceSettings->setOriginatorIndex(m_deviceAPI->getDeviceSetIndex()); | 
					
						
							|  |  |  |     swgDeviceSettings->setDeviceHwType(new QString("RemoteOutput")); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-12-26 22:30:35 +01:00
										 |  |  |     QString deviceSettingsURL = QString("http://%1:%2/sdrangel/deviceset/%3/device/run") | 
					
						
							|  |  |  |             .arg(m_settings.m_reverseAPIAddress) | 
					
						
							|  |  |  |             .arg(m_settings.m_reverseAPIPort) | 
					
						
							|  |  |  |             .arg(m_settings.m_reverseAPIDeviceIndex); | 
					
						
							|  |  |  |     m_networkRequest.setUrl(QUrl(deviceSettingsURL)); | 
					
						
							| 
									
										
										
										
											2019-03-25 15:26:01 +01:00
										 |  |  |     m_networkRequest.setHeader(QNetworkRequest::ContentTypeHeader, "application/json"); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-11-15 01:04:24 +01:00
										 |  |  |     QBuffer *buffer = new QBuffer(); | 
					
						
							| 
									
										
										
										
											2019-03-25 15:26:01 +01:00
										 |  |  |     buffer->open((QBuffer::ReadWrite)); | 
					
						
							|  |  |  |     buffer->write(swgDeviceSettings->asJson().toUtf8()); | 
					
						
							|  |  |  |     buffer->seek(0); | 
					
						
							| 
									
										
										
										
											2019-11-15 01:04:24 +01:00
										 |  |  |     QNetworkReply *reply; | 
					
						
							| 
									
										
										
										
											2018-12-26 22:30:35 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     if (start) { | 
					
						
							| 
									
										
										
										
											2019-11-15 01:04:24 +01:00
										 |  |  |         reply = m_networkManager->sendCustomRequest(m_networkRequest, "POST", buffer); | 
					
						
							| 
									
										
										
										
											2018-12-26 22:30:35 +01:00
										 |  |  |     } else { | 
					
						
							| 
									
										
										
										
											2019-11-15 01:04:24 +01:00
										 |  |  |         reply = m_networkManager->sendCustomRequest(m_networkRequest, "DELETE", buffer); | 
					
						
							| 
									
										
										
										
											2018-12-26 22:30:35 +01:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2019-06-14 16:58:09 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-11-15 01:04:24 +01:00
										 |  |  |     buffer->setParent(reply); | 
					
						
							| 
									
										
										
										
											2019-06-14 16:58:09 +02:00
										 |  |  |     delete swgDeviceSettings; | 
					
						
							| 
									
										
										
										
											2018-12-26 22:30:35 +01:00
										 |  |  | } |