2017-11-18 18:34:47 +00: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 12:32:15 +00:00
|
|
|
// (at your option) any later version. //
|
2017-11-18 18:34:47 +00:00
|
|
|
// //
|
|
|
|
// This program is distributed in the hope that it will be useful, //
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of //
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the //
|
|
|
|
// GNU General Public License V3 for more details. //
|
|
|
|
// //
|
|
|
|
// You should have received a copy of the GNU General Public License //
|
|
|
|
// along with this program. If not, see <http://www.gnu.org/licenses/>. //
|
|
|
|
///////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#include "webapiadapterinterface.h"
|
|
|
|
|
|
|
|
QString WebAPIAdapterInterface::instanceSummaryURL = "/sdrangel";
|
2019-08-01 00:16:56 +00:00
|
|
|
QString WebAPIAdapterInterface::instanceConfigURL = "/sdrangel/config";
|
2017-11-22 17:57:35 +00:00
|
|
|
QString WebAPIAdapterInterface::instanceDevicesURL = "/sdrangel/devices";
|
2017-11-23 00:19:32 +00:00
|
|
|
QString WebAPIAdapterInterface::instanceChannelsURL = "/sdrangel/channels";
|
2017-11-23 17:43:01 +00:00
|
|
|
QString WebAPIAdapterInterface::instanceLoggingURL = "/sdrangel/logging";
|
2017-11-24 07:46:12 +00:00
|
|
|
QString WebAPIAdapterInterface::instanceAudioURL = "/sdrangel/audio";
|
2018-03-28 23:43:31 +00:00
|
|
|
QString WebAPIAdapterInterface::instanceAudioInputParametersURL = "/sdrangel/audio/input/parameters";
|
|
|
|
QString WebAPIAdapterInterface::instanceAudioOutputParametersURL = "/sdrangel/audio/output/parameters";
|
|
|
|
QString WebAPIAdapterInterface::instanceAudioInputCleanupURL = "/sdrangel/audio/input/cleanup";
|
|
|
|
QString WebAPIAdapterInterface::instanceAudioOutputCleanupURL = "/sdrangel/audio/output/cleanup";
|
2017-11-25 03:02:11 +00:00
|
|
|
QString WebAPIAdapterInterface::instanceLocationURL = "/sdrangel/location";
|
2019-07-20 23:57:51 +00:00
|
|
|
QString WebAPIAdapterInterface::instanceAMBESerialURL = "/sdrangel/ambe/serial";
|
|
|
|
QString WebAPIAdapterInterface::instanceAMBEDevicesURL = "/sdrangel/ambe/devices";
|
2017-12-20 23:50:58 +00:00
|
|
|
QString WebAPIAdapterInterface::instancePresetsURL = "/sdrangel/presets";
|
2017-11-25 10:14:52 +00:00
|
|
|
QString WebAPIAdapterInterface::instancePresetURL = "/sdrangel/preset";
|
2017-12-19 00:11:34 +00:00
|
|
|
QString WebAPIAdapterInterface::instancePresetFileURL = "/sdrangel/preset/file";
|
2017-11-25 19:14:16 +00:00
|
|
|
QString WebAPIAdapterInterface::instanceDeviceSetsURL = "/sdrangel/devicesets";
|
2017-12-22 00:07:03 +00:00
|
|
|
QString WebAPIAdapterInterface::instanceDeviceSetURL = "/sdrangel/deviceset";
|
2017-11-25 23:26:56 +00:00
|
|
|
|
2017-11-26 09:37:39 +00:00
|
|
|
std::regex WebAPIAdapterInterface::devicesetURLRe("^/sdrangel/deviceset/([0-9]{1,2})$");
|
2018-01-06 02:46:53 +00:00
|
|
|
std::regex WebAPIAdapterInterface::devicesetFocusURLRe("^/sdrangel/deviceset/([0-9]{1,2})/focus$");
|
2017-11-26 09:37:39 +00:00
|
|
|
std::regex WebAPIAdapterInterface::devicesetDeviceURLRe("^/sdrangel/deviceset/([0-9]{1,2})/device$");
|
2017-12-06 21:08:34 +00:00
|
|
|
std::regex WebAPIAdapterInterface::devicesetDeviceSettingsURLRe("^/sdrangel/deviceset/([0-9]{1,2})/device/settings$");
|
2017-12-06 22:49:14 +00:00
|
|
|
std::regex WebAPIAdapterInterface::devicesetDeviceRunURLRe("^/sdrangel/deviceset/([0-9]{1,2})/device/run");
|
2018-05-25 23:43:28 +00:00
|
|
|
std::regex WebAPIAdapterInterface::devicesetDeviceReportURLRe("^/sdrangel/deviceset/([0-9]{1,2})/device/report$");
|
2018-03-18 23:08:38 +00:00
|
|
|
std::regex WebAPIAdapterInterface::devicesetChannelsReportURLRe("^/sdrangel/deviceset/([0-9]{1,2})/channels/report$");
|
2017-12-11 00:18:10 +00:00
|
|
|
std::regex WebAPIAdapterInterface::devicesetChannelURLRe("^/sdrangel/deviceset/([0-9]{1,2})/channel$");
|
|
|
|
std::regex WebAPIAdapterInterface::devicesetChannelIndexURLRe("^/sdrangel/deviceset/([0-9]{1,2})/channel/([0-9]{1,2})$");
|
2017-12-10 19:27:08 +00:00
|
|
|
std::regex WebAPIAdapterInterface::devicesetChannelSettingsURLRe("^/sdrangel/deviceset/([0-9]{1,2})/channel/([0-9]{1,2})/settings$");
|
2018-03-18 19:17:11 +00:00
|
|
|
std::regex WebAPIAdapterInterface::devicesetChannelReportURLRe("^/sdrangel/deviceset/([0-9]{1,2})/channel/([0-9]{1,2})/report");
|
2019-08-08 16:42:17 +00:00
|
|
|
|
2019-08-09 16:45:10 +00:00
|
|
|
void WebAPIAdapterInterface::ConfigKeys::debug() const
|
2019-08-08 16:42:17 +00:00
|
|
|
{
|
|
|
|
qDebug("WebAPIAdapterInterface::ConfigKeys::debug");
|
|
|
|
|
|
|
|
qDebug("preferences:");
|
|
|
|
foreach(QString preferenceKey, m_preferencesKeys) {
|
|
|
|
qDebug(" %s", qPrintable(preferenceKey));
|
|
|
|
}
|
|
|
|
|
|
|
|
qDebug("commands:");
|
|
|
|
foreach(CommandKeys commandKeys, m_commandKeys)
|
|
|
|
{
|
|
|
|
qDebug(" {");
|
|
|
|
foreach(QString commandKey, commandKeys.m_keys) {
|
|
|
|
qDebug(" %s", qPrintable(commandKey));
|
|
|
|
}
|
|
|
|
qDebug(" }");
|
|
|
|
}
|
|
|
|
|
|
|
|
qDebug("presets:");
|
|
|
|
foreach(PresetKeys presetKeys, m_presetKeys)
|
|
|
|
{
|
|
|
|
qDebug(" {");
|
|
|
|
foreach(QString presetKey, presetKeys.m_keys) {
|
|
|
|
qDebug(" %s", qPrintable(presetKey));
|
|
|
|
}
|
2019-08-10 23:27:19 +00:00
|
|
|
qDebug(" spectrumConfig:");
|
|
|
|
foreach(QString spectrumKey, presetKeys.m_spectrumKeys) {
|
|
|
|
qDebug(" %s", qPrintable(spectrumKey));
|
|
|
|
}
|
2019-08-08 16:42:17 +00:00
|
|
|
qDebug(" deviceConfigs:");
|
|
|
|
foreach(DeviceKeys deviceKeys, presetKeys.m_devicesKeys)
|
|
|
|
{
|
|
|
|
qDebug(" {");
|
|
|
|
qDebug(" config:");
|
|
|
|
foreach(QString deviceKey, deviceKeys.m_deviceKeys) {
|
|
|
|
qDebug(" %s", qPrintable(deviceKey));
|
|
|
|
}
|
|
|
|
qDebug(" }");
|
|
|
|
}
|
|
|
|
qDebug(" channelConfigs");
|
|
|
|
foreach(ChannelKeys channelKeys, presetKeys.m_channelsKeys)
|
|
|
|
{
|
|
|
|
qDebug(" {");
|
|
|
|
qDebug(" config:");
|
|
|
|
foreach(QString channelKey, channelKeys.m_channelKeys) {
|
|
|
|
qDebug(" %s", qPrintable(channelKey));
|
|
|
|
}
|
|
|
|
qDebug(" }");
|
|
|
|
}
|
|
|
|
qDebug(" }");
|
|
|
|
}
|
|
|
|
|
|
|
|
qDebug("workingPreset:");
|
|
|
|
foreach(QString presetKey, m_workingPresetKeys.m_keys) {
|
|
|
|
qDebug(" %s", qPrintable(presetKey));
|
|
|
|
}
|
2019-08-10 23:27:19 +00:00
|
|
|
qDebug(" spectrumConfig:");
|
|
|
|
foreach(QString spectrumKey, m_workingPresetKeys.m_spectrumKeys) {
|
|
|
|
qDebug(" %s", qPrintable(spectrumKey));
|
|
|
|
}
|
2019-08-08 16:42:17 +00:00
|
|
|
qDebug(" deviceConfigs:");
|
|
|
|
foreach(DeviceKeys deviceKeys, m_workingPresetKeys.m_devicesKeys)
|
|
|
|
{
|
|
|
|
qDebug(" {");
|
|
|
|
qDebug(" config:");
|
|
|
|
foreach(QString deviceKey, deviceKeys.m_deviceKeys) {
|
|
|
|
qDebug(" %s", qPrintable(deviceKey));
|
|
|
|
}
|
|
|
|
qDebug(" }");
|
|
|
|
}
|
|
|
|
qDebug(" channelConfigs:");
|
|
|
|
foreach(ChannelKeys channelKeys, m_workingPresetKeys.m_channelsKeys)
|
|
|
|
{
|
|
|
|
qDebug(" {");
|
|
|
|
qDebug(" config:");
|
|
|
|
foreach(QString channelKey, channelKeys.m_channelKeys) {
|
|
|
|
qDebug(" %s", qPrintable(channelKey));
|
|
|
|
}
|
|
|
|
qDebug(" }");
|
|
|
|
}
|
|
|
|
}
|