mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-03-23 23:45:35 +08:00
* use incremental updates * use new signatures * handle successfully published models * some custom menus are gone, because they are now part of the specialized views
366 lines
15 KiB
C++
366 lines
15 KiB
C++
/* Copyright (C) 2013
|
|
* swift project Community / Contributors
|
|
*
|
|
* This file is part of swift Project. It is subject to the license terms in the LICENSE file found in the top-level
|
|
* directory of this distribution and at http://www.swift-project.org/license.html. No part of swift project,
|
|
* including this file, may be copied, modified, propagated, or distributed except according to the terms
|
|
* contained in the LICENSE file.
|
|
*/
|
|
|
|
#include "dbstashcomponent.h"
|
|
#include "dbmappingcomponent.h"
|
|
#include "ui_dbstashcomponent.h"
|
|
#include "blackgui/views/aircraftmodelview.h"
|
|
#include "blackmisc/icons.h"
|
|
|
|
using namespace BlackMisc;
|
|
using namespace BlackMisc::Simulation;
|
|
using namespace BlackMisc::Aviation;
|
|
using namespace BlackMisc::Network;
|
|
using namespace BlackGui::Models;
|
|
using namespace BlackGui::Views;
|
|
|
|
namespace BlackGui
|
|
{
|
|
namespace Components
|
|
{
|
|
CDbStashComponent::CDbStashComponent(QWidget *parent) :
|
|
QFrame(parent),
|
|
CDbMappingComponentAware(parent),
|
|
ui(new Ui::CDbStashComponent)
|
|
{
|
|
ui->setupUi(this);
|
|
this->ui->tvp_StashAircraftModels->setAircraftModelMode(CAircraftModelListModel::StashModel);
|
|
this->ui->tvp_StashAircraftModels->allowDragDropValueObjects(false, true);
|
|
this->ui->tvp_StashAircraftModels->setImplementedMetaTypeIds();
|
|
this->ui->tvp_StashAircraftModels->menuAddItems(CAircraftModelView::MenuLoadAndSave);
|
|
|
|
connect(this->ui->pb_Unstash, &QPushButton::pressed, this, &CDbStashComponent::ps_onUnstashPressed);
|
|
connect(this->ui->pb_Validate, &QPushButton::pressed, this, &CDbStashComponent::ps_onValidatePressed);
|
|
connect(this->ui->pb_Publish, &QPushButton::pressed, this, &CDbStashComponent::ps_onPublishPressed);
|
|
connect(this->ui->tvp_StashAircraftModels, &CAircraftModelView::modelChanged, this, &CDbStashComponent::stashedModelsChanged);
|
|
connect(this->ui->tvp_StashAircraftModels, &CAircraftModelView::rowCountChanged, this, &CDbStashComponent::ps_onRowCountChanged);
|
|
|
|
// copy over buttons
|
|
connect(this->ui->pb_AircraftIcao, &QPushButton::pressed, this, &CDbStashComponent::ps_copyOverPartsToSelected);
|
|
connect(this->ui->pb_AirlineIcao, &QPushButton::pressed, this, &CDbStashComponent::ps_copyOverPartsToSelected);
|
|
connect(this->ui->pb_Livery, &QPushButton::pressed, this, &CDbStashComponent::ps_copyOverPartsToSelected);
|
|
connect(this->ui->pb_Distributor, &QPushButton::pressed, this, &CDbStashComponent::ps_copyOverPartsToSelected);
|
|
|
|
ui->tvp_StashAircraftModels->menuAddItems(CAircraftModelView::MenuRemoveSelectedRows);
|
|
this->enableButtonRow();
|
|
}
|
|
|
|
CDbStashComponent::~CDbStashComponent()
|
|
{ }
|
|
|
|
void CDbStashComponent::setProvider(IWebDataServicesProvider *provider)
|
|
{
|
|
CWebDataServicesAware::setProvider(provider);
|
|
provider->connectDataPublishSignal(
|
|
this,
|
|
std::bind(&CDbStashComponent::ps_publishResponse, this, std::placeholders::_1, std::placeholders::_2, std::placeholders::_3)
|
|
);
|
|
}
|
|
|
|
void CDbStashComponent::gracefulShutdown()
|
|
{
|
|
// shutdown
|
|
}
|
|
|
|
CStatusMessage CDbStashComponent::validateStashModel(const CAircraftModel &model, bool allowReplace) const
|
|
{
|
|
if (!allowReplace && this->ui->tvp_StashAircraftModels->container().containsModelStringOrId(model))
|
|
{
|
|
const QString msg("Model \"%1\" already stashed");
|
|
return CStatusMessage(validationCats(), CStatusMessage::SeverityError, msg.arg(model.getModelString()));
|
|
}
|
|
return CStatusMessage();
|
|
}
|
|
|
|
CStatusMessage CDbStashComponent::stashModel(const CAircraftModel &model, bool replace)
|
|
{
|
|
CStatusMessage m(validateStashModel(model, replace));
|
|
if (!m.isWarningOrAbove())
|
|
{
|
|
if (replace)
|
|
{
|
|
this->ui->tvp_StashAircraftModels->replaceOrAdd(&CAircraftModel::getModelString, model.getModelString(), model);
|
|
}
|
|
else
|
|
{
|
|
this->ui->tvp_StashAircraftModels->insert(model);
|
|
}
|
|
}
|
|
return m;
|
|
}
|
|
|
|
CStatusMessageList CDbStashComponent::stashModels(const CAircraftModelList &models)
|
|
{
|
|
if (models.isEmpty()) { return CStatusMessageList(); }
|
|
CStatusMessageList msgs;
|
|
for (const CAircraftModel &model : models)
|
|
{
|
|
CStatusMessage m(stashModel(model));
|
|
if (m.isWarningOrAbove()) { msgs.push_back(m); }
|
|
}
|
|
return msgs;
|
|
}
|
|
|
|
int CDbStashComponent::unstashModels(QList<int> keys)
|
|
{
|
|
if (keys.isEmpty()) { return 0; }
|
|
return this->ui->tvp_StashAircraftModels->removeDbKeys(keys);
|
|
}
|
|
|
|
int CDbStashComponent::unstashModels(QStringList modelStrings)
|
|
{
|
|
if (modelStrings.isEmpty()) { return 0; }
|
|
return this->ui->tvp_StashAircraftModels->removeModelsWithModelString(modelStrings);
|
|
}
|
|
|
|
const Views::CAircraftModelView *CDbStashComponent::getView() const
|
|
{
|
|
return ui->tvp_StashAircraftModels;
|
|
}
|
|
|
|
bool CDbStashComponent::hasStashedModels() const
|
|
{
|
|
return !this->ui->tvp_StashAircraftModels->isEmpty();
|
|
}
|
|
|
|
int CDbStashComponent::getStashedModelsCount() const
|
|
{
|
|
return this->ui->tvp_StashAircraftModels->rowCount();
|
|
}
|
|
|
|
QStringList CDbStashComponent::getStashedModelStrings() const
|
|
{
|
|
return this->ui->tvp_StashAircraftModels->derivedModel()->getModelStrings(false);
|
|
}
|
|
|
|
const CAircraftModelList &CDbStashComponent::getStashedModels() const
|
|
{
|
|
return this->ui->tvp_StashAircraftModels->derivedModel()->container();
|
|
}
|
|
|
|
void CDbStashComponent::applyToSelected(const CLivery &livery, bool acceptWarnings)
|
|
{
|
|
if (!this->ui->tvp_StashAircraftModels->hasSelection()) { return; }
|
|
CStatusMessageList msgs(livery.validate());
|
|
if (this->showMessages(msgs, acceptWarnings)) { return; }
|
|
this->ui->tvp_StashAircraftModels->applyToSelected(livery);
|
|
}
|
|
|
|
void CDbStashComponent::applyToSelected(const CAircraftIcaoCode &icao, bool acceptWarnings)
|
|
{
|
|
if (!this->ui->tvp_StashAircraftModels->hasSelection()) { return; }
|
|
CStatusMessageList msgs(icao.validate());
|
|
if (this->showMessages(msgs, acceptWarnings)) { return; }
|
|
this->ui->tvp_StashAircraftModels->applyToSelected(icao);
|
|
}
|
|
|
|
void CDbStashComponent::applyToSelected(const CAirlineIcaoCode &icao, bool acceptWarnings)
|
|
{
|
|
if (!icao.hasValidDesignator())
|
|
{
|
|
static const CStatusMessage msg(CStatusMessage::SeverityError, "No valid designator");
|
|
this->showMessage(msg);
|
|
return;
|
|
}
|
|
|
|
// retrieve the std livery
|
|
const CLivery stdLivery(this->getStdLiveryForAirlineCode(icao));
|
|
if (!stdLivery.hasValidDbKey())
|
|
{
|
|
static const CStatusMessage msg(CStatusMessage::SeverityError, "No valid standard livery for " + icao.getDesignator());
|
|
this->showMessage(msg);
|
|
return;
|
|
}
|
|
|
|
applyToSelected(stdLivery, acceptWarnings);
|
|
}
|
|
|
|
void CDbStashComponent::applyToSelected(const CDistributor &distributor, bool acceptWarnings)
|
|
{
|
|
if (!this->ui->tvp_StashAircraftModels->hasSelection()) { return; }
|
|
CStatusMessageList msgs(distributor.validate());
|
|
if (this->showMessages(msgs, acceptWarnings)) { return; }
|
|
this->ui->tvp_StashAircraftModels->applyToSelected(distributor);
|
|
}
|
|
|
|
void CDbStashComponent::ps_onUnstashPressed()
|
|
{
|
|
this->ui->tvp_StashAircraftModels->removeSelectedRows();
|
|
}
|
|
|
|
void CDbStashComponent::ps_onValidatePressed()
|
|
{
|
|
if (this->ui->tvp_StashAircraftModels->isEmpty()) {return; }
|
|
this->validateAndDisplay(true);
|
|
}
|
|
|
|
void CDbStashComponent::ps_onPublishPressed()
|
|
{
|
|
if (this->ui->tvp_StashAircraftModels->isEmpty()) {return; }
|
|
if (!this->validateAndDisplay()) { return; }
|
|
CAircraftModelList models(getSelectedOrAllModels());
|
|
if (models.isEmpty()) { return; }
|
|
CStatusMessageList msgs = this->asyncPublishModels(models);
|
|
if (msgs.hasWarningOrErrorMessages())
|
|
{
|
|
this->showMessages(msgs);
|
|
}
|
|
}
|
|
|
|
void CDbStashComponent::ps_publishResponse(const CAircraftModelList &publishedModels, const CAircraftModelList &skippedModels, const CStatusMessageList &msgs)
|
|
{
|
|
if (!publishedModels.isEmpty())
|
|
{
|
|
emit this->modelsSuccessfullyPublished(publishedModels);
|
|
}
|
|
|
|
if (!msgs.isEmpty())
|
|
{
|
|
if (publishedModels.isEmpty())
|
|
{
|
|
this->showMessages(msgs);
|
|
}
|
|
else
|
|
{
|
|
QString confirm("Remove %1 published models?");
|
|
auto lambda = [this, publishedModels]()
|
|
{
|
|
this->unstashModels(publishedModels.getModelStrings(false));
|
|
};
|
|
this->showMessagesWithConfirmation(msgs, confirm.arg(publishedModels.size()), lambda, QMessageBox::Ok);
|
|
}
|
|
}
|
|
|
|
Q_UNUSED(publishedModels);
|
|
Q_UNUSED(skippedModels);
|
|
}
|
|
|
|
CStatusMessageList CDbStashComponent::validate() const
|
|
{
|
|
if (this->ui->tvp_StashAircraftModels->isEmpty()) {return CStatusMessageList(); }
|
|
CAircraftModelList models(getSelectedOrAllModels());
|
|
if (models.isEmpty()) { return CStatusMessageList(); }
|
|
const CStatusMessageList msgs(models.validateForPublishing());
|
|
if (!msgs.isEmpty()) { return msgs; }
|
|
|
|
return CStatusMessageList(
|
|
{
|
|
CStatusMessage(validationCats(), CStatusMessage::SeverityInfo, QString("No errors in %1 model(s)").arg(models.size()))
|
|
});
|
|
}
|
|
|
|
bool CDbStashComponent::validateAndDisplay(bool displayInfo)
|
|
{
|
|
const CStatusMessageList msgs(this->validate());
|
|
if (msgs.hasWarningOrErrorMessages())
|
|
{
|
|
this->showMessages(msgs);
|
|
return false;
|
|
}
|
|
else
|
|
{
|
|
if (displayInfo)
|
|
{
|
|
QString no = QString::number(this->getStashedModelsCount());
|
|
CStatusMessage msg(validationCats(), CStatusMessage::SeverityInfo, "Validation passed for " + no + " models");
|
|
this->showMessage(msg);
|
|
}
|
|
return true; // no error
|
|
}
|
|
}
|
|
|
|
void CDbStashComponent::enableButtonRow()
|
|
{
|
|
bool e = !this->ui->tvp_StashAircraftModels->isEmpty();
|
|
this->ui->pb_AircraftIcao->setEnabled(e);
|
|
this->ui->pb_AirlineIcao->setEnabled(e);
|
|
this->ui->pb_Distributor->setEnabled(e);
|
|
this->ui->pb_Livery->setEnabled(e);
|
|
this->ui->pb_Publish->setEnabled(e);
|
|
this->ui->pb_Unstash->setEnabled(e);
|
|
this->ui->pb_Validate->setEnabled(e);
|
|
}
|
|
|
|
const CLogCategoryList &CDbStashComponent::validationCats() const
|
|
{
|
|
static const CLogCategoryList cats(CLogCategoryList(this).join({ CLogCategory::validation()}));
|
|
return cats;
|
|
}
|
|
|
|
CAircraftModelList CDbStashComponent::getSelectedOrAllModels() const
|
|
{
|
|
bool selectedOnly = ui->cb_SelectedOnly->isChecked();
|
|
const CAircraftModelList models(selectedOnly ? this->ui->tvp_StashAircraftModels->selectedObjects() : this->ui->tvp_StashAircraftModels->container());
|
|
return models;
|
|
}
|
|
|
|
void CDbStashComponent::ps_copyOverPartsToSelected()
|
|
{
|
|
QObject *sender = QObject::sender();
|
|
BLACK_VERIFY_X(this->getMappingComponent(), Q_FUNC_INFO, "missing mapping component");
|
|
if (!this->getMappingComponent()) { return; }
|
|
if (!this->ui->tvp_StashAircraftModels->hasSelection()) { return; }
|
|
|
|
CAircraftModel model(this->getMappingComponent()->getAircraftModel());
|
|
if (sender == this->ui->pb_AircraftIcao)
|
|
{
|
|
this->applyToSelected(model.getAircraftIcaoCode());
|
|
}
|
|
else if (sender == this->ui->pb_AirlineIcao)
|
|
{
|
|
this->applyToSelected(model.getAirlineIcaoCode());
|
|
}
|
|
else if (sender == this->ui->pb_Distributor)
|
|
{
|
|
this->applyToSelected(model.getDistributor());
|
|
}
|
|
else if (sender == this->ui->pb_Livery)
|
|
{
|
|
this->applyToSelected(model.getLivery());
|
|
}
|
|
}
|
|
|
|
void CDbStashComponent::ps_onRowCountChanged(int number, bool filter)
|
|
{
|
|
Q_UNUSED(number);
|
|
Q_UNUSED(filter);
|
|
this->enableButtonRow();
|
|
}
|
|
|
|
bool CDbStashComponent::showMessages(const CStatusMessageList &msgs, bool onlyErrors, int timeoutMs)
|
|
{
|
|
if (msgs.isEmpty()) { return false; }
|
|
if (!msgs.hasErrorMessages() && onlyErrors) { return false; }
|
|
BLACK_VERIFY_X(this->getMappingComponent(), Q_FUNC_INFO, "missing mapping component");
|
|
if (!this->getMappingComponent()) { return false; }
|
|
this->getMappingComponent()->showMessages(msgs, timeoutMs);
|
|
return true;
|
|
}
|
|
|
|
bool CDbStashComponent::showMessagesWithConfirmation(const CStatusMessageList &msgs, const QString &confirmation, std::function<void ()> okLambda, int defaultButton, bool onlyErrors, int timeoutMs)
|
|
{
|
|
if (msgs.isEmpty()) { return false; }
|
|
if (!msgs.hasErrorMessages() && onlyErrors) { return false; }
|
|
BLACK_VERIFY_X(this->getMappingComponent(), Q_FUNC_INFO, "missing mapping component");
|
|
if (!this->getMappingComponent()) { return false; }
|
|
this->getMappingComponent()->showMessagesWithConfirmation(msgs, confirmation, okLambda, defaultButton, timeoutMs);
|
|
return true;
|
|
}
|
|
|
|
bool CDbStashComponent::showMessage(const CStatusMessage &msg, int timeoutMs)
|
|
{
|
|
if (msg.isEmpty()) { return false; }
|
|
BLACK_VERIFY_X(this->getMappingComponent(), Q_FUNC_INFO, "missing mapping component");
|
|
if (!this->getMappingComponent()) { return false; }
|
|
this->getMappingComponent()->showMessage(msg, timeoutMs);
|
|
return true;
|
|
}
|
|
} // ns
|
|
} // ns
|