2018-04-21 03:56:12 -04:00
|
|
|
///////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Copyright (C) 2016 F4EXB //
|
|
|
|
// written by Edouard Griffiths //
|
|
|
|
// //
|
|
|
|
// 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. //
|
2018-04-21 03:56:12 -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/>. //
|
|
|
|
///////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#ifndef INCLUDE_DSDDEMOD_H
|
|
|
|
#define INCLUDE_DSDDEMOD_H
|
|
|
|
|
|
|
|
#include <vector>
|
|
|
|
|
2018-12-22 07:05:48 -05:00
|
|
|
#include <QNetworkRequest>
|
2022-07-23 05:50:04 -04:00
|
|
|
#include <QMutex>
|
2018-12-22 07:05:48 -05:00
|
|
|
|
2018-04-21 03:56:12 -04:00
|
|
|
#include "dsp/basebandsamplesink.h"
|
2019-05-09 11:27:12 -04:00
|
|
|
#include "channel/channelapi.h"
|
2018-04-21 03:56:12 -04:00
|
|
|
#include "util/message.h"
|
|
|
|
|
|
|
|
#include "dsddemodsettings.h"
|
|
|
|
#include "dsddecoder.h"
|
2019-11-23 01:39:57 -05:00
|
|
|
#include "dsddemodbaseband.h"
|
2018-04-21 03:56:12 -04:00
|
|
|
|
2018-12-22 07:05:48 -05:00
|
|
|
class QNetworkAccessManager;
|
|
|
|
class QNetworkReply;
|
2019-11-23 01:39:57 -05:00
|
|
|
class QThread;
|
2019-12-13 09:15:21 -05:00
|
|
|
class DownChannelizer;
|
2022-03-02 17:07:15 -05:00
|
|
|
class ObjectPipe;
|
2018-04-21 03:56:12 -04:00
|
|
|
|
2019-05-09 11:27:12 -04:00
|
|
|
class DSDDemod : public BasebandSampleSink, public ChannelAPI {
|
2018-04-21 03:56:12 -04:00
|
|
|
public:
|
|
|
|
class MsgConfigureDSDDemod : public Message {
|
|
|
|
MESSAGE_CLASS_DECLARATION
|
|
|
|
|
|
|
|
public:
|
|
|
|
const DSDDemodSettings& getSettings() const { return m_settings; }
|
|
|
|
bool getForce() const { return m_force; }
|
|
|
|
|
|
|
|
static MsgConfigureDSDDemod* create(const DSDDemodSettings& settings, bool force)
|
|
|
|
{
|
|
|
|
return new MsgConfigureDSDDemod(settings, force);
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
DSDDemodSettings m_settings;
|
|
|
|
bool m_force;
|
|
|
|
|
|
|
|
MsgConfigureDSDDemod(const DSDDemodSettings& settings, bool force) :
|
|
|
|
Message(),
|
|
|
|
m_settings(settings),
|
|
|
|
m_force(force)
|
|
|
|
{ }
|
|
|
|
};
|
|
|
|
|
2022-05-24 09:18:55 -04:00
|
|
|
class MsgQueryAvailableAMBEFeatures : public Message {
|
|
|
|
MESSAGE_CLASS_DECLARATION
|
|
|
|
|
|
|
|
public:
|
|
|
|
static MsgQueryAvailableAMBEFeatures* create() {
|
|
|
|
return new MsgQueryAvailableAMBEFeatures();
|
|
|
|
}
|
|
|
|
|
|
|
|
protected:
|
|
|
|
MsgQueryAvailableAMBEFeatures() :
|
|
|
|
Message()
|
|
|
|
{ }
|
|
|
|
};
|
|
|
|
|
|
|
|
class MsgReportAvailableAMBEFeatures : public Message {
|
|
|
|
MESSAGE_CLASS_DECLARATION
|
|
|
|
|
|
|
|
public:
|
|
|
|
QList<DSDDemodSettings::AvailableAMBEFeature>& getFeatures() { return m_availableFeatures; }
|
|
|
|
|
|
|
|
static MsgReportAvailableAMBEFeatures* create() {
|
|
|
|
return new MsgReportAvailableAMBEFeatures();
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
QList<DSDDemodSettings::AvailableAMBEFeature> m_availableFeatures;
|
|
|
|
|
|
|
|
MsgReportAvailableAMBEFeatures() :
|
|
|
|
Message()
|
|
|
|
{}
|
|
|
|
};
|
|
|
|
|
2019-05-08 16:11:53 -04:00
|
|
|
DSDDemod(DeviceAPI *deviceAPI);
|
2020-10-04 13:07:42 -04:00
|
|
|
virtual ~DSDDemod();
|
2018-04-21 03:56:12 -04:00
|
|
|
virtual void destroy() { delete this; }
|
2022-04-16 10:45:53 -04:00
|
|
|
virtual void setDeviceAPI(DeviceAPI *deviceAPI);
|
|
|
|
virtual DeviceAPI *getDeviceAPI() { return m_deviceAPI; }
|
2018-04-21 03:56:12 -04:00
|
|
|
|
2020-11-15 02:31:49 -05:00
|
|
|
using BasebandSampleSink::feed;
|
|
|
|
virtual void feed(const SampleVector::const_iterator& begin, const SampleVector::const_iterator& end, bool po);
|
2018-04-21 03:56:12 -04:00
|
|
|
virtual void start();
|
|
|
|
virtual void stop();
|
2022-02-12 18:57:33 -05:00
|
|
|
virtual void pushMessage(Message *msg) { m_inputMessageQueue.push(msg); }
|
|
|
|
virtual QString getSinkName() { return objectName(); }
|
2018-04-21 03:56:12 -04:00
|
|
|
|
2020-11-21 14:24:18 -05:00
|
|
|
virtual void getIdentifier(QString& id) { id = objectName(); }
|
2022-03-26 04:51:06 -04:00
|
|
|
virtual QString getIdentifier() const { return objectName(); }
|
2018-04-21 03:56:12 -04:00
|
|
|
virtual void getTitle(QString& title) { title = m_settings.m_title; }
|
|
|
|
virtual qint64 getCenterFrequency() const { return m_settings.m_inputFrequencyOffset; }
|
2022-01-06 16:47:41 -05:00
|
|
|
virtual void setCenterFrequency(qint64 frequency);
|
2018-04-21 03:56:12 -04:00
|
|
|
|
|
|
|
virtual QByteArray serialize() const;
|
|
|
|
virtual bool deserialize(const QByteArray& data);
|
|
|
|
|
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-05-24 06:17:29 -04:00
|
|
|
virtual int webapiSettingsGet(
|
|
|
|
SWGSDRangel::SWGChannelSettings& response,
|
|
|
|
QString& errorMessage);
|
|
|
|
|
2022-05-13 16:24:48 -04:00
|
|
|
virtual int webapiWorkspaceGet(
|
|
|
|
SWGSDRangel::SWGWorkspaceInfo& response,
|
|
|
|
QString& errorMessage);
|
|
|
|
|
2018-05-24 06:17:29 -04:00
|
|
|
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 DSDDemodSettings& settings);
|
|
|
|
|
|
|
|
static void webapiUpdateChannelSettings(
|
|
|
|
DSDDemodSettings& settings,
|
|
|
|
const QStringList& channelSettingsKeys,
|
|
|
|
SWGSDRangel::SWGChannelSettings& response);
|
|
|
|
|
2019-09-22 19:25:17 -04:00
|
|
|
uint32_t getNumberOfDeviceStreams() const;
|
2019-11-23 01:39:57 -05:00
|
|
|
void setScopeXYSink(BasebandSampleSink* sampleSink) { m_basebandSink->setScopeXYSink(sampleSink); }
|
|
|
|
void configureMyPosition(float myLatitude, float myLongitude) { m_basebandSink->configureMyPosition(myLatitude, myLongitude); }
|
|
|
|
double getMagSq() { return m_basebandSink->getMagSq(); }
|
|
|
|
bool getSquelchOpen() const { return m_basebandSink->getSquelchOpen(); }
|
|
|
|
const DSDDecoder& getDecoder() const { return m_basebandSink->getDecoder(); }
|
|
|
|
void getMagSqLevels(double& avg, double& peak, int& nbSamples) { m_basebandSink->getMagSqLevels(avg, peak, nbSamples); }
|
|
|
|
const char *updateAndGetStatusText() { return m_basebandSink->updateAndGetStatusText(); }
|
2020-08-01 04:09:39 -04:00
|
|
|
int getAudioSampleRate() const { return m_basebandSink->getAudioSampleRate(); }
|
2019-09-22 19:25:17 -04:00
|
|
|
|
2020-11-21 14:24:18 -05:00
|
|
|
static const char* const m_channelIdURI;
|
|
|
|
static const char* const m_channelId;
|
2018-04-21 03:56:12 -04:00
|
|
|
|
|
|
|
private:
|
2019-05-08 16:11:53 -04:00
|
|
|
DeviceAPI *m_deviceAPI;
|
2019-11-23 01:39:57 -05:00
|
|
|
QThread *m_thread;
|
|
|
|
DSDDemodBaseband *m_basebandSink;
|
2022-07-23 05:50:04 -04:00
|
|
|
QMutex m_mutex;
|
|
|
|
bool m_running;
|
2018-04-21 03:56:12 -04:00
|
|
|
DSDDemodSettings m_settings;
|
2019-11-23 01:39:57 -05:00
|
|
|
int m_basebandSampleRate; //!< stored from device message used when starting baseband sink
|
2022-05-24 09:18:55 -04:00
|
|
|
QHash<Feature*, DSDDemodSettings::AvailableAMBEFeature> m_availableAMBEFeatures;
|
2018-04-21 03:56:12 -04:00
|
|
|
|
2018-12-22 07:05:48 -05:00
|
|
|
QNetworkAccessManager *m_networkManager;
|
|
|
|
QNetworkRequest m_networkRequest;
|
|
|
|
|
2018-04-21 03:56:12 -04:00
|
|
|
static const int m_udpBlockSize;
|
|
|
|
|
2022-02-12 18:57:33 -05:00
|
|
|
virtual bool handleMessage(const Message& cmd);
|
2019-11-23 01:39:57 -05:00
|
|
|
void applySettings(const DSDDemodSettings& settings, bool force = false);
|
2022-05-24 09:18:55 -04:00
|
|
|
void scanAvailableAMBEFeatures();
|
|
|
|
void notifyUpdateAMBEFeatures();
|
2021-06-29 15:47:27 -04:00
|
|
|
void sendSampleRateToDemodAnalyzer();
|
2018-05-24 06:17:29 -04:00
|
|
|
void webapiFormatChannelReport(SWGSDRangel::SWGChannelReport& response);
|
2018-12-22 07:05:48 -05:00
|
|
|
void webapiReverseSendSettings(QList<QString>& channelSettingsKeys, const DSDDemodSettings& settings, bool force);
|
2020-12-13 07:04:36 -05:00
|
|
|
void sendChannelSettings(
|
2022-03-02 17:07:15 -05:00
|
|
|
const QList<ObjectPipe*>& pipes,
|
2020-12-13 07:04:36 -05:00
|
|
|
QList<QString>& channelSettingsKeys,
|
|
|
|
const DSDDemodSettings& settings,
|
|
|
|
bool force
|
|
|
|
);
|
2020-10-22 18:11:18 -04:00
|
|
|
void webapiFormatChannelSettings(
|
|
|
|
QList<QString>& channelSettingsKeys,
|
|
|
|
SWGSDRangel::SWGChannelSettings *swgChannelSettings,
|
|
|
|
const DSDDemodSettings& settings,
|
|
|
|
bool force
|
|
|
|
);
|
2018-12-22 07:05:48 -05:00
|
|
|
|
|
|
|
private slots:
|
|
|
|
void networkManagerFinished(QNetworkReply *reply);
|
2022-03-18 12:08:04 -04:00
|
|
|
void handleIndexInDeviceSetChanged(int index);
|
2022-05-24 09:18:55 -04:00
|
|
|
void handleFeatureAdded(int featureSetIndex, Feature *feature);
|
|
|
|
void handleFeatureRemoved(int featureSetIndex, Feature *feature);
|
2018-04-21 03:56:12 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // INCLUDE_DSDDEMOD_H
|