2017-08-13 19:39:26 -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
|
|
|
#ifndef PLUGINS_CHANNELTX_UDPSINK_UDPSOURCE_H_
|
|
|
|
#define PLUGINS_CHANNELTX_UDPSINK_UDPSOURCE_H_
|
2017-08-13 19:39:26 -04:00
|
|
|
|
|
|
|
#include <QObject>
|
|
|
|
|
|
|
|
#include "dsp/basebandsamplesource.h"
|
2017-11-19 13:14:33 -05:00
|
|
|
#include "channel/channelsourceapi.h"
|
2017-08-13 19:39:26 -04:00
|
|
|
#include "dsp/basebandsamplesink.h"
|
2017-08-14 04:59:05 -04:00
|
|
|
#include "dsp/interpolator.h"
|
2017-08-14 16:50:28 -04:00
|
|
|
#include "dsp/movingaverage.h"
|
2017-08-14 04:59:05 -04:00
|
|
|
#include "dsp/nco.h"
|
2017-08-18 21:42:56 -04:00
|
|
|
#include "dsp/fftfilt.h"
|
2017-08-13 19:39:26 -04:00
|
|
|
#include "util/message.h"
|
|
|
|
|
2018-09-11 16:36:16 -04:00
|
|
|
#include "udpsourcesettings.h"
|
|
|
|
#include "udpsourceudphandler.h"
|
2017-08-15 14:23:49 -04:00
|
|
|
|
2017-10-17 15:08:54 -04:00
|
|
|
class DeviceSinkAPI;
|
2017-10-17 17:45:57 -04:00
|
|
|
class ThreadedBasebandSampleSource;
|
|
|
|
class UpChannelizer;
|
2017-10-17 15:08:54 -04:00
|
|
|
|
2018-09-11 16:36:16 -04:00
|
|
|
class UDPSource : public BasebandSampleSource, public ChannelSourceAPI {
|
2017-08-13 19:39:26 -04:00
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
2018-09-12 09:46:42 -04:00
|
|
|
class MsgConfigureUDPSource : public Message {
|
2017-10-16 16:22:29 -04:00
|
|
|
MESSAGE_CLASS_DECLARATION
|
|
|
|
|
|
|
|
public:
|
2018-09-11 16:36:16 -04:00
|
|
|
const UDPSourceSettings& getSettings() const { return m_settings; }
|
2017-10-16 16:22:29 -04:00
|
|
|
bool getForce() const { return m_force; }
|
|
|
|
|
2018-09-12 09:46:42 -04:00
|
|
|
static MsgConfigureUDPSource* create(const UDPSourceSettings& settings, bool force)
|
2017-10-16 16:22:29 -04:00
|
|
|
{
|
2018-09-12 09:46:42 -04:00
|
|
|
return new MsgConfigureUDPSource(settings, force);
|
2017-10-16 16:22:29 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
2018-09-11 16:36:16 -04:00
|
|
|
UDPSourceSettings m_settings;
|
2017-10-16 16:22:29 -04:00
|
|
|
bool m_force;
|
|
|
|
|
2018-09-12 09:46:42 -04:00
|
|
|
MsgConfigureUDPSource(const UDPSourceSettings& settings, bool force) :
|
2017-10-16 16:22:29 -04:00
|
|
|
Message(),
|
|
|
|
m_settings(settings),
|
|
|
|
m_force(force)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
class MsgConfigureChannelizer : public Message {
|
|
|
|
MESSAGE_CLASS_DECLARATION
|
|
|
|
|
|
|
|
public:
|
|
|
|
int getSampleRate() const { return m_sampleRate; }
|
|
|
|
int getCenterFrequency() const { return m_centerFrequency; }
|
|
|
|
|
|
|
|
static MsgConfigureChannelizer* create(int sampleRate, int centerFrequency)
|
|
|
|
{
|
|
|
|
return new MsgConfigureChannelizer(sampleRate, centerFrequency);
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
int m_sampleRate;
|
|
|
|
int m_centerFrequency;
|
|
|
|
|
|
|
|
MsgConfigureChannelizer(int sampleRate, int centerFrequency) :
|
|
|
|
Message(),
|
|
|
|
m_sampleRate(sampleRate),
|
|
|
|
m_centerFrequency(centerFrequency)
|
|
|
|
{ }
|
|
|
|
};
|
|
|
|
|
2018-09-11 16:36:16 -04:00
|
|
|
UDPSource(DeviceSinkAPI *deviceAPI);
|
|
|
|
virtual ~UDPSource();
|
2017-12-17 17:15:42 -05:00
|
|
|
virtual void destroy() { delete this; }
|
2017-08-13 19:39:26 -04:00
|
|
|
|
2017-11-08 11:09:25 -05:00
|
|
|
void setSpectrumSink(BasebandSampleSink* spectrum) { m_spectrum = spectrum; }
|
|
|
|
|
2017-08-13 19:39:26 -04:00
|
|
|
virtual void start();
|
|
|
|
virtual void stop();
|
|
|
|
virtual void pull(Sample& sample);
|
|
|
|
virtual bool handleMessage(const Message& cmd);
|
|
|
|
|
2017-11-19 13:14:33 -05:00
|
|
|
virtual void getIdentifier(QString& id) { id = objectName(); }
|
|
|
|
virtual void getTitle(QString& title) { title = m_settings.m_title; }
|
2017-12-17 17:15:42 -05:00
|
|
|
virtual qint64 getCenterFrequency() const { return m_settings.m_inputFrequencyOffset; }
|
|
|
|
|
|
|
|
virtual QByteArray serialize() const;
|
|
|
|
virtual bool deserialize(const QByteArray& data);
|
2017-11-19 13:14:33 -05:00
|
|
|
|
2018-04-15 12:25:22 -04:00
|
|
|
virtual int webapiSettingsGet(
|
|
|
|
SWGSDRangel::SWGChannelSettings& response,
|
|
|
|
QString& errorMessage);
|
|
|
|
|
|
|
|
virtual int webapiSettingsPutPatch(
|
|
|
|
bool force,
|
|
|
|
const QStringList& channelSettingsKeys,
|
|
|
|
SWGSDRangel::SWGChannelSettings& response,
|
|
|
|
QString& errorMessage);
|
|
|
|
|
|
|
|
virtual int webapiReportGet(
|
|
|
|
SWGSDRangel::SWGChannelReport& response,
|
|
|
|
QString& errorMessage);
|
|
|
|
|
2017-08-14 16:50:28 -04:00
|
|
|
double getMagSq() const { return m_magsq; }
|
2017-08-16 22:23:36 -04:00
|
|
|
double getInMagSq() const { return m_inMagsq; }
|
2017-08-15 21:33:05 -04:00
|
|
|
int32_t getBufferGauge() const { return m_udpHandler.getBufferGauge(); }
|
2017-08-16 22:23:36 -04:00
|
|
|
bool getSquelchOpen() const { return m_squelchOpen; }
|
2017-08-14 16:50:28 -04:00
|
|
|
|
2017-10-17 03:02:33 -04:00
|
|
|
void setSpectrum(bool enabled);
|
|
|
|
void resetReadIndex();
|
2017-08-13 19:39:26 -04:00
|
|
|
|
2017-11-22 19:19:32 -05:00
|
|
|
static const QString m_channelIdURI;
|
|
|
|
static const QString m_channelId;
|
2017-11-08 11:09:25 -05:00
|
|
|
|
2017-08-16 17:37:01 -04:00
|
|
|
signals:
|
|
|
|
/**
|
|
|
|
* Level changed
|
|
|
|
* \param rmsLevel RMS level in range 0.0 - 1.0
|
|
|
|
* \param peakLevel Peak level in range 0.0 - 1.0
|
|
|
|
* \param numSamples Number of audio samples analyzed
|
|
|
|
*/
|
|
|
|
void levelChanged(qreal rmsLevel, qreal peakLevel, int numSamples);
|
|
|
|
|
2017-08-13 19:39:26 -04:00
|
|
|
private:
|
2018-09-12 09:46:42 -04:00
|
|
|
class MsgUDPSourceSpectrum : public Message {
|
2017-08-14 10:09:56 -04:00
|
|
|
MESSAGE_CLASS_DECLARATION
|
|
|
|
|
|
|
|
public:
|
|
|
|
bool getEnabled() const { return m_enabled; }
|
|
|
|
|
2018-09-12 09:46:42 -04:00
|
|
|
static MsgUDPSourceSpectrum* create(bool enabled)
|
2017-08-14 10:09:56 -04:00
|
|
|
{
|
2018-09-12 09:46:42 -04:00
|
|
|
return new MsgUDPSourceSpectrum(enabled);
|
2017-08-14 10:09:56 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
bool m_enabled;
|
|
|
|
|
2018-09-12 09:46:42 -04:00
|
|
|
MsgUDPSourceSpectrum(bool enabled) :
|
2017-08-14 10:09:56 -04:00
|
|
|
Message(),
|
|
|
|
m_enabled(enabled)
|
|
|
|
{ }
|
|
|
|
};
|
|
|
|
|
2017-08-18 11:51:11 -04:00
|
|
|
class MsgResetReadIndex : public Message {
|
|
|
|
MESSAGE_CLASS_DECLARATION
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
static MsgResetReadIndex* create()
|
|
|
|
{
|
|
|
|
return new MsgResetReadIndex();
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
MsgResetReadIndex() :
|
|
|
|
Message()
|
|
|
|
{ }
|
|
|
|
};
|
|
|
|
|
2017-10-17 15:08:54 -04:00
|
|
|
DeviceSinkAPI* m_deviceAPI;
|
2017-10-17 17:45:57 -04:00
|
|
|
ThreadedBasebandSampleSource* m_threadedChannelizer;
|
|
|
|
UpChannelizer* m_channelizer;
|
2017-10-17 15:08:54 -04:00
|
|
|
|
2017-12-29 18:30:41 -05:00
|
|
|
int m_basebandSampleRate;
|
|
|
|
Real m_outputSampleRate;
|
|
|
|
int m_inputFrequencyOffset;
|
2018-09-11 16:36:16 -04:00
|
|
|
UDPSourceSettings m_settings;
|
2017-11-19 13:14:33 -05:00
|
|
|
|
2017-10-16 18:14:06 -04:00
|
|
|
Real m_squelch;
|
2017-08-13 19:39:26 -04:00
|
|
|
|
2017-08-14 04:59:05 -04:00
|
|
|
NCO m_carrierNco;
|
|
|
|
Complex m_modSample;
|
|
|
|
|
2017-08-13 19:39:26 -04:00
|
|
|
BasebandSampleSink* m_spectrum;
|
2017-08-16 16:49:19 -04:00
|
|
|
bool m_spectrumEnabled;
|
|
|
|
SampleVector m_sampleBuffer;
|
|
|
|
int m_spectrumChunkSize;
|
|
|
|
int m_spectrumChunkCounter;
|
2017-08-13 19:39:26 -04:00
|
|
|
|
2017-08-14 04:59:05 -04:00
|
|
|
Interpolator m_interpolator;
|
|
|
|
Real m_interpolatorDistance;
|
|
|
|
Real m_interpolatorDistanceRemain;
|
|
|
|
bool m_interpolatorConsumed;
|
|
|
|
|
2017-08-14 16:50:28 -04:00
|
|
|
double m_magsq;
|
2017-08-16 22:23:36 -04:00
|
|
|
double m_inMagsq;
|
2017-08-14 16:50:28 -04:00
|
|
|
MovingAverage<double> m_movingAverage;
|
2017-08-16 22:23:36 -04:00
|
|
|
MovingAverage<double> m_inMovingAverage;
|
2017-08-14 16:50:28 -04:00
|
|
|
|
2018-09-11 16:36:16 -04:00
|
|
|
UDPSourceUDPHandler m_udpHandler;
|
2017-08-16 05:35:47 -04:00
|
|
|
Real m_actualInputSampleRate; //!< sample rate with UDP buffer skew compensation
|
2017-08-16 10:09:35 -04:00
|
|
|
double m_sampleRateSum;
|
|
|
|
int m_sampleRateAvgCounter;
|
2017-08-15 14:23:49 -04:00
|
|
|
|
2017-08-16 17:37:01 -04:00
|
|
|
int m_levelCalcCount;
|
|
|
|
Real m_peakLevel;
|
|
|
|
double m_levelSum;
|
|
|
|
int m_levelNbSamples;
|
|
|
|
|
2017-08-16 22:23:36 -04:00
|
|
|
bool m_squelchOpen;
|
|
|
|
int m_squelchOpenCount;
|
|
|
|
int m_squelchCloseCount;
|
|
|
|
int m_squelchThreshold;
|
|
|
|
|
2017-08-18 21:42:56 -04:00
|
|
|
float m_modPhasor; //!< Phasor for FM modulation
|
|
|
|
fftfilt* m_SSBFilter; //!< Complex filter for SSB modulation
|
|
|
|
Complex* m_SSBFilterBuffer;
|
|
|
|
int m_SSBFilterBufferIndex;
|
2017-08-18 06:30:51 -04:00
|
|
|
|
2017-08-13 19:39:26 -04:00
|
|
|
QMutex m_settingsMutex;
|
2017-08-14 04:59:05 -04:00
|
|
|
|
2017-08-16 10:09:35 -04:00
|
|
|
static const int m_sampleRateAverageItems = 17;
|
2017-08-18 21:42:56 -04:00
|
|
|
static const int m_ssbFftLen = 1024;
|
2017-08-16 10:09:35 -04:00
|
|
|
|
2018-01-08 19:10:49 -05:00
|
|
|
void applyChannelSettings(int basebandSampleRate, int outputSampleRate, int inputFrequencyOffset, bool force = false);
|
2018-09-11 16:36:16 -04:00
|
|
|
void applySettings(const UDPSourceSettings& settings, bool force = false);
|
2017-08-14 04:59:05 -04:00
|
|
|
void modulateSample();
|
2017-08-16 17:37:01 -04:00
|
|
|
void calculateLevel(Real sample);
|
|
|
|
void calculateLevel(Complex sample);
|
2017-08-16 22:23:36 -04:00
|
|
|
|
2018-09-11 16:36:16 -04:00
|
|
|
void webapiFormatChannelSettings(SWGSDRangel::SWGChannelSettings& response, const UDPSourceSettings& settings);
|
2018-04-15 12:25:22 -04:00
|
|
|
void webapiFormatChannelReport(SWGSDRangel::SWGChannelReport& response);
|
|
|
|
|
2017-08-16 22:23:36 -04:00
|
|
|
inline void calculateSquelch(double value)
|
|
|
|
{
|
2017-10-16 18:14:06 -04:00
|
|
|
if ((!m_settings.m_squelchEnabled) || (value > m_squelch))
|
2017-08-16 22:23:36 -04:00
|
|
|
{
|
2017-08-18 18:52:10 -04:00
|
|
|
if (m_squelchThreshold == 0)
|
|
|
|
{
|
2017-08-16 22:23:36 -04:00
|
|
|
m_squelchOpen = true;
|
|
|
|
}
|
2017-08-18 18:52:10 -04:00
|
|
|
else
|
|
|
|
{
|
|
|
|
if (m_squelchOpenCount < m_squelchThreshold)
|
|
|
|
{
|
|
|
|
m_squelchOpenCount++;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
m_squelchCloseCount = m_squelchThreshold;
|
|
|
|
m_squelchOpen = true;
|
|
|
|
}
|
|
|
|
}
|
2017-08-16 22:23:36 -04:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2017-08-18 18:52:10 -04:00
|
|
|
if (m_squelchThreshold == 0)
|
|
|
|
{
|
2017-08-16 22:23:36 -04:00
|
|
|
m_squelchOpen = false;
|
|
|
|
}
|
2017-08-18 18:52:10 -04:00
|
|
|
else
|
|
|
|
{
|
|
|
|
if (m_squelchCloseCount > 0)
|
|
|
|
{
|
|
|
|
m_squelchCloseCount--;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
m_squelchOpenCount = 0;
|
|
|
|
m_squelchOpen = false;
|
|
|
|
}
|
|
|
|
}
|
2017-08-16 22:23:36 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
inline void initSquelch(bool open)
|
|
|
|
{
|
|
|
|
if (open)
|
|
|
|
{
|
|
|
|
m_squelchOpen = true;
|
|
|
|
m_squelchOpenCount = m_squelchThreshold;
|
|
|
|
m_squelchCloseCount = m_squelchThreshold;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
m_squelchOpen = false;
|
|
|
|
m_squelchOpenCount = 0;
|
|
|
|
m_squelchCloseCount = 0;
|
|
|
|
}
|
|
|
|
}
|
2017-08-25 04:32:18 -04:00
|
|
|
|
2018-04-18 18:43:29 -04:00
|
|
|
inline void readMonoSample(qint16& t)
|
2017-08-25 04:32:18 -04:00
|
|
|
{
|
|
|
|
|
2017-10-16 18:14:06 -04:00
|
|
|
if (m_settings.m_stereoInput)
|
2017-08-25 04:32:18 -04:00
|
|
|
{
|
2018-04-18 18:43:29 -04:00
|
|
|
AudioSample a;
|
|
|
|
m_udpHandler.readSample(a);
|
|
|
|
t = ((a.l + a.r) * m_settings.m_gainIn) / 2;
|
2017-08-25 04:32:18 -04:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
m_udpHandler.readSample(t);
|
2017-10-16 18:14:06 -04:00
|
|
|
t *= m_settings.m_gainIn;
|
2017-08-25 04:32:18 -04:00
|
|
|
}
|
|
|
|
}
|
2017-08-13 19:39:26 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2018-09-11 16:36:16 -04:00
|
|
|
#endif /* PLUGINS_CHANNELTX_UDPSINK_UDPSOURCE_H_ */
|