2023-04-15 12:01:27 -04:00
|
|
|
///////////////////////////////////////////////////////////////////////////////////
|
2023-11-18 00:40:23 -05:00
|
|
|
// Copyright (C) 2015-2023 Edouard Griffiths, F4EXB <f4exb06@gmail.com> //
|
|
|
|
// Copyright (C) 2019 Davide Gerhard <rainbow@irh.it> //
|
|
|
|
// Copyright (C) 2020 Kacper Michajłow <kasper93@gmail.com> //
|
2023-04-15 12:01:27 -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 //
|
|
|
|
// (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"
|
|
|
|
|
|
|
|
#ifdef SERVER_MODE
|
|
|
|
#include "audiocatsiso.h"
|
|
|
|
#else
|
|
|
|
#include "audiocatsisogui.h"
|
|
|
|
#endif
|
|
|
|
#include "audiocatsisoplugin.h"
|
|
|
|
#include "audiocatsisowebapiadapter.h"
|
|
|
|
|
|
|
|
const PluginDescriptor AudioCATSISOPlugin::m_pluginDescriptor = {
|
|
|
|
QStringLiteral("AudioCATSISO"),
|
|
|
|
QStringLiteral("Audio CAT SISO"),
|
2023-12-31 13:16:27 -05:00
|
|
|
QStringLiteral("7.17.3"),
|
2023-04-15 12:01:27 -04:00
|
|
|
QStringLiteral("(c) Edouard Griffiths, F4EXB"),
|
|
|
|
QStringLiteral("https://github.com/f4exb/sdrangel"),
|
|
|
|
true,
|
|
|
|
QStringLiteral("https://github.com/f4exb/sdrangel")
|
|
|
|
};
|
|
|
|
|
|
|
|
static constexpr const char* const m_hardwareID = "AudioCATSISO";
|
|
|
|
static constexpr const char* const m_deviceTypeID = AUDIOCATSISO_DEVICE_TYPE_ID;
|
|
|
|
|
|
|
|
AudioCATSISOPlugin::AudioCATSISOPlugin(QObject* parent) :
|
|
|
|
QObject(parent)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
const PluginDescriptor& AudioCATSISOPlugin::getPluginDescriptor() const
|
|
|
|
{
|
|
|
|
return m_pluginDescriptor;
|
|
|
|
}
|
|
|
|
|
|
|
|
void AudioCATSISOPlugin::initPlugin(PluginAPI* pluginAPI)
|
|
|
|
{
|
|
|
|
pluginAPI->registerSampleMIMO(m_deviceTypeID, this);
|
|
|
|
}
|
|
|
|
|
|
|
|
void AudioCATSISOPlugin::enumOriginDevices(QStringList& listedHwIds, OriginDevices& originDevices)
|
|
|
|
{
|
|
|
|
if (listedHwIds.contains(m_hardwareID)) { // check if it was done
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
originDevices.append(OriginDevice(
|
|
|
|
"AudioCATSISO", // Displayable name
|
|
|
|
m_hardwareID, // Hardware ID
|
|
|
|
QString(), // Serial
|
|
|
|
0, // Sequence
|
|
|
|
1, // Number of Rx streams
|
|
|
|
1 // Number of Tx streams
|
|
|
|
));
|
|
|
|
|
|
|
|
listedHwIds.append(m_hardwareID);
|
|
|
|
}
|
|
|
|
|
|
|
|
PluginInterface::SamplingDevices AudioCATSISOPlugin::enumSampleMIMO(const OriginDevices& originDevices)
|
|
|
|
{
|
|
|
|
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::PhysicalDevice,
|
|
|
|
PluginInterface::SamplingDevice::StreamMIMO,
|
|
|
|
1, // MIMO is always considered as a single device
|
|
|
|
0)
|
|
|
|
);
|
|
|
|
qDebug("MetisMISOPlugin::enumSampleMIMO: enumerated Metis device #%d", it->sequence);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef SERVER_MODE
|
|
|
|
DeviceGUI* AudioCATSISOPlugin::createSampleMIMOPluginInstanceGUI(
|
|
|
|
const QString& sourceId,
|
|
|
|
QWidget **widget,
|
|
|
|
DeviceUISet *deviceUISet)
|
|
|
|
{
|
|
|
|
(void) sourceId;
|
|
|
|
(void) widget;
|
|
|
|
(void) deviceUISet;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
DeviceGUI* AudioCATSISOPlugin::createSampleMIMOPluginInstanceGUI(
|
|
|
|
const QString& sourceId,
|
|
|
|
QWidget **widget,
|
|
|
|
DeviceUISet *deviceUISet)
|
|
|
|
{
|
|
|
|
if (sourceId == m_deviceTypeID) {
|
|
|
|
AudioCATSISOGUI* gui = new AudioCATSISOGUI(deviceUISet);
|
|
|
|
*widget = gui;
|
|
|
|
return gui;
|
|
|
|
} else {
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
DeviceSampleMIMO *AudioCATSISOPlugin::createSampleMIMOPluginInstance(const QString& mimoId, DeviceAPI *deviceAPI)
|
|
|
|
{
|
|
|
|
if (mimoId == m_deviceTypeID)
|
|
|
|
{
|
|
|
|
AudioCATSISO* input = new AudioCATSISO(deviceAPI);
|
|
|
|
return input;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
DeviceWebAPIAdapter *AudioCATSISOPlugin::createDeviceWebAPIAdapter() const
|
|
|
|
{
|
|
|
|
return new AudioCATSISOWebAPIAdapter();
|
|
|
|
}
|