2019-05-10 17:38:52 -04:00
|
|
|
///////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Copyright (C) 2019 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 //
|
|
|
|
// (at your option) any later version. //
|
|
|
|
// //
|
|
|
|
// 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 "plugin/pluginapi.h"
|
|
|
|
#include "util/simpleserializer.h"
|
|
|
|
|
|
|
|
#ifdef SERVER_MODE
|
|
|
|
#include "localoutput.h"
|
|
|
|
#else
|
|
|
|
#include "localoutputgui.h"
|
|
|
|
#endif
|
|
|
|
#include "localoutputplugin.h"
|
2019-08-04 14:24:44 -04:00
|
|
|
#include "localoutputwebapiadapter.h"
|
2019-05-10 17:38:52 -04:00
|
|
|
|
|
|
|
const PluginDescriptor LocalOutputPlugin::m_pluginDescriptor = {
|
2020-11-21 09:38:04 -05:00
|
|
|
QStringLiteral("LocalOutput"),
|
|
|
|
QStringLiteral("Local device output"),
|
2022-11-01 18:51:06 -04:00
|
|
|
QStringLiteral("7.8.2"),
|
2020-11-21 09:38:04 -05:00
|
|
|
QStringLiteral("(c) Edouard Griffiths, F4EXB"),
|
|
|
|
QStringLiteral("https://github.com/f4exb/sdrangel"),
|
2019-05-10 17:38:52 -04:00
|
|
|
true,
|
2020-11-21 09:38:04 -05:00
|
|
|
QStringLiteral("https://github.com/f4exb/sdrangel")
|
2019-05-10 17:38:52 -04:00
|
|
|
};
|
|
|
|
|
2020-11-21 14:24:18 -05:00
|
|
|
static constexpr const char* const m_hardwareID = "LocalOutput";
|
|
|
|
static constexpr const char* const m_deviceTypeID = LOCALOUTPUT_DEVICE_TYPE_ID;
|
2019-05-10 17:38:52 -04:00
|
|
|
|
|
|
|
LocalOutputPlugin::LocalOutputPlugin(QObject* parent) :
|
|
|
|
QObject(parent)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
const PluginDescriptor& LocalOutputPlugin::getPluginDescriptor() const
|
|
|
|
{
|
|
|
|
return m_pluginDescriptor;
|
|
|
|
}
|
|
|
|
|
|
|
|
void LocalOutputPlugin::initPlugin(PluginAPI* pluginAPI)
|
|
|
|
{
|
|
|
|
pluginAPI->registerSampleSink(m_deviceTypeID, this);
|
|
|
|
}
|
|
|
|
|
2019-09-16 18:34:11 -04:00
|
|
|
void LocalOutputPlugin::enumOriginDevices(QStringList& listedHwIds, OriginDevices& originDevices)
|
|
|
|
{
|
|
|
|
if (listedHwIds.contains(m_hardwareID)) { // check if it was done
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
originDevices.append(OriginDevice(
|
|
|
|
"LocalOutput",
|
|
|
|
m_hardwareID,
|
2019-10-24 16:18:36 -04:00
|
|
|
QString(),
|
2019-09-16 18:34:11 -04:00
|
|
|
0, // Sequence
|
|
|
|
0, // nb Rx
|
|
|
|
1 // nb Tx
|
|
|
|
));
|
|
|
|
|
|
|
|
listedHwIds.append(m_hardwareID);
|
|
|
|
}
|
|
|
|
|
|
|
|
PluginInterface::SamplingDevices LocalOutputPlugin::enumSampleSinks(const OriginDevices& originDevices)
|
2019-05-10 17:38:52 -04:00
|
|
|
{
|
|
|
|
SamplingDevices result;
|
|
|
|
|
2019-09-16 18:34:11 -04:00
|
|
|
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
|
|
|
|
));
|
|
|
|
}
|
|
|
|
}
|
2019-05-10 17:38:52 -04:00
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef SERVER_MODE
|
2020-10-05 13:23:13 -04:00
|
|
|
DeviceGUI* LocalOutputPlugin::createSampleSinkPluginInstanceGUI(
|
2019-05-24 03:37:13 -04:00
|
|
|
const QString& sinkId,
|
|
|
|
QWidget **widget,
|
|
|
|
DeviceUISet *deviceUISet)
|
2019-05-10 17:38:52 -04:00
|
|
|
{
|
2019-06-19 12:50:55 -04:00
|
|
|
(void) sinkId;
|
|
|
|
(void) widget;
|
|
|
|
(void) deviceUISet;
|
2019-05-10 17:38:52 -04:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
#else
|
2020-10-05 13:23:13 -04:00
|
|
|
DeviceGUI* LocalOutputPlugin::createSampleSinkPluginInstanceGUI(
|
2019-05-10 17:38:52 -04:00
|
|
|
const QString& sinkId,
|
|
|
|
QWidget **widget,
|
|
|
|
DeviceUISet *deviceUISet)
|
|
|
|
{
|
|
|
|
if(sinkId == m_deviceTypeID)
|
|
|
|
{
|
|
|
|
LocalOutputGui* gui = new LocalOutputGui(deviceUISet);
|
|
|
|
*widget = gui;
|
|
|
|
return gui;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2019-05-19 04:28:50 -04:00
|
|
|
DeviceSampleSink *LocalOutputPlugin::createSampleSinkPluginInstance(const QString& sinkId, DeviceAPI *deviceAPI)
|
2019-05-10 17:38:52 -04:00
|
|
|
{
|
|
|
|
if (sinkId == m_deviceTypeID)
|
|
|
|
{
|
|
|
|
LocalOutput* output = new LocalOutput(deviceAPI);
|
|
|
|
return output;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
2019-08-04 14:24:44 -04:00
|
|
|
|
|
|
|
DeviceWebAPIAdapter *LocalOutputPlugin::createDeviceWebAPIAdapter() const
|
|
|
|
{
|
|
|
|
return new LocalOutputWebAPIAdapter();
|
|
|
|
}
|