sdrangel/plugins/channeltx/udpsource/udpsourceplugin.cpp

88 lines
3.0 KiB
C++
Raw Normal View History

2017-08-13 19:39:26 -04:00
///////////////////////////////////////////////////////////////////////////////////
// Copyright (C) 2017 F4EXB //
// 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 00:39:30 -04:00
// (at your option) any later version. //
2017-08-13 19:39:26 -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/>. //
///////////////////////////////////////////////////////////////////////////////////
2018-09-11 16:36:16 -04:00
#include "udpsourceplugin.h"
2017-08-13 19:39:26 -04:00
#include <QtPlugin>
#include "plugin/pluginapi.h"
#ifndef SERVER_MODE
2018-09-11 16:36:16 -04:00
#include "udpsourcegui.h"
#endif
2018-09-11 16:36:16 -04:00
#include "udpsource.h"
#include "udpsourcewebapiadapter.h"
#include "udpsourceplugin.h"
2017-08-13 19:39:26 -04:00
2018-09-11 16:36:16 -04:00
const PluginDescriptor UDPSourcePlugin::m_pluginDescriptor = {
UDPSource::m_channelId,
2018-09-11 16:36:16 -04:00
QString("UDP Channel Source"),
2020-07-01 14:22:41 -04:00
QString("4.14.14"),
2017-08-13 19:39:26 -04:00
QString("(c) Edouard Griffiths, F4EXB"),
QString("https://github.com/f4exb/sdrangel"),
true,
QString("https://github.com/f4exb/sdrangel")
};
2018-09-11 16:36:16 -04:00
UDPSourcePlugin::UDPSourcePlugin(QObject* parent) :
2017-08-13 19:39:26 -04:00
QObject(parent),
m_pluginAPI(0)
{
}
2018-09-11 16:36:16 -04:00
const PluginDescriptor& UDPSourcePlugin::getPluginDescriptor() const
2017-08-13 19:39:26 -04:00
{
return m_pluginDescriptor;
}
2018-09-11 16:36:16 -04:00
void UDPSourcePlugin::initPlugin(PluginAPI* pluginAPI)
2017-08-13 19:39:26 -04:00
{
m_pluginAPI = pluginAPI;
// register TCP Channel Source
2018-09-11 16:36:16 -04:00
m_pluginAPI->registerTxChannel(UDPSource::m_channelIdURI, UDPSource::m_channelId, this);
2017-08-13 19:39:26 -04:00
}
#ifdef SERVER_MODE
2018-09-11 16:36:16 -04:00
PluginInstanceGUI* UDPSourcePlugin::createTxChannelGUI(
DeviceUISet *deviceUISet,
BasebandSampleSource *txChannel) const
{
return 0;
}
#else
PluginInstanceGUI* UDPSourcePlugin::createTxChannelGUI(DeviceUISet *deviceUISet, BasebandSampleSource *txChannel) const
2017-08-13 19:39:26 -04:00
{
2018-09-11 16:36:16 -04:00
return UDPSourceGUI::create(m_pluginAPI, deviceUISet, txChannel);
2017-08-13 19:39:26 -04:00
}
#endif
BasebandSampleSource* UDPSourcePlugin::createTxChannelBS(DeviceAPI *deviceAPI) const
{
2018-09-11 16:36:16 -04:00
return new UDPSource(deviceAPI);
}
2017-12-17 17:15:42 -05:00
ChannelAPI* UDPSourcePlugin::createTxChannelCS(DeviceAPI *deviceAPI) const
2017-12-17 17:15:42 -05:00
{
2018-09-11 16:36:16 -04:00
return new UDPSource(deviceAPI);
2017-12-17 17:15:42 -05:00
}
ChannelWebAPIAdapter* UDPSourcePlugin::createChannelWebAPIAdapter() const
{
return new UDPSourceWebAPIAdapter();
}