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 //
|
2019-04-11 00:39:30 -04:00
|
|
|
// (at your option) any later version. //
|
2017-08-13 19:39:26 -04:00
|
|
|
// //
|
|
|
|
// 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>
|
2018-12-21 11:10:55 -05:00
|
|
|
#include <QNetworkRequest>
|
2017-08-13 19:39:26 -04:00
|
|
|
|
|
|
|
#include "dsp/basebandsamplesource.h"
|
2020-04-30 03:57:05 -04:00
|
|
|
#include "dsp/spectrumvis.h"
|
2019-05-09 11:27:12 -04:00
|
|
|
#include "channel/channelapi.h"
|
2017-08-13 19:39:26 -04:00
|
|
|
#include "dsp/basebandsamplesink.h"
|
|
|
|
#include "util/message.h"
|
|
|
|
|
2018-09-11 16:36:16 -04:00
|
|
|
#include "udpsourcesettings.h"
|
2017-08-15 14:23:49 -04:00
|
|
|
|
2018-12-21 11:10:55 -05:00
|
|
|
class QNetworkAccessManager;
|
|
|
|
class QNetworkReply;
|
2019-11-14 19:04:24 -05:00
|
|
|
class QThread;
|
2019-05-08 16:11:53 -04:00
|
|
|
class DeviceAPI;
|
2019-11-14 19:04:24 -05:00
|
|
|
class UDPSourceBaseband;
|
2017-10-17 15:08:54 -04:00
|
|
|
|
2019-05-09 11:27:12 -04:00
|
|
|
class UDPSource : public BasebandSampleSource, public ChannelAPI {
|
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)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2019-11-14 19:04:24 -05:00
|
|
|
/**
|
|
|
|
* |<------ Baseband from device (before device soft interpolation) -------------------------->|
|
|
|
|
* |<- Channel SR ------->|<- Channel SR ------->|<- Channel SR ------->|<- Channel SR ------->|
|
|
|
|
* | ^-------------------------------|
|
|
|
|
* | | Source CF
|
|
|
|
* | | Source SR |
|
|
|
|
*/
|
2017-10-16 16:22:29 -04:00
|
|
|
class MsgConfigureChannelizer : public Message {
|
|
|
|
MESSAGE_CLASS_DECLARATION
|
|
|
|
|
|
|
|
public:
|
2019-11-14 19:04:24 -05:00
|
|
|
int getSourceSampleRate() const { return m_sourceSampleRate; }
|
|
|
|
int getSourceCenterFrequency() const { return m_sourceCenterFrequency; }
|
2017-10-16 16:22:29 -04:00
|
|
|
|
2019-11-14 19:04:24 -05:00
|
|
|
static MsgConfigureChannelizer* create(int sourceSampleRate, int sourceCenterFrequency)
|
2017-10-16 16:22:29 -04:00
|
|
|
{
|
2019-11-14 19:04:24 -05:00
|
|
|
return new MsgConfigureChannelizer(sourceSampleRate, sourceCenterFrequency);
|
2017-10-16 16:22:29 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
2019-11-14 19:04:24 -05:00
|
|
|
int m_sourceSampleRate;
|
|
|
|
int m_sourceCenterFrequency;
|
2017-10-16 16:22:29 -04:00
|
|
|
|
2019-11-14 19:04:24 -05:00
|
|
|
MsgConfigureChannelizer(int sourceSampleRate, int sourceCenterFrequency) :
|
2017-10-16 16:22:29 -04:00
|
|
|
Message(),
|
2019-11-14 19:04:24 -05:00
|
|
|
m_sourceSampleRate(sourceSampleRate),
|
|
|
|
m_sourceCenterFrequency(sourceCenterFrequency)
|
2017-10-16 16:22:29 -04:00
|
|
|
{ }
|
|
|
|
};
|
|
|
|
|
2019-05-08 16:11:53 -04:00
|
|
|
UDPSource(DeviceAPI *deviceAPI);
|
2018-09-11 16:36:16 -04:00
|
|
|
virtual ~UDPSource();
|
2017-12-17 17:15:42 -05:00
|
|
|
virtual void destroy() { delete this; }
|
2017-08-13 19:39:26 -04:00
|
|
|
|
|
|
|
virtual void start();
|
|
|
|
virtual void stop();
|
2019-11-14 19:04:24 -05:00
|
|
|
virtual void pull(SampleVector::iterator& begin, unsigned int nbSamples);
|
2017-08-13 19:39:26 -04:00
|
|
|
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
|
|
|
|
2019-05-09 11:27:12 -04:00
|
|
|
virtual int getNbSinkStreams() const { return 1; }
|
|
|
|
virtual int getNbSourceStreams() const { return 0; }
|
|
|
|
|
|
|
|
virtual qint64 getStreamCenterFrequency(int streamIndex, bool sinkElseSource) const
|
|
|
|
{
|
|
|
|
(void) streamIndex;
|
|
|
|
(void) sinkElseSource;
|
|
|
|
return m_settings.m_inputFrequencyOffset;
|
|
|
|
}
|
|
|
|
|
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);
|
|
|
|
|
2019-08-01 17:21:57 -04:00
|
|
|
static void webapiFormatChannelSettings(
|
|
|
|
SWGSDRangel::SWGChannelSettings& response,
|
|
|
|
const UDPSourceSettings& settings);
|
|
|
|
|
|
|
|
static void webapiUpdateChannelSettings(
|
|
|
|
UDPSourceSettings& settings,
|
|
|
|
const QStringList& channelSettingsKeys,
|
|
|
|
SWGSDRangel::SWGChannelSettings& response);
|
|
|
|
|
2020-04-30 03:57:05 -04:00
|
|
|
SpectrumVis *getSpectrumVis() { return &m_spectrumVis; }
|
2019-11-14 19:04:24 -05:00
|
|
|
double getMagSq() const;
|
|
|
|
double getInMagSq() const;
|
|
|
|
int32_t getBufferGauge() const;
|
2019-11-14 20:20:03 -05:00
|
|
|
bool getSquelchOpen() const;
|
2017-10-17 03:02:33 -04:00
|
|
|
void setSpectrum(bool enabled);
|
|
|
|
void resetReadIndex();
|
2019-11-14 19:04:24 -05:00
|
|
|
void setLevelMeter(QObject *levelMeter);
|
2019-11-17 05:09:07 -05:00
|
|
|
uint32_t getNumberOfDeviceStreams() const;
|
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
|
|
|
|
2018-12-21 11:10:55 -05:00
|
|
|
private slots:
|
|
|
|
void networkManagerFinished(QNetworkReply *reply);
|
|
|
|
|
2017-08-13 19:39:26 -04:00
|
|
|
private:
|
2019-05-08 16:11:53 -04:00
|
|
|
DeviceAPI* m_deviceAPI;
|
2019-11-14 19:04:24 -05:00
|
|
|
QThread *m_thread;
|
|
|
|
UDPSourceBaseband* m_basebandSource;
|
2018-09-11 16:36:16 -04:00
|
|
|
UDPSourceSettings m_settings;
|
2020-04-30 03:57:05 -04:00
|
|
|
SpectrumVis m_spectrumVis;
|
2017-11-19 13:14:33 -05:00
|
|
|
|
2017-08-16 16:49:19 -04:00
|
|
|
SampleVector m_sampleBuffer;
|
2019-11-14 19:04:24 -05:00
|
|
|
QMutex m_settingsMutex;
|
2017-08-18 06:30:51 -04:00
|
|
|
|
2018-12-21 11:10:55 -05:00
|
|
|
QNetworkAccessManager *m_networkManager;
|
|
|
|
QNetworkRequest m_networkRequest;
|
|
|
|
|
2018-09-11 16:36:16 -04:00
|
|
|
void applySettings(const UDPSourceSettings& settings, bool force = false);
|
2017-08-16 22:23:36 -04:00
|
|
|
|
2018-04-15 12:25:22 -04:00
|
|
|
void webapiFormatChannelReport(SWGSDRangel::SWGChannelReport& response);
|
2018-12-21 11:10:55 -05:00
|
|
|
void webapiReverseSendSettings(QList<QString>& channelSettingsKeys, const UDPSourceSettings& settings, bool force);
|
2018-04-15 12:25:22 -04:00
|
|
|
|
2017-08-13 19:39:26 -04:00
|
|
|
};
|
|
|
|
|
2018-09-11 16:36:16 -04:00
|
|
|
#endif /* PLUGINS_CHANNELTX_UDPSINK_UDPSOURCE_H_ */
|