| 
									
										
										
										
											2017-05-15 00:58:56 +02:00
										 |  |  | ///////////////////////////////////////////////////////////////////////////////////
 | 
					
						
							|  |  |  | // Copyright (C) 2016 Edouard Griffiths, F4EXB                                   //
 | 
					
						
							|  |  |  | //                                                                               //
 | 
					
						
							|  |  |  | // This program is free software; you can redistribute it and/or modify          //
 | 
					
						
							|  |  |  | // it under the terms of the GNU General Public License as published by          //
 | 
					
						
							|  |  |  | // the Free Software Foundation as version 3 of the License, or                  //
 | 
					
						
							| 
									
										
										
										
											2019-04-11 06:39:30 +02:00
										 |  |  | // (at your option) any later version.                                           //
 | 
					
						
							| 
									
										
										
										
											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 <QDebug>
 | 
					
						
							|  |  |  | #include <QTime>
 | 
					
						
							|  |  |  | #include <QDateTime>
 | 
					
						
							|  |  |  | #include <QString>
 | 
					
						
							|  |  |  | #include <QMessageBox>
 | 
					
						
							| 
									
										
										
										
											2018-08-30 02:58:10 +02:00
										 |  |  | #include <QNetworkAccessManager>
 | 
					
						
							|  |  |  | #include <QNetworkReply>
 | 
					
						
							|  |  |  | #include <QJsonParseError>
 | 
					
						
							| 
									
										
										
										
											2017-05-15 00:58:56 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-06-04 11:43:26 +02:00
										 |  |  | #include <boost/algorithm/string.hpp>
 | 
					
						
							| 
									
										
										
										
											2017-06-05 01:18:35 +02:00
										 |  |  | #include <boost/lexical_cast.hpp>
 | 
					
						
							| 
									
										
										
										
											2017-06-04 11:43:26 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-02 22:58:42 +01:00
										 |  |  | #include "ui_remoteoutputgui.h"
 | 
					
						
							| 
									
										
										
										
											2017-05-15 00:58:56 +02:00
										 |  |  | #include "plugin/pluginapi.h"
 | 
					
						
							|  |  |  | #include "gui/colormapper.h"
 | 
					
						
							|  |  |  | #include "gui/glspectrum.h"
 | 
					
						
							| 
									
										
										
										
											2018-12-26 22:30:35 +01:00
										 |  |  | #include "gui/crightclickenabler.h"
 | 
					
						
							|  |  |  | #include "gui/basicdevicesettingsdialog.h"
 | 
					
						
							| 
									
										
										
										
											2017-05-15 00:58:56 +02:00
										 |  |  | #include "dsp/dspengine.h"
 | 
					
						
							|  |  |  | #include "dsp/dspcommands.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include "mainwindow.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-08 22:11:53 +02:00
										 |  |  | #include "device/deviceapi.h"
 | 
					
						
							| 
									
										
										
										
											2017-10-30 01:11:35 +01:00
										 |  |  | #include "device/deviceuiset.h"
 | 
					
						
							| 
									
										
										
										
											2019-02-02 22:58:42 +01:00
										 |  |  | #include "remoteoutputgui.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-08 22:11:53 +02:00
										 |  |  | #include "channel/remotedatablock.h"
 | 
					
						
							| 
									
										
										
										
											2019-02-02 22:58:42 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-09-11 01:01:43 +02:00
										 |  |  | #include "udpsinkfec.h"
 | 
					
						
							| 
									
										
										
										
											2017-05-15 00:58:56 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-02 22:58:42 +01:00
										 |  |  | RemoteOutputSinkGui::RemoteOutputSinkGui(DeviceUISet *deviceUISet, QWidget* parent) : | 
					
						
							| 
									
										
										
										
											2017-05-15 00:58:56 +02:00
										 |  |  | 	QWidget(parent), | 
					
						
							| 
									
										
										
										
											2019-02-02 22:58:42 +01:00
										 |  |  | 	ui(new Ui::RemoteOutputGui), | 
					
						
							| 
									
										
										
										
											2017-10-30 01:11:35 +01:00
										 |  |  | 	m_deviceUISet(deviceUISet), | 
					
						
							| 
									
										
										
										
											2017-05-15 00:58:56 +02:00
										 |  |  | 	m_settings(), | 
					
						
							|  |  |  | 	m_deviceSampleSink(0), | 
					
						
							| 
									
										
										
										
											2018-09-07 00:58:09 +02:00
										 |  |  | 	m_deviceCenterFrequency(0), | 
					
						
							| 
									
										
										
										
											2017-05-15 00:58:56 +02:00
										 |  |  | 	m_samplesCount(0), | 
					
						
							|  |  |  | 	m_tickCount(0), | 
					
						
							| 
									
										
										
										
											2017-06-05 01:18:35 +02:00
										 |  |  | 	m_nbSinceLastFlowCheck(0), | 
					
						
							| 
									
										
										
										
											2019-05-08 22:11:53 +02:00
										 |  |  | 	m_lastEngineState(DeviceAPI::StNotStarted), | 
					
						
							| 
									
										
										
										
											2017-05-23 01:41:30 +02:00
										 |  |  | 	m_doApplySettings(true), | 
					
						
							|  |  |  | 	m_forceSettings(true) | 
					
						
							| 
									
										
										
										
											2017-05-15 00:58:56 +02:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2017-06-06 01:53:21 +02:00
										 |  |  |     m_countUnrecoverable = 0; | 
					
						
							|  |  |  |     m_countRecovered = 0; | 
					
						
							| 
									
										
										
										
											2018-08-30 08:45:57 +02:00
										 |  |  |     m_lastCountUnrecoverable = 0; | 
					
						
							|  |  |  |     m_lastCountRecovered = 0; | 
					
						
							| 
									
										
										
										
											2018-08-30 19:14:34 +02:00
										 |  |  |     m_lastSampleCount = 0; | 
					
						
							| 
									
										
										
										
											2018-08-30 08:45:57 +02:00
										 |  |  |     m_resetCounts = true; | 
					
						
							| 
									
										
										
										
											2017-06-06 01:53:21 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-06-05 23:00:28 +02:00
										 |  |  |     m_paletteGreenText.setColor(QPalette::WindowText, Qt::green); | 
					
						
							|  |  |  |     m_paletteRedText.setColor(QPalette::WindowText, Qt::red); | 
					
						
							|  |  |  |     m_paletteWhiteText.setColor(QPalette::WindowText, Qt::white); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     ui->setupUi(this); | 
					
						
							| 
									
										
										
										
											2017-05-15 00:58:56 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-16 18:27:36 +02:00
										 |  |  | 	ui->centerFrequency->setColorMapper(ColorMapper(ColorMapper::GrayGold)); | 
					
						
							| 
									
										
										
										
											2017-05-15 00:58:56 +02:00
										 |  |  | 	ui->centerFrequency->setValueRange(7, 0, pow(10,7)); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-16 18:27:36 +02:00
										 |  |  |     ui->sampleRate->setColorMapper(ColorMapper(ColorMapper::GrayGreenYellow)); | 
					
						
							| 
									
										
										
										
											2017-05-15 00:58:56 +02:00
										 |  |  |     ui->sampleRate->setValueRange(7, 32000U, 9000000U); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-08-30 08:45:57 +02:00
										 |  |  |     ui->apiAddressLabel->setStyleSheet("QLabel { background:rgb(79,79,79); }"); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-08 22:11:53 +02:00
										 |  |  | 	connect(&(m_deviceUISet->m_deviceAPI->getMasterTimer()), SIGNAL(timeout()), this, SLOT(tick())); | 
					
						
							| 
									
										
										
										
											2017-05-15 00:58:56 +02:00
										 |  |  | 	connect(&m_updateTimer, SIGNAL(timeout()), this, SLOT(updateHardware())); | 
					
						
							|  |  |  | 	connect(&m_statusTimer, SIGNAL(timeout()), this, SLOT(updateStatus())); | 
					
						
							|  |  |  | 	m_statusTimer.start(500); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-08 22:11:53 +02:00
										 |  |  | 	m_deviceSampleSink = (RemoteOutput*) m_deviceUISet->m_deviceAPI->getSampleSink(); | 
					
						
							| 
									
										
										
										
											2017-05-15 00:58:56 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-17 17:35:03 +02:00
										 |  |  | 	connect(&m_inputMessageQueue, SIGNAL(messageEnqueued()), this, SLOT(handleInputMessages()), Qt::QueuedConnection); | 
					
						
							| 
									
										
										
										
											2017-05-21 19:45:56 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-08-30 02:58:10 +02:00
										 |  |  | 	m_networkManager = new QNetworkAccessManager(); | 
					
						
							|  |  |  | 	connect(m_networkManager, SIGNAL(finished(QNetworkReply*)), this, SLOT(networkManagerFinished(QNetworkReply*))); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-09-07 00:58:09 +02:00
										 |  |  | 	m_deviceUISet->getSpectrum()->setCenterFrequency(m_deviceCenterFrequency); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-06-06 01:53:21 +02:00
										 |  |  |     m_time.start(); | 
					
						
							|  |  |  |     displayEventCounts(); | 
					
						
							|  |  |  |     displayEventTimer(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-12-26 22:30:35 +01:00
										 |  |  |     CRightClickEnabler *startStopRightClickEnabler = new CRightClickEnabler(ui->startStop); | 
					
						
							|  |  |  |     connect(startStopRightClickEnabler, SIGNAL(rightClick(const QPoint &)), this, SLOT(openDeviceSettingsDialog(const QPoint &))); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-21 19:45:56 +02:00
										 |  |  |     displaySettings(); | 
					
						
							|  |  |  |     sendSettings(); | 
					
						
							| 
									
										
										
										
											2017-05-15 00:58:56 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-02 22:58:42 +01:00
										 |  |  | RemoteOutputSinkGui::~RemoteOutputSinkGui() | 
					
						
							| 
									
										
										
										
											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*))); | 
					
						
							| 
									
										
										
										
											2018-08-30 02:58:10 +02:00
										 |  |  |     delete m_networkManager; | 
					
						
							| 
									
										
										
										
											2017-05-15 00:58:56 +02:00
										 |  |  | 	delete ui; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-02 22:58:42 +01:00
										 |  |  | void RemoteOutputSinkGui::blockApplySettings(bool block) | 
					
						
							| 
									
										
										
										
											2017-05-21 19:45:56 +02:00
										 |  |  | { | 
					
						
							|  |  |  |     m_doApplySettings = !block; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-02 22:58:42 +01:00
										 |  |  | void RemoteOutputSinkGui::destroy() | 
					
						
							| 
									
										
										
										
											2017-05-15 00:58:56 +02:00
										 |  |  | { | 
					
						
							|  |  |  | 	delete this; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-02 22:58:42 +01:00
										 |  |  | void RemoteOutputSinkGui::setName(const QString& name) | 
					
						
							| 
									
										
										
										
											2017-05-15 00:58:56 +02:00
										 |  |  | { | 
					
						
							|  |  |  | 	setObjectName(name); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-02 22:58:42 +01:00
										 |  |  | QString RemoteOutputSinkGui::getName() const | 
					
						
							| 
									
										
										
										
											2017-05-15 00:58:56 +02:00
										 |  |  | { | 
					
						
							|  |  |  | 	return objectName(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-02 22:58:42 +01:00
										 |  |  | void RemoteOutputSinkGui::resetToDefaults() | 
					
						
							| 
									
										
										
										
											2017-05-15 00:58:56 +02:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2017-05-21 19:45:56 +02:00
										 |  |  |     blockApplySettings(true); | 
					
						
							| 
									
										
										
										
											2017-05-15 00:58:56 +02:00
										 |  |  | 	m_settings.resetToDefaults(); | 
					
						
							|  |  |  | 	displaySettings(); | 
					
						
							| 
									
										
										
										
											2017-05-21 19:45:56 +02:00
										 |  |  | 	blockApplySettings(false); | 
					
						
							| 
									
										
										
										
											2017-05-15 00:58:56 +02:00
										 |  |  | 	sendSettings(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-02 22:58:42 +01:00
										 |  |  | QByteArray RemoteOutputSinkGui::serialize() const | 
					
						
							| 
									
										
										
										
											2017-05-15 00:58:56 +02:00
										 |  |  | { | 
					
						
							|  |  |  | 	return m_settings.serialize(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-02 22:58:42 +01:00
										 |  |  | bool RemoteOutputSinkGui::deserialize(const QByteArray& data) | 
					
						
							| 
									
										
										
										
											2017-05-15 00:58:56 +02:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2017-05-21 19:45:56 +02:00
										 |  |  |     blockApplySettings(true); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if(m_settings.deserialize(data)) | 
					
						
							|  |  |  | 	{ | 
					
						
							| 
									
										
										
										
											2017-05-15 00:58:56 +02:00
										 |  |  | 		displaySettings(); | 
					
						
							| 
									
										
										
										
											2017-05-21 19:45:56 +02:00
										 |  |  | 	    blockApplySettings(false); | 
					
						
							| 
									
										
										
										
											2017-05-23 01:41:30 +02:00
										 |  |  | 		m_forceSettings = true; | 
					
						
							| 
									
										
										
										
											2017-05-15 00:58:56 +02:00
										 |  |  | 		sendSettings(); | 
					
						
							|  |  |  | 		return true; | 
					
						
							| 
									
										
										
										
											2017-05-21 19:45:56 +02:00
										 |  |  | 	} | 
					
						
							|  |  |  | 	else | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  |         blockApplySettings(false); | 
					
						
							| 
									
										
										
										
											2017-05-15 00:58:56 +02:00
										 |  |  | 		return false; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-02 22:58:42 +01:00
										 |  |  | bool RemoteOutputSinkGui::handleMessage(const Message& message) | 
					
						
							| 
									
										
										
										
											2017-05-15 00:58:56 +02:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2019-02-02 22:58:42 +01:00
										 |  |  |     if (RemoteOutput::MsgConfigureRemoteOutput::match(message)) | 
					
						
							| 
									
										
										
										
											2017-12-28 04:04:50 +01:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2019-02-02 22:58:42 +01:00
										 |  |  |         const RemoteOutput::MsgConfigureRemoteOutput& cfg = (RemoteOutput::MsgConfigureRemoteOutput&) message; | 
					
						
							| 
									
										
										
										
											2017-12-28 04:04:50 +01:00
										 |  |  |         m_settings = cfg.getSettings(); | 
					
						
							|  |  |  |         blockApplySettings(true); | 
					
						
							|  |  |  |         displaySettings(); | 
					
						
							|  |  |  |         blockApplySettings(false); | 
					
						
							|  |  |  |         return true; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2019-02-02 22:58:42 +01:00
										 |  |  |     else if (RemoteOutput::MsgStartStop::match(message)) | 
					
						
							| 
									
										
										
										
											2017-12-14 18:02:49 +01:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2019-02-02 22:58:42 +01:00
										 |  |  |         RemoteOutput::MsgStartStop& notif = (RemoteOutput::MsgStartStop&) message; | 
					
						
							| 
									
										
										
										
											2017-12-14 18:02:49 +01:00
										 |  |  |         blockApplySettings(true); | 
					
						
							|  |  |  |         ui->startStop->setChecked(notif.getStartStop()); | 
					
						
							|  |  |  |         blockApplySettings(false); | 
					
						
							|  |  |  |         return true; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2017-05-15 00:58:56 +02:00
										 |  |  | 	else | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		return false; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-02 22:58:42 +01:00
										 |  |  | void RemoteOutputSinkGui::handleInputMessages() | 
					
						
							| 
									
										
										
										
											2017-05-15 00:58:56 +02:00
										 |  |  | { | 
					
						
							|  |  |  |     Message* message; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-17 17:35:03 +02:00
										 |  |  |     while ((message = m_inputMessageQueue.pop()) != 0) | 
					
						
							| 
									
										
										
										
											2017-05-15 00:58:56 +02:00
										 |  |  |     { | 
					
						
							|  |  |  |         if (DSPSignalNotification::match(*message)) | 
					
						
							|  |  |  |         { | 
					
						
							|  |  |  |             DSPSignalNotification* notif = (DSPSignalNotification*) message; | 
					
						
							|  |  |  |             m_sampleRate = notif->getSampleRate(); | 
					
						
							| 
									
										
										
										
											2019-02-02 22:58:42 +01:00
										 |  |  |             qDebug("RemoteOutputSinkGui::handleInputMessages: DSPSignalNotification: SampleRate:%d, CenterFrequency:%llu", notif->getSampleRate(), notif->getCenterFrequency()); | 
					
						
							| 
									
										
										
										
											2018-09-07 00:58:09 +02:00
										 |  |  |             updateSampleRate(); | 
					
						
							| 
									
										
										
										
											2017-05-15 00:58:56 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |             delete message; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2017-09-17 17:35:03 +02:00
										 |  |  |         else | 
					
						
							| 
									
										
										
										
											2017-05-15 00:58:56 +02:00
										 |  |  |         { | 
					
						
							| 
									
										
										
										
											2017-09-17 17:35:03 +02:00
										 |  |  |             if (handleMessage(*message)) { | 
					
						
							|  |  |  |                 delete message; | 
					
						
							|  |  |  |             } | 
					
						
							| 
									
										
										
										
											2017-05-15 00:58:56 +02:00
										 |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-02 22:58:42 +01:00
										 |  |  | void RemoteOutputSinkGui::updateSampleRate() | 
					
						
							| 
									
										
										
										
											2017-05-15 00:58:56 +02:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2017-10-30 01:11:35 +01:00
										 |  |  |     m_deviceUISet->getSpectrum()->setSampleRate(m_sampleRate); | 
					
						
							| 
									
										
										
										
											2018-08-29 18:39:40 +02:00
										 |  |  |     ui->deviceRateText->setText(tr("%1k").arg((float)(m_sampleRate) / 1000)); | 
					
						
							| 
									
										
										
										
											2017-05-15 00:58:56 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-02 22:58:42 +01:00
										 |  |  | void RemoteOutputSinkGui::updateTxDelayTooltip() | 
					
						
							| 
									
										
										
										
											2017-06-08 00:01:56 +02:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2019-02-02 22:58:42 +01:00
										 |  |  |     int samplesPerBlock = RemoteNbBytesPerBlock / (SDR_RX_SAMP_SZ <= 16 ? 4 : 8); | 
					
						
							| 
									
										
										
										
											2018-09-11 01:01:43 +02:00
										 |  |  |     double delay = ((127*samplesPerBlock*m_settings.m_txDelay) / m_settings.m_sampleRate)/(128 + m_settings.m_nbFECBlocks); | 
					
						
							| 
									
										
										
										
											2017-06-08 00:01:56 +02:00
										 |  |  |     ui->txDelayText->setToolTip(tr("%1 us").arg(QString::number(delay*1e6, 'f', 0))); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-02 22:58:42 +01:00
										 |  |  | void RemoteOutputSinkGui::displaySettings() | 
					
						
							| 
									
										
										
										
											2017-05-15 00:58:56 +02:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2018-08-29 22:08:58 +02:00
										 |  |  |     blockApplySettings(true); | 
					
						
							| 
									
										
										
										
											2018-09-07 00:58:09 +02:00
										 |  |  |     ui->centerFrequency->setValue(m_deviceCenterFrequency / 1000); | 
					
						
							| 
									
										
										
										
											2017-05-15 00:58:56 +02:00
										 |  |  |     ui->sampleRate->setValue(m_settings.m_sampleRate); | 
					
						
							| 
									
										
										
										
											2017-06-08 00:01:56 +02:00
										 |  |  |     ui->txDelay->setValue(m_settings.m_txDelay*100); | 
					
						
							|  |  |  |     ui->txDelayText->setText(tr("%1").arg(m_settings.m_txDelay*100)); | 
					
						
							| 
									
										
										
										
											2017-05-21 19:45:56 +02:00
										 |  |  |     ui->nbFECBlocks->setValue(m_settings.m_nbFECBlocks); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     QString s0 = QString::number(128 + m_settings.m_nbFECBlocks, 'f', 0); | 
					
						
							|  |  |  |     QString s1 = QString::number(m_settings.m_nbFECBlocks, 'f', 0); | 
					
						
							|  |  |  |     ui->nominalNbBlocksText->setText(tr("%1/%2").arg(s0).arg(s1)); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-09-02 19:12:03 +02:00
										 |  |  |     ui->deviceIndex->setText(tr("%1").arg(m_settings.m_deviceIndex)); | 
					
						
							|  |  |  |     ui->channelIndex->setText(tr("%1").arg(m_settings.m_channelIndex)); | 
					
						
							| 
									
										
										
										
											2018-08-29 18:39:40 +02:00
										 |  |  |     ui->apiAddress->setText(m_settings.m_apiAddress); | 
					
						
							|  |  |  |     ui->apiPort->setText(tr("%1").arg(m_settings.m_apiPort)); | 
					
						
							|  |  |  |     ui->dataAddress->setText(m_settings.m_dataAddress); | 
					
						
							| 
									
										
										
										
											2017-05-21 19:45:56 +02:00
										 |  |  |     ui->dataPort->setText(tr("%1").arg(m_settings.m_dataPort)); | 
					
						
							| 
									
										
										
										
											2018-08-29 22:08:58 +02:00
										 |  |  |     blockApplySettings(false); | 
					
						
							| 
									
										
										
										
											2017-05-15 00:58:56 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-02 22:58:42 +01:00
										 |  |  | void RemoteOutputSinkGui::sendSettings() | 
					
						
							| 
									
										
										
										
											2017-05-15 00:58:56 +02:00
										 |  |  | { | 
					
						
							|  |  |  |     if(!m_updateTimer.isActive()) | 
					
						
							|  |  |  |         m_updateTimer.start(100); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-02 22:58:42 +01:00
										 |  |  | void RemoteOutputSinkGui::updateHardware() | 
					
						
							| 
									
										
										
										
											2017-05-15 00:58:56 +02:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2019-02-02 22:58:42 +01:00
										 |  |  |     qDebug() << "RemoteOutputSinkGui::updateHardware"; | 
					
						
							|  |  |  |     RemoteOutput::MsgConfigureRemoteOutput* message = RemoteOutput::MsgConfigureRemoteOutput::create(m_settings, m_forceSettings); | 
					
						
							| 
									
										
										
										
											2017-05-15 00:58:56 +02:00
										 |  |  |     m_deviceSampleSink->getInputMessageQueue()->push(message); | 
					
						
							| 
									
										
										
										
											2017-05-23 01:41:30 +02:00
										 |  |  |     m_forceSettings = false; | 
					
						
							| 
									
										
										
										
											2017-05-15 00:58:56 +02:00
										 |  |  |     m_updateTimer.stop(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-02 22:58:42 +01:00
										 |  |  | void RemoteOutputSinkGui::updateStatus() | 
					
						
							| 
									
										
										
										
											2017-05-15 00:58:56 +02:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2019-05-08 22:11:53 +02:00
										 |  |  |     int state = m_deviceUISet->m_deviceAPI->state(); | 
					
						
							| 
									
										
										
										
											2017-05-15 00:58:56 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     if(m_lastEngineState != state) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         switch(state) | 
					
						
							|  |  |  |         { | 
					
						
							| 
									
										
										
										
											2019-05-08 22:11:53 +02:00
										 |  |  |             case DeviceAPI::StNotStarted: | 
					
						
							| 
									
										
										
										
											2017-05-15 00:58:56 +02:00
										 |  |  |                 ui->startStop->setStyleSheet("QToolButton { background:rgb(79,79,79); }"); | 
					
						
							|  |  |  |                 break; | 
					
						
							| 
									
										
										
										
											2019-05-08 22:11:53 +02:00
										 |  |  |             case DeviceAPI::StIdle: | 
					
						
							| 
									
										
										
										
											2017-05-15 00:58:56 +02:00
										 |  |  |                 ui->startStop->setStyleSheet("QToolButton { background-color : blue; }"); | 
					
						
							|  |  |  |                 break; | 
					
						
							| 
									
										
										
										
											2019-05-08 22:11:53 +02:00
										 |  |  |             case DeviceAPI::StRunning: | 
					
						
							| 
									
										
										
										
											2017-06-05 23:00:28 +02:00
										 |  |  |                 ui->startStop->setStyleSheet("QToolButton { background-color : green; }"); | 
					
						
							| 
									
										
										
										
											2017-05-15 00:58:56 +02:00
										 |  |  |                 break; | 
					
						
							| 
									
										
										
										
											2019-05-08 22:11:53 +02:00
										 |  |  |             case DeviceAPI::StError: | 
					
						
							| 
									
										
										
										
											2017-06-05 23:00:28 +02:00
										 |  |  |                 ui->startStop->setStyleSheet("QToolButton { background-color : red; }"); | 
					
						
							| 
									
										
										
										
											2019-05-08 22:11:53 +02:00
										 |  |  |                 QMessageBox::information(this, tr("Message"), m_deviceUISet->m_deviceAPI->errorMessage()); | 
					
						
							| 
									
										
										
										
											2017-05-15 00:58:56 +02:00
										 |  |  |                 break; | 
					
						
							|  |  |  |             default: | 
					
						
							|  |  |  |                 break; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         m_lastEngineState = state; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-02 22:58:42 +01:00
										 |  |  | void RemoteOutputSinkGui::on_sampleRate_changed(quint64 value) | 
					
						
							| 
									
										
										
										
											2017-05-15 00:58:56 +02:00
										 |  |  | { | 
					
						
							|  |  |  |     m_settings.m_sampleRate = value; | 
					
						
							| 
									
										
										
										
											2017-06-08 00:01:56 +02:00
										 |  |  |     updateTxDelayTooltip(); | 
					
						
							| 
									
										
										
										
											2018-08-28 06:29:59 +02:00
										 |  |  |     sendSettings(); | 
					
						
							| 
									
										
										
										
											2017-05-21 19:45:56 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-02 22:58:42 +01:00
										 |  |  | void RemoteOutputSinkGui::on_txDelay_valueChanged(int value) | 
					
						
							| 
									
										
										
										
											2017-05-21 19:45:56 +02:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2017-06-08 00:01:56 +02:00
										 |  |  |     m_settings.m_txDelay = value / 100.0; | 
					
						
							|  |  |  |     ui->txDelayText->setText(tr("%1").arg(value)); | 
					
						
							|  |  |  |     updateTxDelayTooltip(); | 
					
						
							| 
									
										
										
										
											2017-05-21 19:45:56 +02:00
										 |  |  |     sendSettings(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-02 22:58:42 +01:00
										 |  |  | void RemoteOutputSinkGui::on_nbFECBlocks_valueChanged(int value) | 
					
						
							| 
									
										
										
										
											2017-05-21 19:45:56 +02:00
										 |  |  | { | 
					
						
							|  |  |  |     m_settings.m_nbFECBlocks = value; | 
					
						
							|  |  |  |     int nbOriginalBlocks = 128; | 
					
						
							|  |  |  |     int nbFECBlocks = value; | 
					
						
							|  |  |  |     QString s = QString::number(nbOriginalBlocks + nbFECBlocks, 'f', 0); | 
					
						
							|  |  |  |     QString s1 = QString::number(nbFECBlocks, 'f', 0); | 
					
						
							|  |  |  |     ui->nominalNbBlocksText->setText(tr("%1/%2").arg(s).arg(s1)); | 
					
						
							| 
									
										
										
										
											2017-06-08 00:01:56 +02:00
										 |  |  |     updateTxDelayTooltip(); | 
					
						
							| 
									
										
										
										
											2017-05-15 00:58:56 +02:00
										 |  |  |     sendSettings(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-02 22:58:42 +01:00
										 |  |  | void RemoteOutputSinkGui::on_deviceIndex_returnPressed() | 
					
						
							| 
									
										
										
										
											2018-09-01 10:44:12 +02:00
										 |  |  | { | 
					
						
							|  |  |  |     bool dataOk; | 
					
						
							|  |  |  |     int deviceIndex = ui->deviceIndex->text().toInt(&dataOk); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if ((!dataOk) || (deviceIndex < 0)) { | 
					
						
							|  |  |  |         return; | 
					
						
							|  |  |  |     } else { | 
					
						
							|  |  |  |         m_settings.m_deviceIndex = deviceIndex; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     sendSettings(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-02 22:58:42 +01:00
										 |  |  | void RemoteOutputSinkGui::on_channelIndex_returnPressed() | 
					
						
							| 
									
										
										
										
											2018-09-01 10:44:12 +02:00
										 |  |  | { | 
					
						
							|  |  |  |     bool dataOk; | 
					
						
							|  |  |  |     int channelIndex = ui->channelIndex->text().toInt(&dataOk); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if ((!dataOk) || (channelIndex < 0)) { | 
					
						
							|  |  |  |         return; | 
					
						
							|  |  |  |     } else { | 
					
						
							|  |  |  |         m_settings.m_channelIndex = channelIndex; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     sendSettings(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-02 22:58:42 +01:00
										 |  |  | void RemoteOutputSinkGui::on_apiAddress_returnPressed() | 
					
						
							| 
									
										
										
										
											2017-05-21 19:45:56 +02:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2018-08-29 18:39:40 +02:00
										 |  |  |     m_settings.m_apiAddress = ui->apiAddress->text(); | 
					
						
							| 
									
										
										
										
											2017-05-21 19:45:56 +02:00
										 |  |  |     sendSettings(); | 
					
						
							| 
									
										
										
										
											2018-08-30 19:14:34 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-09-04 08:43:07 +02:00
										 |  |  |     QString infoURL = QString("http://%1:%2/sdrangel").arg(m_settings.m_apiAddress).arg(m_settings.m_apiPort); | 
					
						
							| 
									
										
										
										
											2018-08-30 19:14:34 +02:00
										 |  |  |     m_networkRequest.setUrl(QUrl(infoURL)); | 
					
						
							| 
									
										
										
										
											2018-08-31 07:38:30 +02:00
										 |  |  |     m_networkManager->get(m_networkRequest); | 
					
						
							| 
									
										
										
										
											2017-05-21 19:45:56 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-02 22:58:42 +01:00
										 |  |  | void RemoteOutputSinkGui::on_apiPort_returnPressed() | 
					
						
							| 
									
										
										
										
											2017-05-21 19:45:56 +02:00
										 |  |  | { | 
					
						
							|  |  |  |     bool dataOk; | 
					
						
							| 
									
										
										
										
											2018-08-29 18:39:40 +02:00
										 |  |  |     int apiPort = ui->apiPort->text().toInt(&dataOk); | 
					
						
							| 
									
										
										
										
											2017-05-21 19:45:56 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-09-01 10:44:12 +02:00
										 |  |  |     if((!dataOk) || (apiPort < 1024) || (apiPort > 65535)) { | 
					
						
							| 
									
										
										
										
											2017-05-21 19:45:56 +02:00
										 |  |  |         return; | 
					
						
							| 
									
										
										
										
											2018-09-01 10:44:12 +02:00
										 |  |  |     } else { | 
					
						
							| 
									
										
										
										
											2018-08-29 18:39:40 +02:00
										 |  |  |         m_settings.m_apiPort = apiPort; | 
					
						
							| 
									
										
										
										
											2017-05-21 19:45:56 +02:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     sendSettings(); | 
					
						
							| 
									
										
										
										
											2018-08-30 19:14:34 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-09-04 08:43:07 +02:00
										 |  |  |     QString infoURL = QString("http://%1:%2/sdrangel").arg(m_settings.m_apiAddress).arg(m_settings.m_apiPort); | 
					
						
							| 
									
										
										
										
											2018-08-30 19:14:34 +02:00
										 |  |  |     m_networkRequest.setUrl(QUrl(infoURL)); | 
					
						
							| 
									
										
										
										
											2018-08-31 07:38:30 +02:00
										 |  |  |     m_networkManager->get(m_networkRequest); | 
					
						
							| 
									
										
										
										
											2017-05-21 19:45:56 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-02 22:58:42 +01:00
										 |  |  | void RemoteOutputSinkGui::on_dataAddress_returnPressed() | 
					
						
							| 
									
										
										
										
											2018-08-29 18:39:40 +02:00
										 |  |  | { | 
					
						
							|  |  |  |     m_settings.m_dataAddress = ui->dataAddress->text(); | 
					
						
							|  |  |  |     sendSettings(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-02 22:58:42 +01:00
										 |  |  | void RemoteOutputSinkGui::on_dataPort_returnPressed() | 
					
						
							| 
									
										
										
										
											2017-05-21 19:45:56 +02:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2018-08-29 18:39:40 +02:00
										 |  |  |     bool dataOk; | 
					
						
							|  |  |  |     int dataPort = ui->dataPort->text().toInt(&dataOk); | 
					
						
							| 
									
										
										
										
											2017-05-21 19:45:56 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-09-01 10:44:12 +02:00
										 |  |  |     if((!dataOk) || (dataPort < 1024) || (dataPort > 65535)) { | 
					
						
							| 
									
										
										
										
											2017-05-21 19:45:56 +02:00
										 |  |  |         return; | 
					
						
							| 
									
										
										
										
											2018-09-01 10:44:12 +02:00
										 |  |  |     } else { | 
					
						
							| 
									
										
										
										
											2018-08-29 18:39:40 +02:00
										 |  |  |         m_settings.m_dataPort = dataPort; | 
					
						
							| 
									
										
										
										
											2017-05-21 19:45:56 +02:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-08-29 18:39:40 +02:00
										 |  |  |     sendSettings(); | 
					
						
							| 
									
										
										
										
											2017-05-21 19:45:56 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-02 22:58:42 +01:00
										 |  |  | void RemoteOutputSinkGui::on_apiApplyButton_clicked(bool checked) | 
					
						
							| 
									
										
										
										
											2017-05-21 19:45:56 +02:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2018-11-13 08:51:14 +01:00
										 |  |  |     (void) checked; | 
					
						
							| 
									
										
										
										
											2018-08-29 18:39:40 +02:00
										 |  |  |     m_settings.m_apiAddress = ui->apiAddress->text(); | 
					
						
							| 
									
										
										
										
											2017-05-28 10:13:54 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-08-29 18:39:40 +02:00
										 |  |  |     bool apiOk; | 
					
						
							|  |  |  |     int apiPort = ui->apiPort->text().toInt(&apiOk); | 
					
						
							| 
									
										
										
										
											2017-05-28 10:13:54 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-08-29 18:39:40 +02:00
										 |  |  |     if((apiOk) && (apiPort >= 1024) && (apiPort < 65535)) | 
					
						
							| 
									
										
										
										
											2017-05-28 10:13:54 +02:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2018-08-29 18:39:40 +02:00
										 |  |  |         m_settings.m_apiPort = apiPort; | 
					
						
							| 
									
										
										
										
											2017-05-28 10:13:54 +02:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-08-30 01:56:53 +02:00
										 |  |  |     sendSettings(); | 
					
						
							| 
									
										
										
										
											2018-08-30 19:14:34 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-09-04 08:43:07 +02:00
										 |  |  |     QString infoURL = QString("http://%1:%2/sdrangel").arg(m_settings.m_apiAddress).arg(m_settings.m_apiPort); | 
					
						
							| 
									
										
										
										
											2018-08-30 19:14:34 +02:00
										 |  |  |     m_networkRequest.setUrl(QUrl(infoURL)); | 
					
						
							|  |  |  |     m_networkManager->get(m_networkRequest); | 
					
						
							| 
									
										
										
										
											2018-08-30 01:56:53 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-02 22:58:42 +01:00
										 |  |  | void RemoteOutputSinkGui::on_dataApplyButton_clicked(bool checked) | 
					
						
							| 
									
										
										
										
											2018-08-30 01:56:53 +02:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2018-11-13 08:51:14 +01:00
										 |  |  |     (void) checked; | 
					
						
							| 
									
										
										
										
											2018-08-30 01:56:53 +02:00
										 |  |  |     m_settings.m_dataAddress = ui->dataAddress->text(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-28 10:13:54 +02:00
										 |  |  |     bool dataOk; | 
					
						
							|  |  |  |     int udpDataPort = ui->dataPort->text().toInt(&dataOk); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if((dataOk) && (udpDataPort >= 1024) && (udpDataPort < 65535)) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         m_settings.m_dataPort = udpDataPort; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-08-28 06:29:59 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     sendSettings(); | 
					
						
							| 
									
										
										
										
											2017-05-21 19:45:56 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-02 22:58:42 +01:00
										 |  |  | void RemoteOutputSinkGui::on_startStop_toggled(bool checked) | 
					
						
							| 
									
										
										
										
											2017-05-15 00:58:56 +02:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2017-12-14 18:02:49 +01:00
										 |  |  |     if (m_doApplySettings) | 
					
						
							| 
									
										
										
										
											2017-05-15 00:58:56 +02:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2019-02-02 22:58:42 +01:00
										 |  |  |         RemoteOutput::MsgStartStop *message = RemoteOutput::MsgStartStop::create(checked); | 
					
						
							| 
									
										
										
										
											2017-12-14 18:02:49 +01:00
										 |  |  |         m_deviceSampleSink->getInputMessageQueue()->push(message); | 
					
						
							| 
									
										
										
										
											2017-05-15 00:58:56 +02:00
										 |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-02 22:58:42 +01:00
										 |  |  | void RemoteOutputSinkGui::on_eventCountsReset_clicked(bool checked) | 
					
						
							| 
									
										
										
										
											2017-06-06 01:53:21 +02:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2018-11-13 08:51:14 +01:00
										 |  |  |     (void) checked; | 
					
						
							| 
									
										
										
										
											2017-06-06 01:53:21 +02:00
										 |  |  |     m_countUnrecoverable = 0; | 
					
						
							|  |  |  |     m_countRecovered = 0; | 
					
						
							|  |  |  |     m_time.start(); | 
					
						
							|  |  |  |     displayEventCounts(); | 
					
						
							|  |  |  |     displayEventTimer(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-02 22:58:42 +01:00
										 |  |  | void RemoteOutputSinkGui::displayEventCounts() | 
					
						
							| 
									
										
										
										
											2017-06-06 01:53:21 +02:00
										 |  |  | { | 
					
						
							|  |  |  |     QString nstr = QString("%1").arg(m_countUnrecoverable, 3, 10, QChar('0')); | 
					
						
							|  |  |  |     ui->eventUnrecText->setText(nstr); | 
					
						
							|  |  |  |     nstr = QString("%1").arg(m_countRecovered, 3, 10, QChar('0')); | 
					
						
							|  |  |  |     ui->eventRecText->setText(nstr); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-02 22:58:42 +01:00
										 |  |  | void RemoteOutputSinkGui::displayEventStatus(int recoverableCount, int unrecoverableCount) | 
					
						
							| 
									
										
										
										
											2018-08-30 08:45:57 +02:00
										 |  |  | { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (unrecoverableCount == 0) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         if (recoverableCount == 0) { | 
					
						
							|  |  |  |             ui->allFramesDecoded->setStyleSheet("QToolButton { background-color : green; }"); | 
					
						
							|  |  |  |         } else { | 
					
						
							|  |  |  |             ui->allFramesDecoded->setStyleSheet("QToolButton { background:rgb(79,79,79); }"); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     else | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         ui->allFramesDecoded->setStyleSheet("QToolButton { background-color : red; }"); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-02 22:58:42 +01:00
										 |  |  | void RemoteOutputSinkGui::displayEventTimer() | 
					
						
							| 
									
										
										
										
											2017-06-06 01:53:21 +02:00
										 |  |  | { | 
					
						
							|  |  |  |     int elapsedTimeMillis = m_time.elapsed(); | 
					
						
							|  |  |  |     QTime recordLength(0, 0, 0, 0); | 
					
						
							|  |  |  |     recordLength = recordLength.addSecs(elapsedTimeMillis/1000); | 
					
						
							| 
									
										
										
										
											2018-05-11 11:00:08 +02:00
										 |  |  |     QString s_time = recordLength.toString("HH:mm:ss"); | 
					
						
							| 
									
										
										
										
											2017-06-06 01:53:21 +02:00
										 |  |  |     ui->eventCountsTimeText->setText(s_time); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-02 22:58:42 +01:00
										 |  |  | void RemoteOutputSinkGui::tick() | 
					
						
							| 
									
										
										
										
											2017-05-15 00:58:56 +02:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2018-08-31 07:38:30 +02:00
										 |  |  |     if (++m_tickCount == 20) // once per second
 | 
					
						
							| 
									
										
										
										
											2017-05-15 00:58:56 +02:00
										 |  |  | 	{ | 
					
						
							| 
									
										
										
										
											2018-09-01 10:44:12 +02:00
										 |  |  |         QString reportURL; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-09-04 08:43:07 +02:00
										 |  |  |         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); | 
					
						
							| 
									
										
										
										
											2018-08-30 02:58:10 +02:00
										 |  |  | 	    m_networkRequest.setUrl(QUrl(reportURL)); | 
					
						
							|  |  |  | 	    m_networkManager->get(m_networkRequest); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-06-06 01:53:21 +02:00
										 |  |  |         displayEventTimer(); | 
					
						
							| 
									
										
										
										
											2018-08-31 07:38:30 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |         m_tickCount = 0; | 
					
						
							| 
									
										
										
										
											2017-05-15 00:58:56 +02:00
										 |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2018-08-30 02:58:10 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-02 22:58:42 +01:00
										 |  |  | void RemoteOutputSinkGui::networkManagerFinished(QNetworkReply *reply) | 
					
						
							| 
									
										
										
										
											2018-08-30 02:58:10 +02:00
										 |  |  | { | 
					
						
							|  |  |  |     if (reply->error()) | 
					
						
							|  |  |  |     { | 
					
						
							| 
									
										
										
										
											2018-08-30 08:45:57 +02:00
										 |  |  |         ui->apiAddressLabel->setStyleSheet("QLabel { background:rgb(79,79,79); }"); | 
					
						
							| 
									
										
										
										
											2018-08-30 19:14:34 +02:00
										 |  |  |         ui->statusText->setText(reply->errorString()); | 
					
						
							| 
									
										
										
										
											2018-08-30 02:58:10 +02:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2019-11-15 01:04:24 +01:00
										 |  |  |     else | 
					
						
							| 
									
										
										
										
											2018-08-30 02:58:10 +02:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2019-11-15 01:04:24 +01:00
										 |  |  |         QString answer = reply->readAll(); | 
					
						
							| 
									
										
										
										
											2018-08-30 02:58:10 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-11-15 01:04:24 +01:00
										 |  |  |         try | 
					
						
							| 
									
										
										
										
											2018-08-30 02:58:10 +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) | 
					
						
							|  |  |  |             { | 
					
						
							|  |  |  |                 ui->apiAddressLabel->setStyleSheet("QLabel { background-color : green; }"); | 
					
						
							|  |  |  |                 ui->statusText->setText(QString("API OK")); | 
					
						
							|  |  |  |                 analyzeApiReply(doc.object()); | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |             else | 
					
						
							|  |  |  |             { | 
					
						
							|  |  |  |                 ui->apiAddressLabel->setStyleSheet("QLabel { background:rgb(79,79,79); }"); | 
					
						
							|  |  |  |                 QString errorMsg = QString("Reply JSON error: ") + error.errorString() + QString(" at offset ") + QString::number(error.offset); | 
					
						
							|  |  |  |                 ui->statusText->setText(QString("JSON error. See log")); | 
					
						
							|  |  |  |                 qInfo().noquote() << "RemoteOutputSinkGui::networkManagerFinished" << errorMsg; | 
					
						
							|  |  |  |             } | 
					
						
							| 
									
										
										
										
											2018-08-30 02:58:10 +02:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2019-11-15 01:04:24 +01:00
										 |  |  |         catch (const std::exception& ex) | 
					
						
							| 
									
										
										
										
											2018-08-30 02:58:10 +02:00
										 |  |  |         { | 
					
						
							| 
									
										
										
										
											2018-08-30 08:45:57 +02:00
										 |  |  |             ui->apiAddressLabel->setStyleSheet("QLabel { background:rgb(79,79,79); }"); | 
					
						
							| 
									
										
										
										
											2019-11-15 01:04:24 +01:00
										 |  |  |             QString errorMsg = QString("Error parsing request: ") + ex.what(); | 
					
						
							|  |  |  |             ui->statusText->setText("Error parsing request. See log for details"); | 
					
						
							| 
									
										
										
										
											2019-02-02 22:58:42 +01:00
										 |  |  |             qInfo().noquote() << "RemoteOutputSinkGui::networkManagerFinished" << errorMsg; | 
					
						
							| 
									
										
										
										
											2018-08-30 02:58:10 +02:00
										 |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2019-11-15 01:04:24 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     reply->deleteLater(); | 
					
						
							| 
									
										
										
										
											2018-08-30 02:58:10 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-02 22:58:42 +01:00
										 |  |  | void RemoteOutputSinkGui::analyzeApiReply(const QJsonObject& jsonObject) | 
					
						
							| 
									
										
										
										
											2018-08-30 02:58:10 +02:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2018-08-30 19:14:34 +02:00
										 |  |  |     QString infoLine; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-02 23:27:34 +01:00
										 |  |  |     if (jsonObject.contains("RemoteSourceReport")) | 
					
						
							| 
									
										
										
										
											2018-08-30 02:58:10 +02:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2019-02-02 23:27:34 +01:00
										 |  |  |         QJsonObject report = jsonObject["RemoteSourceReport"].toObject(); | 
					
						
							| 
									
										
										
										
											2018-09-07 00:58:09 +02:00
										 |  |  |         m_deviceCenterFrequency = report["deviceCenterFreq"].toInt() * 1000; | 
					
						
							|  |  |  |         m_deviceUISet->getSpectrum()->setCenterFrequency(m_deviceCenterFrequency); | 
					
						
							|  |  |  |         ui->centerFrequency->setValue(m_deviceCenterFrequency/1000); | 
					
						
							|  |  |  |         int remoteRate = report["deviceSampleRate"].toInt(); | 
					
						
							|  |  |  |         ui->remoteRateText->setText(tr("%1k").arg((float)(remoteRate) / 1000)); | 
					
						
							| 
									
										
										
										
											2018-08-30 02:58:10 +02:00
										 |  |  |         int queueSize = report["queueSize"].toInt(); | 
					
						
							|  |  |  |         queueSize = queueSize == 0 ? 10 : queueSize; | 
					
						
							|  |  |  |         int queueLength = report["queueLength"].toInt(); | 
					
						
							|  |  |  |         QString queueLengthText = QString("%1/%2").arg(queueLength).arg(queueSize); | 
					
						
							|  |  |  |         ui->queueLengthText->setText(queueLengthText); | 
					
						
							| 
									
										
										
										
											2018-08-31 07:38:30 +02:00
										 |  |  |         int queueLengthPercent = (queueLength*100)/queueSize; | 
					
						
							|  |  |  |         ui->queueLengthGauge->setValue(queueLengthPercent); | 
					
						
							| 
									
										
										
										
											2018-08-30 08:45:57 +02:00
										 |  |  |         int unrecoverableCount = report["uncorrectableErrorsCount"].toInt(); | 
					
						
							|  |  |  |         int recoverableCount = report["correctableErrorsCount"].toInt(); | 
					
						
							| 
									
										
										
										
											2018-08-30 19:14:34 +02:00
										 |  |  |         uint64_t timestampUs = report["tvSec"].toInt()*1000000ULL + report["tvUSec"].toInt(); | 
					
						
							| 
									
										
										
										
											2018-08-30 08:45:57 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |         if (!m_resetCounts) | 
					
						
							|  |  |  |         { | 
					
						
							|  |  |  |             int recoverableCountDelta = recoverableCount - m_lastCountRecovered; | 
					
						
							|  |  |  |             int unrecoverableCountDelta = unrecoverableCount - m_lastCountUnrecoverable; | 
					
						
							|  |  |  |             displayEventStatus(recoverableCountDelta, unrecoverableCountDelta); | 
					
						
							|  |  |  |             m_countRecovered += recoverableCountDelta; | 
					
						
							|  |  |  |             m_countUnrecoverable += unrecoverableCountDelta; | 
					
						
							|  |  |  |             displayEventCounts(); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-08-31 08:47:18 +02:00
										 |  |  |         uint32_t sampleCountDelta, sampleCount; | 
					
						
							|  |  |  |         sampleCount = report["samplesCount"].toInt(); | 
					
						
							| 
									
										
										
										
											2018-08-31 07:38:30 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-08-31 08:47:18 +02:00
										 |  |  |         if (sampleCount < m_lastSampleCount) { | 
					
						
							| 
									
										
										
										
											2018-09-03 00:15:47 +02:00
										 |  |  |             sampleCountDelta = (0xFFFFFFFFU - m_lastSampleCount) + sampleCount + 1; | 
					
						
							| 
									
										
										
										
											2018-08-31 08:47:18 +02:00
										 |  |  |         } else { | 
					
						
							|  |  |  |             sampleCountDelta = sampleCount - m_lastSampleCount; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-09-02 19:12:03 +02:00
										 |  |  |         if (sampleCountDelta == 0) | 
					
						
							|  |  |  |         { | 
					
						
							| 
									
										
										
										
											2018-08-30 19:14:34 +02:00
										 |  |  |             ui->allFramesDecoded->setStyleSheet("QToolButton { background-color : blue; }"); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-08-31 08:47:18 +02:00
										 |  |  |         double remoteStreamRate = sampleCountDelta*1e6 / (double) (timestampUs - m_lastTimestampUs); | 
					
						
							| 
									
										
										
										
											2018-08-31 07:38:30 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-09-02 19:12:03 +02:00
										 |  |  |         if (remoteStreamRate != 0) { | 
					
						
							|  |  |  |             ui->remoteStreamRateText->setText(QString("%1").arg(remoteStreamRate, 0, 'f', 0)); | 
					
						
							| 
									
										
										
										
											2018-08-31 07:38:30 +02:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2018-08-30 19:14:34 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-08-30 08:45:57 +02:00
										 |  |  |         m_resetCounts = false; | 
					
						
							|  |  |  |         m_lastCountRecovered = recoverableCount; | 
					
						
							|  |  |  |         m_lastCountUnrecoverable = unrecoverableCount; | 
					
						
							| 
									
										
										
										
											2018-08-30 19:14:34 +02:00
										 |  |  |         m_lastSampleCount = sampleCount; | 
					
						
							|  |  |  |         m_lastTimestampUs = timestampUs; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (jsonObject.contains("version")) { | 
					
						
							|  |  |  |         infoLine = "v" + jsonObject["version"].toString(); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (jsonObject.contains("qtVersion")) { | 
					
						
							|  |  |  |         infoLine += " Qt" + jsonObject["qtVersion"].toString(); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (jsonObject.contains("architecture")) { | 
					
						
							|  |  |  |         infoLine += " " + jsonObject["architecture"].toString(); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (jsonObject.contains("os")) { | 
					
						
							|  |  |  |         infoLine += " " + jsonObject["os"].toString(); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (jsonObject.contains("dspRxBits") && jsonObject.contains("dspTxBits")) { | 
					
						
							|  |  |  |         infoLine +=  QString(" %1/%2b").arg(jsonObject["dspRxBits"].toInt()).arg(jsonObject["dspTxBits"].toInt()); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (infoLine.size() > 0) { | 
					
						
							|  |  |  |         ui->infoText->setText(infoLine); | 
					
						
							| 
									
										
										
										
											2018-08-30 02:58:10 +02:00
										 |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2018-12-26 22:30:35 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-02 22:58:42 +01:00
										 |  |  | void RemoteOutputSinkGui::openDeviceSettingsDialog(const QPoint& p) | 
					
						
							| 
									
										
										
										
											2018-12-26 22:30:35 +01:00
										 |  |  | { | 
					
						
							|  |  |  |     BasicDeviceSettingsDialog dialog(this); | 
					
						
							|  |  |  |     dialog.setUseReverseAPI(m_settings.m_useReverseAPI); | 
					
						
							|  |  |  |     dialog.setReverseAPIAddress(m_settings.m_reverseAPIAddress); | 
					
						
							|  |  |  |     dialog.setReverseAPIPort(m_settings.m_reverseAPIPort); | 
					
						
							|  |  |  |     dialog.setReverseAPIDeviceIndex(m_settings.m_reverseAPIDeviceIndex); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     dialog.move(p); | 
					
						
							|  |  |  |     dialog.exec(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     m_settings.m_useReverseAPI = dialog.useReverseAPI(); | 
					
						
							|  |  |  |     m_settings.m_reverseAPIAddress = dialog.getReverseAPIAddress(); | 
					
						
							|  |  |  |     m_settings.m_reverseAPIPort = dialog.getReverseAPIPort(); | 
					
						
							|  |  |  |     m_settings.m_reverseAPIDeviceIndex = dialog.getReverseAPIDeviceIndex(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     sendSettings(); | 
					
						
							|  |  |  | } |