mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-04-06 01:45:38 +08:00
refs #216, airport ICAO class needed for flightplan
* added class * adjusted flightplan class, also added some convenience methods to FP class
This commit is contained in:
144
src/blackmisc/avairporticao.cpp
Normal file
144
src/blackmisc/avairporticao.cpp
Normal file
@@ -0,0 +1,144 @@
|
||||
#include "avairporticao.h"
|
||||
|
||||
namespace BlackMisc
|
||||
{
|
||||
namespace Aviation
|
||||
{
|
||||
/*
|
||||
* Convert to string
|
||||
*/
|
||||
QString CAirportIcao::convertToQString(bool /** i18n **/) const
|
||||
{
|
||||
return this->m_icaoCode;
|
||||
}
|
||||
|
||||
/*
|
||||
* Equals callsign?
|
||||
*/
|
||||
bool CAirportIcao::equalsString(const QString &icaoCode) const
|
||||
{
|
||||
CAirportIcao other(icaoCode);
|
||||
return other == (*this);
|
||||
}
|
||||
|
||||
/*
|
||||
* Compare
|
||||
*/
|
||||
int CAirportIcao::compareImpl(const CValueObject &otherBase) const
|
||||
{
|
||||
// intentionally compare on string only!
|
||||
const auto &other = static_cast<const CAirportIcao &>(otherBase);
|
||||
return this->m_icaoCode.compare(other.m_icaoCode, Qt::CaseInsensitive);
|
||||
}
|
||||
|
||||
/*
|
||||
* Marshall to DBus
|
||||
*/
|
||||
void CAirportIcao::marshallToDbus(QDBusArgument &argument) const
|
||||
{
|
||||
argument << TupleConverter<CAirportIcao>::toTuple(*this);
|
||||
}
|
||||
|
||||
/*
|
||||
* Unmarshall from DBus
|
||||
*/
|
||||
void CAirportIcao::unmarshallFromDbus(const QDBusArgument &argument)
|
||||
{
|
||||
argument >> TupleConverter<CAirportIcao>::toTuple(*this);
|
||||
}
|
||||
|
||||
/*
|
||||
* To JSON
|
||||
*/
|
||||
QJsonObject CAirportIcao::toJson() const
|
||||
{
|
||||
return BlackMisc::serializeJson(CAirportIcao::jsonMembers(), TupleConverter<CAirportIcao>::toTuple(*this));
|
||||
}
|
||||
|
||||
/*
|
||||
* To JSON
|
||||
*/
|
||||
void CAirportIcao::fromJson(const QJsonObject &json)
|
||||
{
|
||||
BlackMisc::deserializeJson(json, CAirportIcao::jsonMembers(), TupleConverter<CAirportIcao>::toTuple(*this));
|
||||
}
|
||||
|
||||
/*
|
||||
* Members
|
||||
*/
|
||||
const QStringList &CAirportIcao::jsonMembers()
|
||||
{
|
||||
return TupleConverter<CAirportIcao>::jsonMembers();
|
||||
}
|
||||
|
||||
QString CAirportIcao::unifyAirportCode(const QString &icaoCode)
|
||||
{
|
||||
QString code = icaoCode.trimmed().toUpper();
|
||||
if (code.length() != 4) return "";
|
||||
QRegExp reg("[A-Z]{4}");
|
||||
return (reg.exactMatch(code)) ? code : "";
|
||||
}
|
||||
|
||||
/*
|
||||
* Equal?
|
||||
*/
|
||||
bool CAirportIcao::operator ==(const CAirportIcao &other) const
|
||||
{
|
||||
if (this == &other) return true;
|
||||
// intentionally not via Tupel converter, compare on string only
|
||||
return this->asString().compare(other.asString(), Qt::CaseInsensitive) == 0;
|
||||
}
|
||||
|
||||
/*
|
||||
* Unequal?
|
||||
*/
|
||||
bool CAirportIcao::operator !=(const CAirportIcao &other) const
|
||||
{
|
||||
return !((*this) == other);
|
||||
}
|
||||
|
||||
/*
|
||||
* Hash
|
||||
*/
|
||||
uint CAirportIcao::getValueHash() const
|
||||
{
|
||||
return qHash(TupleConverter<CAirportIcao>::toTuple(*this));
|
||||
}
|
||||
|
||||
/*
|
||||
* Less than?
|
||||
*/
|
||||
bool CAirportIcao::operator <(const CAirportIcao &other) const
|
||||
{
|
||||
return this->m_icaoCode < other.m_icaoCode;
|
||||
}
|
||||
|
||||
/*
|
||||
* metaTypeId
|
||||
*/
|
||||
int CAirportIcao::getMetaTypeId() const
|
||||
{
|
||||
return qMetaTypeId<CAirportIcao>();
|
||||
}
|
||||
|
||||
/*
|
||||
* is a
|
||||
*/
|
||||
bool CAirportIcao::isA(int metaTypeId) const
|
||||
{
|
||||
if (metaTypeId == qMetaTypeId<CAirportIcao>()) { return true; }
|
||||
|
||||
return this->CValueObject::isA(metaTypeId);
|
||||
}
|
||||
|
||||
/*
|
||||
* Register metadata
|
||||
*/
|
||||
void CAirportIcao::registerMetadata()
|
||||
{
|
||||
qRegisterMetaType<CAirportIcao>();
|
||||
qDBusRegisterMetaType<CAirportIcao>();
|
||||
}
|
||||
|
||||
} // namespace
|
||||
} // namespace
|
||||
Reference in New Issue
Block a user