sdrangel/plugins/samplesink/fileoutput/fileoutputplugin.cpp

146 lines
4.3 KiB
C++
Raw Normal View History

2016-10-19 12:42:57 -04:00
///////////////////////////////////////////////////////////////////////////////////
// Copyright (C) 2015-2022 Edouard Griffiths, F4EXB <f4exb06@gmail.com> //
// Copyright (C) 2019 Davide Gerhard <rainbow@irh.it> //
// Copyright (C) 2020 Kacper Michajłow <kasper93@gmail.com> //
2016-10-19 12:42:57 -04: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 00:39:30 -04:00
// (at your option) any later version. //
2016-10-19 12:42:57 -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/>. //
///////////////////////////////////////////////////////////////////////////////////
#include <QtPlugin>
2017-12-28 18:33:37 -05:00
2016-10-19 12:42:57 -04:00
#include "plugin/pluginapi.h"
2017-12-28 18:33:37 -05:00
#ifdef SERVER_MODE
2020-08-03 18:29:15 -04:00
#include "fileoutput.h"
2017-12-28 18:33:37 -05:00
#else
2020-08-03 18:29:15 -04:00
#include "fileoutputgui.h"
2017-12-28 18:33:37 -05:00
#endif
2020-08-03 18:29:15 -04:00
#include "fileoutputplugin.h"
2016-10-19 12:42:57 -04:00
2020-08-03 18:29:15 -04:00
const PluginDescriptor FileOutputPlugin::m_pluginDescriptor = {
2020-11-21 09:38:04 -05:00
QStringLiteral("FileOutput"),
QStringLiteral("File output"),
2024-04-14 05:41:00 -04:00
QStringLiteral("7.20.0"),
2020-11-21 09:38:04 -05:00
QStringLiteral("(c) Edouard Griffiths, F4EXB"),
QStringLiteral("https://github.com/f4exb/sdrangel"),
2016-10-19 12:42:57 -04:00
true,
2020-11-21 09:38:04 -05:00
QStringLiteral("https://github.com/f4exb/sdrangel")
2016-10-19 12:42:57 -04:00
};
static constexpr const char* const m_hardwareID = "FileOutput";
static constexpr const char* const m_deviceTypeID = FILEOUTPUT_DEVICE_TYPE_ID;
2016-10-19 12:42:57 -04:00
2020-08-03 18:29:15 -04:00
FileOutputPlugin::FileOutputPlugin(QObject* parent) :
2016-10-19 12:42:57 -04:00
QObject(parent)
{
}
2020-08-03 18:29:15 -04:00
const PluginDescriptor& FileOutputPlugin::getPluginDescriptor() const
2016-10-19 12:42:57 -04:00
{
return m_pluginDescriptor;
}
2020-08-03 18:29:15 -04:00
void FileOutputPlugin::initPlugin(PluginAPI* pluginAPI)
2016-10-19 12:42:57 -04:00
{
pluginAPI->registerSampleSink(m_deviceTypeID, this);
2016-10-19 12:42:57 -04:00
}
2020-08-03 18:29:15 -04:00
void FileOutputPlugin::enumOriginDevices(QStringList& listedHwIds, OriginDevices& originDevices)
{
if (listedHwIds.contains(m_hardwareID)) { // check if it was done
return;
}
originDevices.append(OriginDevice(
2020-08-03 18:29:15 -04:00
"FileOutput",
m_hardwareID,
2019-10-24 16:18:36 -04:00
QString(),
0, // Sequence
0, // nb Rx
1 // nb Tx
));
listedHwIds.append(m_hardwareID);
}
2020-08-03 18:29:15 -04:00
PluginInterface::SamplingDevices FileOutputPlugin::enumSampleSinks(const OriginDevices& originDevices)
2016-10-19 12:42:57 -04:00
{
SamplingDevices result;
for (OriginDevices::const_iterator it = originDevices.begin(); it != originDevices.end(); ++it)
{
if (it->hardwareId == m_hardwareID)
{
result.append(SamplingDevice(
it->displayableName,
it->hardwareId,
m_deviceTypeID,
it->serial,
it->sequence,
PluginInterface::SamplingDevice::BuiltInDevice,
PluginInterface::SamplingDevice::StreamSingleTx,
1,
0
));
}
}
2016-10-19 12:42:57 -04:00
return result;
}
2017-12-28 18:33:37 -05:00
#ifdef SERVER_MODE
DeviceGUI* FileOutputPlugin::createSampleSinkPluginInstanceGUI(
const QString& sinkId,
QWidget **widget,
DeviceUISet *deviceUISet)
2017-12-28 18:33:37 -05:00
{
(void) sinkId;
(void) widget;
(void) deviceUISet;
2020-08-03 18:29:15 -04:00
return nullptr;
2017-12-28 18:33:37 -05:00
}
#else
DeviceGUI* FileOutputPlugin::createSampleSinkPluginInstanceGUI(
const QString& sinkId,
QWidget **widget,
DeviceUISet *deviceUISet)
2016-10-19 12:42:57 -04:00
{
2020-08-03 18:29:15 -04:00
if (sinkId == m_deviceTypeID)
2016-10-19 12:42:57 -04:00
{
2020-08-03 18:29:15 -04:00
FileOutputGui* gui = new FileOutputGui(deviceUISet);
2016-10-19 12:42:57 -04:00
*widget = gui;
return gui;
}
else
{
2020-08-03 18:29:15 -04:00
return nullptr;
2016-10-19 12:42:57 -04:00
}
}
2017-12-28 18:33:37 -05:00
#endif
2020-08-03 18:29:15 -04:00
DeviceSampleSink* FileOutputPlugin::createSampleSinkPluginInstance(const QString& sinkId, DeviceAPI *deviceAPI)
{
if(sinkId == m_deviceTypeID)
{
2020-08-03 18:29:15 -04:00
FileOutput* output = new FileOutput(deviceAPI);
return output;
}
else
{
return 0;
}
}