2016-06-19 03:56:49 -04:00
|
|
|
///////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Copyright (C) 2016 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 //
|
|
|
|
// //
|
|
|
|
// 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 <QAction>
|
|
|
|
#include "plugin/pluginapi.h"
|
|
|
|
#include "util/simpleserializer.h"
|
|
|
|
|
2016-10-10 19:17:55 -04:00
|
|
|
#include <device/devicesourceapi.h>
|
|
|
|
|
2017-06-09 07:58:27 -04:00
|
|
|
#include "sdrdaemonsourcegui.h"
|
|
|
|
#include "sdrdaemonsourceplugin.h"
|
2016-06-19 03:56:49 -04:00
|
|
|
|
2017-06-09 08:14:32 -04:00
|
|
|
const PluginDescriptor SDRdaemonSourcePlugin::m_pluginDescriptor = {
|
|
|
|
QString("SDRdaemon source input"),
|
2017-05-16 12:38:39 -04:00
|
|
|
QString("3.5.0"),
|
2016-06-19 03:56:49 -04:00
|
|
|
QString("(c) Edouard Griffiths, F4EXB"),
|
|
|
|
QString("https://github.com/f4exb/sdrangel"),
|
|
|
|
true,
|
|
|
|
QString("https://github.com/f4exb/sdrangel")
|
|
|
|
};
|
|
|
|
|
2017-06-09 08:14:32 -04:00
|
|
|
const QString SDRdaemonSourcePlugin::m_hardwareID = "SDRdaemonSource";
|
|
|
|
const QString SDRdaemonSourcePlugin::m_deviceTypeID = SDRDAEMONSOURCE_DEVICE_TYPE_ID;
|
2016-06-19 03:56:49 -04:00
|
|
|
|
2017-06-09 08:14:32 -04:00
|
|
|
SDRdaemonSourcePlugin::SDRdaemonSourcePlugin(QObject* parent) :
|
2016-06-19 03:56:49 -04:00
|
|
|
QObject(parent)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2017-06-09 08:14:32 -04:00
|
|
|
const PluginDescriptor& SDRdaemonSourcePlugin::getPluginDescriptor() const
|
2016-06-19 03:56:49 -04:00
|
|
|
{
|
|
|
|
return m_pluginDescriptor;
|
|
|
|
}
|
|
|
|
|
2017-06-09 08:14:32 -04:00
|
|
|
void SDRdaemonSourcePlugin::initPlugin(PluginAPI* pluginAPI)
|
2016-06-19 03:56:49 -04:00
|
|
|
{
|
|
|
|
pluginAPI->registerSampleSource(m_deviceTypeID, this);
|
|
|
|
}
|
|
|
|
|
2017-06-09 08:14:32 -04:00
|
|
|
PluginInterface::SamplingDevices SDRdaemonSourcePlugin::enumSampleSources()
|
2016-06-19 03:56:49 -04:00
|
|
|
{
|
2016-10-13 16:23:43 -04:00
|
|
|
SamplingDevices result;
|
2016-06-19 03:56:49 -04:00
|
|
|
int count = 1;
|
|
|
|
|
|
|
|
for(int i = 0; i < count; i++)
|
|
|
|
{
|
2017-06-09 08:14:32 -04:00
|
|
|
QString displayedName(QString("SDRdaemonSource[%1]").arg(i));
|
2016-06-19 03:56:49 -04:00
|
|
|
|
2016-10-13 16:23:43 -04:00
|
|
|
result.append(SamplingDevice(displayedName,
|
2016-12-29 06:41:10 -05:00
|
|
|
m_hardwareID,
|
2016-06-19 03:56:49 -04:00
|
|
|
m_deviceTypeID,
|
|
|
|
QString::null,
|
|
|
|
i));
|
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2017-09-25 18:22:08 -04:00
|
|
|
PluginInstanceGUI* SDRdaemonSourcePlugin::createSampleSourcePluginInstanceGUI(const QString& sourceId, QWidget **widget, DeviceSourceAPI *deviceAPI)
|
2016-06-19 03:56:49 -04:00
|
|
|
{
|
|
|
|
if(sourceId == m_deviceTypeID)
|
|
|
|
{
|
2017-06-09 08:14:32 -04:00
|
|
|
SDRdaemonSourceGui* gui = new SDRdaemonSourceGui(deviceAPI);
|
2016-06-19 03:56:49 -04:00
|
|
|
*widget = gui;
|
|
|
|
return gui;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2017-09-14 07:34:32 -04:00
|
|
|
return 0;
|
2016-06-19 03:56:49 -04:00
|
|
|
}
|
|
|
|
}
|
2017-09-14 07:34:32 -04:00
|
|
|
|
|
|
|
DeviceSampleSource *SDRdaemonSourcePlugin::createSampleSourcePluginInstanceInput(const QString& sourceId, DeviceSourceAPI *deviceAPI)
|
|
|
|
{
|
|
|
|
if (sourceId == m_deviceTypeID)
|
|
|
|
{
|
|
|
|
SDRdaemonSourceInput* input = new SDRdaemonSourceInput(deviceAPI);
|
|
|
|
return input;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|