2019-02-24 18:13:57 -05:00
|
|
|
///////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Copyright (C) 2019 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. //
|
2019-02-24 18:13:57 -05: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_FREEDVDEMOD_H
|
|
|
|
#define INCLUDE_FREEDVDEMOD_H
|
|
|
|
|
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
#include <QNetworkRequest>
|
|
|
|
|
|
|
|
#include "dsp/basebandsamplesink.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"
|
2019-02-24 18:13:57 -05:00
|
|
|
#include "util/message.h"
|
|
|
|
#include "util/doublebufferfifo.h"
|
|
|
|
|
2019-12-08 04:09:24 -05:00
|
|
|
#include "freedvdemodbaseband.h"
|
2019-02-24 18:13:57 -05:00
|
|
|
|
|
|
|
class QNetworkAccessManager;
|
|
|
|
class QNetworkReply;
|
2019-05-08 16:11:53 -04:00
|
|
|
class DeviceAPI;
|
2019-12-08 04:09:24 -05:00
|
|
|
class QThread;
|
2022-03-02 17:07:15 -05:00
|
|
|
class ObjectPipe;
|
2019-02-24 18:13:57 -05:00
|
|
|
|
2019-05-09 11:27:12 -04:00
|
|
|
class FreeDVDemod : public BasebandSampleSink, public ChannelAPI {
|
2019-02-24 18:13:57 -05:00
|
|
|
public:
|
|
|
|
class MsgConfigureFreeDVDemod : public Message {
|
|
|
|
MESSAGE_CLASS_DECLARATION
|
|
|
|
|
|
|
|
public:
|
|
|
|
const FreeDVDemodSettings& getSettings() const { return m_settings; }
|
|
|
|
bool getForce() const { return m_force; }
|
|
|
|
|
|
|
|
static MsgConfigureFreeDVDemod* create(const FreeDVDemodSettings& settings, bool force)
|
|
|
|
{
|
|
|
|
return new MsgConfigureFreeDVDemod(settings, force);
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
FreeDVDemodSettings m_settings;
|
|
|
|
bool m_force;
|
|
|
|
|
|
|
|
MsgConfigureFreeDVDemod(const FreeDVDemodSettings& settings, bool force) :
|
|
|
|
Message(),
|
|
|
|
m_settings(settings),
|
|
|
|
m_force(force)
|
|
|
|
{ }
|
|
|
|
};
|
|
|
|
|
2019-02-27 08:53:50 -05:00
|
|
|
class MsgResyncFreeDVDemod : public Message {
|
|
|
|
MESSAGE_CLASS_DECLARATION
|
|
|
|
|
|
|
|
public:
|
|
|
|
static MsgResyncFreeDVDemod* create() {
|
|
|
|
return new MsgResyncFreeDVDemod();
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
MsgResyncFreeDVDemod()
|
|
|
|
{}
|
|
|
|
};
|
|
|
|
|
2019-05-08 16:11:53 -04:00
|
|
|
FreeDVDemod(DeviceAPI *deviceAPI);
|
2019-02-24 18:13:57 -05:00
|
|
|
virtual ~FreeDVDemod();
|
|
|
|
virtual void destroy() { delete this; }
|
2022-04-16 10:45:53 -04:00
|
|
|
virtual void setDeviceAPI(DeviceAPI *deviceAPI);
|
|
|
|
virtual DeviceAPI *getDeviceAPI() { return m_deviceAPI; }
|
2020-04-30 03:57:05 -04:00
|
|
|
SpectrumVis *getSpectrumVis() { return &m_spectrumVis; }
|
2019-02-24 18:13:57 -05: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);
|
2019-02-24 18:13:57 -05: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(); }
|
2019-02-24 18:13:57 -05: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(); }
|
2019-02-24 18:13:57 -05: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);
|
2019-02-24 18:13:57 -05: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;
|
|
|
|
}
|
|
|
|
|
2020-08-01 04:09:39 -04:00
|
|
|
int getAudioSampleRate() const { return m_basebandSink->getAudioSampleRate(); }
|
2019-12-08 04:09:24 -05:00
|
|
|
uint32_t getModemSampleRate() const { return m_basebandSink->getModemSampleRate(); }
|
|
|
|
double getMagSq() const { return m_basebandSink->getMagSq(); }
|
|
|
|
bool getAudioActive() const { return m_basebandSink->getAudioActive(); }
|
|
|
|
void getMagSqLevels(double& avg, double& peak, int& nbSamples) { m_basebandSink->getMagSqLevels(avg, peak, nbSamples); }
|
|
|
|
void getSNRLevels(double& avg, double& peak, int& nbSamples) { m_basebandSink->getSNRLevels(avg, peak, nbSamples); }
|
|
|
|
int getBER() const { return m_basebandSink->getBER(); }
|
|
|
|
float getFrequencyOffset() const { return m_basebandSink->getFrequencyOffset(); }
|
|
|
|
bool isSync() const { return m_basebandSink->isSync(); }
|
2020-10-31 14:27:35 -04:00
|
|
|
void setMessageQueueToGUI(MessageQueue* queue) override {
|
2021-02-08 15:52:47 -05:00
|
|
|
ChannelAPI::setMessageQueueToGUI(queue);
|
2020-10-31 14:27:35 -04:00
|
|
|
m_basebandSink->setMessageQueueToGUI(queue);
|
|
|
|
}
|
2019-02-27 11:41:11 -05:00
|
|
|
|
2019-02-24 18:13:57 -05: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);
|
|
|
|
|
2019-02-24 18:13:57 -05: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 FreeDVDemodSettings& settings);
|
|
|
|
|
|
|
|
static void webapiUpdateChannelSettings(
|
|
|
|
FreeDVDemodSettings& settings,
|
|
|
|
const QStringList& channelSettingsKeys,
|
|
|
|
SWGSDRangel::SWGChannelSettings& response);
|
|
|
|
|
2019-09-22 19:25:17 -04:00
|
|
|
uint32_t getNumberOfDeviceStreams() const;
|
2019-12-08 04:09:24 -05:00
|
|
|
void setLevelMeter(QObject *levelMeter);
|
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;
|
2019-02-24 18:13:57 -05:00
|
|
|
|
|
|
|
private:
|
2019-05-08 16:11:53 -04:00
|
|
|
DeviceAPI *m_deviceAPI;
|
2019-12-08 04:09:24 -05:00
|
|
|
QThread *m_thread;
|
|
|
|
FreeDVDemodBaseband *m_basebandSink;
|
2019-02-24 18:13:57 -05:00
|
|
|
FreeDVDemodSettings m_settings;
|
2020-04-30 03:57:05 -04:00
|
|
|
SpectrumVis m_spectrumVis;
|
2019-12-08 04:09:24 -05:00
|
|
|
int m_basebandSampleRate; //!< stored from device message used when starting baseband sink
|
2019-02-24 18:13:57 -05:00
|
|
|
|
|
|
|
QNetworkAccessManager *m_networkManager;
|
|
|
|
QNetworkRequest m_networkRequest;
|
|
|
|
|
2022-02-12 18:57:33 -05:00
|
|
|
virtual bool handleMessage(const Message& cmd);
|
2019-02-24 18:13:57 -05:00
|
|
|
void applySettings(const FreeDVDemodSettings& settings, bool force = false);
|
|
|
|
void webapiFormatChannelReport(SWGSDRangel::SWGChannelReport& response);
|
|
|
|
void webapiReverseSendSettings(QList<QString>& channelSettingsKeys, const FreeDVDemodSettings& 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 FreeDVDemodSettings& settings,
|
|
|
|
bool force
|
|
|
|
);
|
2020-10-22 18:11:18 -04:00
|
|
|
void webapiFormatChannelSettings(
|
|
|
|
QList<QString>& channelSettingsKeys,
|
|
|
|
SWGSDRangel::SWGChannelSettings *swgChannelSettings,
|
|
|
|
const FreeDVDemodSettings& settings,
|
|
|
|
bool force
|
|
|
|
);
|
2019-02-24 18:13:57 -05:00
|
|
|
|
|
|
|
private slots:
|
|
|
|
void networkManagerFinished(QNetworkReply *reply);
|
2022-03-18 12:08:04 -04:00
|
|
|
void handleIndexInDeviceSetChanged(int index);
|
2019-02-24 18:13:57 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // INCLUDE_FREEDVDEMOD_H
|