sdrangel/plugins/channeltx/udpsource/udpsourceudphandler.cpp

304 lines
8.7 KiB
C++
Raw Normal View History

2017-08-15 14:23:49 -04:00
///////////////////////////////////////////////////////////////////////////////////
// Copyright (C) 2017 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/>. //
///////////////////////////////////////////////////////////////////////////////////
2018-09-11 16:36:16 -04:00
#include "udpsourceudphandler.h"
2017-08-15 14:23:49 -04:00
#include <QDebug>
#include <stdint.h>
#include <algorithm>
2017-08-15 14:23:49 -04:00
2018-09-11 16:36:16 -04:00
#include "udpsourcemsg.h"
2018-09-11 16:36:16 -04:00
MESSAGE_CLASS_DEFINITION(UDPSourceUDPHandler::MsgUDPAddressAndPort, Message)
2017-08-15 14:23:49 -04:00
2018-09-11 16:36:16 -04:00
UDPSourceUDPHandler::UDPSourceUDPHandler() :
2017-08-15 14:23:49 -04:00
m_dataSocket(0),
m_dataAddress(QHostAddress::LocalHost),
m_remoteAddress(QHostAddress::LocalHost),
m_dataPort(9999),
m_remotePort(0),
2017-08-15 14:23:49 -04:00
m_dataConnected(false),
m_udpDumpIndex(0),
m_nbUDPFrames(m_minNbUDPFrames),
m_nbAllocatedUDPFrames(m_minNbUDPFrames),
m_writeFrameIndex(0),
m_readFrameIndex(m_minNbUDPFrames/2),
m_readIndex(0),
m_rwDelta(m_minNbUDPFrames/2),
m_d(0),
m_autoRWBalance(true),
m_feedbackMessageQueue(0)
2017-08-15 14:23:49 -04:00
{
m_udpBuf = new udpBlk_t[m_minNbUDPFrames];
std::fill(m_udpDump, m_udpDump + m_udpBlockSize + 8192, 0);
connect(&m_inputMessageQueue, SIGNAL(messageEnqueued()), this, SLOT(handleMessages()));
2017-08-15 14:23:49 -04:00
}
2018-09-11 16:36:16 -04:00
UDPSourceUDPHandler::~UDPSourceUDPHandler()
2017-08-15 14:23:49 -04:00
{
delete[] m_udpBuf;
2017-08-15 14:23:49 -04:00
}
2018-09-11 16:36:16 -04:00
void UDPSourceUDPHandler::start()
2017-08-15 14:23:49 -04:00
{
2018-09-11 17:22:59 -04:00
qDebug("UDPSourceUDPHandler::start");
2017-08-15 14:23:49 -04:00
if (!m_dataSocket)
{
m_dataSocket = new QUdpSocket(this);
}
if (!m_dataConnected)
{
if (m_dataSocket->bind(m_dataAddress, m_dataPort))
{
2018-09-11 17:22:59 -04:00
qDebug("UDPSourceUDPHandler::start: bind data socket to %s:%d", m_dataAddress.toString().toStdString().c_str(), m_dataPort);
connect(m_dataSocket, SIGNAL(readyRead()), this, SLOT(dataReadyRead())); // , Qt::QueuedConnection gets stuck since Qt 5.8.0
2017-08-15 14:23:49 -04:00
m_dataConnected = true;
}
else
{
2018-09-11 17:22:59 -04:00
qWarning("UDPSourceUDPHandler::start: cannot bind data socket to %s:%d", m_dataAddress.toString().toStdString().c_str(), m_dataPort);
2017-08-15 14:23:49 -04:00
m_dataConnected = false;
}
}
}
2018-09-11 16:36:16 -04:00
void UDPSourceUDPHandler::stop()
2017-08-15 14:23:49 -04:00
{
2018-09-11 17:22:59 -04:00
qDebug("UDPSourceUDPHandler::stop");
2017-08-15 14:23:49 -04:00
if (m_dataConnected)
{
m_dataConnected = false;
disconnect(m_dataSocket, SIGNAL(readyRead()), this, SLOT(dataReadyRead()));
}
if (m_dataSocket)
{
delete m_dataSocket;
m_dataSocket = 0;
}
}
2018-09-11 16:36:16 -04:00
void UDPSourceUDPHandler::dataReadyRead()
2017-08-15 14:23:49 -04:00
{
while (m_dataSocket->hasPendingDatagrams() && m_dataConnected)
{
qint64 pendingDataSize = m_dataSocket->pendingDatagramSize();
qint64 bytesRead = m_dataSocket->readDatagram(&m_udpDump[m_udpDumpIndex], pendingDataSize, &m_remoteAddress, &m_remotePort);
2017-08-15 14:23:49 -04:00
if (bytesRead < 0)
{
2018-09-11 17:22:59 -04:00
qWarning("UDPSourceUDPHandler::dataReadyRead: UDP read error");
}
else
{
int udpDumpSize = m_udpDumpIndex + bytesRead;
int udpDumpPtr = 0;
while (udpDumpSize >= m_udpBlockSize)
{
moveData(&m_udpDump[udpDumpPtr]);
udpDumpPtr += m_udpBlockSize;
udpDumpSize -= m_udpBlockSize;
}
if (udpDumpSize > 0)
{
memcpy(m_udpDump, &m_udpDump[udpDumpPtr], udpDumpSize);
}
m_udpDumpIndex = udpDumpSize;
2017-08-15 14:23:49 -04:00
}
}
}
2018-09-11 16:36:16 -04:00
void UDPSourceUDPHandler::moveData(char *blk)
2017-08-15 14:23:49 -04:00
{
memcpy(m_udpBuf[m_writeFrameIndex], blk, m_udpBlockSize);
2017-08-15 14:23:49 -04:00
if (m_writeFrameIndex < m_nbUDPFrames - 1) {
m_writeFrameIndex++;
2017-08-15 14:23:49 -04:00
} else {
m_writeFrameIndex = 0;
2017-08-15 14:23:49 -04:00
}
}
2018-09-11 16:36:16 -04:00
void UDPSourceUDPHandler::readSample(qint16 &t)
2017-08-15 14:23:49 -04:00
{
if (m_readFrameIndex == m_writeFrameIndex) // block until more writes
{
t = 0;
}
else
{
memcpy(&t, &m_udpBuf[m_readFrameIndex][m_readIndex], sizeof(qint16));
advanceReadPointer((int) sizeof(qint16));
}
}
2018-09-11 16:36:16 -04:00
void UDPSourceUDPHandler::readSample(AudioSample &a)
{
if (m_readFrameIndex == m_writeFrameIndex) // block until more writes
{
a.l = 0;
a.r = 0;
}
else
{
memcpy(&a, &m_udpBuf[m_readFrameIndex][m_readIndex], sizeof(AudioSample));
advanceReadPointer((int) sizeof(AudioSample));
}
2017-08-15 14:23:49 -04:00
}
2018-09-11 16:36:16 -04:00
void UDPSourceUDPHandler::readSample(Sample &s)
2017-08-15 14:23:49 -04:00
{
if (m_readFrameIndex == m_writeFrameIndex) // block until more writes
{
s.m_real = 0;
s.m_imag = 0;
}
else
{
memcpy(&s, &m_udpBuf[m_readFrameIndex][m_readIndex], sizeof(Sample));
advanceReadPointer((int) sizeof(Sample));
}
2017-08-15 14:23:49 -04:00
}
2018-09-11 16:36:16 -04:00
void UDPSourceUDPHandler::advanceReadPointer(int nbBytes)
2017-08-15 14:23:49 -04:00
{
if (m_readIndex < m_udpBlockSize - 2*nbBytes)
{
m_readIndex += nbBytes;
}
else
{
m_readIndex = 0;
if (m_readFrameIndex < m_nbUDPFrames - 1)
{
2017-08-15 14:23:49 -04:00
m_readFrameIndex++;
}
else
{
m_rwDelta = m_writeFrameIndex; // raw R/W delta estimate
int nbUDPFrames2 = m_nbUDPFrames/2;
float d = (m_rwDelta - nbUDPFrames2)/(float) m_nbUDPFrames;
2018-09-11 17:22:59 -04:00
//qDebug("UDPSourceUDPHandler::advanceReadPointer: w: %02d d: %f", m_writeIndex, d);
if ((d < -0.45) || (d > 0.45))
{
resetReadIndex();
}
else
{
float dd = d - m_d; // derivative
float c = (d / 15.0) + (dd / 20.0); // damping and scaling
c = c < -0.05 ? -0.05 : c > 0.05 ? 0.05 : c; // limit
2018-09-11 16:36:16 -04:00
UDPSourceMessages::MsgSampleRateCorrection *msg = UDPSourceMessages::MsgSampleRateCorrection::create(c, d);
if (m_autoRWBalance && m_feedbackMessageQueue) {
m_feedbackMessageQueue->push(msg);
}
m_readFrameIndex = 0;
m_d = d;
}
2017-08-15 14:23:49 -04:00
}
}
}
2018-09-11 16:36:16 -04:00
void UDPSourceUDPHandler::configureUDPLink(const QString& address, quint16 port)
{
Message* msg = MsgUDPAddressAndPort::create(address, port);
m_inputMessageQueue.push(msg);
}
2018-09-11 16:36:16 -04:00
void UDPSourceUDPHandler::applyUDPLink(const QString& address, quint16 port)
2017-08-15 14:23:49 -04:00
{
2018-09-11 17:22:59 -04:00
qDebug("UDPSourceUDPHandler::configureUDPLink: %s:%d", address.toStdString().c_str(), port);
2017-08-15 14:23:49 -04:00
bool addressOK = m_dataAddress.setAddress(address);
if (!addressOK)
{
2018-09-11 17:22:59 -04:00
qWarning("UDPSourceUDPHandler::configureUDPLink: invalid address %s. Set to localhost.", address.toStdString().c_str());
2017-08-15 14:23:49 -04:00
m_dataAddress = QHostAddress::LocalHost;
}
stop();
m_dataPort = port;
resetReadIndex();
start();
}
2018-09-11 16:36:16 -04:00
void UDPSourceUDPHandler::resetReadIndex()
2017-08-15 14:23:49 -04:00
{
m_readFrameIndex = (m_writeFrameIndex + (m_nbUDPFrames/2)) % m_nbUDPFrames;
m_rwDelta = m_nbUDPFrames/2;
2017-08-15 14:23:49 -04:00
m_readIndex = 0;
m_d = 0.0f;
2017-08-15 14:23:49 -04:00
}
2018-09-11 16:36:16 -04:00
void UDPSourceUDPHandler::resizeBuffer(float sampleRate)
{
int halfNbFrames = std::max((sampleRate / 375.0), (m_minNbUDPFrames / 2.0));
2018-09-11 17:22:59 -04:00
qDebug("UDPSourceUDPHandler::resizeBuffer: nb_frames: %d", 2*halfNbFrames);
if (2*halfNbFrames > m_nbAllocatedUDPFrames)
{
delete[] m_udpBuf;
m_udpBuf = new udpBlk_t[2*halfNbFrames];
m_nbAllocatedUDPFrames = 2*halfNbFrames;
}
m_nbUDPFrames = 2*halfNbFrames;
m_writeFrameIndex = 0;
resetReadIndex();
}
2018-09-11 16:36:16 -04:00
void UDPSourceUDPHandler::handleMessages()
{
Message* message;
while ((message = m_inputMessageQueue.pop()) != 0)
{
if (handleMessage(*message))
{
delete message;
}
}
}
2018-09-11 16:36:16 -04:00
bool UDPSourceUDPHandler::handleMessage(const Message& cmd)
{
2018-09-11 16:36:16 -04:00
if (UDPSourceUDPHandler::MsgUDPAddressAndPort::match(cmd))
{
2018-09-11 16:36:16 -04:00
UDPSourceUDPHandler::MsgUDPAddressAndPort& notif = (UDPSourceUDPHandler::MsgUDPAddressAndPort&) cmd;
applyUDPLink(notif.getAddress(), notif.getPort());
return true;
}
else
{
return false;
}
}