2020-11-09 12:56:06 -05:00
|
|
|
///////////////////////////////////////////////////////////////////////////////////
|
2023-11-18 00:36:53 -05:00
|
|
|
// Copyright (C) 2017-2020, 2022 Edouard Griffiths, F4EXB <f4exb06@gmail.com> //
|
|
|
|
// Copyright (C) 2020-2021 Jon Beniston, M7RCE <jon@beniston.com> //
|
|
|
|
// Copyright (C) 2020 Kacper Michajłow <kasper93@gmail.com> //
|
|
|
|
// Copyright (C) 2022 Jiří Pinkava <jiri.pinkava@rossum.ai> //
|
2020-11-09 12:56:06 -05:00
|
|
|
// //
|
|
|
|
// 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 //
|
|
|
|
// (at your option) any later version. //
|
|
|
|
// //
|
|
|
|
// 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 PLUGINS_CHANNELTX_MODCHIRPCHAT_CHIRPCHATMOD_H_
|
|
|
|
#define PLUGINS_CHANNELTX_MODCHIRPCHAT_CHIRPCHATMOD_H_
|
|
|
|
|
|
|
|
#include <vector>
|
|
|
|
#include <iostream>
|
|
|
|
#include <fstream>
|
|
|
|
|
2022-09-15 15:59:42 -04:00
|
|
|
#include <QRecursiveMutex>
|
2020-11-09 12:56:06 -05:00
|
|
|
#include <QNetworkRequest>
|
|
|
|
|
|
|
|
#include "dsp/basebandsamplesource.h"
|
|
|
|
#include "channel/channelapi.h"
|
|
|
|
#include "util/message.h"
|
|
|
|
|
|
|
|
#include "chirpchatmodsettings.h"
|
|
|
|
#include "chirpchatmodencoder.h"
|
|
|
|
|
|
|
|
class QNetworkAccessManager;
|
|
|
|
class QNetworkReply;
|
|
|
|
class QThread;
|
2021-04-07 16:13:10 -04:00
|
|
|
class QUdpSocket;
|
2020-11-09 12:56:06 -05:00
|
|
|
class DeviceAPI;
|
|
|
|
class CWKeyer;
|
|
|
|
class ChirpChatModBaseband;
|
2022-03-02 17:07:15 -05:00
|
|
|
class ObjectPipe;
|
2020-11-09 12:56:06 -05:00
|
|
|
|
|
|
|
class ChirpChatMod : public BasebandSampleSource, public ChannelAPI {
|
|
|
|
public:
|
|
|
|
class MsgConfigureChirpChatMod : public Message {
|
|
|
|
MESSAGE_CLASS_DECLARATION
|
|
|
|
|
|
|
|
public:
|
|
|
|
const ChirpChatModSettings& getSettings() const { return m_settings; }
|
|
|
|
bool getForce() const { return m_force; }
|
|
|
|
|
|
|
|
static MsgConfigureChirpChatMod* create(const ChirpChatModSettings& settings, bool force)
|
|
|
|
{
|
|
|
|
return new MsgConfigureChirpChatMod(settings, force);
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
ChirpChatModSettings m_settings;
|
|
|
|
bool m_force;
|
|
|
|
|
|
|
|
MsgConfigureChirpChatMod(const ChirpChatModSettings& settings, bool force) :
|
|
|
|
Message(),
|
|
|
|
m_settings(settings),
|
|
|
|
m_force(force)
|
|
|
|
{ }
|
|
|
|
};
|
|
|
|
|
|
|
|
class MsgReportPayloadTime : public Message {
|
|
|
|
MESSAGE_CLASS_DECLARATION
|
|
|
|
|
|
|
|
public:
|
|
|
|
float getPayloadTimeMs() const { return m_timeMs; }
|
2024-03-25 06:22:41 -04:00
|
|
|
std::size_t getNbSymbols() const { return m_nbSymbols; }
|
|
|
|
static MsgReportPayloadTime* create(float timeMs, std::size_t nbSymbols) {
|
|
|
|
return new MsgReportPayloadTime(timeMs, nbSymbols);
|
2020-11-09 12:56:06 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
float m_timeMs; //!< time in milliseconds
|
2024-03-25 06:22:41 -04:00
|
|
|
std::size_t m_nbSymbols; //!< number of symbols
|
2020-11-09 12:56:06 -05:00
|
|
|
|
2024-03-25 06:22:41 -04:00
|
|
|
MsgReportPayloadTime(float timeMs, std::size_t nbSymbols) :
|
2020-11-09 12:56:06 -05:00
|
|
|
Message(),
|
2024-03-25 06:22:41 -04:00
|
|
|
m_timeMs(timeMs),
|
|
|
|
m_nbSymbols(nbSymbols)
|
2020-11-09 12:56:06 -05:00
|
|
|
{}
|
|
|
|
};
|
|
|
|
|
|
|
|
//=================================================================
|
|
|
|
|
|
|
|
ChirpChatMod(DeviceAPI *deviceAPI);
|
|
|
|
virtual ~ChirpChatMod();
|
|
|
|
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-11-09 12:56:06 -05:00
|
|
|
|
|
|
|
virtual void start();
|
|
|
|
virtual void stop();
|
|
|
|
virtual void pull(SampleVector::iterator& begin, unsigned int nbSamples);
|
2022-02-12 18:57:33 -05:00
|
|
|
virtual void pushMessage(Message *msg) { m_inputMessageQueue.push(msg); }
|
|
|
|
virtual QString getSourceName() { return objectName(); }
|
2020-11-09 12:56:06 -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(); }
|
2020-11-09 12:56:06 -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);
|
2020-11-09 12:56:06 -05:00
|
|
|
|
|
|
|
virtual QByteArray serialize() const;
|
|
|
|
virtual bool deserialize(const QByteArray& data);
|
|
|
|
|
|
|
|
virtual int getNbSinkStreams() const { return 1; }
|
|
|
|
virtual int getNbSourceStreams() const { return 0; }
|
2023-12-13 13:24:26 -05:00
|
|
|
virtual int getStreamIndex() const { return m_settings.m_streamIndex; }
|
2020-11-09 12:56:06 -05:00
|
|
|
|
|
|
|
virtual qint64 getStreamCenterFrequency(int streamIndex, bool sinkElseSource) const
|
|
|
|
{
|
|
|
|
(void) streamIndex;
|
|
|
|
(void) sinkElseSource;
|
|
|
|
return m_settings.m_inputFrequencyOffset;
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual int webapiSettingsGet(
|
|
|
|
SWGSDRangel::SWGChannelSettings& response,
|
|
|
|
QString& errorMessage);
|
|
|
|
|
2022-05-13 16:24:48 -04:00
|
|
|
virtual int webapiWorkspaceGet(
|
|
|
|
SWGSDRangel::SWGWorkspaceInfo& response,
|
|
|
|
QString& errorMessage);
|
|
|
|
|
2020-11-09 12:56:06 -05:00
|
|
|
virtual int webapiSettingsPutPatch(
|
|
|
|
bool force,
|
|
|
|
const QStringList& channelSettingsKeys,
|
|
|
|
SWGSDRangel::SWGChannelSettings& response,
|
|
|
|
QString& errorMessage);
|
|
|
|
|
|
|
|
virtual int webapiReportGet(
|
|
|
|
SWGSDRangel::SWGChannelReport& response,
|
|
|
|
QString& errorMessage);
|
|
|
|
|
|
|
|
static void webapiFormatChannelSettings(
|
|
|
|
SWGSDRangel::SWGChannelSettings& response,
|
|
|
|
const ChirpChatModSettings& settings);
|
|
|
|
|
|
|
|
static void webapiUpdateChannelSettings(
|
|
|
|
ChirpChatModSettings& settings,
|
|
|
|
const QStringList& channelSettingsKeys,
|
|
|
|
SWGSDRangel::SWGChannelSettings& response);
|
|
|
|
|
|
|
|
double getMagSq() const;
|
|
|
|
CWKeyer *getCWKeyer();
|
|
|
|
void setLevelMeter(QObject *levelMeter);
|
|
|
|
uint32_t getNumberOfDeviceStreams() const;
|
|
|
|
bool getModulatorActive() const;
|
|
|
|
|
2020-11-21 14:24:18 -05:00
|
|
|
static const char* const m_channelIdURI;
|
|
|
|
static const char* const m_channelId;
|
2020-11-09 12:56:06 -05:00
|
|
|
|
|
|
|
private:
|
|
|
|
DeviceAPI* m_deviceAPI;
|
|
|
|
QThread *m_thread;
|
|
|
|
ChirpChatModBaseband* m_basebandSource;
|
|
|
|
ChirpChatModEncoder m_encoder; // TODO: check if it needs to be on its own thread
|
|
|
|
ChirpChatModSettings m_settings;
|
|
|
|
float m_currentPayloadTime;
|
|
|
|
|
|
|
|
SampleVector m_sampleBuffer;
|
2022-09-15 15:59:42 -04:00
|
|
|
QRecursiveMutex m_settingsMutex;
|
2020-11-09 12:56:06 -05:00
|
|
|
|
|
|
|
int m_sampleRate;
|
|
|
|
|
|
|
|
QNetworkAccessManager *m_networkManager;
|
|
|
|
QNetworkRequest m_networkRequest;
|
2021-04-07 16:13:10 -04:00
|
|
|
QUdpSocket *m_udpSocket;
|
2020-11-09 12:56:06 -05:00
|
|
|
|
2022-02-12 18:57:33 -05:00
|
|
|
virtual bool handleMessage(const Message& cmd);
|
2020-11-09 12:56:06 -05:00
|
|
|
void applySettings(const ChirpChatModSettings& settings, bool force = false);
|
|
|
|
void webapiFormatChannelReport(SWGSDRangel::SWGChannelReport& response);
|
|
|
|
void webapiReverseSendSettings(QList<QString>& channelSettingsKeys, const ChirpChatModSettings& 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 ChirpChatModSettings& settings,
|
|
|
|
bool force
|
|
|
|
);
|
2020-11-09 12:56:06 -05:00
|
|
|
void webapiFormatChannelSettings(
|
|
|
|
QList<QString>& channelSettingsKeys,
|
|
|
|
SWGSDRangel::SWGChannelSettings *swgChannelSettings,
|
|
|
|
const ChirpChatModSettings& settings,
|
|
|
|
bool force
|
|
|
|
);
|
2021-04-07 16:13:10 -04:00
|
|
|
void openUDP(const ChirpChatModSettings& settings);
|
|
|
|
void closeUDP();
|
2020-11-09 12:56:06 -05:00
|
|
|
|
|
|
|
private slots:
|
|
|
|
void networkManagerFinished(QNetworkReply *reply);
|
2021-04-07 16:13:10 -04:00
|
|
|
void udpRx();
|
2020-11-09 12:56:06 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#endif /* PLUGINS_CHANNELTX_MODCHIRPCHAT_CHIRPCHATMOD_H_ */
|