2015-12-06 13:47:55 -05:00
|
|
|
///////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Copyright (C) 2015 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. //
|
2015-12-06 13:47:55 -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/>. //
|
|
|
|
///////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2015-11-18 21:27:37 -05:00
|
|
|
#include <QtPlugin>
|
|
|
|
#include "plugin/pluginapi.h"
|
|
|
|
|
2018-05-29 05:24:20 -04:00
|
|
|
#ifndef SERVER_MODE
|
2018-09-11 18:08:47 -04:00
|
|
|
#include "udpsinkgui.h"
|
2018-05-29 05:24:20 -04:00
|
|
|
#endif
|
2018-09-11 18:08:47 -04:00
|
|
|
#include "udpsink.h"
|
2019-08-01 18:29:58 -04:00
|
|
|
#include "udpsinkwebapiadapter.h"
|
2018-09-11 18:08:47 -04:00
|
|
|
#include "udpsinkplugin.h"
|
2015-11-18 21:27:37 -05:00
|
|
|
|
2018-09-11 18:08:47 -04:00
|
|
|
const PluginDescriptor UDPSinkPlugin::m_pluginDescriptor = {
|
2019-12-15 19:03:47 -05:00
|
|
|
UDPSink::m_channelId,
|
2018-09-11 18:08:47 -04:00
|
|
|
QString("UDP Channel Sink"),
|
2020-07-01 14:22:41 -04:00
|
|
|
QString("4.14.14"),
|
2015-11-18 21:27:37 -05:00
|
|
|
QString("(c) Edouard Griffiths, F4EXB"),
|
|
|
|
QString("https://github.com/f4exb/sdrangel"),
|
|
|
|
true,
|
|
|
|
QString("https://github.com/f4exb/sdrangel")
|
|
|
|
};
|
|
|
|
|
2018-09-11 18:08:47 -04:00
|
|
|
UDPSinkPlugin::UDPSinkPlugin(QObject* parent) :
|
2017-05-05 04:40:45 -04:00
|
|
|
QObject(parent),
|
|
|
|
m_pluginAPI(0)
|
2015-11-18 21:27:37 -05:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2018-09-11 18:08:47 -04:00
|
|
|
const PluginDescriptor& UDPSinkPlugin::getPluginDescriptor() const
|
2015-11-18 21:27:37 -05:00
|
|
|
{
|
|
|
|
return m_pluginDescriptor;
|
|
|
|
}
|
|
|
|
|
2018-09-11 18:08:47 -04:00
|
|
|
void UDPSinkPlugin::initPlugin(PluginAPI* pluginAPI)
|
2015-11-18 21:27:37 -05:00
|
|
|
{
|
|
|
|
m_pluginAPI = pluginAPI;
|
|
|
|
|
|
|
|
// register TCP Channel Source
|
2018-09-11 18:08:47 -04:00
|
|
|
m_pluginAPI->registerRxChannel(UDPSink::m_channelIdURI, UDPSink::m_channelId, this);
|
2015-11-18 21:27:37 -05:00
|
|
|
}
|
|
|
|
|
2018-05-29 05:24:20 -04:00
|
|
|
#ifdef SERVER_MODE
|
2018-09-11 18:08:47 -04:00
|
|
|
PluginInstanceGUI* UDPSinkPlugin::createRxChannelGUI(
|
2019-05-24 03:37:13 -04:00
|
|
|
DeviceUISet *deviceUISet,
|
2019-08-01 15:27:31 -04:00
|
|
|
BasebandSampleSink *rxChannel) const
|
2018-05-29 05:24:20 -04:00
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
#else
|
2019-08-01 15:27:31 -04:00
|
|
|
PluginInstanceGUI* UDPSinkPlugin::createRxChannelGUI(DeviceUISet *deviceUISet, BasebandSampleSink *rxChannel) const
|
2015-11-18 21:27:37 -05:00
|
|
|
{
|
2018-09-11 18:08:47 -04:00
|
|
|
return UDPSinkGUI::create(m_pluginAPI, deviceUISet, rxChannel);
|
2015-11-18 21:27:37 -05:00
|
|
|
}
|
2018-05-29 05:24:20 -04:00
|
|
|
#endif
|
2017-11-08 08:23:49 -05:00
|
|
|
|
2019-08-01 15:27:31 -04:00
|
|
|
BasebandSampleSink* UDPSinkPlugin::createRxChannelBS(DeviceAPI *deviceAPI) const
|
2017-11-08 08:23:49 -05:00
|
|
|
{
|
2018-09-11 18:08:47 -04:00
|
|
|
return new UDPSink(deviceAPI);
|
2017-11-08 08:23:49 -05:00
|
|
|
}
|
2017-12-17 17:15:42 -05:00
|
|
|
|
2019-08-01 15:27:31 -04:00
|
|
|
ChannelAPI* UDPSinkPlugin::createRxChannelCS(DeviceAPI *deviceAPI) const
|
2017-12-17 17:15:42 -05:00
|
|
|
{
|
2018-09-11 18:08:47 -04:00
|
|
|
return new UDPSink(deviceAPI);
|
2017-12-17 17:15:42 -05:00
|
|
|
}
|
|
|
|
|
2019-08-04 18:10:56 -04:00
|
|
|
ChannelWebAPIAdapter* UDPSinkPlugin::createChannelWebAPIAdapter() const
|
2019-08-01 18:29:58 -04:00
|
|
|
{
|
|
|
|
return new UDPSinkWebAPIAdapter();
|
|
|
|
}
|