2015-08-02 23:04:20 +00:00
|
|
|
///////////////////////////////////////////////////////////////////////////////////
|
2019-07-07 22:59:04 +00:00
|
|
|
// Copyright (C) 2015-2019 Edouard Griffiths, F4EXB //
|
2015-08-02 23:04:20 +00:00
|
|
|
// //
|
|
|
|
// 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 04:57:41 +00:00
|
|
|
// (at your option) any later version. //
|
2015-08-02 23:04:20 +00: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/>. //
|
|
|
|
///////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#include <QtPlugin>
|
2017-12-28 23:33:37 +00:00
|
|
|
|
2015-08-02 23:04:20 +00:00
|
|
|
#include "plugin/pluginapi.h"
|
|
|
|
#include "util/simpleserializer.h"
|
|
|
|
|
2017-12-28 23:33:37 +00:00
|
|
|
#ifdef SERVER_MODE
|
2019-07-07 22:59:04 +00:00
|
|
|
#include "fileinput.h"
|
2017-12-28 23:33:37 +00:00
|
|
|
#else
|
2019-07-07 22:59:04 +00:00
|
|
|
#include "fileinputgui.h"
|
2017-12-28 23:33:37 +00:00
|
|
|
#endif
|
2019-07-07 22:59:04 +00:00
|
|
|
#include "fileinputplugin.h"
|
2015-08-02 23:04:20 +00:00
|
|
|
|
2019-07-07 22:59:04 +00:00
|
|
|
const PluginDescriptor FileInputPlugin::m_pluginDescriptor = {
|
2019-07-07 23:45:29 +00:00
|
|
|
QString("File device input"),
|
2019-07-06 22:33:00 +00:00
|
|
|
QString("4.11.0"),
|
2015-08-02 23:04:20 +00:00
|
|
|
QString("(c) Edouard Griffiths, F4EXB"),
|
2015-09-01 23:16:40 +00:00
|
|
|
QString("https://github.com/f4exb/sdrangel"),
|
2015-08-02 23:04:20 +00:00
|
|
|
true,
|
2015-09-01 23:16:40 +00:00
|
|
|
QString("https://github.com/f4exb/sdrangel")
|
2015-08-02 23:04:20 +00:00
|
|
|
};
|
|
|
|
|
2019-07-07 22:59:04 +00:00
|
|
|
const QString FileInputPlugin::m_hardwareID = "FileInput";
|
|
|
|
const QString FileInputPlugin::m_deviceTypeID = FILEINPUT_DEVICE_TYPE_ID;
|
2015-09-30 16:06:50 +00:00
|
|
|
|
2019-07-07 22:59:04 +00:00
|
|
|
FileInputPlugin::FileInputPlugin(QObject* parent) :
|
2015-08-02 23:04:20 +00:00
|
|
|
QObject(parent)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2019-07-07 22:59:04 +00:00
|
|
|
const PluginDescriptor& FileInputPlugin::getPluginDescriptor() const
|
2015-08-02 23:04:20 +00:00
|
|
|
{
|
|
|
|
return m_pluginDescriptor;
|
|
|
|
}
|
|
|
|
|
2019-07-07 22:59:04 +00:00
|
|
|
void FileInputPlugin::initPlugin(PluginAPI* pluginAPI)
|
2015-08-02 23:04:20 +00:00
|
|
|
{
|
2016-05-17 17:26:23 +00:00
|
|
|
pluginAPI->registerSampleSource(m_deviceTypeID, this);
|
2015-08-02 23:04:20 +00:00
|
|
|
}
|
|
|
|
|
2019-07-07 22:59:04 +00:00
|
|
|
PluginInterface::SamplingDevices FileInputPlugin::enumSampleSources()
|
2015-08-02 23:04:20 +00:00
|
|
|
{
|
2016-10-13 20:23:43 +00:00
|
|
|
SamplingDevices result;
|
2015-08-02 23:04:20 +00:00
|
|
|
|
2017-11-02 02:42:59 +00:00
|
|
|
result.append(SamplingDevice(
|
2019-07-07 22:59:04 +00:00
|
|
|
"FileInput",
|
2017-11-02 02:42:59 +00:00
|
|
|
m_hardwareID,
|
|
|
|
m_deviceTypeID,
|
|
|
|
QString::null,
|
|
|
|
0,
|
|
|
|
PluginInterface::SamplingDevice::BuiltInDevice,
|
2019-05-07 16:58:20 +00:00
|
|
|
PluginInterface::SamplingDevice::StreamSingleRx,
|
2017-11-19 00:05:16 +00:00
|
|
|
1,
|
2017-11-02 02:42:59 +00:00
|
|
|
0));
|
2015-08-02 23:04:20 +00:00
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2017-12-28 23:33:37 +00:00
|
|
|
#ifdef SERVER_MODE
|
2019-07-07 22:59:04 +00:00
|
|
|
PluginInstanceGUI* FileInputPlugin::createSampleSourcePluginInstanceGUI(
|
2019-05-24 07:37:13 +00:00
|
|
|
const QString& sourceId,
|
|
|
|
QWidget **widget,
|
|
|
|
DeviceUISet *deviceUISet)
|
2017-12-28 23:33:37 +00:00
|
|
|
{
|
2019-06-19 16:50:55 +00:00
|
|
|
(void) sourceId;
|
|
|
|
(void) widget;
|
|
|
|
(void) deviceUISet;
|
2017-12-28 23:33:37 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
#else
|
2019-07-07 22:59:04 +00:00
|
|
|
PluginInstanceGUI* FileInputPlugin::createSampleSourcePluginInstanceGUI(
|
2017-10-29 23:02:28 +00:00
|
|
|
const QString& sourceId,
|
|
|
|
QWidget **widget,
|
|
|
|
DeviceUISet *deviceUISet)
|
2015-08-02 23:04:20 +00:00
|
|
|
{
|
2015-09-30 16:06:50 +00:00
|
|
|
if(sourceId == m_deviceTypeID)
|
|
|
|
{
|
2019-07-07 22:59:04 +00:00
|
|
|
FileInputGUI* gui = new FileInputGUI(deviceUISet);
|
2016-05-17 01:41:01 +00:00
|
|
|
*widget = gui;
|
2015-08-02 23:04:20 +00:00
|
|
|
return gui;
|
2015-09-30 16:06:50 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2017-09-14 11:34:32 +00:00
|
|
|
return 0;
|
2015-08-02 23:04:20 +00:00
|
|
|
}
|
|
|
|
}
|
2017-12-28 23:33:37 +00:00
|
|
|
#endif
|
2017-09-14 11:34:32 +00:00
|
|
|
|
2019-07-07 22:59:04 +00:00
|
|
|
DeviceSampleSource *FileInputPlugin::createSampleSourcePluginInstance(const QString& sourceId, DeviceAPI *deviceAPI)
|
2017-09-14 11:34:32 +00:00
|
|
|
{
|
|
|
|
if (sourceId == m_deviceTypeID)
|
|
|
|
{
|
2019-07-07 22:59:04 +00:00
|
|
|
FileInput* input = new FileInput(deviceAPI);
|
2017-09-14 11:34:32 +00:00
|
|
|
return input;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|