2017-09-16 05:34:25 -04:00
|
|
|
///////////////////////////////////////////////////////////////////////////////////
|
2019-03-30 19:40:42 -04:00
|
|
|
// Copyright (C) 2016-2019 F4EXB //
|
2017-09-16 05:34:25 -04:00
|
|
|
// 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 08:32:15 -04:00
|
|
|
// (at your option) any later version. //
|
2017-09-16 05:34:25 -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 SDRBASE_DSP_DEVICESAMPLESINK_H_
|
|
|
|
#define SDRBASE_DSP_DEVICESAMPLESINK_H_
|
|
|
|
|
|
|
|
#include <QtGlobal>
|
|
|
|
|
2019-11-14 19:04:24 -05:00
|
|
|
#include "samplesourcefifo.h"
|
2017-09-16 05:34:25 -04:00
|
|
|
#include "util/message.h"
|
|
|
|
#include "util/messagequeue.h"
|
2018-03-20 08:49:21 -04:00
|
|
|
#include "export.h"
|
2017-09-16 05:34:25 -04:00
|
|
|
|
2017-12-04 17:07:30 -05:00
|
|
|
namespace SWGSDRangel
|
|
|
|
{
|
2017-12-06 13:23:42 -05:00
|
|
|
class SWGDeviceSettings;
|
2017-12-08 11:12:33 -05:00
|
|
|
class SWGDeviceState;
|
2018-05-25 19:43:28 -04:00
|
|
|
class SWGDeviceReport;
|
2020-03-08 23:01:23 -04:00
|
|
|
class SWGDeviceActions;
|
2017-12-04 17:07:30 -05:00
|
|
|
}
|
|
|
|
|
2018-03-03 14:23:38 -05:00
|
|
|
class SDRBASE_API DeviceSampleSink : public QObject {
|
2017-09-16 05:34:25 -04:00
|
|
|
Q_OBJECT
|
|
|
|
public:
|
2019-03-30 19:40:42 -04:00
|
|
|
typedef enum {
|
|
|
|
FC_POS_INFRA = 0,
|
|
|
|
FC_POS_SUPRA,
|
|
|
|
FC_POS_CENTER
|
|
|
|
} fcPos_t;
|
|
|
|
|
2017-09-16 05:34:25 -04:00
|
|
|
DeviceSampleSink();
|
|
|
|
virtual ~DeviceSampleSink();
|
|
|
|
virtual void destroy() = 0;
|
|
|
|
|
2017-12-25 06:59:44 -05:00
|
|
|
virtual void init() = 0; //!< initializations to be done when all collaborating objects are created and possibly connected
|
2017-09-16 05:34:25 -04:00
|
|
|
virtual bool start() = 0;
|
|
|
|
virtual void stop() = 0;
|
|
|
|
|
2017-12-27 22:04:50 -05:00
|
|
|
virtual QByteArray serialize() const = 0;
|
|
|
|
virtual bool deserialize(const QByteArray& data) = 0;
|
|
|
|
|
2017-09-16 05:34:25 -04:00
|
|
|
virtual const QString& getDeviceDescription() const = 0;
|
|
|
|
virtual int getSampleRate() const = 0; //!< Sample rate exposed by the sink
|
2019-05-09 18:34:35 -04:00
|
|
|
virtual void setSampleRate(int sampleRate) = 0; //!< For when the sink sample rate is set externally
|
2017-09-16 05:34:25 -04:00
|
|
|
virtual quint64 getCenterFrequency() const = 0; //!< Center frequency exposed by the sink
|
2017-12-27 22:04:50 -05:00
|
|
|
virtual void setCenterFrequency(qint64 centerFrequency) = 0;
|
2017-09-16 05:34:25 -04:00
|
|
|
|
|
|
|
virtual bool handleMessage(const Message& message) = 0;
|
|
|
|
|
2017-12-04 12:22:25 -05:00
|
|
|
virtual int webapiSettingsGet(
|
2018-11-12 08:04:16 -05:00
|
|
|
SWGSDRangel::SWGDeviceSettings& response,
|
2017-12-04 12:22:25 -05:00
|
|
|
QString& errorMessage)
|
2018-11-12 08:04:16 -05:00
|
|
|
{
|
|
|
|
(void) response;
|
|
|
|
errorMessage = "Not implemented";
|
|
|
|
return 501;
|
|
|
|
}
|
2017-12-04 12:22:25 -05:00
|
|
|
|
2017-12-07 07:55:42 -05:00
|
|
|
virtual int webapiSettingsPutPatch(
|
2018-11-12 08:04:16 -05:00
|
|
|
bool force, //!< true to force settings = put
|
|
|
|
const QStringList& deviceSettingsKeys,
|
|
|
|
SWGSDRangel::SWGDeviceSettings& response,
|
2017-12-07 07:55:42 -05:00
|
|
|
QString& errorMessage)
|
2018-11-12 08:04:16 -05:00
|
|
|
{
|
|
|
|
(void) force;
|
|
|
|
(void) deviceSettingsKeys;
|
|
|
|
(void) response;
|
|
|
|
errorMessage = "Not implemented";
|
|
|
|
return 501;
|
|
|
|
}
|
2017-12-07 07:55:42 -05:00
|
|
|
|
2017-12-09 04:49:20 -05:00
|
|
|
virtual int webapiRunGet(
|
2018-11-12 08:04:16 -05:00
|
|
|
SWGSDRangel::SWGDeviceState& response,
|
2017-12-09 04:49:20 -05:00
|
|
|
QString& errorMessage)
|
2018-11-12 08:04:16 -05:00
|
|
|
{
|
|
|
|
(void) response;
|
|
|
|
errorMessage = "Not implemented";
|
|
|
|
return 501;
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual int webapiRun(bool run,
|
|
|
|
SWGSDRangel::SWGDeviceState& response,
|
2017-12-08 11:12:33 -05:00
|
|
|
QString& errorMessage)
|
2018-11-12 08:04:16 -05:00
|
|
|
{
|
|
|
|
(void) run;
|
|
|
|
(void) response;
|
|
|
|
errorMessage = "Not implemented";
|
|
|
|
return 501;
|
|
|
|
}
|
2017-12-08 11:12:33 -05:00
|
|
|
|
2018-05-25 19:43:28 -04:00
|
|
|
virtual int webapiReportGet(
|
2018-11-12 08:04:16 -05:00
|
|
|
SWGSDRangel::SWGDeviceReport& response,
|
2018-05-25 19:43:28 -04:00
|
|
|
QString& errorMessage)
|
2018-11-12 08:04:16 -05:00
|
|
|
{
|
|
|
|
(void) response;
|
|
|
|
errorMessage = "Not implemented";
|
|
|
|
return 501;
|
|
|
|
}
|
2018-05-25 19:43:28 -04:00
|
|
|
|
2020-03-08 23:01:23 -04:00
|
|
|
virtual int webapiActionsPost(
|
2020-03-09 14:56:09 -04:00
|
|
|
const QStringList& deviceActionsKeys,
|
2020-03-08 23:01:23 -04:00
|
|
|
SWGSDRangel::SWGDeviceActions& actions,
|
|
|
|
QString& errorMessage)
|
|
|
|
{
|
2020-03-09 14:56:09 -04:00
|
|
|
(void) deviceActionsKeys;
|
2020-03-08 23:01:23 -04:00
|
|
|
(void) actions;
|
|
|
|
errorMessage = "Not implemented";
|
|
|
|
return 501;
|
|
|
|
}
|
|
|
|
|
2017-09-16 05:34:25 -04:00
|
|
|
MessageQueue *getInputMessageQueue() { return &m_inputMessageQueue; }
|
2017-12-24 13:58:26 -05:00
|
|
|
virtual void setMessageQueueToGUI(MessageQueue *queue) = 0; // pure virtual so that child classes must have to deal with this
|
2017-09-16 17:44:00 -04:00
|
|
|
MessageQueue *getMessageQueueToGUI() { return m_guiMessageQueue; }
|
2019-11-14 19:04:24 -05:00
|
|
|
SampleSourceFifo* getSampleFifo() { return &m_sampleSourceFifo; }
|
2017-09-16 05:34:25 -04:00
|
|
|
|
2019-03-30 19:40:42 -04:00
|
|
|
static qint64 calculateDeviceCenterFrequency(
|
|
|
|
quint64 centerFrequency,
|
|
|
|
qint64 transverterDeltaFrequency,
|
|
|
|
int log2Interp,
|
|
|
|
fcPos_t fcPos,
|
|
|
|
quint32 devSampleRate,
|
|
|
|
bool transverterMode = false);
|
|
|
|
|
|
|
|
static qint64 calculateCenterFrequency(
|
|
|
|
quint64 deviceCenterFrequency,
|
|
|
|
qint64 transverterDeltaFrequency,
|
|
|
|
int log2Interp,
|
|
|
|
fcPos_t fcPos,
|
|
|
|
quint32 devSampleRate,
|
|
|
|
bool transverterMode = false);
|
|
|
|
|
|
|
|
static qint32 calculateFrequencyShift(
|
|
|
|
int log2Interp,
|
|
|
|
fcPos_t fcPos,
|
|
|
|
quint32 devSampleRate);
|
|
|
|
|
2017-09-16 05:34:25 -04:00
|
|
|
protected slots:
|
|
|
|
void handleInputMessages();
|
|
|
|
|
|
|
|
protected:
|
2019-11-14 19:04:24 -05:00
|
|
|
SampleSourceFifo m_sampleSourceFifo;
|
2017-09-16 05:34:25 -04:00
|
|
|
MessageQueue m_inputMessageQueue; //!< Input queue to the sink
|
2017-09-16 17:44:00 -04:00
|
|
|
MessageQueue *m_guiMessageQueue; //!< Input message queue to the GUI
|
2017-09-16 05:34:25 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* SDRBASE_DSP_DEVICESAMPLESINK_H_ */
|