2016-02-16 20:22:05 -05:00
|
|
|
///////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Copyright (C) 2015 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 //
|
|
|
|
// //
|
|
|
|
// 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 <QUdpSocket>
|
|
|
|
#include <QDebug>
|
|
|
|
#include <unistd.h>
|
2016-02-17 13:42:26 -05:00
|
|
|
#include "dsp/dspcommands.h"
|
|
|
|
#include "dsp/dspengine.h"
|
2016-02-16 20:22:05 -05:00
|
|
|
#include "sdrdaemonudphandler.h"
|
|
|
|
#include "sdrdaemoninput.h"
|
|
|
|
|
|
|
|
const int SDRdaemonUDPHandler::m_rateDivider = 1000/SDRDAEMON_THROTTLE_MS;
|
|
|
|
|
|
|
|
SDRdaemonUDPHandler::SDRdaemonUDPHandler(SampleFifo *sampleFifo, MessageQueue *outputMessageQueueToGUI) :
|
2016-02-19 02:48:14 -05:00
|
|
|
//m_mutex(QMutex::Recursive),
|
2016-02-19 21:41:20 -05:00
|
|
|
m_sdrDaemonBuffer(m_rateDivider),
|
2016-02-16 20:22:05 -05:00
|
|
|
m_dataSocket(0),
|
|
|
|
m_dataAddress(QHostAddress::LocalHost),
|
|
|
|
m_dataPort(9090),
|
|
|
|
m_dataConnected(false),
|
|
|
|
m_udpBuf(0),
|
|
|
|
m_udpReadBytes(0),
|
|
|
|
m_chunksize(0),
|
|
|
|
m_sampleFifo(sampleFifo),
|
|
|
|
m_samplerate(0),
|
|
|
|
m_centerFrequency(0),
|
|
|
|
m_tv_sec(0),
|
|
|
|
m_tv_usec(0),
|
|
|
|
m_outputMessageQueueToGUI(outputMessageQueueToGUI),
|
|
|
|
m_tickCount(0),
|
|
|
|
m_samplesCount(0)
|
|
|
|
{
|
2016-02-19 21:41:20 -05:00
|
|
|
m_udpBuf = new char[SDRdaemonBuffer::m_udpPayloadSize];
|
2016-02-16 20:22:05 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
SDRdaemonUDPHandler::~SDRdaemonUDPHandler()
|
|
|
|
{
|
|
|
|
stop();
|
|
|
|
delete[] m_udpBuf;
|
|
|
|
}
|
|
|
|
|
|
|
|
void SDRdaemonUDPHandler::start()
|
|
|
|
{
|
|
|
|
if (!m_dataSocket)
|
|
|
|
{
|
|
|
|
m_dataSocket = new QUdpSocket(this);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!m_dataConnected)
|
|
|
|
{
|
|
|
|
if (m_dataSocket->bind(m_dataAddress, m_dataPort))
|
|
|
|
{
|
|
|
|
qDebug("SDRdaemonUDPHandler::start: bind data socket to port %d", m_dataPort);
|
2016-02-19 02:48:14 -05:00
|
|
|
//connect(this, SIGNAL(dataReady()), this, SLOT(processData()));
|
2016-02-16 20:22:05 -05:00
|
|
|
connect(m_dataSocket, SIGNAL(readyRead()), this, SLOT(dataReadyRead()), Qt::QueuedConnection); // , Qt::QueuedConnection
|
|
|
|
m_dataConnected = true;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
qWarning("SDRdaemonUDPHandler::start: cannot bind data port %d", m_dataPort);
|
|
|
|
m_dataConnected = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void SDRdaemonUDPHandler::stop()
|
|
|
|
{
|
|
|
|
qDebug("SDRdaemonUDPHandler::stop");
|
|
|
|
|
|
|
|
if (m_dataConnected) {
|
|
|
|
disconnect(m_dataSocket, SIGNAL(readyRead()), this, SLOT(dataReadyRead()));
|
2016-02-19 02:48:14 -05:00
|
|
|
//disconnect(this, SIGNAL(dataReady()), this, SLOT(processData));
|
2016-02-16 20:22:05 -05:00
|
|
|
m_dataConnected = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (m_dataSocket)
|
|
|
|
{
|
|
|
|
delete m_dataSocket;
|
|
|
|
m_dataSocket = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void SDRdaemonUDPHandler::dataReadyRead()
|
|
|
|
{
|
|
|
|
//qDebug() << "SDRdaemonUDPHandler::dataReadyRead";
|
|
|
|
|
|
|
|
while (m_dataSocket->hasPendingDatagrams())
|
|
|
|
{
|
|
|
|
qint64 pendingDataSize = m_dataSocket->pendingDatagramSize();
|
|
|
|
m_udpReadBytes = m_dataSocket->readDatagram(m_udpBuf, pendingDataSize, 0, 0);
|
2016-02-19 02:48:14 -05:00
|
|
|
//emit dataReady();
|
2016-02-18 16:26:47 -05:00
|
|
|
processData();
|
2016-02-16 20:22:05 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void SDRdaemonUDPHandler::processData()
|
|
|
|
{
|
|
|
|
if (m_udpReadBytes < 0)
|
|
|
|
{
|
|
|
|
qDebug() << "SDRdaemonThread::processData: read failed";
|
|
|
|
}
|
|
|
|
else if (m_udpReadBytes > 0)
|
|
|
|
{
|
2016-02-19 02:48:14 -05:00
|
|
|
//QMutexLocker ml(&m_mutex);
|
|
|
|
|
2016-02-16 20:22:05 -05:00
|
|
|
m_sdrDaemonBuffer.updateBlockCounts(m_udpReadBytes);
|
|
|
|
|
|
|
|
if (m_sdrDaemonBuffer.readMeta(m_udpBuf, m_udpReadBytes))
|
|
|
|
{
|
|
|
|
const SDRdaemonBuffer::MetaData& metaData = m_sdrDaemonBuffer.getCurrentMeta();
|
|
|
|
bool change = false;
|
|
|
|
m_tv_sec = metaData.m_tv_sec;
|
|
|
|
m_tv_usec = metaData.m_tv_usec;
|
|
|
|
|
|
|
|
if (m_samplerate != metaData.m_sampleRate)
|
|
|
|
{
|
|
|
|
setSamplerate(metaData.m_sampleRate);
|
|
|
|
m_samplerate = metaData.m_sampleRate;
|
|
|
|
change = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (m_centerFrequency != metaData.m_centerFrequency)
|
|
|
|
{
|
|
|
|
m_centerFrequency = metaData.m_centerFrequency;
|
|
|
|
change = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (change)
|
|
|
|
{
|
2016-02-17 18:33:04 -05:00
|
|
|
DSPSignalNotification *notif = new DSPSignalNotification(m_samplerate, m_centerFrequency * 1000); // Frequency in Hz for the DSP engine
|
2016-02-17 13:42:26 -05:00
|
|
|
DSPEngine::instance()->getInputMessageQueue()->push(notif);
|
2016-02-16 20:22:05 -05:00
|
|
|
SDRdaemonInput::MsgReportSDRdaemonStreamData *report = SDRdaemonInput::MsgReportSDRdaemonStreamData::create(
|
2016-02-17 13:42:26 -05:00
|
|
|
m_samplerate,
|
2016-02-17 18:33:04 -05:00
|
|
|
m_centerFrequency, // Frequency in kHz for the GUI
|
2016-02-17 13:42:26 -05:00
|
|
|
m_tv_sec,
|
|
|
|
m_tv_usec);
|
2016-02-16 20:22:05 -05:00
|
|
|
m_outputMessageQueueToGUI->push(report);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (m_sdrDaemonBuffer.isSync())
|
|
|
|
{
|
|
|
|
m_sdrDaemonBuffer.writeData(m_udpBuf, m_udpReadBytes);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void SDRdaemonUDPHandler::setSamplerate(uint32_t samplerate)
|
|
|
|
{
|
|
|
|
qDebug() << "SDRdaemonUDPHandler::setSamplerate:"
|
|
|
|
<< " new:" << samplerate
|
|
|
|
<< " old:" << m_samplerate;
|
|
|
|
|
2016-02-19 02:48:14 -05:00
|
|
|
//QMutexLocker ml(&m_mutex);
|
|
|
|
|
2016-02-16 20:22:05 -05:00
|
|
|
m_samplerate = samplerate;
|
2016-02-19 21:41:20 -05:00
|
|
|
m_chunksize = (m_samplerate / m_rateDivider) * SDRdaemonBuffer::m_iqSampleSize;
|
2016-02-16 20:22:05 -05:00
|
|
|
|
|
|
|
qDebug() << "SDRdaemonUDPHandler::setSamplerate:"
|
2016-02-19 21:41:20 -05:00
|
|
|
<< " chunk size: " << m_chunksize
|
|
|
|
<< " #samples per chunk: " << (m_chunksize/SDRdaemonBuffer::m_iqSampleSize);
|
2016-02-16 20:22:05 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
void SDRdaemonUDPHandler::connectTimer(const QTimer& timer)
|
|
|
|
{
|
|
|
|
qDebug() << "SDRdaemonUDPHandler::connectTimer";
|
|
|
|
connect(&timer, SIGNAL(timeout()), this, SLOT(tick()));
|
|
|
|
}
|
|
|
|
|
|
|
|
void SDRdaemonUDPHandler::tick()
|
|
|
|
{
|
|
|
|
// read samples directly feeding the SampleFifo (no callback)
|
2016-02-19 21:41:20 -05:00
|
|
|
m_sampleFifo->write(reinterpret_cast<quint8*>(m_sdrDaemonBuffer.readDataChunk()), m_chunksize);
|
|
|
|
m_samplesCount += m_chunksize / SDRdaemonBuffer::m_iqSampleSize;
|
2016-02-16 20:22:05 -05:00
|
|
|
|
|
|
|
if (m_tickCount < m_rateDivider)
|
|
|
|
{
|
|
|
|
m_tickCount++;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
m_tickCount = 0;
|
|
|
|
SDRdaemonInput::MsgReportSDRdaemonStreamTiming *report = SDRdaemonInput::MsgReportSDRdaemonStreamTiming::create(
|
|
|
|
m_tv_sec,
|
|
|
|
m_tv_usec);
|
|
|
|
m_outputMessageQueueToGUI->push(report);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|