mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-04-01 13:36:48 +08:00
refs #227, client (representing other pilot client) class
* client class plus list * aircraft model class, representing the used model
This commit is contained in:
226
src/blackmisc/nwclient.cpp
Normal file
226
src/blackmisc/nwclient.cpp
Normal file
@@ -0,0 +1,226 @@
|
||||
#include "nwclient.h"
|
||||
#include <QString>
|
||||
|
||||
namespace BlackMisc
|
||||
{
|
||||
namespace Network
|
||||
{
|
||||
/*
|
||||
* Convert to string
|
||||
*/
|
||||
QString CClient::convertToQString(bool i18n) const
|
||||
{
|
||||
QString s = this->m_user.toQString(i18n);
|
||||
return s;
|
||||
}
|
||||
|
||||
/*
|
||||
* Compare
|
||||
*/
|
||||
int CClient::compareImpl(const CValueObject &otherBase) const
|
||||
{
|
||||
const auto &other = static_cast<const CClient &>(otherBase);
|
||||
return compare(TupleConverter<CClient>::toTuple(*this), TupleConverter<CClient>::toTuple(other));
|
||||
}
|
||||
|
||||
/*
|
||||
* Marshall to DBus
|
||||
*/
|
||||
void CClient::marshallToDbus(QDBusArgument &argument) const
|
||||
{
|
||||
argument << TupleConverter<CClient>::toTuple(*this);
|
||||
}
|
||||
|
||||
/*
|
||||
* Unmarshall from DBus
|
||||
*/
|
||||
void CClient::unmarshallFromDbus(const QDBusArgument &argument)
|
||||
{
|
||||
argument >> TupleConverter<CClient>::toTuple(*this);
|
||||
}
|
||||
|
||||
/*
|
||||
* Hash
|
||||
*/
|
||||
uint CClient::getValueHash() const
|
||||
{
|
||||
return qHash(TupleConverter<CClient>::toTuple(*this));
|
||||
}
|
||||
|
||||
/*
|
||||
* Equal?
|
||||
*/
|
||||
bool CClient::operator ==(const CClient &other) const
|
||||
{
|
||||
if (this == &other) return true;
|
||||
return TupleConverter<CClient>::toTuple(*this) == TupleConverter<CClient>::toTuple(other);
|
||||
}
|
||||
|
||||
/*
|
||||
* Unequal?
|
||||
*/
|
||||
bool CClient::operator !=(const CClient &other) const
|
||||
{
|
||||
return !((*this) == other);
|
||||
}
|
||||
|
||||
/*
|
||||
* metaTypeId
|
||||
*/
|
||||
int CClient::getMetaTypeId() const
|
||||
{
|
||||
return qMetaTypeId<CClient>();
|
||||
}
|
||||
|
||||
/*
|
||||
* is a
|
||||
*/
|
||||
bool CClient::isA(int metaTypeId) const
|
||||
{
|
||||
if (metaTypeId == qMetaTypeId<CClient>()) { return true; }
|
||||
return this->CValueObject::isA(metaTypeId);
|
||||
}
|
||||
|
||||
/*
|
||||
* Register metadata
|
||||
*/
|
||||
void CClient::registerMetadata()
|
||||
{
|
||||
qRegisterMetaType<CClient>();
|
||||
qDBusRegisterMetaType<CClient>();
|
||||
}
|
||||
|
||||
/*
|
||||
* Members
|
||||
*/
|
||||
const QStringList &CClient::jsonMembers()
|
||||
{
|
||||
return TupleConverter<CClient>::jsonMembers();
|
||||
}
|
||||
|
||||
/*
|
||||
* To JSON
|
||||
*/
|
||||
QJsonObject CClient::toJson() const
|
||||
{
|
||||
return BlackMisc::serializeJson(CClient::jsonMembers(), TupleConverter<CClient>::toTuple(*this));
|
||||
}
|
||||
|
||||
/*
|
||||
* From Json
|
||||
*/
|
||||
void CClient::fromJson(const QJsonObject &json)
|
||||
{
|
||||
BlackMisc::deserializeJson(json, CClient::jsonMembers(), TupleConverter<CClient>::toTuple(*this));
|
||||
}
|
||||
|
||||
/*
|
||||
* Capability
|
||||
*/
|
||||
void CClient::setCapability(bool hasCapability, CClient::Capabilities capability)
|
||||
{
|
||||
this->m_capabilities.setPropertyByIndex(QVariant(hasCapability), capability);
|
||||
}
|
||||
|
||||
/*
|
||||
* Capabilities
|
||||
*/
|
||||
void CClient::setCapabilities(const CIndexVariantMap &capabilities)
|
||||
{
|
||||
this->m_capabilities = capabilities;
|
||||
}
|
||||
|
||||
/*
|
||||
* Capabilities
|
||||
*/
|
||||
QString CClient::getCapabilitiesAsString() const
|
||||
{
|
||||
QStringList sl;
|
||||
if (this->hasCapability(FsdAtisCanBeReceived)) sl << "ATIS";
|
||||
if (this->hasCapability(FsdWithInterimPositions)) sl << "interim pos.";
|
||||
if (this->hasCapability(FsdWithModelDescription)) sl << "model";
|
||||
if (sl.isEmpty()) return "";
|
||||
return sl.join(", ");
|
||||
}
|
||||
|
||||
/*
|
||||
* Capability
|
||||
*/
|
||||
bool CClient::hasCapability(CClient::Capabilities capability) const
|
||||
{
|
||||
if (this->m_capabilities.contains(capability))
|
||||
return this->m_capabilities.value(capability).toBool();
|
||||
else
|
||||
return false;
|
||||
}
|
||||
|
||||
/*
|
||||
* Property by index
|
||||
*/
|
||||
QVariant CClient::propertyByIndex(int index) const
|
||||
{
|
||||
if (index < static_cast<int>(IndexQueriedModelString))
|
||||
{
|
||||
return this->m_user.propertyByIndex(index);
|
||||
}
|
||||
else if (index < static_cast<int>(IndexCapabilities))
|
||||
{
|
||||
return this->m_model.propertyByIndex(index);
|
||||
}
|
||||
|
||||
switch (index)
|
||||
{
|
||||
case IndexCapabilities:
|
||||
return this->m_capabilities.toQVariant();
|
||||
break;
|
||||
case IndexCapabilitiesString:
|
||||
return QVariant(this->getCapabilitiesAsString());
|
||||
break;
|
||||
case IndexModel:
|
||||
return QVariant(this->m_model.toQVariant());
|
||||
break;
|
||||
case IndexHost:
|
||||
return QVariant(this->m_host);
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
}
|
||||
Q_ASSERT_X(false, "CClient", "index unknown");
|
||||
QString m = QString("no property, index ").append(QString::number(index));
|
||||
return QVariant::fromValue(m);
|
||||
}
|
||||
|
||||
/*
|
||||
* Set property as index
|
||||
*/
|
||||
void CClient::setPropertyByIndex(const QVariant &variant, int index)
|
||||
{
|
||||
if (index < static_cast<int>(IndexQueriedModelString))
|
||||
{
|
||||
this->m_user.setPropertyByIndex(variant, index);
|
||||
return;
|
||||
}
|
||||
else if (index < static_cast<int>(IndexCapabilities))
|
||||
{
|
||||
this->m_model.setPropertyByIndex(variant, index);
|
||||
return;
|
||||
}
|
||||
|
||||
switch (index)
|
||||
{
|
||||
case IndexCapabilities:
|
||||
this->m_capabilities = variant.value<CIndexVariantMap>();
|
||||
break;
|
||||
case IndexModel:
|
||||
this->m_model = variant.value<CAircraftModel>();
|
||||
break;
|
||||
case IndexHost:
|
||||
this->m_host = variant.toString();
|
||||
break;
|
||||
default:
|
||||
Q_ASSERT_X(false, "CClient", "index unknown");
|
||||
break;
|
||||
}
|
||||
}
|
||||
} // namespace
|
||||
} // namespace
|
||||
Reference in New Issue
Block a user