2015-08-02 19:04:20 -04:00
|
|
|
///////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Copyright (C) 2015 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>
|
2017-12-28 18:33:37 -05:00
|
|
|
|
2015-08-02 19:04:20 -04:00
|
|
|
#include "plugin/pluginapi.h"
|
|
|
|
#include "util/simpleserializer.h"
|
2017-12-28 18:33:37 -05:00
|
|
|
#include <device/devicesourceapi.h>
|
2015-08-02 19:04:20 -04:00
|
|
|
|
2017-12-28 18:33:37 -05:00
|
|
|
#ifdef SERVER_MODE
|
|
|
|
#include "filesourceinput.h"
|
|
|
|
#else
|
2015-08-02 19:04:20 -04:00
|
|
|
#include "filesourcegui.h"
|
2017-12-28 18:33:37 -05:00
|
|
|
#endif
|
2015-08-02 19:04:20 -04:00
|
|
|
#include "filesourceplugin.h"
|
|
|
|
|
|
|
|
const PluginDescriptor FileSourcePlugin::m_pluginDescriptor = {
|
|
|
|
QString("File source input"),
|
2019-01-11 08:45:00 -05:00
|
|
|
QString("4.4.1"),
|
2015-08-02 19:04:20 -04:00
|
|
|
QString("(c) Edouard Griffiths, F4EXB"),
|
2015-09-01 19:16:40 -04:00
|
|
|
QString("https://github.com/f4exb/sdrangel"),
|
2015-08-02 19:04:20 -04:00
|
|
|
true,
|
2015-09-01 19:16:40 -04:00
|
|
|
QString("https://github.com/f4exb/sdrangel")
|
2015-08-02 19:04:20 -04:00
|
|
|
};
|
|
|
|
|
2016-12-29 06:41:10 -05:00
|
|
|
const QString FileSourcePlugin::m_hardwareID = "FileSource";
|
2015-09-30 12:06:50 -04:00
|
|
|
const QString FileSourcePlugin::m_deviceTypeID = FILESOURCE_DEVICE_TYPE_ID;
|
|
|
|
|
2015-08-02 19:04:20 -04:00
|
|
|
FileSourcePlugin::FileSourcePlugin(QObject* parent) :
|
|
|
|
QObject(parent)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
const PluginDescriptor& FileSourcePlugin::getPluginDescriptor() const
|
|
|
|
{
|
|
|
|
return m_pluginDescriptor;
|
|
|
|
}
|
|
|
|
|
|
|
|
void FileSourcePlugin::initPlugin(PluginAPI* pluginAPI)
|
|
|
|
{
|
2016-05-17 13:26:23 -04:00
|
|
|
pluginAPI->registerSampleSource(m_deviceTypeID, this);
|
2015-08-02 19:04:20 -04:00
|
|
|
}
|
|
|
|
|
2016-10-13 16:23:43 -04:00
|
|
|
PluginInterface::SamplingDevices FileSourcePlugin::enumSampleSources()
|
2015-08-02 19:04:20 -04:00
|
|
|
{
|
2016-10-13 16:23:43 -04:00
|
|
|
SamplingDevices result;
|
2015-08-02 19:04:20 -04:00
|
|
|
|
2017-11-01 22:42:59 -04:00
|
|
|
result.append(SamplingDevice(
|
|
|
|
"FileSource",
|
|
|
|
m_hardwareID,
|
|
|
|
m_deviceTypeID,
|
|
|
|
QString::null,
|
|
|
|
0,
|
|
|
|
PluginInterface::SamplingDevice::BuiltInDevice,
|
|
|
|
true,
|
2017-11-18 19:05:16 -05:00
|
|
|
1,
|
2017-11-01 22:42:59 -04:00
|
|
|
0));
|
2015-08-02 19:04:20 -04:00
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2017-12-28 18:33:37 -05:00
|
|
|
#ifdef SERVER_MODE
|
|
|
|
PluginInstanceGUI* FileSourcePlugin::createSampleSourcePluginInstanceGUI(
|
|
|
|
const QString& sourceId __attribute__((unused)),
|
|
|
|
QWidget **widget __attribute__((unused)),
|
|
|
|
DeviceUISet *deviceUISet __attribute__((unused)))
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
#else
|
2017-10-29 19:02:28 -04:00
|
|
|
PluginInstanceGUI* FileSourcePlugin::createSampleSourcePluginInstanceGUI(
|
|
|
|
const QString& sourceId,
|
|
|
|
QWidget **widget,
|
|
|
|
DeviceUISet *deviceUISet)
|
2015-08-02 19:04:20 -04:00
|
|
|
{
|
2015-09-30 12:06:50 -04:00
|
|
|
if(sourceId == m_deviceTypeID)
|
|
|
|
{
|
2017-10-29 19:45:23 -04:00
|
|
|
FileSourceGui* gui = new FileSourceGui(deviceUISet);
|
2016-05-16 21:41:01 -04:00
|
|
|
*widget = gui;
|
2015-08-02 19:04:20 -04:00
|
|
|
return gui;
|
2015-09-30 12:06:50 -04:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2017-09-14 07:34:32 -04:00
|
|
|
return 0;
|
2015-08-02 19:04:20 -04:00
|
|
|
}
|
|
|
|
}
|
2017-12-28 18:33:37 -05:00
|
|
|
#endif
|
2017-09-14 07:34:32 -04:00
|
|
|
|
|
|
|
DeviceSampleSource *FileSourcePlugin::createSampleSourcePluginInstanceInput(const QString& sourceId, DeviceSourceAPI *deviceAPI)
|
|
|
|
{
|
|
|
|
if (sourceId == m_deviceTypeID)
|
|
|
|
{
|
|
|
|
FileSourceInput* input = new FileSourceInput(deviceAPI);
|
|
|
|
return input;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|