2017-01-29 13:51:45 -05: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-01-29 13:51:45 -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/>. //
|
|
|
|
///////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#include <QtPlugin>
|
|
|
|
|
|
|
|
#include "plugin/pluginapi.h"
|
2018-05-30 09:37:56 -04:00
|
|
|
#include "chanalyzer.h"
|
|
|
|
#include "chanalyzerplugin.h"
|
|
|
|
#include "chanalyzergui.h"
|
2019-08-08 12:42:17 -04:00
|
|
|
#include "chanalyzerwebapiadapter.h"
|
2017-01-29 13:51:45 -05:00
|
|
|
|
2018-05-30 09:37:56 -04:00
|
|
|
const PluginDescriptor ChannelAnalyzerPlugin::m_pluginDescriptor = {
|
2019-12-15 19:03:47 -05:00
|
|
|
ChannelAnalyzer::m_channelId,
|
2018-05-30 05:49:54 -04:00
|
|
|
QString("Channel Analyzer"),
|
2020-07-21 02:41:39 -04:00
|
|
|
QString("4.14.18"),
|
2017-01-29 13:51:45 -05:00
|
|
|
QString("(c) Edouard Griffiths, F4EXB"),
|
|
|
|
QString("https://github.com/f4exb/sdrangel"),
|
|
|
|
true,
|
|
|
|
QString("https://github.com/f4exb/sdrangel")
|
|
|
|
};
|
|
|
|
|
2018-05-30 09:37:56 -04:00
|
|
|
ChannelAnalyzerPlugin::ChannelAnalyzerPlugin(QObject* parent) :
|
2017-05-05 04:40:45 -04:00
|
|
|
QObject(parent),
|
|
|
|
m_pluginAPI(0)
|
2017-01-29 13:51:45 -05:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2018-05-30 09:37:56 -04:00
|
|
|
const PluginDescriptor& ChannelAnalyzerPlugin::getPluginDescriptor() const
|
2017-01-29 13:51:45 -05:00
|
|
|
{
|
|
|
|
return m_pluginDescriptor;
|
|
|
|
}
|
|
|
|
|
2018-05-30 09:37:56 -04:00
|
|
|
void ChannelAnalyzerPlugin::initPlugin(PluginAPI* pluginAPI)
|
2017-01-29 13:51:45 -05:00
|
|
|
{
|
|
|
|
m_pluginAPI = pluginAPI;
|
|
|
|
|
|
|
|
// register demodulator
|
2018-05-30 09:37:56 -04:00
|
|
|
m_pluginAPI->registerRxChannel(ChannelAnalyzer::m_channelIdURI, ChannelAnalyzer::m_channelId, this);
|
2017-01-29 13:51:45 -05:00
|
|
|
}
|
|
|
|
|
2020-10-01 16:52:27 -04:00
|
|
|
void ChannelAnalyzerPlugin::createRxChannel(DeviceAPI *deviceAPI, BasebandSampleSink **bs, ChannelAPI **cs) const
|
2017-01-29 13:51:45 -05:00
|
|
|
{
|
2020-10-01 16:52:27 -04:00
|
|
|
if (bs || cs)
|
|
|
|
{
|
|
|
|
ChannelAnalyzer *instance = new ChannelAnalyzer(deviceAPI);
|
2017-11-08 08:23:49 -05:00
|
|
|
|
2020-10-01 16:52:27 -04:00
|
|
|
if (bs) {
|
|
|
|
*bs = instance;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (cs) {
|
|
|
|
*cs = instance;
|
|
|
|
}
|
|
|
|
}
|
2017-11-08 08:23:49 -05:00
|
|
|
}
|
|
|
|
|
2020-10-04 00:16:15 -04:00
|
|
|
ChannelGUI* ChannelAnalyzerPlugin::createRxChannelGUI(DeviceUISet *deviceUISet, BasebandSampleSink *rxChannel) const
|
2017-12-17 17:15:42 -05:00
|
|
|
{
|
2020-10-01 16:52:27 -04:00
|
|
|
return ChannelAnalyzerGUI::create(m_pluginAPI, deviceUISet, rxChannel);
|
2017-12-17 17:15:42 -05:00
|
|
|
}
|
|
|
|
|
2019-08-08 12:42:17 -04:00
|
|
|
ChannelWebAPIAdapter* ChannelAnalyzerPlugin::createChannelWebAPIAdapter() const
|
|
|
|
{
|
|
|
|
return new ChannelAnalyzerWebAPIAdapter();
|
2020-10-01 16:52:27 -04:00
|
|
|
}
|