2019-05-10 07:20:30 -04: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 //
|
|
|
|
// (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/>. //
|
|
|
|
///////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#include "localsourceplugin.h"
|
|
|
|
|
|
|
|
#include <QtPlugin>
|
|
|
|
#include "plugin/pluginapi.h"
|
|
|
|
|
|
|
|
#ifndef SERVER_MODE
|
|
|
|
#include "localsourcegui.h"
|
|
|
|
#endif
|
|
|
|
#include "localsource.h"
|
2019-08-02 07:14:59 -04:00
|
|
|
#include "localsourcewebapiadapter.h"
|
|
|
|
#include "localsourceplugin.h"
|
2019-05-10 07:20:30 -04:00
|
|
|
|
|
|
|
const PluginDescriptor LocalSourcePlugin::m_pluginDescriptor = {
|
2019-12-15 19:03:47 -05:00
|
|
|
LocalSource::m_channelId,
|
2020-11-21 09:38:04 -05:00
|
|
|
QStringLiteral("Local channel source"),
|
2022-01-08 23:27:12 -05:00
|
|
|
QStringLiteral("6.18.0"),
|
2020-11-21 09:38:04 -05:00
|
|
|
QStringLiteral("(c) Edouard Griffiths, F4EXB"),
|
|
|
|
QStringLiteral("https://github.com/f4exb/sdrangel"),
|
2019-05-10 07:20:30 -04:00
|
|
|
true,
|
2020-11-21 09:38:04 -05:00
|
|
|
QStringLiteral("https://github.com/f4exb/sdrangel")
|
2019-05-10 07:20:30 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
LocalSourcePlugin::LocalSourcePlugin(QObject* parent) :
|
|
|
|
QObject(parent),
|
|
|
|
m_pluginAPI(0)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
const PluginDescriptor& LocalSourcePlugin::getPluginDescriptor() const
|
|
|
|
{
|
|
|
|
return m_pluginDescriptor;
|
|
|
|
}
|
|
|
|
|
|
|
|
void LocalSourcePlugin::initPlugin(PluginAPI* pluginAPI)
|
|
|
|
{
|
|
|
|
m_pluginAPI = pluginAPI;
|
|
|
|
|
|
|
|
// register channel Source
|
|
|
|
m_pluginAPI->registerTxChannel(LocalSource::m_channelIdURI, LocalSource::m_channelId, this);
|
|
|
|
}
|
|
|
|
|
2020-10-01 16:52:27 -04:00
|
|
|
void LocalSourcePlugin::createTxChannel(DeviceAPI *deviceAPI, BasebandSampleSource **bs, ChannelAPI **cs) const
|
|
|
|
{
|
|
|
|
if (bs || cs)
|
|
|
|
{
|
|
|
|
LocalSource *instance = new LocalSource(deviceAPI);
|
|
|
|
|
|
|
|
if (bs) {
|
|
|
|
*bs = instance;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (cs) {
|
|
|
|
*cs = instance;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-05-10 07:20:30 -04:00
|
|
|
#ifdef SERVER_MODE
|
2020-10-04 00:16:15 -04:00
|
|
|
ChannelGUI* LocalSourcePlugin::createTxChannelGUI(
|
2019-05-24 03:37:13 -04:00
|
|
|
DeviceUISet *deviceUISet,
|
2019-08-01 15:27:31 -04:00
|
|
|
BasebandSampleSource *txChannel) const
|
2019-05-10 07:20:30 -04:00
|
|
|
{
|
2020-11-14 05:13:32 -05:00
|
|
|
(void) deviceUISet;
|
|
|
|
(void) txChannel;
|
|
|
|
return nullptr;
|
2019-05-10 07:20:30 -04:00
|
|
|
}
|
|
|
|
#else
|
2020-10-04 00:16:15 -04:00
|
|
|
ChannelGUI* LocalSourcePlugin::createTxChannelGUI(DeviceUISet *deviceUISet, BasebandSampleSource *txChannel) const
|
2019-05-10 07:20:30 -04:00
|
|
|
{
|
|
|
|
return LocalSourceGUI::create(m_pluginAPI, deviceUISet, txChannel);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2019-08-04 18:10:56 -04:00
|
|
|
ChannelWebAPIAdapter* LocalSourcePlugin::createChannelWebAPIAdapter() const
|
2019-08-02 07:14:59 -04:00
|
|
|
{
|
|
|
|
return new LocalSourceWebAPIAdapter();
|
|
|
|
}
|