1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2025-08-03 06:22:25 -04:00

Reverse API: network reply error message enhancement. Added Q_OBJECT to test source and RTL-SDR input definitions to handle network reply correctly.

This commit is contained in:
f4exb 2018-12-18 06:14:18 +01:00
parent 35538ab9c1
commit 1dc8ca3a98
5 changed files with 65 additions and 19 deletions

View File

@ -779,9 +779,14 @@ void AMDemod::webapiReverseSendSettings(QList<QString>& channelSettingsKeys, con
void AMDemod::networkManagerFinished(QNetworkReply *reply) void AMDemod::networkManagerFinished(QNetworkReply *reply)
{ {
if (reply->error()) QNetworkReply::NetworkError replyError = reply->error();
if (replyError)
{ {
qDebug() << "AMDemod::networkManagerFinished: error: " << reply->errorString(); qWarning() << "AMDemod::networkManagerFinished:"
<< " error(" << (int) replyError
<< "): " << replyError
<< ": " << reply->errorString();
return; return;
} }

View File

@ -62,7 +62,7 @@ RTLSDRInput::RTLSDRInput(DeviceSourceAPI *deviceAPI) :
m_deviceAPI->addSink(m_fileSink); m_deviceAPI->addSink(m_fileSink);
m_networkManager = new QNetworkAccessManager(); m_networkManager = new QNetworkAccessManager();
connect(m_networkManager, SIGNAL(finished(QNetworkReply*)), this, SLOT(networkManagerFinished(QNetworkReply*))); connect(m_networkManager, SIGNAL(finished(QNetworkReply*)), this, SLOT(networkManagerFinished(QNetworkReply*)));
} }
RTLSDRInput::~RTLSDRInput() RTLSDRInput::~RTLSDRInput()
@ -73,10 +73,10 @@ RTLSDRInput::~RTLSDRInput()
if (m_running) { if (m_running) {
stop(); stop();
} }
m_deviceAPI->removeSink(m_fileSink); m_deviceAPI->removeSink(m_fileSink);
delete m_fileSink; delete m_fileSink;
closeDevice(); closeDevice();
} }
@ -831,7 +831,7 @@ void RTLSDRInput::webapiReverseSendStartStop(bool start)
.arg(m_settings.m_reverseAPIAddress) .arg(m_settings.m_reverseAPIAddress)
.arg(m_settings.m_reverseAPIPort) .arg(m_settings.m_reverseAPIPort)
.arg(m_settings.m_reverseAPIDeviceIndex); .arg(m_settings.m_reverseAPIDeviceIndex);
m_networkRequest.setUrl(QUrl(channelSettingsURL)); m_networkRequest.setUrl(QUrl(channelSettingsURL));
if (start) { if (start) {
m_networkManager->sendCustomRequest(m_networkRequest, "POST"); m_networkManager->sendCustomRequest(m_networkRequest, "POST");
@ -842,9 +842,14 @@ void RTLSDRInput::webapiReverseSendStartStop(bool start)
void RTLSDRInput::networkManagerFinished(QNetworkReply *reply) void RTLSDRInput::networkManagerFinished(QNetworkReply *reply)
{ {
if (reply->error()) QNetworkReply::NetworkError replyError = reply->error();
if (replyError)
{ {
qDebug() << "RTLSDRInput::networkManagerFinished: error: " << reply->errorString(); qWarning() << "TestSourceInput::networkManagerFinished:"
<< " error(" << (int) replyError
<< "): " << replyError
<< ": " << reply->errorString();
return; return;
} }

View File

@ -33,6 +33,7 @@ class QNetworkAccessManager;
class QNetworkReply; class QNetworkReply;
class RTLSDRInput : public DeviceSampleSource { class RTLSDRInput : public DeviceSampleSource {
Q_OBJECT
public: public:
class MsgConfigureRTLSDR : public Message { class MsgConfigureRTLSDR : public Message {
MESSAGE_CLASS_DECLARATION MESSAGE_CLASS_DECLARATION

View File

@ -53,7 +53,7 @@ TestSourceInput::TestSourceInput(DeviceSourceAPI *deviceAPI) :
} }
m_networkManager = new QNetworkAccessManager(); m_networkManager = new QNetworkAccessManager();
connect(m_networkManager, SIGNAL(finished(QNetworkReply*)), this, SLOT(networkManagerFinished(QNetworkReply*))); connect(m_networkManager, SIGNAL(finished(QNetworkReply*)), this, SLOT(networkManagerFinished(QNetworkReply*)));
} }
TestSourceInput::~TestSourceInput() TestSourceInput::~TestSourceInput()
@ -61,10 +61,10 @@ TestSourceInput::~TestSourceInput()
disconnect(m_networkManager, SIGNAL(finished(QNetworkReply*)), this, SLOT(networkManagerFinished(QNetworkReply*))); disconnect(m_networkManager, SIGNAL(finished(QNetworkReply*)), this, SLOT(networkManagerFinished(QNetworkReply*)));
delete m_networkManager; delete m_networkManager;
if (m_running) { if (m_running) {
stop(); stop();
} }
m_deviceAPI->removeSink(m_fileSink); m_deviceAPI->removeSink(m_fileSink);
delete m_fileSink; delete m_fileSink;
} }
@ -225,7 +225,7 @@ bool TestSourceInput::handleMessage(const Message& message)
if (m_settings.m_useReverseAPI) { if (m_settings.m_useReverseAPI) {
webapiReverseSendStartStop(cmd.getStartStop()); webapiReverseSendStartStop(cmd.getStartStop());
} }
return true; return true;
} }
@ -241,6 +241,8 @@ bool TestSourceInput::applySettings(const TestSourceSettings& settings, bool for
if ((m_settings.m_autoCorrOptions != settings.m_autoCorrOptions) || force) if ((m_settings.m_autoCorrOptions != settings.m_autoCorrOptions) || force)
{ {
reverseAPIKeys.append("autoCorrOptions");
switch(settings.m_autoCorrOptions) switch(settings.m_autoCorrOptions)
{ {
case TestSourceSettings::AutoCorrDC: case TestSourceSettings::AutoCorrDC:
@ -258,6 +260,8 @@ bool TestSourceInput::applySettings(const TestSourceSettings& settings, bool for
if ((m_settings.m_sampleRate != settings.m_sampleRate) || force) if ((m_settings.m_sampleRate != settings.m_sampleRate) || force)
{ {
reverseAPIKeys.append("sampleRate");
if (m_testSourceThread != 0) if (m_testSourceThread != 0)
{ {
m_testSourceThread->setSamplerate(settings.m_sampleRate); m_testSourceThread->setSamplerate(settings.m_sampleRate);
@ -267,6 +271,8 @@ bool TestSourceInput::applySettings(const TestSourceSettings& settings, bool for
if ((m_settings.m_log2Decim != settings.m_log2Decim) || force) if ((m_settings.m_log2Decim != settings.m_log2Decim) || force)
{ {
reverseAPIKeys.append("log2Decim");
if (m_testSourceThread != 0) if (m_testSourceThread != 0)
{ {
m_testSourceThread->setLog2Decimation(settings.m_log2Decim); m_testSourceThread->setLog2Decimation(settings.m_log2Decim);
@ -281,6 +287,8 @@ bool TestSourceInput::applySettings(const TestSourceSettings& settings, bool for
|| (m_settings.m_log2Decim != settings.m_log2Decim) || force) || (m_settings.m_log2Decim != settings.m_log2Decim) || force)
{ {
reverseAPIKeys.append("centerFrequency"); reverseAPIKeys.append("centerFrequency");
reverseAPIKeys.append("fcPos");
reverseAPIKeys.append("frequencyShift");
qint64 deviceCenterFrequency = DeviceSampleSource::calculateDeviceCenterFrequency( qint64 deviceCenterFrequency = DeviceSampleSource::calculateDeviceCenterFrequency(
settings.m_centerFrequency, settings.m_centerFrequency,
@ -315,6 +323,8 @@ bool TestSourceInput::applySettings(const TestSourceSettings& settings, bool for
if ((m_settings.m_amplitudeBits != settings.m_amplitudeBits) || force) if ((m_settings.m_amplitudeBits != settings.m_amplitudeBits) || force)
{ {
reverseAPIKeys.append("amplitudeBits");
if (m_testSourceThread != 0) { if (m_testSourceThread != 0) {
m_testSourceThread->setAmplitudeBits(settings.m_amplitudeBits); m_testSourceThread->setAmplitudeBits(settings.m_amplitudeBits);
} }
@ -322,6 +332,8 @@ bool TestSourceInput::applySettings(const TestSourceSettings& settings, bool for
if ((m_settings.m_dcFactor != settings.m_dcFactor) || force) if ((m_settings.m_dcFactor != settings.m_dcFactor) || force)
{ {
reverseAPIKeys.append("dcFactor");
if (m_testSourceThread != 0) { if (m_testSourceThread != 0) {
m_testSourceThread->setDCFactor(settings.m_dcFactor); m_testSourceThread->setDCFactor(settings.m_dcFactor);
} }
@ -329,6 +341,8 @@ bool TestSourceInput::applySettings(const TestSourceSettings& settings, bool for
if ((m_settings.m_iFactor != settings.m_iFactor) || force) if ((m_settings.m_iFactor != settings.m_iFactor) || force)
{ {
reverseAPIKeys.append("iFactor");
if (m_testSourceThread != 0) { if (m_testSourceThread != 0) {
m_testSourceThread->setIFactor(settings.m_iFactor); m_testSourceThread->setIFactor(settings.m_iFactor);
} }
@ -336,6 +350,8 @@ bool TestSourceInput::applySettings(const TestSourceSettings& settings, bool for
if ((m_settings.m_qFactor != settings.m_qFactor) || force) if ((m_settings.m_qFactor != settings.m_qFactor) || force)
{ {
reverseAPIKeys.append("qFactor");
if (m_testSourceThread != 0) { if (m_testSourceThread != 0) {
m_testSourceThread->setQFactor(settings.m_qFactor); m_testSourceThread->setQFactor(settings.m_qFactor);
} }
@ -343,6 +359,8 @@ bool TestSourceInput::applySettings(const TestSourceSettings& settings, bool for
if ((m_settings.m_phaseImbalance != settings.m_phaseImbalance) || force) if ((m_settings.m_phaseImbalance != settings.m_phaseImbalance) || force)
{ {
reverseAPIKeys.append("phaseImbalance");
if (m_testSourceThread != 0) { if (m_testSourceThread != 0) {
m_testSourceThread->setPhaseImbalance(settings.m_phaseImbalance); m_testSourceThread->setPhaseImbalance(settings.m_phaseImbalance);
} }
@ -350,6 +368,8 @@ bool TestSourceInput::applySettings(const TestSourceSettings& settings, bool for
if ((m_settings.m_sampleSizeIndex != settings.m_sampleSizeIndex) || force) if ((m_settings.m_sampleSizeIndex != settings.m_sampleSizeIndex) || force)
{ {
reverseAPIKeys.append("sampleSizeIndex");
if (m_testSourceThread != 0) { if (m_testSourceThread != 0) {
m_testSourceThread->setBitSize(settings.m_sampleSizeIndex); m_testSourceThread->setBitSize(settings.m_sampleSizeIndex);
} }
@ -368,6 +388,8 @@ bool TestSourceInput::applySettings(const TestSourceSettings& settings, bool for
if ((m_settings.m_modulationTone != settings.m_modulationTone) || force) if ((m_settings.m_modulationTone != settings.m_modulationTone) || force)
{ {
reverseAPIKeys.append("modulationTone");
if (m_testSourceThread != 0) { if (m_testSourceThread != 0) {
m_testSourceThread->setToneFrequency(settings.m_modulationTone * 10); m_testSourceThread->setToneFrequency(settings.m_modulationTone * 10);
} }
@ -375,6 +397,8 @@ bool TestSourceInput::applySettings(const TestSourceSettings& settings, bool for
if ((m_settings.m_modulation != settings.m_modulation) || force) if ((m_settings.m_modulation != settings.m_modulation) || force)
{ {
reverseAPIKeys.append("modulation");
if (m_testSourceThread != 0) if (m_testSourceThread != 0)
{ {
m_testSourceThread->setModulation(settings.m_modulation); m_testSourceThread->setModulation(settings.m_modulation);
@ -391,6 +415,8 @@ bool TestSourceInput::applySettings(const TestSourceSettings& settings, bool for
if ((m_settings.m_amModulation != settings.m_amModulation) || force) if ((m_settings.m_amModulation != settings.m_amModulation) || force)
{ {
reverseAPIKeys.append("amModulation");
if (m_testSourceThread != 0) { if (m_testSourceThread != 0) {
m_testSourceThread->setAMModulation(settings.m_amModulation / 100.0f); m_testSourceThread->setAMModulation(settings.m_amModulation / 100.0f);
} }
@ -398,6 +424,8 @@ bool TestSourceInput::applySettings(const TestSourceSettings& settings, bool for
if ((m_settings.m_fmDeviation != settings.m_fmDeviation) || force) if ((m_settings.m_fmDeviation != settings.m_fmDeviation) || force)
{ {
reverseAPIKeys.append("fmDeviation");
if (m_testSourceThread != 0) { if (m_testSourceThread != 0) {
m_testSourceThread->setFMDeviation(settings.m_fmDeviation * 100.0f); m_testSourceThread->setFMDeviation(settings.m_fmDeviation * 100.0f);
} }
@ -405,6 +433,7 @@ bool TestSourceInput::applySettings(const TestSourceSettings& settings, bool for
if (settings.m_useReverseAPI) if (settings.m_useReverseAPI)
{ {
qDebug("TestSourceInput::applySettings: call webapiReverseSendSettings");
bool fullUpdate = ((m_settings.m_useReverseAPI != settings.m_useReverseAPI) && 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_reverseAPIAddress != settings.m_reverseAPIAddress) ||
(m_settings.m_reverseAPIPort != settings.m_reverseAPIPort) || (m_settings.m_reverseAPIPort != settings.m_reverseAPIPort) ||
@ -635,13 +664,13 @@ void TestSourceInput::webapiReverseSendSettings(QList<QString>& deviceSettingsKe
buffer->open((QBuffer::ReadWrite)); buffer->open((QBuffer::ReadWrite));
buffer->write(swgDeviceSettings->asJson().toUtf8()); buffer->write(swgDeviceSettings->asJson().toUtf8());
buffer->seek(0); buffer->seek(0);
// qDebug("TestSourceInput::webapiReverseSendSettings: %s", channelSettingsURL.toStdString().c_str());
qDebug("TestSourceInput::webapiReverseSendSettings: %s", channelSettingsURL.toStdString().c_str()); // qDebug("TestSourceInput::webapiReverseSendSettings: query:\n%s", swgDeviceSettings->asJson().toStdString().c_str());
// Always use PATCH to avoid passing reverse API settings // Always use PATCH to avoid passing reverse API settings
m_networkManager->sendCustomRequest(m_networkRequest, "PATCH", buffer); m_networkManager->sendCustomRequest(m_networkRequest, "PATCH", buffer);
delete swgDeviceSettings; delete swgDeviceSettings;
} }
void TestSourceInput::webapiReverseSendStartStop(bool start) void TestSourceInput::webapiReverseSendStartStop(bool start)
@ -650,7 +679,7 @@ void TestSourceInput::webapiReverseSendStartStop(bool start)
.arg(m_settings.m_reverseAPIAddress) .arg(m_settings.m_reverseAPIAddress)
.arg(m_settings.m_reverseAPIPort) .arg(m_settings.m_reverseAPIPort)
.arg(m_settings.m_reverseAPIDeviceIndex); .arg(m_settings.m_reverseAPIDeviceIndex);
m_networkRequest.setUrl(QUrl(channelSettingsURL)); m_networkRequest.setUrl(QUrl(channelSettingsURL));
if (start) { if (start) {
m_networkManager->sendCustomRequest(m_networkRequest, "POST"); m_networkManager->sendCustomRequest(m_networkRequest, "POST");
@ -661,9 +690,14 @@ void TestSourceInput::webapiReverseSendStartStop(bool start)
void TestSourceInput::networkManagerFinished(QNetworkReply *reply) void TestSourceInput::networkManagerFinished(QNetworkReply *reply)
{ {
if (reply->error()) QNetworkReply::NetworkError replyError = reply->error();
if (replyError)
{ {
qDebug() << "TestSourceInput::networkManagerFinished: error: " << reply->errorString(); qWarning() << "TestSourceInput::networkManagerFinished:"
<< " error(" << (int) replyError
<< "): " << replyError
<< ": " << reply->errorString();
return; return;
} }

View File

@ -32,6 +32,7 @@ class QNetworkAccessManager;
class QNetworkReply; class QNetworkReply;
class TestSourceInput : public DeviceSampleSource { class TestSourceInput : public DeviceSampleSource {
Q_OBJECT
public: public:
class MsgConfigureTestSource : public Message { class MsgConfigureTestSource : public Message {
MESSAGE_CLASS_DECLARATION MESSAGE_CLASS_DECLARATION