2017-09-18 21:47:36 +00:00
|
|
|
///////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Copyright (C) 2017 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 //
|
2019-04-11 04:39:30 +00:00
|
|
|
// (at your option) any later version. //
|
2017-09-18 21:47:36 +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>
|
|
|
|
|
|
|
|
#include "plugin/pluginapi.h"
|
|
|
|
#include "plutosdr/deviceplutosdr.h"
|
|
|
|
|
2018-05-29 20:03:47 +00:00
|
|
|
#ifdef SERVER_MODE
|
2017-09-18 21:47:36 +00:00
|
|
|
#include "plutosdroutput.h"
|
2018-05-29 20:03:47 +00:00
|
|
|
#else
|
|
|
|
#include "plutosdroutputgui.h"
|
|
|
|
#endif
|
2017-09-18 21:47:36 +00:00
|
|
|
#include "plutosdroutputplugin.h"
|
2019-08-04 18:24:44 +00:00
|
|
|
#include "plutosdroutputwebapiadapter.h"
|
2017-09-18 21:47:36 +00:00
|
|
|
|
|
|
|
const PluginDescriptor PlutoSDROutputPlugin::m_pluginDescriptor = {
|
|
|
|
QString("PlutoSDR Output"),
|
2019-09-16 22:34:11 +00:00
|
|
|
QString("4.11.10"),
|
2017-09-18 21:47:36 +00:00
|
|
|
QString("(c) Edouard Griffiths, F4EXB"),
|
|
|
|
QString("https://github.com/f4exb/sdrangel"),
|
|
|
|
true,
|
|
|
|
QString("https://github.com/f4exb/sdrangel")
|
|
|
|
};
|
|
|
|
|
2017-09-19 21:11:03 +00:00
|
|
|
const QString PlutoSDROutputPlugin::m_hardwareID = "PlutoSDR";
|
2017-09-18 21:47:36 +00:00
|
|
|
const QString PlutoSDROutputPlugin::m_deviceTypeID = PLUTOSDR_DEVICE_TYPE_ID;
|
|
|
|
|
|
|
|
PlutoSDROutputPlugin::PlutoSDROutputPlugin(QObject* parent) :
|
|
|
|
QObject(parent)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
const PluginDescriptor& PlutoSDROutputPlugin::getPluginDescriptor() const
|
|
|
|
{
|
|
|
|
return m_pluginDescriptor;
|
|
|
|
}
|
|
|
|
|
|
|
|
void PlutoSDROutputPlugin::initPlugin(PluginAPI* pluginAPI)
|
|
|
|
{
|
|
|
|
pluginAPI->registerSampleSink(m_deviceTypeID, this);
|
|
|
|
DevicePlutoSDR::instance(); // create singleton
|
|
|
|
}
|
|
|
|
|
2019-09-16 22:34:11 +00:00
|
|
|
void PlutoSDROutputPlugin::enumOriginDevices(QStringList& listedHwIds, OriginDevices& originDevices)
|
2017-09-18 21:47:36 +00:00
|
|
|
{
|
2019-09-16 22:34:11 +00:00
|
|
|
if (listedHwIds.contains(m_hardwareID)) { // check if it was done
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-09-18 21:47:36 +00:00
|
|
|
DevicePlutoSDR::instance().scan();
|
|
|
|
std::vector<std::string> serials;
|
|
|
|
DevicePlutoSDR::instance().getSerials(serials);
|
|
|
|
|
|
|
|
std::vector<std::string>::const_iterator it = serials.begin();
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; it != serials.end(); ++it, ++i)
|
|
|
|
{
|
|
|
|
QString serial_str = QString::fromLocal8Bit(it->c_str());
|
2019-09-16 22:34:11 +00:00
|
|
|
QString displayableName(QString("PlutoSDR[%1] %2").arg(i).arg(serial_str));
|
|
|
|
|
|
|
|
originDevices.append(OriginDevice(
|
|
|
|
displayableName,
|
|
|
|
m_hardwareID,
|
|
|
|
serial_str,
|
|
|
|
i, // sequence
|
|
|
|
1, // Nb Rx
|
|
|
|
1 // Nb Tx
|
|
|
|
));
|
|
|
|
|
|
|
|
qDebug("PlutoSDROutputPlugin::enumOriginDevices: enumerated PlutoSDR device #%d", i);
|
|
|
|
}
|
|
|
|
|
|
|
|
listedHwIds.append(m_hardwareID);
|
|
|
|
}
|
|
|
|
|
|
|
|
PluginInterface::SamplingDevices PlutoSDROutputPlugin::enumSampleSinks(const OriginDevices& originDevices)
|
|
|
|
{
|
|
|
|
SamplingDevices result;
|
2017-09-18 21:47:36 +00:00
|
|
|
|
2019-09-16 22:34:11 +00:00
|
|
|
for (OriginDevices::const_iterator it = originDevices.begin(); it != originDevices.end(); ++it)
|
|
|
|
{
|
|
|
|
if (it->hardwareId == m_hardwareID)
|
|
|
|
{
|
|
|
|
result.append(SamplingDevice(
|
|
|
|
it->displayableName,
|
|
|
|
it->hardwareId,
|
2017-09-18 21:47:36 +00:00
|
|
|
m_deviceTypeID,
|
2019-09-16 22:34:11 +00:00
|
|
|
it->serial,
|
|
|
|
it->sequence,
|
2017-11-01 19:06:33 +00:00
|
|
|
PluginInterface::SamplingDevice::PhysicalDevice,
|
2019-05-07 16:58:20 +00:00
|
|
|
PluginInterface::SamplingDevice::StreamSingleTx,
|
2017-11-19 00:05:16 +00:00
|
|
|
1,
|
2019-09-16 22:34:11 +00:00
|
|
|
0
|
|
|
|
));
|
|
|
|
qDebug("PlutoSDROutputPlugin::enumSampleSources: enumerated PlutoSDR device #%d", it->sequence);
|
|
|
|
}
|
|
|
|
}
|
2017-09-18 21:47:36 +00:00
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2018-05-29 20:03:47 +00:00
|
|
|
#ifdef SERVER_MODE
|
|
|
|
PluginInstanceGUI* PlutoSDROutputPlugin::createSampleSinkPluginInstanceGUI(
|
2019-05-24 07:37:13 +00:00
|
|
|
const QString& sinkId,
|
|
|
|
QWidget **widget,
|
|
|
|
DeviceUISet *deviceUISet)
|
2018-05-29 20:03:47 +00:00
|
|
|
{
|
2019-06-19 16:50:55 +00:00
|
|
|
(void) sinkId;
|
|
|
|
(void) widget;
|
|
|
|
(void) deviceUISet;
|
2018-05-29 20:03:47 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
#else
|
2017-10-30 00:11:35 +00:00
|
|
|
PluginInstanceGUI* PlutoSDROutputPlugin::createSampleSinkPluginInstanceGUI(
|
|
|
|
const QString& sinkId,
|
|
|
|
QWidget **widget,
|
|
|
|
DeviceUISet *deviceUISet)
|
2017-09-18 21:47:36 +00:00
|
|
|
{
|
|
|
|
if(sinkId == m_deviceTypeID)
|
|
|
|
{
|
2017-10-30 01:54:22 +00:00
|
|
|
PlutoSDROutputGUI* gui = new PlutoSDROutputGUI(deviceUISet);
|
2017-09-18 21:47:36 +00:00
|
|
|
*widget = gui;
|
|
|
|
return gui;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
2018-05-29 20:03:47 +00:00
|
|
|
#endif
|
2017-09-18 21:47:36 +00:00
|
|
|
|
2019-05-19 08:28:50 +00:00
|
|
|
DeviceSampleSink *PlutoSDROutputPlugin::createSampleSinkPluginInstance(const QString& sinkId, DeviceAPI *deviceAPI)
|
2017-09-18 21:47:36 +00:00
|
|
|
{
|
|
|
|
if (sinkId == m_deviceTypeID)
|
|
|
|
{
|
|
|
|
PlutoSDROutput* output = new PlutoSDROutput(deviceAPI);
|
|
|
|
return output;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-08-04 18:24:44 +00:00
|
|
|
DeviceWebAPIAdapter *PlutoSDROutputPlugin::createDeviceWebAPIAdapter() const
|
|
|
|
{
|
|
|
|
return new PlutoSDROutputWebAPIAdapter();
|
|
|
|
}
|