mirror of
https://github.com/f4exb/sdrangel.git
synced 2024-11-05 08:21:16 -05:00
266 lines
9.4 KiB
C++
266 lines
9.4 KiB
C++
///////////////////////////////////////////////////////////////////////////////////
|
|
// Copyright (C) 2021-2023 Jon Beniston, M7RCE <jon@beniston.com> //
|
|
// //
|
|
// This program is free software; you can redistribute it and/or modify //
|
|
// it under the terms of the GNU General Public License as published by //
|
|
// the Free Software Foundation as version 3 of the License, or //
|
|
// (at your option) any later version. //
|
|
// //
|
|
// This program is distributed in the hope that it will be useful, //
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of //
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the //
|
|
// GNU General Public License V3 for more details. //
|
|
// //
|
|
// You should have received a copy of the GNU General Public License //
|
|
// along with this program. If not, see <http://www.gnu.org/licenses/>. //
|
|
///////////////////////////////////////////////////////////////////////////////////
|
|
|
|
#include <QDebug>
|
|
|
|
#include "SWGFeatureActions.h"
|
|
#include "SWGMapActions.h"
|
|
#include "SWGPERTesterActions.h"
|
|
|
|
#include "maincore.h"
|
|
#include "feature/featureset.h"
|
|
#include "feature/feature.h"
|
|
#include "featurewebapiutils.h"
|
|
|
|
// Find the specified target on the map
|
|
bool FeatureWebAPIUtils::mapFind(const QString& target, int featureSetIndex, int featureIndex)
|
|
{
|
|
Feature *feature = FeatureWebAPIUtils::getFeature(featureSetIndex, featureIndex, "sdrangel.feature.map");
|
|
if (feature != nullptr)
|
|
{
|
|
QString errorMessage;
|
|
QStringList featureActionKeys = {"find"};
|
|
SWGSDRangel::SWGFeatureActions query;
|
|
SWGSDRangel::SWGMapActions *mapActions = new SWGSDRangel::SWGMapActions();
|
|
|
|
mapActions->setFind(new QString(target));
|
|
query.setMapActions(mapActions);
|
|
|
|
int httpRC = feature->webapiActionsPost(featureActionKeys, query, errorMessage);
|
|
if (httpRC/100 != 2)
|
|
{
|
|
qWarning() << "FeatureWebAPIUtils::mapFind: error " << httpRC << ":" << errorMessage;
|
|
return false;
|
|
}
|
|
|
|
return true;
|
|
}
|
|
else
|
|
{
|
|
qWarning("FeatureWebAPIUtils::mapFind: no Map feature");
|
|
return false;
|
|
}
|
|
}
|
|
|
|
// Set the date and time the map uses for display
|
|
bool FeatureWebAPIUtils::mapSetDateTime(const QDateTime& dateTime, int featureSetIndex, int featureIndex)
|
|
{
|
|
Feature *feature = FeatureWebAPIUtils::getFeature(featureSetIndex, featureIndex, "sdrangel.feature.map");
|
|
if (feature != nullptr)
|
|
{
|
|
QString errorMessage;
|
|
QStringList featureActionKeys = {"setDateTime"};
|
|
SWGSDRangel::SWGFeatureActions query;
|
|
SWGSDRangel::SWGMapActions *mapActions = new SWGSDRangel::SWGMapActions();
|
|
|
|
mapActions->setSetDateTime(new QString(dateTime.toString(Qt::ISODateWithMs)));
|
|
query.setMapActions(mapActions);
|
|
|
|
int httpRC = feature->webapiActionsPost(featureActionKeys, query, errorMessage);
|
|
if (httpRC/100 != 2)
|
|
{
|
|
qWarning() << "FeatureWebAPIUtils::mapSetDateTime: error " << httpRC << ":" << errorMessage;
|
|
return false;
|
|
}
|
|
|
|
return true;
|
|
}
|
|
else
|
|
{
|
|
qWarning("FeatureWebAPIUtils::mapSetDateTime: no Map feature");
|
|
return false;
|
|
}
|
|
}
|
|
|
|
// Find the specified target on the sky map
|
|
bool FeatureWebAPIUtils::skyMapFind(const QString& target, int featureSetIndex, int featureIndex)
|
|
{
|
|
Feature *feature = FeatureWebAPIUtils::getFeature(featureSetIndex, featureIndex, "sdrangel.feature.skymap");
|
|
if (feature != nullptr)
|
|
{
|
|
QString errorMessage;
|
|
QStringList featureActionKeys = {"find"};
|
|
SWGSDRangel::SWGFeatureActions query;
|
|
SWGSDRangel::SWGSkyMapActions *skyMapActions = new SWGSDRangel::SWGSkyMapActions();
|
|
|
|
skyMapActions->setFind(new QString(target));
|
|
query.setSkyMapActions(skyMapActions);
|
|
|
|
int httpRC = feature->webapiActionsPost(featureActionKeys, query, errorMessage);
|
|
if (httpRC/100 != 2)
|
|
{
|
|
qWarning() << "FeatureWebAPIUtils::skyMapFind: error " << httpRC << ":" << errorMessage;
|
|
return false;
|
|
}
|
|
|
|
return true;
|
|
}
|
|
else
|
|
{
|
|
qWarning("FeatureWebAPIUtils::skyMapFind: no Sky Map feature");
|
|
return false;
|
|
}
|
|
}
|
|
|
|
// Get first feature with the given URI
|
|
Feature* FeatureWebAPIUtils::getFeature(int& featureSetIndex, int& featureIndex, const QString& uri)
|
|
{
|
|
FeatureSet *featureSet;
|
|
Feature *feature;
|
|
std::vector<FeatureSet*>& featureSets = MainCore::instance()->getFeatureeSets();
|
|
|
|
if (featureSetIndex != -1)
|
|
{
|
|
// Find feature with specific index
|
|
if (featureSetIndex < (int)featureSets.size())
|
|
{
|
|
featureSet = featureSets[featureSetIndex];
|
|
if (featureIndex < featureSet->getNumberOfFeatures())
|
|
{
|
|
feature = featureSet->getFeatureAt(featureIndex);
|
|
if (uri.isEmpty() || feature->getURI() == uri)
|
|
return feature;
|
|
else
|
|
return nullptr;
|
|
}
|
|
else
|
|
return nullptr;
|
|
}
|
|
else
|
|
return nullptr;
|
|
}
|
|
else
|
|
{
|
|
// Find first feature matching URI
|
|
int fsi = 0;
|
|
for (std::vector<FeatureSet*>::const_iterator it = featureSets.begin(); it != featureSets.end(); ++it, ++fsi)
|
|
{
|
|
for (int fi = 0; fi < (*it)->getNumberOfFeatures(); fi++)
|
|
{
|
|
feature = (*it)->getFeatureAt(fi);
|
|
if (feature->getURI() == uri)
|
|
{
|
|
featureSetIndex = fsi;
|
|
featureIndex = fi;
|
|
return feature;
|
|
}
|
|
}
|
|
}
|
|
return nullptr;
|
|
}
|
|
}
|
|
|
|
// Send AOS actions to all features that support it
|
|
// See also: ChannelWebAPIUtils::satelliteAOS
|
|
bool FeatureWebAPIUtils::satelliteAOS(const QString name, const QDateTime aos, const QDateTime los)
|
|
{
|
|
std::vector<FeatureSet*>& featureSets = MainCore::instance()->getFeatureeSets();
|
|
|
|
for (std::vector<FeatureSet*>::const_iterator it = featureSets.begin(); it != featureSets.end(); ++it)
|
|
{
|
|
for (int fi = 0; fi < (*it)->getNumberOfFeatures(); fi++)
|
|
{
|
|
Feature *feature = (*it)->getFeatureAt(fi);
|
|
if (feature->getURI() == "sdrangel.feature.pertester")
|
|
{
|
|
QStringList featureActionKeys = {"aos"};
|
|
SWGSDRangel::SWGFeatureActions featureActions;
|
|
SWGSDRangel::SWGPERTesterActions *perTesterFeatureAction = new SWGSDRangel::SWGPERTesterActions();
|
|
SWGSDRangel::SWGPERTesterActions_aos *aosAction = new SWGSDRangel::SWGPERTesterActions_aos();
|
|
QString errorResponse;
|
|
int httpRC;
|
|
|
|
aosAction->setSatelliteName(new QString(name));
|
|
aosAction->setAosTime(new QString(aos.toString(Qt::ISODate)));
|
|
aosAction->setLosTime(new QString(los.toString(Qt::ISODate)));
|
|
perTesterFeatureAction->setAos(aosAction);
|
|
|
|
featureActions.setPerTesterActions(perTesterFeatureAction);
|
|
httpRC = feature->webapiActionsPost(featureActionKeys, featureActions, errorResponse);
|
|
if (httpRC/100 != 2)
|
|
{
|
|
qWarning("FeatureWebAPIUtils::satelliteAOS: webapiActionsPost error %d: %s",
|
|
httpRC, qPrintable(errorResponse));
|
|
return false;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
return true;
|
|
}
|
|
|
|
// Send LOS actions to all features that support it
|
|
bool FeatureWebAPIUtils::satelliteLOS(const QString name)
|
|
{
|
|
(void) name;
|
|
// Not currently required by any features
|
|
return true;
|
|
}
|
|
|
|
// Open a Sky Map feature and find the specified target
|
|
bool FeatureWebAPIUtils::openSkyMapAndFind(const QString& target)
|
|
{
|
|
return SkyMapOpener::open(target);
|
|
}
|
|
|
|
bool SkyMapOpener::open(const QString& target)
|
|
{
|
|
// Create a SkyMap feature
|
|
MainCore *mainCore = MainCore::instance();
|
|
PluginAPI::FeatureRegistrations *featureRegistrations = mainCore->getPluginManager()->getFeatureRegistrations();
|
|
int nbRegistrations = featureRegistrations->size();
|
|
int index = 0;
|
|
|
|
for (; index < nbRegistrations; index++)
|
|
{
|
|
if (featureRegistrations->at(index).m_featureId == "SkyMap") {
|
|
break;
|
|
}
|
|
}
|
|
|
|
if (index < nbRegistrations)
|
|
{
|
|
new SkyMapOpener(target);
|
|
|
|
MainCore::MsgAddFeature *msg = MainCore::MsgAddFeature::create(0, index);
|
|
mainCore->getMainMessageQueue()->push(msg);
|
|
|
|
return true;
|
|
}
|
|
else
|
|
{
|
|
qWarning() << "Sky Map feature not available";
|
|
return false;
|
|
}
|
|
}
|
|
|
|
SkyMapOpener::SkyMapOpener(const QString& target) :
|
|
m_target(target)
|
|
{
|
|
connect(MainCore::instance(), &MainCore::featureAdded, this, &SkyMapOpener::onSkyMapAdded);
|
|
}
|
|
|
|
void SkyMapOpener::onSkyMapAdded(int featureSetIndex, Feature *feature)
|
|
{
|
|
if (feature->getURI() == "sdrangel.feature.skymap")
|
|
{
|
|
disconnect(MainCore::instance(), &MainCore::featureAdded, this, &SkyMapOpener::onSkyMapAdded);
|
|
FeatureWebAPIUtils::skyMapFind(m_target, featureSetIndex, feature->getIndexInFeatureSet());
|
|
deleteLater();
|
|
}
|
|
}
|