mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-04-01 21:56:43 +08:00
224 lines
7.2 KiB
C++
224 lines
7.2 KiB
C++
#include "avaircrafticao.h"
|
|
#include "blackmisc/blackmiscfreefunctions.h"
|
|
|
|
#include <tuple>
|
|
#include <QRegularExpression>
|
|
|
|
namespace BlackMisc
|
|
{
|
|
namespace Aviation
|
|
{
|
|
/*
|
|
* Convert to string
|
|
*/
|
|
QString CAircraftIcao::convertToQString(bool /** i18n **/) const
|
|
{
|
|
QString s(this->m_aircraftDesignator);
|
|
if (this->hasAircraftCombinedType()) s.append(" ").append(this->m_aircraftCombinedType);
|
|
if (this->hasAirlineDesignator()) s.append(" ").append(this->m_airlineDesignator);
|
|
if (this->hasLivery()) s.append(" ").append(this->m_livery);
|
|
if (this->hasAircraftColor()) s.append(" ").append(this->m_aircraftColor);
|
|
return s;
|
|
}
|
|
|
|
/*
|
|
* metaTypeId
|
|
*/
|
|
int CAircraftIcao::getMetaTypeId() const
|
|
{
|
|
return qMetaTypeId<CAircraftIcao>();
|
|
}
|
|
|
|
/*
|
|
* is a
|
|
*/
|
|
bool CAircraftIcao::isA(int metaTypeId) const
|
|
{
|
|
if (metaTypeId == qMetaTypeId<CAircraftIcao>()) { return true; }
|
|
return this->CValueObject::isA(metaTypeId);
|
|
}
|
|
|
|
/*
|
|
* Compare
|
|
*/
|
|
int CAircraftIcao::compareImpl(const CValueObject &otherBase) const
|
|
{
|
|
const auto &other = static_cast<const CAircraftIcao &>(otherBase);
|
|
return compare(TupleConverter<CAircraftIcao>::toTuple(*this), TupleConverter<CAircraftIcao>::toTuple(other));
|
|
}
|
|
|
|
/*
|
|
* Marshall to DBus
|
|
*/
|
|
void CAircraftIcao::marshallToDbus(QDBusArgument &argument) const
|
|
{
|
|
argument << TupleConverter<CAircraftIcao>::toTuple(*this);
|
|
}
|
|
|
|
/*
|
|
* Unmarshall from DBus
|
|
*/
|
|
void CAircraftIcao::unmarshallFromDbus(const QDBusArgument &argument)
|
|
{
|
|
argument >> TupleConverter<CAircraftIcao>::toTuple(*this);
|
|
}
|
|
|
|
/*
|
|
* As string
|
|
*/
|
|
QString CAircraftIcao::asString() const
|
|
{
|
|
if (this->m_aircraftDesignator.isEmpty()) return "";
|
|
QString s(this->m_aircraftDesignator);
|
|
if (!this->m_airlineDesignator.isEmpty())
|
|
{
|
|
s.append(" (").append(this->m_airlineDesignator).append(")");
|
|
return s;
|
|
}
|
|
if (!this->m_aircraftColor.isEmpty())
|
|
{
|
|
s.append(" (").append(this->m_aircraftColor).append(")");
|
|
return s;
|
|
}
|
|
return s;
|
|
}
|
|
|
|
bool CAircraftIcao::operator ==(const CAircraftIcao &other) const
|
|
{
|
|
if (this == &other) return true;
|
|
return TupleConverter<CAircraftIcao>::toTuple(*this) == TupleConverter<CAircraftIcao>::toTuple(other);
|
|
}
|
|
|
|
bool CAircraftIcao::matchesWildcardIcao(const CAircraftIcao &otherIcao) const
|
|
{
|
|
if ((*this) == otherIcao) return true;
|
|
if (otherIcao.hasAircraftDesignator() && otherIcao.getAircraftDesignator() != this->getAircraftDesignator()) return false;
|
|
if (otherIcao.hasAirlineDesignator() && otherIcao.getAirlineDesignator() != this->getAirlineDesignator()) return false;
|
|
if (otherIcao.hasAircraftCombinedType() && otherIcao.getAircraftCombinedType() != this->getAircraftCombinedType()) return false;
|
|
if (otherIcao.hasLivery() && otherIcao.getLivery() != this->getLivery()) return false;
|
|
if (otherIcao.hasAircraftColor() && otherIcao.getAircraftColor() != this->getAircraftColor()) return false;
|
|
return true;
|
|
}
|
|
|
|
/*
|
|
* Unequal?
|
|
*/
|
|
bool CAircraftIcao::operator !=(const CAircraftIcao &other) const
|
|
{
|
|
return !((*this) == other);
|
|
}
|
|
|
|
/*
|
|
* Hash
|
|
*/
|
|
uint CAircraftIcao::getValueHash() const
|
|
{
|
|
return qHash(TupleConverter<CAircraftIcao>::toTuple(*this));
|
|
}
|
|
|
|
/*
|
|
* Property by index
|
|
*/
|
|
QVariant CAircraftIcao::propertyByIndex(int index) const
|
|
{
|
|
switch (index)
|
|
{
|
|
case IndexAircraftDesignator:
|
|
return QVariant::fromValue(this->m_aircraftDesignator);
|
|
case IndexAirlineDesignator:
|
|
return QVariant::fromValue(this->m_airlineDesignator);
|
|
case IndexCombinedAircraftType:
|
|
return QVariant::fromValue(this->m_aircraftCombinedType);
|
|
case IndexAircraftColor:
|
|
return QVariant::fromValue(this->m_aircraftColor);
|
|
case IndexAsString:
|
|
return QVariant::fromValue(this->asString());
|
|
default:
|
|
break;
|
|
}
|
|
|
|
Q_ASSERT_X(false, "CAircraftIcao", "index unknown");
|
|
QString m = QString("no property, index ").append(QString::number(index));
|
|
return QVariant::fromValue(m);
|
|
}
|
|
|
|
/*
|
|
* Property as string by index
|
|
*/
|
|
QString CAircraftIcao::propertyByIndexAsString(int index, bool i18n) const
|
|
{
|
|
QVariant qv = this->propertyByIndex(index);
|
|
return BlackMisc::qVariantToString(qv, i18n);
|
|
}
|
|
|
|
/*
|
|
* Property by index
|
|
*/
|
|
void CAircraftIcao::setPropertyByIndex(const QVariant &variant, int index)
|
|
{
|
|
switch (index)
|
|
{
|
|
case IndexAircraftDesignator:
|
|
this->setAircraftDesignator(variant.value<QString>());
|
|
break;
|
|
case IndexAirlineDesignator:
|
|
this->setAirlineDesignator(variant.value<QString>());
|
|
break;
|
|
case IndexCombinedAircraftType:
|
|
this->setAircraftCombinedType(variant.value<QString>());
|
|
break;
|
|
case IndexAircraftColor:
|
|
this->setAircraftColor(variant.value<QString>());
|
|
break;
|
|
default:
|
|
Q_ASSERT_X(false, "CAircraftIcao", "index unknown");
|
|
break;
|
|
}
|
|
}
|
|
|
|
/*
|
|
* Valid designator?
|
|
*/
|
|
bool CAircraftIcao::isValidDesignator(const QString &designator)
|
|
{
|
|
static QRegularExpression regexp("^[A-Z]+[A-Z0-9]*$");
|
|
if (designator.length() < 2 || designator.length() > 5) return false;
|
|
return (regexp.match(designator).hasMatch());
|
|
}
|
|
|
|
/*
|
|
* Register metadata
|
|
*/
|
|
void CAircraftIcao::registerMetadata()
|
|
{
|
|
qRegisterMetaType<CAircraftIcao>();
|
|
qDBusRegisterMetaType<CAircraftIcao>();
|
|
}
|
|
|
|
/*
|
|
* To JSON
|
|
*/
|
|
QJsonObject CAircraftIcao::toJson() const
|
|
{
|
|
return BlackMisc::serializeJson(CAircraftIcao::jsonMembers(), TupleConverter<CAircraftIcao>::toTuple(*this));
|
|
}
|
|
|
|
/*
|
|
* To JSON
|
|
*/
|
|
void CAircraftIcao::fromJson(const QJsonObject &json)
|
|
{
|
|
BlackMisc::deserializeJson(json, CAircraftIcao::jsonMembers(), TupleConverter<CAircraftIcao>::toTuple(*this));
|
|
}
|
|
|
|
/*
|
|
* Members
|
|
*/
|
|
const QStringList &CAircraftIcao::jsonMembers()
|
|
{
|
|
return TupleConverter<CAircraftIcao>::jsonMembers();
|
|
}
|
|
|
|
} // namespace
|
|
} // namespace
|