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