2016-06-19 07:56:49 +00: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 04:57:41 +00:00
|
|
|
// (at your option) any later version. //
|
2016-06-19 07:56:49 +00:00
|
|
|
// //
|
|
|
|
// This program is distributed in the hope that it will be useful, //
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of //
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the //
|
|
|
|
// GNU General Public License V3 for more details. //
|
|
|
|
// //
|
|
|
|
// You should have received a copy of the GNU General Public License //
|
|
|
|
// along with this program. If not, see <http://www.gnu.org/licenses/>. //
|
|
|
|
///////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2019-02-02 23:26:26 +00:00
|
|
|
#ifndef INCLUDE_REMOTEINPUTGUI_H
|
|
|
|
#define INCLUDE_REMOTEINPUTGUI_H
|
2016-06-19 07:56:49 +00:00
|
|
|
|
|
|
|
#include <QTimer>
|
2017-09-03 15:26:32 +00:00
|
|
|
#include <QWidget>
|
2018-09-08 21:30:22 +00:00
|
|
|
#include <QNetworkRequest>
|
2017-09-16 20:23:31 +00:00
|
|
|
|
2018-09-08 21:30:22 +00:00
|
|
|
#include "plugin/plugininstancegui.h"
|
2017-09-16 20:23:31 +00:00
|
|
|
#include "util/messagequeue.h"
|
|
|
|
|
2019-02-02 23:26:26 +00:00
|
|
|
#include "remoteinput.h"
|
2016-06-19 07:56:49 +00:00
|
|
|
|
2017-10-29 23:02:28 +00:00
|
|
|
class DeviceUISet;
|
2018-09-08 21:30:22 +00:00
|
|
|
class QNetworkAccessManager;
|
|
|
|
class QNetworkReply;
|
|
|
|
class QJsonObject;
|
2016-06-19 07:56:49 +00:00
|
|
|
|
|
|
|
namespace Ui {
|
2019-02-02 23:26:26 +00:00
|
|
|
class RemoteInputGui;
|
2016-06-19 07:56:49 +00:00
|
|
|
}
|
|
|
|
|
2019-02-02 23:26:26 +00:00
|
|
|
class RemoteInputGui : public QWidget, public PluginInstanceGUI {
|
2016-06-19 07:56:49 +00:00
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
2019-02-02 23:26:26 +00:00
|
|
|
explicit RemoteInputGui(DeviceUISet *deviceUISet, QWidget* parent = 0);
|
|
|
|
virtual ~RemoteInputGui();
|
2017-09-16 08:45:08 +00:00
|
|
|
virtual void destroy();
|
2016-06-19 07:56:49 +00:00
|
|
|
|
|
|
|
void setName(const QString& name);
|
|
|
|
QString getName() const;
|
|
|
|
|
|
|
|
void resetToDefaults();
|
|
|
|
QByteArray serialize() const;
|
|
|
|
bool deserialize(const QByteArray& data);
|
|
|
|
virtual qint64 getCenterFrequency() const;
|
|
|
|
virtual void setCenterFrequency(qint64 centerFrequency);
|
2017-09-16 20:23:31 +00:00
|
|
|
virtual MessageQueue *getInputMessageQueue() { return &m_inputMessageQueue; }
|
2016-06-19 07:56:49 +00:00
|
|
|
virtual bool handleMessage(const Message& message);
|
|
|
|
|
|
|
|
private:
|
2019-02-02 23:26:26 +00:00
|
|
|
Ui::RemoteInputGui* ui;
|
2016-06-19 07:56:49 +00:00
|
|
|
|
2017-10-29 23:02:28 +00:00
|
|
|
DeviceUISet* m_deviceUISet;
|
2019-02-02 23:26:26 +00:00
|
|
|
RemoteInputSettings m_settings; //!< current settings
|
|
|
|
RemoteInput* m_sampleSource;
|
2017-12-26 01:18:30 +00:00
|
|
|
bool m_acquisition;
|
|
|
|
int m_streamSampleRate; //!< Sample rate of received stream
|
|
|
|
quint64 m_streamCenterFrequency; //!< Center frequency of received stream
|
2016-06-19 07:56:49 +00:00
|
|
|
QTimer m_updateTimer;
|
|
|
|
QTimer m_statusTimer;
|
|
|
|
int m_lastEngineState;
|
2017-09-16 20:23:31 +00:00
|
|
|
MessageQueue m_inputMessageQueue;
|
2016-06-19 07:56:49 +00:00
|
|
|
|
2017-12-26 01:18:30 +00:00
|
|
|
// int m_sampleRate;
|
|
|
|
// quint64 m_centerFrequency;
|
2018-11-13 12:45:55 +00:00
|
|
|
uint64_t m_startingTimeStampms;
|
2016-07-24 09:09:11 +00:00
|
|
|
int m_framesDecodingStatus;
|
2016-07-28 02:49:33 +00:00
|
|
|
bool m_allBlocksReceived;
|
2016-06-19 07:56:49 +00:00
|
|
|
float m_bufferLengthInSecs;
|
|
|
|
int32_t m_bufferGauge;
|
2016-07-17 22:39:35 +00:00
|
|
|
int m_minNbBlocks;
|
2016-07-27 16:49:17 +00:00
|
|
|
int m_minNbOriginalBlocks;
|
2016-07-17 22:39:35 +00:00
|
|
|
int m_maxNbRecovery;
|
2016-06-19 23:18:21 +00:00
|
|
|
float m_avgNbBlocks;
|
2016-07-27 16:49:17 +00:00
|
|
|
float m_avgNbOriginalBlocks;
|
2016-06-19 23:18:21 +00:00
|
|
|
float m_avgNbRecovery;
|
2016-07-24 09:09:11 +00:00
|
|
|
int m_nbOriginalBlocks;
|
|
|
|
int m_nbFECBlocks;
|
2018-09-09 15:39:36 +00:00
|
|
|
int m_sampleBits;
|
2018-09-09 19:26:47 +00:00
|
|
|
int m_sampleBytes;
|
2016-06-19 23:18:21 +00:00
|
|
|
|
2016-06-19 07:56:49 +00:00
|
|
|
int m_samplesCount;
|
|
|
|
std::size_t m_tickCount;
|
|
|
|
|
|
|
|
bool m_addressEdited;
|
|
|
|
bool m_dataPortEdited;
|
2017-06-08 13:31:24 +00:00
|
|
|
|
|
|
|
uint32_t m_countUnrecoverable;
|
|
|
|
uint32_t m_countRecovered;
|
|
|
|
QTime m_eventsTime;
|
|
|
|
|
|
|
|
bool m_doApplySettings;
|
2017-06-08 00:06:36 +00:00
|
|
|
bool m_forceSettings;
|
2017-06-08 21:35:52 +00:00
|
|
|
double m_txDelay;
|
2016-06-19 07:56:49 +00:00
|
|
|
|
2016-07-28 03:57:59 +00:00
|
|
|
QPalette m_paletteGreenText;
|
|
|
|
QPalette m_paletteWhiteText;
|
|
|
|
|
2018-09-08 21:30:22 +00:00
|
|
|
QNetworkAccessManager *m_networkManager;
|
|
|
|
QNetworkRequest m_networkRequest;
|
|
|
|
|
2017-06-08 00:06:36 +00:00
|
|
|
void blockApplySettings(bool block);
|
2016-06-19 07:56:49 +00:00
|
|
|
void displaySettings();
|
|
|
|
void displayTime();
|
2017-06-08 00:06:36 +00:00
|
|
|
void sendSettings();
|
2016-06-19 07:56:49 +00:00
|
|
|
void updateWithAcquisition();
|
|
|
|
void updateWithStreamTime();
|
2018-09-08 21:30:22 +00:00
|
|
|
void updateSampleRateAndFrequency();
|
2017-06-08 13:31:24 +00:00
|
|
|
void displayEventCounts();
|
|
|
|
void displayEventTimer();
|
2018-09-08 21:30:22 +00:00
|
|
|
void analyzeApiReply(const QJsonObject& jsonObject);
|
2016-06-19 07:56:49 +00:00
|
|
|
|
|
|
|
private slots:
|
2017-09-16 23:23:54 +00:00
|
|
|
void handleInputMessages();
|
2018-09-08 21:30:22 +00:00
|
|
|
void on_apiApplyButton_clicked(bool checked);
|
|
|
|
void on_dataApplyButton_clicked(bool checked);
|
2016-06-19 07:56:49 +00:00
|
|
|
void on_dcOffset_toggled(bool checked);
|
|
|
|
void on_iqImbalance_toggled(bool checked);
|
2018-09-08 21:30:22 +00:00
|
|
|
void on_apiAddress_returnPressed();
|
|
|
|
void on_apiPort_returnPressed();
|
|
|
|
void on_dataAddress_returnPressed();
|
2017-06-07 22:21:46 +00:00
|
|
|
void on_dataPort_returnPressed();
|
2016-06-19 07:56:49 +00:00
|
|
|
void on_startStop_toggled(bool checked);
|
|
|
|
void on_record_toggled(bool checked);
|
2017-06-08 13:31:24 +00:00
|
|
|
void on_eventCountsReset_clicked(bool checked);
|
2017-06-08 00:06:36 +00:00
|
|
|
void updateHardware();
|
2016-06-19 07:56:49 +00:00
|
|
|
void updateStatus();
|
2018-09-08 21:30:22 +00:00
|
|
|
void networkManagerFinished(QNetworkReply *reply);
|
2018-12-26 16:08:21 +00:00
|
|
|
void openDeviceSettingsDialog(const QPoint& p);
|
2016-06-19 07:56:49 +00:00
|
|
|
};
|
|
|
|
|
2019-02-02 23:26:26 +00:00
|
|
|
#endif // INCLUDE_REMOTEINPUTGUI_H
|