2017-12-17 05:09:51 -05:00
|
|
|
///////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Copyright (C) 2017 Edouard Griffiths, F4EXB. //
|
|
|
|
// //
|
|
|
|
// Swagger server adapter interface //
|
|
|
|
// //
|
|
|
|
// 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 08:44:23 -04:00
|
|
|
// (at your option) any later version. //
|
2017-12-17 05:09:51 -05: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 <QDebug>
|
2018-01-06 20:52:35 -05:00
|
|
|
#include <QSysInfo>
|
2018-02-18 17:01:02 -05:00
|
|
|
#include <QResource>
|
2017-12-17 05:09:51 -05:00
|
|
|
|
|
|
|
#include "dsp/dspengine.h"
|
|
|
|
#include "dsp/dspdevicesourceengine.h"
|
2017-12-19 19:01:53 -05:00
|
|
|
#include "dsp/dspdevicesinkengine.h"
|
2019-12-14 12:45:25 -05:00
|
|
|
#include "dsp/dspdevicemimoengine.h"
|
2019-05-08 16:11:53 -04:00
|
|
|
#include "device/deviceapi.h"
|
2017-12-19 19:01:53 -05:00
|
|
|
#include "device/deviceset.h"
|
|
|
|
#include "device/deviceenumerator.h"
|
2020-09-20 21:13:36 -04:00
|
|
|
#include "feature/featureset.h"
|
2017-12-17 05:09:51 -05:00
|
|
|
#include "plugin/pluginmanager.h"
|
|
|
|
#include "webapi/webapirequestmapper.h"
|
|
|
|
#include "webapi/webapiserver.h"
|
|
|
|
#include "webapi/webapiadaptersrv.h"
|
|
|
|
|
2020-10-09 23:10:46 -04:00
|
|
|
#include "mainparser.h"
|
2020-10-08 16:33:08 -04:00
|
|
|
#include "mainserver.h"
|
|
|
|
|
|
|
|
MainServer *MainServer::m_instance = 0;
|
|
|
|
|
|
|
|
MainServer::MainServer(qtwebapp::LoggerWithFile *logger, const MainParser& parser, QObject *parent) :
|
2017-12-17 06:08:18 -05:00
|
|
|
QObject(parent),
|
2020-10-09 02:52:30 -04:00
|
|
|
m_mainCore(MainCore::instance()),
|
|
|
|
m_dspEngine(DSPEngine::instance())
|
2017-12-17 05:09:51 -05:00
|
|
|
{
|
2020-10-08 16:33:08 -04:00
|
|
|
qDebug() << "MainServer::MainServer: start";
|
2017-12-17 05:09:51 -05:00
|
|
|
|
|
|
|
m_instance = this;
|
2020-10-09 02:52:30 -04:00
|
|
|
m_mainCore->m_logger = logger;
|
|
|
|
m_mainCore->m_mainMessageQueue = &m_inputMessageQueue;
|
|
|
|
m_mainCore->m_settings.setAudioDeviceManager(m_dspEngine->getAudioDeviceManager());
|
|
|
|
m_mainCore->m_settings.setAMBEEngine(m_dspEngine->getAMBEEngine());
|
|
|
|
m_mainCore->m_masterTabIndex = -1;
|
2017-12-17 05:09:51 -05:00
|
|
|
|
2020-10-08 16:33:08 -04:00
|
|
|
qDebug() << "MainServer::MainServer: create FFT factory...";
|
2020-03-12 01:27:38 -04:00
|
|
|
m_dspEngine->createFFTFactory(parser.getFFTWFWisdomFileName());
|
|
|
|
|
2020-10-08 16:33:08 -04:00
|
|
|
qDebug() << "MainServer::MainServer: load plugins...";
|
2020-10-09 02:52:30 -04:00
|
|
|
m_mainCore->m_pluginManager = new PluginManager(this);
|
|
|
|
m_mainCore->m_pluginManager->loadPlugins(QString("pluginssrv"));
|
2017-12-17 05:09:51 -05:00
|
|
|
|
|
|
|
connect(&m_inputMessageQueue, SIGNAL(messageEnqueued()), this, SLOT(handleMessages()), Qt::QueuedConnection);
|
2020-10-09 02:52:30 -04:00
|
|
|
m_mainCore->m_masterTimer.start(50);
|
2017-12-17 05:09:51 -05:00
|
|
|
|
2020-10-08 16:33:08 -04:00
|
|
|
qDebug() << "MainServer::MainServer: load setings...";
|
2017-12-18 07:56:10 -05:00
|
|
|
loadSettings();
|
|
|
|
|
2020-10-08 16:33:08 -04:00
|
|
|
qDebug() << "MainServer::MainServer: finishing...";
|
2018-02-18 17:01:02 -05:00
|
|
|
QString applicationDirPath = QCoreApplication::instance()->applicationDirPath();
|
|
|
|
|
2020-10-09 02:52:30 -04:00
|
|
|
m_apiAdapter = new WebAPIAdapterSrv(*m_mainCore);
|
2017-12-17 18:00:21 -05:00
|
|
|
m_requestMapper = new WebAPIRequestMapper(this);
|
2017-12-17 05:09:51 -05:00
|
|
|
m_requestMapper->setAdapter(m_apiAdapter);
|
2020-09-09 20:43:28 -04:00
|
|
|
m_apiHost = parser.getServerAddress();
|
|
|
|
m_apiPort = parser.getServerPort();
|
2017-12-17 05:09:51 -05:00
|
|
|
m_apiServer = new WebAPIServer(parser.getServerAddress(), parser.getServerPort(), m_requestMapper);
|
|
|
|
m_apiServer->start();
|
|
|
|
|
2019-05-12 04:25:55 -04:00
|
|
|
m_dspEngine->setMIMOSupport(parser.getMIMOSupport());
|
|
|
|
|
2020-10-08 16:33:08 -04:00
|
|
|
qDebug() << "MainServer::MainServer: end";
|
2017-12-17 05:09:51 -05:00
|
|
|
}
|
|
|
|
|
2020-10-08 16:33:08 -04:00
|
|
|
MainServer::~MainServer()
|
2017-12-17 05:09:51 -05:00
|
|
|
{
|
2020-10-09 02:52:30 -04:00
|
|
|
while (m_mainCore->m_deviceSets.size() > 0) {
|
2018-02-14 05:27:57 -05:00
|
|
|
removeLastDevice();
|
|
|
|
}
|
|
|
|
|
2017-12-18 07:56:10 -05:00
|
|
|
m_apiServer->stop();
|
2020-10-09 02:52:30 -04:00
|
|
|
m_mainCore->m_settings.save();
|
2017-12-17 05:09:51 -05:00
|
|
|
delete m_apiServer;
|
|
|
|
delete m_requestMapper;
|
|
|
|
delete m_apiAdapter;
|
|
|
|
|
2020-10-09 02:52:30 -04:00
|
|
|
delete m_mainCore->m_pluginManager;
|
2017-12-17 05:09:51 -05:00
|
|
|
|
2020-10-08 16:33:08 -04:00
|
|
|
qDebug() << "MainServer::~MainServer: end";
|
2017-12-17 05:09:51 -05:00
|
|
|
}
|
2017-12-17 06:08:18 -05:00
|
|
|
|
2020-10-08 16:33:08 -04:00
|
|
|
bool MainServer::handleMessage(const Message& cmd)
|
2017-12-17 17:15:42 -05:00
|
|
|
{
|
2020-10-09 02:52:30 -04:00
|
|
|
if (MainCore::MsgDeleteInstance::match(cmd))
|
2017-12-17 17:15:42 -05:00
|
|
|
{
|
2020-10-09 02:52:30 -04:00
|
|
|
while (m_mainCore->m_deviceSets.size() > 0)
|
2017-12-19 19:01:53 -05:00
|
|
|
{
|
|
|
|
removeLastDevice();
|
|
|
|
}
|
|
|
|
|
2017-12-17 18:00:21 -05:00
|
|
|
emit finished();
|
2017-12-17 17:15:42 -05:00
|
|
|
return true;
|
|
|
|
}
|
2020-10-09 02:52:30 -04:00
|
|
|
else if (MainCore::MsgLoadPreset::match(cmd))
|
2017-12-20 08:31:17 -05:00
|
|
|
{
|
2020-10-09 02:52:30 -04:00
|
|
|
MainCore::MsgLoadPreset& notif = (MainCore::MsgLoadPreset&) cmd;
|
2017-12-20 08:31:17 -05:00
|
|
|
loadPresetSettings(notif.getPreset(), notif.getDeviceSetIndex());
|
|
|
|
return true;
|
|
|
|
}
|
2020-10-09 02:52:30 -04:00
|
|
|
else if (MainCore::MsgSavePreset::match(cmd))
|
2017-12-20 17:57:06 -05:00
|
|
|
{
|
2020-10-09 02:52:30 -04:00
|
|
|
MainCore::MsgSavePreset& notif = (MainCore::MsgSavePreset&) cmd;
|
2017-12-20 17:57:06 -05:00
|
|
|
savePresetSettings(notif.getPreset(), notif.getDeviceSetIndex());
|
2020-10-09 02:52:30 -04:00
|
|
|
m_mainCore->m_settings.sortPresets();
|
|
|
|
m_mainCore->m_settings.save();
|
2017-12-20 17:57:06 -05:00
|
|
|
return true;
|
|
|
|
}
|
2020-10-09 02:52:30 -04:00
|
|
|
else if (MainCore::MsgDeletePreset::match(cmd))
|
2017-12-20 18:31:38 -05:00
|
|
|
{
|
2020-10-09 02:52:30 -04:00
|
|
|
MainCore::MsgDeletePreset& notif = (MainCore::MsgDeletePreset&) cmd;
|
2017-12-20 18:31:38 -05:00
|
|
|
const Preset *presetToDelete = notif.getPreset();
|
|
|
|
// remove preset from settings
|
2020-10-09 02:52:30 -04:00
|
|
|
m_mainCore->m_settings.deletePreset(presetToDelete);
|
2017-12-20 18:31:38 -05:00
|
|
|
return true;
|
|
|
|
}
|
2020-10-09 02:52:30 -04:00
|
|
|
else if (MainCore::MsgLoadFeatureSetPreset::match(cmd))
|
2020-09-23 23:38:05 -04:00
|
|
|
{
|
2020-10-09 02:52:30 -04:00
|
|
|
MainCore::MsgLoadFeatureSetPreset& notif = (MainCore::MsgLoadFeatureSetPreset&) cmd;
|
2020-09-23 23:38:05 -04:00
|
|
|
loadFeatureSetPresetSettings(notif.getPreset(), notif.getFeatureSetIndex());
|
|
|
|
return true;
|
|
|
|
}
|
2020-10-09 02:52:30 -04:00
|
|
|
else if (MainCore::MsgSaveFeatureSetPreset::match(cmd))
|
2020-09-23 23:38:05 -04:00
|
|
|
{
|
2020-10-09 02:52:30 -04:00
|
|
|
MainCore::MsgSaveFeatureSetPreset& notif = (MainCore::MsgSaveFeatureSetPreset&) cmd;
|
2020-09-23 23:38:05 -04:00
|
|
|
saveFeatureSetPresetSettings(notif.getPreset(), notif.getFeatureSetIndex());
|
2020-10-09 02:52:30 -04:00
|
|
|
m_mainCore->m_settings.sortPresets();
|
|
|
|
m_mainCore->m_settings.save();
|
2020-09-23 23:38:05 -04:00
|
|
|
return true;
|
|
|
|
}
|
2020-10-09 02:52:30 -04:00
|
|
|
else if (MainCore::MsgDeleteFeatureSetPreset::match(cmd))
|
2020-09-23 23:38:05 -04:00
|
|
|
{
|
2020-10-09 02:52:30 -04:00
|
|
|
MainCore::MsgDeleteFeatureSetPreset& notif = (MainCore::MsgDeleteFeatureSetPreset&) cmd;
|
2020-09-23 23:38:05 -04:00
|
|
|
const FeatureSetPreset *presetToDelete = notif.getPreset();
|
|
|
|
// remove preset from settings
|
2020-10-09 02:52:30 -04:00
|
|
|
m_mainCore->m_settings.deleteFeatureSetPreset(presetToDelete);
|
2020-09-23 23:38:05 -04:00
|
|
|
return true;
|
|
|
|
}
|
2020-10-09 02:52:30 -04:00
|
|
|
else if (MainCore::MsgAddDeviceSet::match(cmd))
|
2017-12-19 19:01:53 -05:00
|
|
|
{
|
2020-10-09 02:52:30 -04:00
|
|
|
MainCore::MsgAddDeviceSet& notif = (MainCore::MsgAddDeviceSet&) cmd;
|
2019-05-08 19:12:40 -04:00
|
|
|
int direction = notif.getDirection();
|
2017-12-19 19:01:53 -05:00
|
|
|
|
2019-05-08 19:12:40 -04:00
|
|
|
if (direction == 1) { // Single stream Tx
|
2017-12-19 19:01:53 -05:00
|
|
|
addSinkDevice();
|
2019-05-08 19:12:40 -04:00
|
|
|
} else if (direction == 0) { // Single stream Rx
|
2017-12-19 19:01:53 -05:00
|
|
|
addSourceDevice();
|
2019-12-14 12:45:25 -05:00
|
|
|
}
|
2017-12-19 19:01:53 -05:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
2020-10-09 02:52:30 -04:00
|
|
|
else if (MainCore::MsgRemoveLastDeviceSet::match(cmd))
|
2017-12-19 19:01:53 -05:00
|
|
|
{
|
2020-10-09 02:52:30 -04:00
|
|
|
if (m_mainCore->m_deviceSets.size() > 0) {
|
2017-12-19 19:01:53 -05:00
|
|
|
removeLastDevice();
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
2020-10-09 02:52:30 -04:00
|
|
|
else if (MainCore::MsgSetDevice::match(cmd))
|
2017-12-21 18:07:59 -05:00
|
|
|
{
|
2020-10-09 02:52:30 -04:00
|
|
|
MainCore::MsgSetDevice& notif = (MainCore::MsgSetDevice&) cmd;
|
2017-12-21 18:07:59 -05:00
|
|
|
|
2019-05-18 00:30:37 -04:00
|
|
|
if (notif.getDeviceType() == 1) {
|
2017-12-21 18:07:59 -05:00
|
|
|
changeSampleSink(notif.getDeviceSetIndex(), notif.getDeviceIndex());
|
2019-05-18 00:30:37 -04:00
|
|
|
} else if (notif.getDeviceType() == 0) {
|
2017-12-21 18:07:59 -05:00
|
|
|
changeSampleSource(notif.getDeviceSetIndex(), notif.getDeviceIndex());
|
2019-12-29 00:01:14 -05:00
|
|
|
} else if (notif.getDeviceType() == 2) {
|
|
|
|
changeSampleMIMO(notif.getDeviceSetIndex(), notif.getDeviceIndex());
|
|
|
|
}
|
2017-12-21 18:07:59 -05:00
|
|
|
return true;
|
|
|
|
}
|
2020-10-09 02:52:30 -04:00
|
|
|
else if (MainCore::MsgAddChannel::match(cmd))
|
2017-12-22 12:19:49 -05:00
|
|
|
{
|
2020-10-09 02:52:30 -04:00
|
|
|
MainCore::MsgAddChannel& notif = (MainCore::MsgAddChannel&) cmd;
|
2017-12-22 12:19:49 -05:00
|
|
|
addChannel(notif.getDeviceSetIndex(), notif.getChannelRegistrationIndex());
|
|
|
|
return true;
|
|
|
|
}
|
2020-10-09 02:52:30 -04:00
|
|
|
else if (MainCore::MsgDeleteChannel::match(cmd))
|
2017-12-23 16:33:30 -05:00
|
|
|
{
|
2020-10-09 02:52:30 -04:00
|
|
|
MainCore::MsgDeleteChannel& notif = (MainCore::MsgDeleteChannel&) cmd;
|
2017-12-23 16:33:30 -05:00
|
|
|
deleteChannel(notif.getDeviceSetIndex(), notif.getChannelIndex());
|
|
|
|
return true;
|
|
|
|
}
|
2020-10-09 02:52:30 -04:00
|
|
|
else if (MainCore::MsgAddFeature::match(cmd))
|
2020-09-20 21:13:36 -04:00
|
|
|
{
|
2020-10-09 02:52:30 -04:00
|
|
|
MainCore::MsgAddFeature& notif = (MainCore::MsgAddFeature&) cmd;
|
2020-09-20 21:13:36 -04:00
|
|
|
addFeature(notif.getFeatureSetIndex(), notif.getFeatureRegistrationIndex());
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
2020-10-09 02:52:30 -04:00
|
|
|
else if (MainCore::MsgDeleteFeature::match(cmd))
|
2020-09-20 21:13:36 -04:00
|
|
|
{
|
2020-10-09 02:52:30 -04:00
|
|
|
MainCore::MsgDeleteFeature& notif = (MainCore::MsgDeleteFeature&) cmd;
|
2020-09-20 21:13:36 -04:00
|
|
|
deleteFeature(notif.getFeatureSetIndex(), notif.getFeatureIndex());
|
|
|
|
return true;
|
|
|
|
}
|
2020-10-09 02:52:30 -04:00
|
|
|
else if (MainCore::MsgApplySettings::match(cmd))
|
2019-08-13 06:18:47 -04:00
|
|
|
{
|
|
|
|
applySettings();
|
|
|
|
return true;
|
|
|
|
}
|
2017-12-17 17:15:42 -05:00
|
|
|
else
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-10-08 16:33:08 -04:00
|
|
|
void MainServer::handleMessages()
|
2017-12-17 17:15:42 -05:00
|
|
|
{
|
|
|
|
Message* message;
|
|
|
|
|
|
|
|
while ((message = m_inputMessageQueue.pop()) != 0)
|
|
|
|
{
|
2020-10-08 16:33:08 -04:00
|
|
|
qDebug("MainServer::handleMessages: message: %s", message->getIdentifier());
|
2017-12-17 17:15:42 -05:00
|
|
|
handleMessage(*message);
|
|
|
|
delete message;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-10-08 16:33:08 -04:00
|
|
|
void MainServer::loadSettings()
|
2017-12-18 07:56:10 -05:00
|
|
|
{
|
2020-10-08 16:33:08 -04:00
|
|
|
qDebug() << "MainServer::loadSettings";
|
2017-12-18 07:56:10 -05:00
|
|
|
|
2020-10-09 02:52:30 -04:00
|
|
|
m_mainCore->m_settings.load();
|
|
|
|
m_mainCore->m_settings.sortPresets();
|
|
|
|
m_mainCore->setLoggingOptions();
|
2017-12-18 07:56:10 -05:00
|
|
|
}
|
|
|
|
|
2020-10-08 16:33:08 -04:00
|
|
|
void MainServer::applySettings()
|
2019-08-13 06:18:47 -04:00
|
|
|
{
|
2020-10-09 02:52:30 -04:00
|
|
|
m_mainCore->m_settings.sortPresets();
|
|
|
|
m_mainCore->setLoggingOptions();
|
2017-12-18 07:56:10 -05:00
|
|
|
}
|
|
|
|
|
2020-10-08 16:33:08 -04:00
|
|
|
void MainServer::addSinkDevice()
|
2017-12-19 19:01:53 -05:00
|
|
|
{
|
|
|
|
DSPDeviceSinkEngine *dspDeviceSinkEngine = m_dspEngine->addDeviceSinkEngine();
|
|
|
|
dspDeviceSinkEngine->start();
|
|
|
|
|
|
|
|
uint dspDeviceSinkEngineUID = dspDeviceSinkEngine->getUID();
|
|
|
|
char uidCStr[16];
|
|
|
|
sprintf(uidCStr, "UID:%d", dspDeviceSinkEngineUID);
|
|
|
|
|
2020-10-09 02:52:30 -04:00
|
|
|
int deviceTabIndex = m_mainCore->m_deviceSets.size();
|
|
|
|
m_mainCore->m_deviceSets.push_back(new DeviceSet(deviceTabIndex));
|
|
|
|
m_mainCore->m_deviceSets.back()->m_deviceSourceEngine = nullptr;
|
|
|
|
m_mainCore->m_deviceSets.back()->m_deviceSinkEngine = dspDeviceSinkEngine;
|
|
|
|
m_mainCore->m_deviceSets.back()->m_deviceMIMOEngine = nullptr;
|
2017-12-19 19:01:53 -05:00
|
|
|
|
|
|
|
char tabNameCStr[16];
|
|
|
|
sprintf(tabNameCStr, "T%d", deviceTabIndex);
|
|
|
|
|
2019-05-18 00:30:37 -04:00
|
|
|
DeviceAPI *deviceAPI = new DeviceAPI(DeviceAPI::StreamSingleTx, deviceTabIndex, nullptr, dspDeviceSinkEngine, nullptr);
|
2017-12-19 19:01:53 -05:00
|
|
|
|
2020-10-09 02:52:30 -04:00
|
|
|
m_mainCore->m_deviceSets.back()->m_deviceAPI = deviceAPI;
|
2017-12-19 19:01:53 -05:00
|
|
|
QList<QString> channelNames;
|
|
|
|
|
|
|
|
// create a file sink by default
|
2020-08-03 18:53:34 -04:00
|
|
|
int fileSinkDeviceIndex = DeviceEnumerator::instance()->getFileOutputDeviceIndex();
|
2019-05-08 19:12:40 -04:00
|
|
|
const PluginInterface::SamplingDevice *samplingDevice = DeviceEnumerator::instance()->getTxSamplingDevice(fileSinkDeviceIndex);
|
2020-10-09 02:52:30 -04:00
|
|
|
m_mainCore->m_deviceSets.back()->m_deviceAPI->setSamplingDeviceSequence(samplingDevice->sequence);
|
|
|
|
m_mainCore->m_deviceSets.back()->m_deviceAPI->setDeviceNbItems(samplingDevice->deviceNbItems);
|
|
|
|
m_mainCore->m_deviceSets.back()->m_deviceAPI->setDeviceItemIndex(samplingDevice->deviceItemIndex);
|
|
|
|
m_mainCore->m_deviceSets.back()->m_deviceAPI->setHardwareId(samplingDevice->hardwareId);
|
|
|
|
m_mainCore->m_deviceSets.back()->m_deviceAPI->setSamplingDeviceId(samplingDevice->id);
|
|
|
|
m_mainCore->m_deviceSets.back()->m_deviceAPI->setSamplingDeviceSerial(samplingDevice->serial);
|
|
|
|
m_mainCore->m_deviceSets.back()->m_deviceAPI->setSamplingDeviceDisplayName(samplingDevice->displayedName);
|
|
|
|
m_mainCore->m_deviceSets.back()->m_deviceAPI->setSamplingDevicePluginInterface(DeviceEnumerator::instance()->getTxPluginInterface(fileSinkDeviceIndex));
|
2017-12-19 19:01:53 -05:00
|
|
|
|
2020-10-09 02:52:30 -04:00
|
|
|
QString userArgs = m_mainCore->m_settings.getDeviceUserArgs().findUserArgs(samplingDevice->hardwareId, samplingDevice->sequence);
|
2019-06-13 19:14:27 -04:00
|
|
|
|
|
|
|
if (userArgs.size() > 0) {
|
2020-10-09 02:52:30 -04:00
|
|
|
m_mainCore->m_deviceSets.back()->m_deviceAPI->setHardwareUserArguments(userArgs);
|
2019-06-13 19:14:27 -04:00
|
|
|
}
|
2017-12-19 19:01:53 -05:00
|
|
|
|
2020-10-09 02:52:30 -04:00
|
|
|
DeviceSampleSink *sink = m_mainCore->m_deviceSets.back()->m_deviceAPI->getPluginInterface()->createSampleSinkPluginInstance(
|
|
|
|
m_mainCore->m_deviceSets.back()->m_deviceAPI->getSamplingDeviceId(), m_mainCore->m_deviceSets.back()->m_deviceAPI);
|
|
|
|
m_mainCore->m_deviceSets.back()->m_deviceAPI->setSampleSink(sink);
|
2017-12-19 19:01:53 -05:00
|
|
|
}
|
|
|
|
|
2020-10-08 16:33:08 -04:00
|
|
|
void MainServer::addSourceDevice()
|
2017-12-19 19:01:53 -05:00
|
|
|
{
|
|
|
|
DSPDeviceSourceEngine *dspDeviceSourceEngine = m_dspEngine->addDeviceSourceEngine();
|
|
|
|
dspDeviceSourceEngine->start();
|
|
|
|
|
|
|
|
uint dspDeviceSourceEngineUID = dspDeviceSourceEngine->getUID();
|
|
|
|
char uidCStr[16];
|
|
|
|
sprintf(uidCStr, "UID:%d", dspDeviceSourceEngineUID);
|
|
|
|
|
2020-10-09 02:52:30 -04:00
|
|
|
int deviceTabIndex = m_mainCore->m_deviceSets.size();
|
|
|
|
m_mainCore->m_deviceSets.push_back(new DeviceSet(deviceTabIndex));
|
|
|
|
m_mainCore->m_deviceSets.back()->m_deviceSourceEngine = dspDeviceSourceEngine;
|
|
|
|
m_mainCore->m_deviceSets.back()->m_deviceSinkEngine = nullptr;
|
|
|
|
m_mainCore->m_deviceSets.back()->m_deviceMIMOEngine = nullptr;
|
2017-12-19 19:01:53 -05:00
|
|
|
|
|
|
|
char tabNameCStr[16];
|
|
|
|
sprintf(tabNameCStr, "R%d", deviceTabIndex);
|
|
|
|
|
2019-05-18 00:30:37 -04:00
|
|
|
DeviceAPI *deviceAPI = new DeviceAPI(DeviceAPI::StreamSingleRx, deviceTabIndex, dspDeviceSourceEngine, nullptr, nullptr);
|
2017-12-19 19:01:53 -05:00
|
|
|
|
2020-10-09 02:52:30 -04:00
|
|
|
m_mainCore->m_deviceSets.back()->m_deviceAPI = deviceAPI;
|
2017-12-19 19:01:53 -05:00
|
|
|
|
|
|
|
// Create a file source instance by default
|
2019-07-07 18:59:04 -04:00
|
|
|
int fileSourceDeviceIndex = DeviceEnumerator::instance()->getFileInputDeviceIndex();
|
2019-05-08 19:12:40 -04:00
|
|
|
const PluginInterface::SamplingDevice *samplingDevice = DeviceEnumerator::instance()->getRxSamplingDevice(fileSourceDeviceIndex);
|
2020-10-09 02:52:30 -04:00
|
|
|
m_mainCore->m_deviceSets.back()->m_deviceAPI->setSamplingDeviceSequence(samplingDevice->sequence);
|
|
|
|
m_mainCore->m_deviceSets.back()->m_deviceAPI->setDeviceNbItems(samplingDevice->deviceNbItems);
|
|
|
|
m_mainCore->m_deviceSets.back()->m_deviceAPI->setDeviceItemIndex(samplingDevice->deviceItemIndex);
|
|
|
|
m_mainCore->m_deviceSets.back()->m_deviceAPI->setHardwareId(samplingDevice->hardwareId);
|
|
|
|
m_mainCore->m_deviceSets.back()->m_deviceAPI->setSamplingDeviceId(samplingDevice->id);
|
|
|
|
m_mainCore->m_deviceSets.back()->m_deviceAPI->setSamplingDeviceSerial(samplingDevice->serial);
|
|
|
|
m_mainCore->m_deviceSets.back()->m_deviceAPI->setSamplingDeviceDisplayName(samplingDevice->displayedName);
|
|
|
|
m_mainCore->m_deviceSets.back()->m_deviceAPI->setSamplingDevicePluginInterface(DeviceEnumerator::instance()->getRxPluginInterface(fileSourceDeviceIndex));
|
2019-05-08 16:11:53 -04:00
|
|
|
|
2020-10-09 02:52:30 -04:00
|
|
|
QString userArgs = m_mainCore->m_settings.getDeviceUserArgs().findUserArgs(samplingDevice->hardwareId, samplingDevice->sequence);
|
2019-06-13 19:14:27 -04:00
|
|
|
|
|
|
|
if (userArgs.size() > 0) {
|
2020-10-09 02:52:30 -04:00
|
|
|
m_mainCore->m_deviceSets.back()->m_deviceAPI->setHardwareUserArguments(userArgs);
|
2019-06-13 19:14:27 -04:00
|
|
|
}
|
|
|
|
|
2020-10-09 02:52:30 -04:00
|
|
|
DeviceSampleSource *source = m_mainCore->m_deviceSets.back()->m_deviceAPI->getPluginInterface()->createSampleSourcePluginInstance(
|
|
|
|
m_mainCore->m_deviceSets.back()->m_deviceAPI->getSamplingDeviceId(), m_mainCore->m_deviceSets.back()->m_deviceAPI);
|
|
|
|
m_mainCore->m_deviceSets.back()->m_deviceAPI->setSampleSource(source);
|
2017-12-19 19:01:53 -05:00
|
|
|
}
|
|
|
|
|
2020-10-08 16:33:08 -04:00
|
|
|
void MainServer::removeLastDevice()
|
2017-12-19 19:01:53 -05:00
|
|
|
{
|
2020-10-09 02:52:30 -04:00
|
|
|
if (m_mainCore->m_deviceSets.back()->m_deviceSourceEngine) // source set
|
2017-12-19 19:01:53 -05:00
|
|
|
{
|
2020-10-09 02:52:30 -04:00
|
|
|
DSPDeviceSourceEngine *lastDeviceEngine = m_mainCore->m_deviceSets.back()->m_deviceSourceEngine;
|
2017-12-19 19:01:53 -05:00
|
|
|
lastDeviceEngine->stopAcquistion();
|
|
|
|
|
|
|
|
// deletes old UI and input object
|
2020-10-09 02:52:30 -04:00
|
|
|
m_mainCore->m_deviceSets.back()->freeChannels(); // destroys the channel instances
|
|
|
|
m_mainCore->m_deviceSets.back()->m_deviceAPI->resetSamplingDeviceId();
|
|
|
|
m_mainCore->m_deviceSets.back()->m_deviceAPI->getPluginInterface()->deleteSampleSourcePluginInstanceInput(
|
|
|
|
m_mainCore->m_deviceSets.back()->m_deviceAPI->getSampleSource());
|
|
|
|
m_mainCore->m_deviceSets.back()->m_deviceAPI->clearBuddiesLists(); // clear old API buddies lists
|
2017-12-19 19:01:53 -05:00
|
|
|
|
2020-10-09 02:52:30 -04:00
|
|
|
DeviceAPI *sourceAPI = m_mainCore->m_deviceSets.back()->m_deviceAPI;
|
|
|
|
delete m_mainCore->m_deviceSets.back();
|
2017-12-19 19:01:53 -05:00
|
|
|
|
|
|
|
lastDeviceEngine->stop();
|
|
|
|
m_dspEngine->removeLastDeviceSourceEngine();
|
2018-02-14 18:27:29 -05:00
|
|
|
|
|
|
|
delete sourceAPI;
|
2017-12-19 19:01:53 -05:00
|
|
|
}
|
2020-10-09 02:52:30 -04:00
|
|
|
else if (m_mainCore->m_deviceSets.back()->m_deviceSinkEngine) // sink set
|
2017-12-19 19:01:53 -05:00
|
|
|
{
|
2020-10-09 02:52:30 -04:00
|
|
|
DSPDeviceSinkEngine *lastDeviceEngine = m_mainCore->m_deviceSets.back()->m_deviceSinkEngine;
|
2017-12-19 19:01:53 -05:00
|
|
|
lastDeviceEngine->stopGeneration();
|
|
|
|
|
|
|
|
// deletes old UI and output object
|
2020-10-09 02:52:30 -04:00
|
|
|
m_mainCore->m_deviceSets.back()->freeChannels();
|
|
|
|
m_mainCore->m_deviceSets.back()->m_deviceAPI->resetSamplingDeviceId();
|
|
|
|
m_mainCore->m_deviceSets.back()->m_deviceAPI->getPluginInterface()->deleteSampleSinkPluginInstanceOutput(
|
|
|
|
m_mainCore->m_deviceSets.back()->m_deviceAPI->getSampleSink());
|
|
|
|
m_mainCore->m_deviceSets.back()->m_deviceAPI->clearBuddiesLists(); // clear old API buddies lists
|
2017-12-19 19:01:53 -05:00
|
|
|
|
2020-10-09 02:52:30 -04:00
|
|
|
DeviceAPI *sinkAPI = m_mainCore->m_deviceSets.back()->m_deviceAPI;
|
|
|
|
delete m_mainCore->m_deviceSets.back();
|
2017-12-19 19:01:53 -05:00
|
|
|
|
|
|
|
lastDeviceEngine->stop();
|
|
|
|
m_dspEngine->removeLastDeviceSinkEngine();
|
2018-02-14 18:27:29 -05:00
|
|
|
|
|
|
|
delete sinkAPI;
|
2017-12-19 19:01:53 -05:00
|
|
|
}
|
|
|
|
|
2020-10-09 02:52:30 -04:00
|
|
|
m_mainCore->m_deviceSets.pop_back();
|
2017-12-19 19:01:53 -05:00
|
|
|
}
|
|
|
|
|
2020-10-08 16:33:08 -04:00
|
|
|
void MainServer::changeSampleSource(int deviceSetIndex, int selectedDeviceIndex)
|
2017-12-21 18:07:59 -05:00
|
|
|
{
|
|
|
|
if (deviceSetIndex >= 0)
|
|
|
|
{
|
2020-10-08 16:33:08 -04:00
|
|
|
qDebug("MainServer::changeSampleSource: deviceSet at %d", deviceSetIndex);
|
2020-10-09 02:52:30 -04:00
|
|
|
DeviceSet *deviceSet = m_mainCore->m_deviceSets[deviceSetIndex];
|
|
|
|
deviceSet->m_deviceAPI->saveSamplingDeviceSettings(m_mainCore->m_settings.getWorkingPreset()); // save old API settings
|
2019-05-08 16:11:53 -04:00
|
|
|
deviceSet->m_deviceAPI->stopDeviceEngine();
|
2017-12-21 18:07:59 -05:00
|
|
|
|
|
|
|
// deletes old UI and input object
|
2019-05-08 16:11:53 -04:00
|
|
|
deviceSet->m_deviceAPI->resetSamplingDeviceId();
|
|
|
|
deviceSet->m_deviceAPI->getPluginInterface()->deleteSampleSourcePluginInstanceInput(
|
|
|
|
deviceSet->m_deviceAPI->getSampleSource());
|
|
|
|
deviceSet->m_deviceAPI->clearBuddiesLists(); // clear old API buddies lists
|
2017-12-21 18:07:59 -05:00
|
|
|
|
2019-05-08 19:12:40 -04:00
|
|
|
const PluginInterface::SamplingDevice *samplingDevice = DeviceEnumerator::instance()->getRxSamplingDevice(selectedDeviceIndex);
|
|
|
|
deviceSet->m_deviceAPI->setSamplingDeviceSequence(samplingDevice->sequence);
|
2019-05-20 18:27:08 -04:00
|
|
|
deviceSet->m_deviceAPI->setDeviceNbItems(samplingDevice->deviceNbItems);
|
|
|
|
deviceSet->m_deviceAPI->setDeviceItemIndex(samplingDevice->deviceItemIndex);
|
2019-05-08 19:12:40 -04:00
|
|
|
deviceSet->m_deviceAPI->setHardwareId(samplingDevice->hardwareId);
|
|
|
|
deviceSet->m_deviceAPI->setSamplingDeviceId(samplingDevice->id);
|
|
|
|
deviceSet->m_deviceAPI->setSamplingDeviceSerial(samplingDevice->serial);
|
|
|
|
deviceSet->m_deviceAPI->setSamplingDeviceDisplayName(samplingDevice->displayedName);
|
2019-05-08 16:11:53 -04:00
|
|
|
deviceSet->m_deviceAPI->setSamplingDevicePluginInterface(DeviceEnumerator::instance()->getRxPluginInterface(selectedDeviceIndex));
|
2017-12-21 18:07:59 -05:00
|
|
|
|
2020-05-20 02:27:39 -04:00
|
|
|
if (deviceSet->m_deviceAPI->getSamplingDeviceId().size() == 0) // non existent device => replace by default
|
|
|
|
{
|
2020-10-08 16:33:08 -04:00
|
|
|
qDebug("MainServer::changeSampleSource: non existent device replaced by File Input");
|
2020-05-20 02:27:39 -04:00
|
|
|
int deviceIndex = DeviceEnumerator::instance()->getFileInputDeviceIndex();
|
|
|
|
samplingDevice = DeviceEnumerator::instance()->getRxSamplingDevice(deviceIndex);
|
|
|
|
deviceSet->m_deviceAPI->setSamplingDeviceSequence(samplingDevice->sequence);
|
|
|
|
deviceSet->m_deviceAPI->setDeviceNbItems(samplingDevice->deviceNbItems);
|
|
|
|
deviceSet->m_deviceAPI->setDeviceItemIndex(samplingDevice->deviceItemIndex);
|
|
|
|
deviceSet->m_deviceAPI->setHardwareId(samplingDevice->hardwareId);
|
|
|
|
deviceSet->m_deviceAPI->setSamplingDeviceId(samplingDevice->id);
|
|
|
|
deviceSet->m_deviceAPI->setSamplingDeviceSerial(samplingDevice->serial);
|
|
|
|
deviceSet->m_deviceAPI->setSamplingDeviceDisplayName(samplingDevice->displayedName);
|
|
|
|
deviceSet->m_deviceAPI->setSamplingDevicePluginInterface(DeviceEnumerator::instance()->getRxPluginInterface(deviceIndex));
|
|
|
|
}
|
|
|
|
|
2017-12-21 18:07:59 -05:00
|
|
|
// add to buddies list
|
2020-10-09 02:52:30 -04:00
|
|
|
std::vector<DeviceSet*>::iterator it = m_mainCore->m_deviceSets.begin();
|
2017-12-21 18:07:59 -05:00
|
|
|
int nbOfBuddies = 0;
|
|
|
|
|
2020-10-09 02:52:30 -04:00
|
|
|
for (; it != m_mainCore->m_deviceSets.end(); ++it)
|
2017-12-21 18:07:59 -05:00
|
|
|
{
|
|
|
|
if (*it != deviceSet) // do not add to itself
|
|
|
|
{
|
|
|
|
if ((*it)->m_deviceSourceEngine) // it is a source device
|
|
|
|
{
|
2019-05-08 16:11:53 -04:00
|
|
|
if ((deviceSet->m_deviceAPI->getHardwareId() == (*it)->m_deviceAPI->getHardwareId()) &&
|
|
|
|
(deviceSet->m_deviceAPI->getSamplingDeviceSerial() == (*it)->m_deviceAPI->getSamplingDeviceSerial()))
|
2017-12-21 18:07:59 -05:00
|
|
|
{
|
2019-05-08 16:11:53 -04:00
|
|
|
(*it)->m_deviceAPI->addSourceBuddy(deviceSet->m_deviceAPI);
|
2017-12-21 18:07:59 -05:00
|
|
|
nbOfBuddies++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((*it)->m_deviceSinkEngine) // it is a sink device
|
|
|
|
{
|
2019-05-08 16:11:53 -04:00
|
|
|
if ((deviceSet->m_deviceAPI->getHardwareId() == (*it)->m_deviceAPI->getHardwareId()) &&
|
|
|
|
(deviceSet->m_deviceAPI->getSamplingDeviceSerial() == (*it)->m_deviceAPI->getSamplingDeviceSerial()))
|
2017-12-21 18:07:59 -05:00
|
|
|
{
|
2019-05-08 16:11:53 -04:00
|
|
|
(*it)->m_deviceAPI->addSourceBuddy(deviceSet->m_deviceAPI);
|
2017-12-21 18:07:59 -05:00
|
|
|
nbOfBuddies++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (nbOfBuddies == 0) {
|
2019-05-08 16:11:53 -04:00
|
|
|
deviceSet->m_deviceAPI->setBuddyLeader(true);
|
2017-12-21 18:07:59 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// constructs new GUI and input object
|
2019-05-19 04:28:50 -04:00
|
|
|
DeviceSampleSource *source = deviceSet->m_deviceAPI->getPluginInterface()->createSampleSourcePluginInstance(
|
2019-05-08 16:11:53 -04:00
|
|
|
deviceSet->m_deviceAPI->getSamplingDeviceId(), deviceSet->m_deviceAPI);
|
|
|
|
deviceSet->m_deviceAPI->setSampleSource(source);
|
2017-12-28 11:22:18 -05:00
|
|
|
|
2020-10-09 02:52:30 -04:00
|
|
|
deviceSet->m_deviceAPI->loadSamplingDeviceSettings(m_mainCore->m_settings.getWorkingPreset()); // load new API settings
|
2017-12-21 18:07:59 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-10-08 16:33:08 -04:00
|
|
|
void MainServer::changeSampleSink(int deviceSetIndex, int selectedDeviceIndex)
|
2017-12-21 18:07:59 -05:00
|
|
|
{
|
|
|
|
if (deviceSetIndex >= 0)
|
|
|
|
{
|
2020-10-08 16:33:08 -04:00
|
|
|
qDebug("MainServer::changeSampleSink: device set at %d", deviceSetIndex);
|
2020-10-09 02:52:30 -04:00
|
|
|
DeviceSet *deviceSet = m_mainCore->m_deviceSets[deviceSetIndex];
|
|
|
|
deviceSet->m_deviceAPI->saveSamplingDeviceSettings(m_mainCore->m_settings.getWorkingPreset()); // save old API settings
|
2019-05-08 16:11:53 -04:00
|
|
|
deviceSet->m_deviceAPI->stopDeviceEngine();
|
2017-12-21 18:07:59 -05:00
|
|
|
|
|
|
|
// deletes old UI and output object
|
2019-05-08 16:11:53 -04:00
|
|
|
deviceSet->m_deviceAPI->resetSamplingDeviceId();
|
|
|
|
deviceSet->m_deviceAPI->getPluginInterface()->deleteSampleSinkPluginInstanceOutput(
|
|
|
|
deviceSet->m_deviceAPI->getSampleSink());
|
|
|
|
deviceSet->m_deviceAPI->clearBuddiesLists(); // clear old API buddies lists
|
2017-12-21 18:07:59 -05:00
|
|
|
|
2019-05-08 19:12:40 -04:00
|
|
|
const PluginInterface::SamplingDevice *samplingDevice = DeviceEnumerator::instance()->getTxSamplingDevice(selectedDeviceIndex);
|
|
|
|
deviceSet->m_deviceAPI->setSamplingDeviceSequence(samplingDevice->sequence);
|
2019-05-20 18:27:08 -04:00
|
|
|
deviceSet->m_deviceAPI->setDeviceNbItems(samplingDevice->deviceNbItems);
|
|
|
|
deviceSet->m_deviceAPI->setDeviceItemIndex(samplingDevice->deviceItemIndex);
|
2019-05-08 19:12:40 -04:00
|
|
|
deviceSet->m_deviceAPI->setHardwareId(samplingDevice->hardwareId);
|
|
|
|
deviceSet->m_deviceAPI->setSamplingDeviceId(samplingDevice->id);
|
|
|
|
deviceSet->m_deviceAPI->setSamplingDeviceSerial(samplingDevice->serial);
|
|
|
|
deviceSet->m_deviceAPI->setSamplingDeviceDisplayName(samplingDevice->displayedName);
|
2019-05-08 16:11:53 -04:00
|
|
|
deviceSet->m_deviceAPI->setSamplingDevicePluginInterface(DeviceEnumerator::instance()->getTxPluginInterface(selectedDeviceIndex));
|
2017-12-21 18:07:59 -05:00
|
|
|
|
2020-05-20 02:27:39 -04:00
|
|
|
if (deviceSet->m_deviceAPI->getSamplingDeviceId().size() == 0) // non existent device => replace by default
|
|
|
|
{
|
2020-10-08 16:33:08 -04:00
|
|
|
qDebug("MainServer::changeSampleSink: non existent device replaced by File Sink");
|
2020-08-03 18:53:34 -04:00
|
|
|
int fileSinkDeviceIndex = DeviceEnumerator::instance()->getFileOutputDeviceIndex();
|
2020-05-20 02:27:39 -04:00
|
|
|
const PluginInterface::SamplingDevice *samplingDevice = DeviceEnumerator::instance()->getTxSamplingDevice(fileSinkDeviceIndex);
|
|
|
|
deviceSet->m_deviceAPI->setSamplingDeviceSequence(samplingDevice->sequence);
|
|
|
|
deviceSet->m_deviceAPI->setDeviceNbItems(samplingDevice->deviceNbItems);
|
|
|
|
deviceSet->m_deviceAPI->setDeviceItemIndex(samplingDevice->deviceItemIndex);
|
|
|
|
deviceSet->m_deviceAPI->setHardwareId(samplingDevice->hardwareId);
|
|
|
|
deviceSet->m_deviceAPI->setSamplingDeviceId(samplingDevice->id);
|
|
|
|
deviceSet->m_deviceAPI->setSamplingDeviceSerial(samplingDevice->serial);
|
|
|
|
deviceSet->m_deviceAPI->setSamplingDeviceDisplayName(samplingDevice->displayedName);
|
|
|
|
deviceSet->m_deviceAPI->setSamplingDevicePluginInterface(DeviceEnumerator::instance()->getTxPluginInterface(fileSinkDeviceIndex));
|
|
|
|
}
|
|
|
|
|
2017-12-21 18:07:59 -05:00
|
|
|
// add to buddies list
|
2020-10-09 02:52:30 -04:00
|
|
|
std::vector<DeviceSet*>::iterator it = m_mainCore->m_deviceSets.begin();
|
2017-12-21 18:07:59 -05:00
|
|
|
int nbOfBuddies = 0;
|
|
|
|
|
2020-10-09 02:52:30 -04:00
|
|
|
for (; it != m_mainCore->m_deviceSets.end(); ++it)
|
2017-12-21 18:07:59 -05:00
|
|
|
{
|
|
|
|
if (*it != deviceSet) // do not add to itself
|
|
|
|
{
|
|
|
|
if ((*it)->m_deviceSourceEngine) // it is a source device
|
|
|
|
{
|
2019-05-08 16:11:53 -04:00
|
|
|
if ((deviceSet->m_deviceAPI->getHardwareId() == (*it)->m_deviceAPI->getHardwareId()) &&
|
|
|
|
(deviceSet->m_deviceAPI->getSamplingDeviceSerial() == (*it)->m_deviceAPI->getSamplingDeviceSerial()))
|
2017-12-21 18:07:59 -05:00
|
|
|
{
|
2019-05-08 16:11:53 -04:00
|
|
|
(*it)->m_deviceAPI->addSinkBuddy(deviceSet->m_deviceAPI);
|
2017-12-21 18:07:59 -05:00
|
|
|
nbOfBuddies++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((*it)->m_deviceSinkEngine) // it is a sink device
|
|
|
|
{
|
2019-05-08 16:11:53 -04:00
|
|
|
if ((deviceSet->m_deviceAPI->getHardwareId() == (*it)->m_deviceAPI->getHardwareId()) &&
|
|
|
|
(deviceSet->m_deviceAPI->getSamplingDeviceSerial() == (*it)->m_deviceAPI->getSamplingDeviceSerial()))
|
2017-12-21 18:07:59 -05:00
|
|
|
{
|
2019-05-08 16:11:53 -04:00
|
|
|
(*it)->m_deviceAPI->addSinkBuddy(deviceSet->m_deviceAPI);
|
2017-12-21 18:07:59 -05:00
|
|
|
nbOfBuddies++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (nbOfBuddies == 0) {
|
2019-05-08 16:11:53 -04:00
|
|
|
deviceSet->m_deviceAPI->setBuddyLeader(true);
|
2017-12-21 18:07:59 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// constructs new GUI and output object
|
2019-05-19 04:28:50 -04:00
|
|
|
DeviceSampleSink *sink = deviceSet->m_deviceAPI->getPluginInterface()->createSampleSinkPluginInstance(
|
2019-05-08 16:11:53 -04:00
|
|
|
deviceSet->m_deviceAPI->getSamplingDeviceId(), deviceSet->m_deviceAPI);
|
|
|
|
deviceSet->m_deviceAPI->setSampleSink(sink);
|
2017-12-28 11:22:18 -05:00
|
|
|
|
2020-10-09 02:52:30 -04:00
|
|
|
deviceSet->m_deviceAPI->loadSamplingDeviceSettings(m_mainCore->m_settings.getWorkingPreset()); // load new API settings
|
2017-12-21 18:07:59 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-10-08 16:33:08 -04:00
|
|
|
void MainServer::changeSampleMIMO(int deviceSetIndex, int selectedDeviceIndex)
|
2019-12-29 00:01:14 -05:00
|
|
|
{
|
|
|
|
if (deviceSetIndex >= 0)
|
|
|
|
{
|
2020-10-08 16:33:08 -04:00
|
|
|
qDebug("MainServer::changeSampleMIMO: device set at %d", deviceSetIndex);
|
2020-10-09 02:52:30 -04:00
|
|
|
DeviceSet *deviceSet = m_mainCore->m_deviceSets[deviceSetIndex];
|
|
|
|
deviceSet->m_deviceAPI->saveSamplingDeviceSettings(m_mainCore->m_settings.getWorkingPreset()); // save old API settings
|
2019-12-29 00:01:14 -05:00
|
|
|
deviceSet->m_deviceAPI->stopDeviceEngine();
|
|
|
|
|
|
|
|
// deletes old UI and output object
|
|
|
|
deviceSet->m_deviceAPI->resetSamplingDeviceId();
|
|
|
|
deviceSet->m_deviceAPI->getPluginInterface()->deleteSampleMIMOPluginInstanceMIMO(
|
|
|
|
deviceSet->m_deviceAPI->getSampleMIMO());
|
|
|
|
|
|
|
|
const PluginInterface::SamplingDevice *samplingDevice = DeviceEnumerator::instance()->getMIMOSamplingDevice(selectedDeviceIndex);
|
|
|
|
deviceSet->m_deviceAPI->setSamplingDeviceSequence(samplingDevice->sequence);
|
|
|
|
deviceSet->m_deviceAPI->setDeviceNbItems(samplingDevice->deviceNbItems);
|
|
|
|
deviceSet->m_deviceAPI->setDeviceItemIndex(samplingDevice->deviceItemIndex);
|
|
|
|
deviceSet->m_deviceAPI->setHardwareId(samplingDevice->hardwareId);
|
|
|
|
deviceSet->m_deviceAPI->setSamplingDeviceId(samplingDevice->id);
|
|
|
|
deviceSet->m_deviceAPI->setSamplingDeviceSerial(samplingDevice->serial);
|
|
|
|
deviceSet->m_deviceAPI->setSamplingDeviceDisplayName(samplingDevice->displayedName);
|
|
|
|
deviceSet->m_deviceAPI->setSamplingDevicePluginInterface(DeviceEnumerator::instance()->getMIMOPluginInterface(selectedDeviceIndex));
|
|
|
|
|
2020-10-09 02:52:30 -04:00
|
|
|
QString userArgs = m_mainCore->m_settings.getDeviceUserArgs().findUserArgs(samplingDevice->hardwareId, samplingDevice->sequence);
|
2019-12-29 00:01:14 -05:00
|
|
|
|
|
|
|
if (userArgs.size() > 0) {
|
|
|
|
deviceSet->m_deviceAPI->setHardwareUserArguments(userArgs);
|
|
|
|
}
|
|
|
|
|
|
|
|
// constructs new GUI and MIMO object
|
|
|
|
DeviceSampleMIMO *mimo = deviceSet->m_deviceAPI->getPluginInterface()->createSampleMIMOPluginInstance(
|
|
|
|
deviceSet->m_deviceAPI->getSamplingDeviceId(), deviceSet->m_deviceAPI);
|
|
|
|
deviceSet->m_deviceAPI->setSampleMIMO(mimo);
|
|
|
|
|
2020-10-09 02:52:30 -04:00
|
|
|
deviceSet->m_deviceAPI->loadSamplingDeviceSettings(m_mainCore->m_settings.getWorkingPreset()); // load new API settings
|
2019-12-29 00:01:14 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-10-08 16:33:08 -04:00
|
|
|
void MainServer::addChannel(int deviceSetIndex, int selectedChannelIndex)
|
2017-12-22 12:19:49 -05:00
|
|
|
{
|
|
|
|
if (deviceSetIndex >= 0)
|
|
|
|
{
|
2020-10-09 02:52:30 -04:00
|
|
|
DeviceSet *deviceSet = m_mainCore->m_deviceSets[deviceSetIndex];
|
2017-12-22 12:19:49 -05:00
|
|
|
|
|
|
|
if (deviceSet->m_deviceSourceEngine) // source device => Rx channels
|
|
|
|
{
|
2020-10-09 02:52:30 -04:00
|
|
|
deviceSet->addRxChannel(selectedChannelIndex, m_mainCore->m_pluginManager->getPluginAPI());
|
2017-12-22 12:19:49 -05:00
|
|
|
}
|
|
|
|
else if (deviceSet->m_deviceSinkEngine) // sink device => Tx channels
|
|
|
|
{
|
2020-10-09 02:52:30 -04:00
|
|
|
deviceSet->addTxChannel(selectedChannelIndex, m_mainCore->m_pluginManager->getPluginAPI());
|
2017-12-22 12:19:49 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-10-08 16:33:08 -04:00
|
|
|
void MainServer::deleteChannel(int deviceSetIndex, int channelIndex)
|
2017-12-23 16:33:30 -05:00
|
|
|
{
|
|
|
|
if (deviceSetIndex >= 0)
|
|
|
|
{
|
2020-10-09 02:52:30 -04:00
|
|
|
DeviceSet *deviceSet = m_mainCore->m_deviceSets[deviceSetIndex];
|
2019-09-07 18:44:56 -04:00
|
|
|
deviceSet->deleteChannel(channelIndex);
|
2017-12-23 16:33:30 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-10-08 16:33:08 -04:00
|
|
|
void MainServer::addFeature(int featureSetIndex, int featureIndex)
|
2020-09-20 21:13:36 -04:00
|
|
|
{
|
|
|
|
if (featureSetIndex >= 0)
|
|
|
|
{
|
2020-10-09 02:52:30 -04:00
|
|
|
FeatureSet *featureSet = m_mainCore->m_featureSets[featureSetIndex];
|
|
|
|
featureSet->addFeature(featureSetIndex, m_mainCore->m_pluginManager->getPluginAPI(), m_apiAdapter);
|
2020-09-20 21:13:36 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-10-08 16:33:08 -04:00
|
|
|
void MainServer::deleteFeature(int featureSetIndex, int featureIndex)
|
2020-09-20 21:13:36 -04:00
|
|
|
{
|
2020-10-09 02:52:30 -04:00
|
|
|
if ((featureSetIndex >= 0) && (featureSetIndex < (int) m_mainCore->m_featureSets.size()))
|
2020-09-20 21:13:36 -04:00
|
|
|
{
|
2020-10-09 02:52:30 -04:00
|
|
|
FeatureSet *featureSet = m_mainCore->m_featureSets[featureSetIndex];
|
2020-09-20 21:13:36 -04:00
|
|
|
featureSet->deleteFeature(featureIndex);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-10-08 16:33:08 -04:00
|
|
|
void MainServer::loadPresetSettings(const Preset* preset, int tabIndex)
|
2017-12-20 08:31:17 -05:00
|
|
|
{
|
2020-10-08 16:33:08 -04:00
|
|
|
qDebug("MainServer::loadPresetSettings: preset [%s | %s]",
|
2017-12-20 08:31:17 -05:00
|
|
|
qPrintable(preset->getGroup()),
|
|
|
|
qPrintable(preset->getDescription()));
|
|
|
|
|
|
|
|
if (tabIndex >= 0)
|
|
|
|
{
|
2020-10-09 02:52:30 -04:00
|
|
|
DeviceSet *deviceSet = m_mainCore->m_deviceSets[tabIndex];
|
2019-09-13 07:40:31 -04:00
|
|
|
deviceSet->m_deviceAPI->loadSamplingDeviceSettings(preset);
|
2017-12-20 08:31:17 -05:00
|
|
|
|
2019-09-13 07:40:31 -04:00
|
|
|
if (deviceSet->m_deviceSourceEngine) { // source device
|
2020-10-09 02:52:30 -04:00
|
|
|
deviceSet->loadRxChannelSettings(preset, m_mainCore->m_pluginManager->getPluginAPI());
|
2019-09-13 07:40:31 -04:00
|
|
|
} else if (deviceSet->m_deviceSinkEngine) { // sink device
|
2020-10-09 02:52:30 -04:00
|
|
|
deviceSet->loadTxChannelSettings(preset, m_mainCore->m_pluginManager->getPluginAPI());
|
2019-09-13 07:40:31 -04:00
|
|
|
} else if (deviceSet->m_deviceMIMOEngine) { // MIMO device
|
2020-10-09 02:52:30 -04:00
|
|
|
deviceSet->loadMIMOChannelSettings(preset, m_mainCore->m_pluginManager->getPluginAPI());
|
2017-12-20 08:31:17 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-10-08 16:33:08 -04:00
|
|
|
void MainServer::savePresetSettings(Preset* preset, int tabIndex)
|
2017-12-19 19:01:53 -05:00
|
|
|
{
|
2020-10-08 16:33:08 -04:00
|
|
|
qDebug("MainServer::savePresetSettings: preset [%s | %s]",
|
2017-12-19 19:01:53 -05:00
|
|
|
qPrintable(preset->getGroup()),
|
|
|
|
qPrintable(preset->getDescription()));
|
|
|
|
|
|
|
|
// Save from currently selected source tab
|
|
|
|
//int currentSourceTabIndex = ui->tabInputsView->currentIndex();
|
2020-10-09 02:52:30 -04:00
|
|
|
DeviceSet *deviceSet = m_mainCore->m_deviceSets[tabIndex];
|
2017-12-19 19:01:53 -05:00
|
|
|
|
|
|
|
if (deviceSet->m_deviceSourceEngine) // source device
|
|
|
|
{
|
|
|
|
preset->clearChannels();
|
2019-09-13 07:40:31 -04:00
|
|
|
preset->setSourcePreset();
|
2017-12-19 19:01:53 -05:00
|
|
|
deviceSet->saveRxChannelSettings(preset);
|
2019-05-08 16:11:53 -04:00
|
|
|
deviceSet->m_deviceAPI->saveSamplingDeviceSettings(preset);
|
2017-12-19 19:01:53 -05:00
|
|
|
}
|
|
|
|
else if (deviceSet->m_deviceSinkEngine) // sink device
|
|
|
|
{
|
|
|
|
preset->clearChannels();
|
2019-09-13 07:40:31 -04:00
|
|
|
preset->setSinkPreset();
|
2017-12-19 19:01:53 -05:00
|
|
|
deviceSet->saveTxChannelSettings(preset);
|
2019-05-08 16:11:53 -04:00
|
|
|
deviceSet->m_deviceAPI->saveSamplingDeviceSettings(preset);
|
2017-12-19 19:01:53 -05:00
|
|
|
}
|
2019-09-13 07:40:31 -04:00
|
|
|
else if (deviceSet->m_deviceMIMOEngine) // MIMO device
|
|
|
|
{
|
|
|
|
preset->clearChannels();
|
|
|
|
preset->setMIMOPreset();
|
|
|
|
deviceSet->saveMIMOChannelSettings(preset);
|
|
|
|
deviceSet->m_deviceAPI->saveSamplingDeviceSettings(preset);
|
|
|
|
}
|
2017-12-19 19:01:53 -05:00
|
|
|
}
|
|
|
|
|
2020-10-08 16:33:08 -04:00
|
|
|
void MainServer::loadFeatureSetPresetSettings(const FeatureSetPreset* preset, int featureSetIndex)
|
2020-09-23 23:38:05 -04:00
|
|
|
{
|
2020-10-08 16:33:08 -04:00
|
|
|
qDebug("MainServer::loadFeatureSetPresetSettings: preset [%s | %s]",
|
2020-09-23 23:38:05 -04:00
|
|
|
qPrintable(preset->getGroup()),
|
|
|
|
qPrintable(preset->getDescription()));
|
|
|
|
|
|
|
|
if (featureSetIndex >= 0)
|
|
|
|
{
|
2020-10-09 02:52:30 -04:00
|
|
|
FeatureSet *featureSet = m_mainCore->m_featureSets[featureSetIndex];
|
|
|
|
featureSet->loadFeatureSetSettings(preset, m_mainCore->m_pluginManager->getPluginAPI(), m_apiAdapter);
|
2020-09-23 23:38:05 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-10-08 16:33:08 -04:00
|
|
|
void MainServer::saveFeatureSetPresetSettings(FeatureSetPreset* preset, int featureSetIndex)
|
2020-09-23 23:38:05 -04:00
|
|
|
{
|
2020-10-08 16:33:08 -04:00
|
|
|
qDebug("MainServer::saveFeatureSetPresetSettings: preset [%s | %s]",
|
2020-09-23 23:38:05 -04:00
|
|
|
qPrintable(preset->getGroup()),
|
|
|
|
qPrintable(preset->getDescription()));
|
|
|
|
|
|
|
|
// Save from currently selected source tab
|
|
|
|
//int currentSourceTabIndex = ui->tabInputsView->currentIndex();
|
2020-10-09 02:52:30 -04:00
|
|
|
FeatureSet *featureSet = m_mainCore->m_featureSets[featureSetIndex];
|
2020-09-23 23:38:05 -04:00
|
|
|
|
|
|
|
preset->clearFeatures();
|
|
|
|
featureSet->saveFeatureSetSettings(preset);
|
|
|
|
}
|