2018-09-04 19:32:29 -04:00
|
|
|
///////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Copyright (C) 2018 Edouard Griffiths, F4EXB. //
|
|
|
|
// //
|
|
|
|
// SDRdaemon sink channel (Rx) //
|
|
|
|
// //
|
|
|
|
// SDRdaemon is a detached SDR front end that handles the interface with a //
|
|
|
|
// physical device and sends or receives the I/Q samples stream to or from a //
|
|
|
|
// SDRangel instance via UDP. It is controlled via a Web REST API. //
|
|
|
|
// //
|
|
|
|
// 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 //
|
|
|
|
// //
|
|
|
|
// 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 <sys/time.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <boost/crc.hpp>
|
|
|
|
#include <boost/cstdint.hpp>
|
|
|
|
|
2018-12-21 11:39:04 -05:00
|
|
|
#include <QNetworkAccessManager>
|
|
|
|
#include <QNetworkReply>
|
|
|
|
#include <QBuffer>
|
|
|
|
|
2018-09-04 19:32:29 -04:00
|
|
|
#include "SWGChannelSettings.h"
|
|
|
|
|
|
|
|
#include "util/simpleserializer.h"
|
|
|
|
#include "dsp/threadedbasebandsamplesink.h"
|
|
|
|
#include "dsp/downchannelizer.h"
|
|
|
|
#include "dsp/dspcommands.h"
|
|
|
|
#include "device/devicesourceapi.h"
|
|
|
|
#include "daemonsinkthread.h"
|
|
|
|
#include "daemonsink.h"
|
|
|
|
|
|
|
|
MESSAGE_CLASS_DEFINITION(DaemonSink::MsgConfigureDaemonSink, Message)
|
2018-09-05 02:44:14 -04:00
|
|
|
MESSAGE_CLASS_DEFINITION(DaemonSink::MsgSampleRateNotification, Message)
|
2018-09-04 19:32:29 -04:00
|
|
|
|
|
|
|
const QString DaemonSink::m_channelIdURI = "sdrangel.channel.daemonsink";
|
|
|
|
const QString DaemonSink::m_channelId = "DaemonSink";
|
|
|
|
|
|
|
|
DaemonSink::DaemonSink(DeviceSourceAPI *deviceAPI) :
|
|
|
|
ChannelSinkAPI(m_channelIdURI),
|
|
|
|
m_deviceAPI(deviceAPI),
|
|
|
|
m_running(false),
|
|
|
|
m_sinkThread(0),
|
|
|
|
m_txBlockIndex(0),
|
|
|
|
m_frameCount(0),
|
|
|
|
m_sampleIndex(0),
|
|
|
|
m_dataBlock(0),
|
|
|
|
m_centerFrequency(0),
|
|
|
|
m_sampleRate(48000),
|
|
|
|
m_nbBlocksFEC(0),
|
2018-09-05 22:36:56 -04:00
|
|
|
m_txDelay(35),
|
2018-09-04 19:32:29 -04:00
|
|
|
m_dataAddress("127.0.0.1"),
|
|
|
|
m_dataPort(9090)
|
|
|
|
{
|
|
|
|
setObjectName(m_channelId);
|
|
|
|
|
|
|
|
m_channelizer = new DownChannelizer(this);
|
|
|
|
m_threadedChannelizer = new ThreadedBasebandSampleSink(m_channelizer, this);
|
|
|
|
m_deviceAPI->addThreadedSink(m_threadedChannelizer);
|
|
|
|
m_deviceAPI->addChannelAPI(this);
|
2018-12-21 11:39:04 -05:00
|
|
|
|
|
|
|
m_networkManager = new QNetworkAccessManager();
|
|
|
|
connect(m_networkManager, SIGNAL(finished(QNetworkReply*)), this, SLOT(networkManagerFinished(QNetworkReply*)));
|
2018-09-04 19:32:29 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
DaemonSink::~DaemonSink()
|
|
|
|
{
|
2018-12-21 11:39:04 -05:00
|
|
|
disconnect(m_networkManager, SIGNAL(finished(QNetworkReply*)), this, SLOT(networkManagerFinished(QNetworkReply*)));
|
|
|
|
delete m_networkManager;
|
2018-09-04 19:32:29 -04:00
|
|
|
m_dataBlockMutex.lock();
|
2018-12-21 11:39:04 -05:00
|
|
|
|
2018-09-04 19:32:29 -04:00
|
|
|
if (m_dataBlock && !m_dataBlock->m_txControlBlock.m_complete) {
|
|
|
|
delete m_dataBlock;
|
|
|
|
}
|
2018-12-21 11:39:04 -05:00
|
|
|
|
2018-09-04 19:32:29 -04:00
|
|
|
m_dataBlockMutex.unlock();
|
|
|
|
m_deviceAPI->removeChannelAPI(this);
|
|
|
|
m_deviceAPI->removeThreadedSink(m_threadedChannelizer);
|
|
|
|
delete m_threadedChannelizer;
|
|
|
|
delete m_channelizer;
|
|
|
|
}
|
|
|
|
|
2018-09-05 22:23:27 -04:00
|
|
|
void DaemonSink::setTxDelay(int txDelay, int nbBlocksFEC)
|
2018-09-04 19:32:29 -04:00
|
|
|
{
|
2018-09-05 12:25:58 -04:00
|
|
|
double txDelayRatio = txDelay / 100.0;
|
2018-09-10 12:52:40 -04:00
|
|
|
int samplesPerBlock = SDRDaemonNbBytesPerBlock / sizeof(Sample);
|
|
|
|
double delay = m_sampleRate == 0 ? 1.0 : (127*samplesPerBlock*txDelayRatio) / m_sampleRate;
|
2018-09-05 22:23:27 -04:00
|
|
|
delay /= 128 + nbBlocksFEC;
|
2018-09-05 12:25:58 -04:00
|
|
|
m_txDelay = roundf(delay*1e6); // microseconds
|
2018-09-05 22:23:27 -04:00
|
|
|
qDebug() << "DaemonSink::setTxDelay:"
|
|
|
|
<< " " << txDelay
|
|
|
|
<< "% m_txDelay: " << m_txDelay << "us"
|
|
|
|
<< " m_sampleRate: " << m_sampleRate << "S/s";
|
2018-09-04 19:32:29 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void DaemonSink::setNbBlocksFEC(int nbBlocksFEC)
|
|
|
|
{
|
|
|
|
qDebug() << "DaemonSink::setNbBlocksFEC: nbBlocksFEC: " << nbBlocksFEC;
|
|
|
|
m_nbBlocksFEC = nbBlocksFEC;
|
|
|
|
}
|
|
|
|
|
2018-11-12 18:45:03 -05:00
|
|
|
void DaemonSink::feed(const SampleVector::const_iterator& begin, const SampleVector::const_iterator& end, bool firstOfBurst)
|
2018-09-04 19:32:29 -04:00
|
|
|
{
|
2018-11-12 18:45:03 -05:00
|
|
|
(void) firstOfBurst;
|
2018-09-04 19:32:29 -04:00
|
|
|
SampleVector::const_iterator it = begin;
|
|
|
|
|
|
|
|
while (it != end)
|
|
|
|
{
|
|
|
|
int inSamplesIndex = it - begin;
|
|
|
|
int inRemainingSamples = end - it;
|
|
|
|
|
|
|
|
if (m_txBlockIndex == 0)
|
|
|
|
{
|
|
|
|
struct timeval tv;
|
|
|
|
SDRDaemonMetaDataFEC metaData;
|
|
|
|
gettimeofday(&tv, 0);
|
|
|
|
|
|
|
|
metaData.m_centerFrequency = m_centerFrequency;
|
|
|
|
metaData.m_sampleRate = m_sampleRate;
|
2018-09-12 18:31:49 -04:00
|
|
|
metaData.m_sampleBytes = (SDR_RX_SAMP_SZ <= 16 ? 2 : 4);
|
2018-09-09 11:39:36 -04:00
|
|
|
metaData.m_sampleBits = SDR_RX_SAMP_SZ;
|
2018-09-04 19:32:29 -04:00
|
|
|
metaData.m_nbOriginalBlocks = SDRDaemonNbOrginalBlocks;
|
|
|
|
metaData.m_nbFECBlocks = m_nbBlocksFEC;
|
|
|
|
metaData.m_tv_sec = tv.tv_sec;
|
|
|
|
metaData.m_tv_usec = tv.tv_usec;
|
|
|
|
|
|
|
|
if (!m_dataBlock) { // on the very first cycle there is no data block allocated
|
|
|
|
m_dataBlock = new SDRDaemonDataBlock();
|
|
|
|
}
|
|
|
|
|
|
|
|
boost::crc_32_type crc32;
|
|
|
|
crc32.process_bytes(&metaData, 20);
|
|
|
|
metaData.m_crc32 = crc32.checksum();
|
|
|
|
SDRDaemonSuperBlock& superBlock = m_dataBlock->m_superBlocks[0]; // first block
|
|
|
|
superBlock.init();
|
|
|
|
superBlock.m_header.m_frameIndex = m_frameCount;
|
|
|
|
superBlock.m_header.m_blockIndex = m_txBlockIndex;
|
2018-09-12 18:31:49 -04:00
|
|
|
superBlock.m_header.m_sampleBytes = (SDR_RX_SAMP_SZ <= 16 ? 2 : 4);
|
|
|
|
superBlock.m_header.m_sampleBits = SDR_RX_SAMP_SZ;
|
2018-11-18 05:06:41 -05:00
|
|
|
|
|
|
|
SDRDaemonMetaDataFEC *destMeta = (SDRDaemonMetaDataFEC *) &superBlock.m_protectedBlock;
|
|
|
|
*destMeta = metaData;
|
|
|
|
//memcpy((void *) &superBlock.m_protectedBlock, (const void *) &metaData, sizeof(SDRDaemonMetaDataFEC));
|
2018-09-04 19:32:29 -04:00
|
|
|
|
|
|
|
if (!(metaData == m_currentMetaFEC))
|
|
|
|
{
|
|
|
|
qDebug() << "SDRDaemonChannelSink::feed: meta: "
|
|
|
|
<< "|" << metaData.m_centerFrequency
|
|
|
|
<< ":" << metaData.m_sampleRate
|
|
|
|
<< ":" << (int) (metaData.m_sampleBytes & 0xF)
|
|
|
|
<< ":" << (int) metaData.m_sampleBits
|
|
|
|
<< "|" << (int) metaData.m_nbOriginalBlocks
|
|
|
|
<< ":" << (int) metaData.m_nbFECBlocks
|
|
|
|
<< "|" << metaData.m_tv_sec
|
|
|
|
<< ":" << metaData.m_tv_usec;
|
|
|
|
|
|
|
|
m_currentMetaFEC = metaData;
|
|
|
|
}
|
|
|
|
|
|
|
|
m_txBlockIndex = 1; // next Tx block with data
|
|
|
|
} // block zero
|
|
|
|
|
2018-09-10 12:52:40 -04:00
|
|
|
// handle different sample sizes...
|
2018-09-12 18:31:49 -04:00
|
|
|
int samplesPerBlock = SDRDaemonNbBytesPerBlock / (SDR_RX_SAMP_SZ <= 16 ? 4 : 8); // two I or Q samples
|
2018-09-10 12:52:40 -04:00
|
|
|
if (m_sampleIndex + inRemainingSamples < samplesPerBlock) // there is still room in the current super block
|
2018-09-04 19:32:29 -04:00
|
|
|
{
|
2018-09-10 12:52:40 -04:00
|
|
|
memcpy((void *) &m_superBlock.m_protectedBlock.buf[m_sampleIndex*sizeof(Sample)],
|
2018-09-04 19:32:29 -04:00
|
|
|
(const void *) &(*(begin+inSamplesIndex)),
|
|
|
|
inRemainingSamples * sizeof(Sample));
|
|
|
|
m_sampleIndex += inRemainingSamples;
|
|
|
|
it = end; // all input samples are consumed
|
|
|
|
}
|
|
|
|
else // complete super block and initiate the next if not end of frame
|
|
|
|
{
|
2018-09-10 12:52:40 -04:00
|
|
|
memcpy((void *) &m_superBlock.m_protectedBlock.buf[m_sampleIndex*sizeof(Sample)],
|
2018-09-04 19:32:29 -04:00
|
|
|
(const void *) &(*(begin+inSamplesIndex)),
|
2018-09-10 12:52:40 -04:00
|
|
|
(samplesPerBlock - m_sampleIndex) * sizeof(Sample));
|
|
|
|
it += samplesPerBlock - m_sampleIndex;
|
2018-09-04 19:32:29 -04:00
|
|
|
m_sampleIndex = 0;
|
|
|
|
|
|
|
|
m_superBlock.m_header.m_frameIndex = m_frameCount;
|
|
|
|
m_superBlock.m_header.m_blockIndex = m_txBlockIndex;
|
2018-09-12 18:31:49 -04:00
|
|
|
m_superBlock.m_header.m_sampleBytes = (SDR_RX_SAMP_SZ <= 16 ? 2 : 4);
|
|
|
|
m_superBlock.m_header.m_sampleBits = SDR_RX_SAMP_SZ;
|
2018-09-04 19:32:29 -04:00
|
|
|
m_dataBlock->m_superBlocks[m_txBlockIndex] = m_superBlock;
|
|
|
|
|
|
|
|
if (m_txBlockIndex == SDRDaemonNbOrginalBlocks - 1) // frame complete
|
|
|
|
{
|
|
|
|
m_dataBlockMutex.lock();
|
|
|
|
m_dataBlock->m_txControlBlock.m_frameIndex = m_frameCount;
|
|
|
|
m_dataBlock->m_txControlBlock.m_processed = false;
|
|
|
|
m_dataBlock->m_txControlBlock.m_complete = true;
|
|
|
|
m_dataBlock->m_txControlBlock.m_nbBlocksFEC = m_nbBlocksFEC;
|
|
|
|
m_dataBlock->m_txControlBlock.m_txDelay = m_txDelay;
|
|
|
|
m_dataBlock->m_txControlBlock.m_dataAddress = m_dataAddress;
|
|
|
|
m_dataBlock->m_txControlBlock.m_dataPort = m_dataPort;
|
|
|
|
|
2018-09-05 23:21:43 -04:00
|
|
|
emit dataBlockAvailable(m_dataBlock);
|
2018-09-04 19:32:29 -04:00
|
|
|
m_dataBlock = new SDRDaemonDataBlock(); // create a new one immediately
|
|
|
|
m_dataBlockMutex.unlock();
|
|
|
|
|
|
|
|
m_txBlockIndex = 0;
|
|
|
|
m_frameCount++;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
m_txBlockIndex++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void DaemonSink::start()
|
|
|
|
{
|
|
|
|
qDebug("DaemonSink::start");
|
|
|
|
|
|
|
|
memset((void *) &m_currentMetaFEC, 0, sizeof(SDRDaemonMetaDataFEC));
|
|
|
|
|
|
|
|
if (m_running) {
|
|
|
|
stop();
|
|
|
|
}
|
|
|
|
|
2018-09-05 23:39:28 -04:00
|
|
|
m_sinkThread = new DaemonSinkThread();
|
2018-09-05 23:21:43 -04:00
|
|
|
connect(this,
|
|
|
|
SIGNAL(dataBlockAvailable(SDRDaemonDataBlock *)),
|
|
|
|
m_sinkThread,
|
|
|
|
SLOT(processDataBlock(SDRDaemonDataBlock *)),
|
|
|
|
Qt::QueuedConnection);
|
2018-09-04 19:32:29 -04:00
|
|
|
m_sinkThread->startStop(true);
|
|
|
|
m_running = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void DaemonSink::stop()
|
|
|
|
{
|
|
|
|
qDebug("DaemonSink::stop");
|
|
|
|
|
|
|
|
if (m_sinkThread != 0)
|
|
|
|
{
|
|
|
|
m_sinkThread->startStop(false);
|
|
|
|
m_sinkThread->deleteLater();
|
|
|
|
m_sinkThread = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
m_running = false;
|
|
|
|
}
|
|
|
|
|
2018-11-12 18:45:03 -05:00
|
|
|
bool DaemonSink::handleMessage(const Message& cmd)
|
2018-09-04 19:32:29 -04:00
|
|
|
{
|
2018-11-12 18:45:03 -05:00
|
|
|
(void) cmd;
|
2018-09-04 19:32:29 -04:00
|
|
|
if (DownChannelizer::MsgChannelizerNotification::match(cmd))
|
|
|
|
{
|
|
|
|
DownChannelizer::MsgChannelizerNotification& notif = (DownChannelizer::MsgChannelizerNotification&) cmd;
|
|
|
|
|
|
|
|
qDebug() << "DaemonSink::handleMessage: MsgChannelizerNotification:"
|
|
|
|
<< " channelSampleRate: " << notif.getSampleRate()
|
|
|
|
<< " offsetFrequency: " << notif.getFrequencyOffset();
|
|
|
|
|
|
|
|
if (notif.getSampleRate() > 0) {
|
|
|
|
setSampleRate(notif.getSampleRate());
|
|
|
|
}
|
|
|
|
|
2018-09-05 22:23:27 -04:00
|
|
|
setTxDelay(m_settings.m_txDelay, m_settings.m_nbFECBlocks);
|
|
|
|
|
2018-09-05 02:44:14 -04:00
|
|
|
if (m_guiMessageQueue)
|
|
|
|
{
|
|
|
|
MsgSampleRateNotification *msg = MsgSampleRateNotification::create(notif.getSampleRate());
|
|
|
|
m_guiMessageQueue->push(msg);
|
|
|
|
}
|
|
|
|
|
2018-09-04 19:32:29 -04:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
else if (DSPSignalNotification::match(cmd))
|
|
|
|
{
|
|
|
|
DSPSignalNotification& notif = (DSPSignalNotification&) cmd;
|
|
|
|
|
|
|
|
qDebug() << "DaemonSink::handleMessage: DSPSignalNotification:"
|
|
|
|
<< " inputSampleRate: " << notif.getSampleRate()
|
|
|
|
<< " centerFrequency: " << notif.getCenterFrequency();
|
|
|
|
|
|
|
|
setCenterFrequency(notif.getCenterFrequency());
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
else if (MsgConfigureDaemonSink::match(cmd))
|
|
|
|
{
|
|
|
|
MsgConfigureDaemonSink& cfg = (MsgConfigureDaemonSink&) cmd;
|
|
|
|
qDebug() << "DaemonSink::handleMessage: MsgConfigureDaemonSink";
|
|
|
|
applySettings(cfg.getSettings(), cfg.getForce());
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
QByteArray DaemonSink::serialize() const
|
|
|
|
{
|
|
|
|
return m_settings.serialize();
|
|
|
|
}
|
|
|
|
|
2018-11-12 18:45:03 -05:00
|
|
|
bool DaemonSink::deserialize(const QByteArray& data)
|
2018-09-04 19:32:29 -04:00
|
|
|
{
|
2018-11-12 18:45:03 -05:00
|
|
|
(void) data;
|
2018-09-04 19:32:29 -04:00
|
|
|
if (m_settings.deserialize(data))
|
|
|
|
{
|
|
|
|
MsgConfigureDaemonSink *msg = MsgConfigureDaemonSink::create(m_settings, true);
|
|
|
|
m_inputMessageQueue.push(msg);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
m_settings.resetToDefaults();
|
|
|
|
MsgConfigureDaemonSink *msg = MsgConfigureDaemonSink::create(m_settings, true);
|
|
|
|
m_inputMessageQueue.push(msg);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void DaemonSink::applySettings(const DaemonSinkSettings& settings, bool force)
|
|
|
|
{
|
|
|
|
qDebug() << "DaemonSink::applySettings:"
|
|
|
|
<< " m_nbFECBlocks: " << settings.m_nbFECBlocks
|
|
|
|
<< " m_txDelay: " << settings.m_txDelay
|
|
|
|
<< " m_dataAddress: " << settings.m_dataAddress
|
|
|
|
<< " m_dataPort: " << settings.m_dataPort
|
|
|
|
<< " force: " << force;
|
|
|
|
|
2018-12-21 11:39:04 -05:00
|
|
|
QList<QString> reverseAPIKeys;
|
|
|
|
|
|
|
|
if ((m_settings.m_nbFECBlocks != settings.m_nbFECBlocks) || force)
|
|
|
|
{
|
|
|
|
reverseAPIKeys.append("nbFECBlocks");
|
2018-09-05 12:25:58 -04:00
|
|
|
setNbBlocksFEC(settings.m_nbFECBlocks);
|
2018-09-05 22:23:27 -04:00
|
|
|
setTxDelay(settings.m_txDelay, settings.m_nbFECBlocks);
|
2018-09-04 19:32:29 -04:00
|
|
|
}
|
|
|
|
|
2018-12-21 11:39:04 -05:00
|
|
|
if ((m_settings.m_txDelay != settings.m_txDelay) || force)
|
|
|
|
{
|
|
|
|
reverseAPIKeys.append("txDelay");
|
2018-09-05 22:23:27 -04:00
|
|
|
setTxDelay(settings.m_txDelay, settings.m_nbFECBlocks);
|
2018-09-04 19:32:29 -04:00
|
|
|
}
|
|
|
|
|
2018-12-21 11:39:04 -05:00
|
|
|
if ((m_settings.m_dataAddress != settings.m_dataAddress) || force)
|
|
|
|
{
|
|
|
|
reverseAPIKeys.append("dataAddress");
|
2018-09-04 19:32:29 -04:00
|
|
|
m_dataAddress = settings.m_dataAddress;
|
|
|
|
}
|
|
|
|
|
2018-12-21 11:39:04 -05:00
|
|
|
if ((m_settings.m_dataPort != settings.m_dataPort) || force)
|
|
|
|
{
|
|
|
|
reverseAPIKeys.append("dataPort");
|
2018-09-04 19:32:29 -04:00
|
|
|
m_dataPort = settings.m_dataPort;
|
|
|
|
}
|
|
|
|
|
2018-12-21 11:39:04 -05:00
|
|
|
if ((settings.m_useReverseAPI) && (reverseAPIKeys.size() != 0))
|
|
|
|
{
|
|
|
|
bool fullUpdate = ((m_settings.m_useReverseAPI != settings.m_useReverseAPI) && settings.m_useReverseAPI) ||
|
|
|
|
(m_settings.m_reverseAPIAddress != settings.m_reverseAPIAddress) ||
|
|
|
|
(m_settings.m_reverseAPIPort != settings.m_reverseAPIPort) ||
|
|
|
|
(m_settings.m_reverseAPIDeviceIndex != settings.m_reverseAPIDeviceIndex) ||
|
|
|
|
(m_settings.m_reverseAPIChannelIndex != settings.m_reverseAPIChannelIndex);
|
|
|
|
webapiReverseSendSettings(reverseAPIKeys, settings, fullUpdate || force);
|
|
|
|
}
|
|
|
|
|
2018-09-04 19:32:29 -04:00
|
|
|
m_settings = settings;
|
|
|
|
}
|
|
|
|
|
|
|
|
int DaemonSink::webapiSettingsGet(
|
|
|
|
SWGSDRangel::SWGChannelSettings& response,
|
2018-11-12 18:45:03 -05:00
|
|
|
QString& errorMessage)
|
2018-09-04 19:32:29 -04:00
|
|
|
{
|
2018-11-12 18:45:03 -05:00
|
|
|
(void) errorMessage;
|
2018-09-04 19:32:29 -04:00
|
|
|
response.setDaemonSinkSettings(new SWGSDRangel::SWGDaemonSinkSettings());
|
|
|
|
response.getDaemonSinkSettings()->init();
|
|
|
|
webapiFormatChannelSettings(response, m_settings);
|
|
|
|
return 200;
|
|
|
|
}
|
|
|
|
|
|
|
|
int DaemonSink::webapiSettingsPutPatch(
|
|
|
|
bool force,
|
|
|
|
const QStringList& channelSettingsKeys,
|
|
|
|
SWGSDRangel::SWGChannelSettings& response,
|
2018-11-12 18:45:03 -05:00
|
|
|
QString& errorMessage)
|
2018-09-04 19:32:29 -04:00
|
|
|
{
|
2018-11-12 18:45:03 -05:00
|
|
|
(void) errorMessage;
|
2018-09-04 19:32:29 -04:00
|
|
|
DaemonSinkSettings settings = m_settings;
|
|
|
|
|
|
|
|
if (channelSettingsKeys.contains("nbFECBlocks"))
|
|
|
|
{
|
|
|
|
int nbFECBlocks = response.getDaemonSinkSettings()->getNbFecBlocks();
|
|
|
|
|
|
|
|
if ((nbFECBlocks < 0) || (nbFECBlocks > 127)) {
|
|
|
|
settings.m_nbFECBlocks = 8;
|
|
|
|
} else {
|
|
|
|
settings.m_nbFECBlocks = response.getDaemonSinkSettings()->getNbFecBlocks();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (channelSettingsKeys.contains("txDelay"))
|
|
|
|
{
|
|
|
|
int txDelay = response.getDaemonSinkSettings()->getTxDelay();
|
|
|
|
|
|
|
|
if (txDelay < 0) {
|
2018-09-05 22:36:56 -04:00
|
|
|
settings.m_txDelay = 35;
|
2018-09-04 19:32:29 -04:00
|
|
|
} else {
|
|
|
|
settings.m_txDelay = txDelay;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (channelSettingsKeys.contains("dataAddress")) {
|
|
|
|
settings.m_dataAddress = *response.getDaemonSinkSettings()->getDataAddress();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (channelSettingsKeys.contains("dataPort"))
|
|
|
|
{
|
|
|
|
int dataPort = response.getDaemonSinkSettings()->getDataPort();
|
|
|
|
|
|
|
|
if ((dataPort < 1024) || (dataPort > 65535)) {
|
|
|
|
settings.m_dataPort = 9090;
|
|
|
|
} else {
|
|
|
|
settings.m_dataPort = dataPort;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-09-08 13:24:38 -04:00
|
|
|
if (channelSettingsKeys.contains("rgbColor")) {
|
|
|
|
settings.m_rgbColor = response.getDaemonSinkSettings()->getRgbColor();
|
|
|
|
}
|
|
|
|
if (channelSettingsKeys.contains("title")) {
|
|
|
|
settings.m_title = *response.getDaemonSinkSettings()->getTitle();
|
|
|
|
}
|
2018-12-21 11:39:04 -05:00
|
|
|
if (channelSettingsKeys.contains("useReverseAPI")) {
|
|
|
|
settings.m_useReverseAPI = response.getDaemonSinkSettings()->getUseReverseApi() != 0;
|
|
|
|
}
|
|
|
|
if (channelSettingsKeys.contains("reverseAPIAddress")) {
|
2019-01-13 05:35:31 -05:00
|
|
|
settings.m_reverseAPIAddress = *response.getDaemonSinkSettings()->getReverseApiAddress();
|
2018-12-21 11:39:04 -05:00
|
|
|
}
|
|
|
|
if (channelSettingsKeys.contains("reverseAPIPort")) {
|
|
|
|
settings.m_reverseAPIPort = response.getDaemonSinkSettings()->getReverseApiPort();
|
|
|
|
}
|
|
|
|
if (channelSettingsKeys.contains("reverseAPIDeviceIndex")) {
|
|
|
|
settings.m_reverseAPIDeviceIndex = response.getDaemonSinkSettings()->getReverseApiDeviceIndex();
|
|
|
|
}
|
|
|
|
if (channelSettingsKeys.contains("reverseAPIChannelIndex")) {
|
|
|
|
settings.m_reverseAPIChannelIndex = response.getDaemonSinkSettings()->getReverseApiChannelIndex();
|
|
|
|
}
|
2018-09-08 13:24:38 -04:00
|
|
|
|
2018-09-04 19:32:29 -04:00
|
|
|
MsgConfigureDaemonSink *msg = MsgConfigureDaemonSink::create(settings, force);
|
|
|
|
m_inputMessageQueue.push(msg);
|
|
|
|
|
|
|
|
qDebug("DaemonSink::webapiSettingsPutPatch: forward to GUI: %p", m_guiMessageQueue);
|
|
|
|
if (m_guiMessageQueue) // forward to GUI if any
|
|
|
|
{
|
|
|
|
MsgConfigureDaemonSink *msgToGUI = MsgConfigureDaemonSink::create(settings, force);
|
|
|
|
m_guiMessageQueue->push(msgToGUI);
|
|
|
|
}
|
|
|
|
|
|
|
|
webapiFormatChannelSettings(response, settings);
|
|
|
|
|
|
|
|
return 200;
|
|
|
|
}
|
|
|
|
|
|
|
|
void DaemonSink::webapiFormatChannelSettings(SWGSDRangel::SWGChannelSettings& response, const DaemonSinkSettings& settings)
|
|
|
|
{
|
|
|
|
response.getDaemonSinkSettings()->setNbFecBlocks(settings.m_nbFECBlocks);
|
|
|
|
response.getDaemonSinkSettings()->setTxDelay(settings.m_txDelay);
|
|
|
|
|
|
|
|
if (response.getDaemonSinkSettings()->getDataAddress()) {
|
|
|
|
*response.getDaemonSinkSettings()->getDataAddress() = settings.m_dataAddress;
|
|
|
|
} else {
|
|
|
|
response.getDaemonSinkSettings()->setDataAddress(new QString(settings.m_dataAddress));
|
|
|
|
}
|
|
|
|
|
|
|
|
response.getDaemonSinkSettings()->setDataPort(settings.m_dataPort);
|
2018-09-08 13:24:38 -04:00
|
|
|
response.getDaemonSinkSettings()->setRgbColor(settings.m_rgbColor);
|
|
|
|
|
|
|
|
if (response.getDaemonSinkSettings()->getTitle()) {
|
|
|
|
*response.getDaemonSinkSettings()->getTitle() = settings.m_title;
|
|
|
|
} else {
|
|
|
|
response.getDaemonSinkSettings()->setTitle(new QString(settings.m_title));
|
|
|
|
}
|
|
|
|
|
2018-12-21 11:39:04 -05:00
|
|
|
response.getDaemonSinkSettings()->setUseReverseApi(settings.m_useReverseAPI ? 1 : 0);
|
|
|
|
|
|
|
|
if (response.getDaemonSinkSettings()->getReverseApiAddress()) {
|
|
|
|
*response.getDaemonSinkSettings()->getReverseApiAddress() = settings.m_reverseAPIAddress;
|
|
|
|
} else {
|
|
|
|
response.getDaemonSinkSettings()->setReverseApiAddress(new QString(settings.m_reverseAPIAddress));
|
|
|
|
}
|
|
|
|
|
|
|
|
response.getDaemonSinkSettings()->setReverseApiPort(settings.m_reverseAPIPort);
|
|
|
|
response.getDaemonSinkSettings()->setReverseApiDeviceIndex(settings.m_reverseAPIDeviceIndex);
|
|
|
|
response.getDaemonSinkSettings()->setReverseApiChannelIndex(settings.m_reverseAPIChannelIndex);
|
|
|
|
}
|
|
|
|
|
|
|
|
void DaemonSink::webapiReverseSendSettings(QList<QString>& channelSettingsKeys, const DaemonSinkSettings& settings, bool force)
|
|
|
|
{
|
|
|
|
SWGSDRangel::SWGChannelSettings *swgChannelSettings = new SWGSDRangel::SWGChannelSettings();
|
|
|
|
swgChannelSettings->setTx(0);
|
|
|
|
swgChannelSettings->setChannelType(new QString("DaemonSink"));
|
|
|
|
swgChannelSettings->setDaemonSinkSettings(new SWGSDRangel::SWGDaemonSinkSettings());
|
|
|
|
SWGSDRangel::SWGDaemonSinkSettings *swgDaemonSinkSettings = swgChannelSettings->getDaemonSinkSettings();
|
|
|
|
|
|
|
|
// transfer data that has been modified. When force is on transfer all data except reverse API data
|
|
|
|
|
|
|
|
if (channelSettingsKeys.contains("nbFECBlocks") || force) {
|
|
|
|
swgDaemonSinkSettings->setNbFecBlocks(settings.m_nbFECBlocks);
|
|
|
|
}
|
|
|
|
if (channelSettingsKeys.contains("txDelay") || force)
|
|
|
|
{
|
|
|
|
swgDaemonSinkSettings->setTxDelay(settings.m_txDelay);
|
|
|
|
}
|
|
|
|
if (channelSettingsKeys.contains("dataAddress") || force) {
|
|
|
|
swgDaemonSinkSettings->setDataAddress(new QString(settings.m_dataAddress));
|
|
|
|
}
|
|
|
|
if (channelSettingsKeys.contains("dataPort") || force) {
|
|
|
|
swgDaemonSinkSettings->setDataPort(settings.m_dataPort);
|
|
|
|
}
|
|
|
|
if (channelSettingsKeys.contains("rgbColor") || force) {
|
|
|
|
swgDaemonSinkSettings->setRgbColor(settings.m_rgbColor);
|
|
|
|
}
|
|
|
|
if (channelSettingsKeys.contains("title") || force) {
|
|
|
|
swgDaemonSinkSettings->setTitle(new QString(settings.m_title));
|
|
|
|
}
|
|
|
|
|
|
|
|
QString channelSettingsURL = QString("http://%1:%2/sdrangel/deviceset/%3/channel/%4/settings")
|
|
|
|
.arg(settings.m_reverseAPIAddress)
|
|
|
|
.arg(settings.m_reverseAPIPort)
|
|
|
|
.arg(settings.m_reverseAPIDeviceIndex)
|
|
|
|
.arg(settings.m_reverseAPIChannelIndex);
|
|
|
|
m_networkRequest.setUrl(QUrl(channelSettingsURL));
|
|
|
|
m_networkRequest.setHeader(QNetworkRequest::ContentTypeHeader, "application/json");
|
|
|
|
|
|
|
|
QBuffer *buffer=new QBuffer();
|
|
|
|
buffer->open((QBuffer::ReadWrite));
|
|
|
|
buffer->write(swgChannelSettings->asJson().toUtf8());
|
|
|
|
buffer->seek(0);
|
|
|
|
|
|
|
|
// Always use PATCH to avoid passing reverse API settings
|
|
|
|
m_networkManager->sendCustomRequest(m_networkRequest, "PATCH", buffer);
|
|
|
|
|
|
|
|
delete swgChannelSettings;
|
|
|
|
}
|
|
|
|
|
|
|
|
void DaemonSink::networkManagerFinished(QNetworkReply *reply)
|
|
|
|
{
|
|
|
|
QNetworkReply::NetworkError replyError = reply->error();
|
|
|
|
|
|
|
|
if (replyError)
|
|
|
|
{
|
|
|
|
qWarning() << "DaemonSink::networkManagerFinished:"
|
|
|
|
<< " error(" << (int) replyError
|
|
|
|
<< "): " << replyError
|
|
|
|
<< ": " << reply->errorString();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
QString answer = reply->readAll();
|
|
|
|
answer.chop(1); // remove last \n
|
|
|
|
qDebug("DaemonSink::networkManagerFinished: reply:\n%s", answer.toStdString().c_str());
|
2018-09-04 19:32:29 -04:00
|
|
|
}
|