mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-04-02 15:15:50 +08:00
211 lines
6.0 KiB
C++
211 lines
6.0 KiB
C++
#include "nwserver.h"
|
|
#include "blackmisc/blackmiscfreefunctions.h"
|
|
#include <tuple>
|
|
|
|
namespace BlackMisc
|
|
{
|
|
namespace Network
|
|
{
|
|
/*
|
|
* Convert to string
|
|
*/
|
|
QString CServer::convertToQString(bool i18n) const
|
|
{
|
|
QString s(this->m_name);
|
|
s.append(" ").append(this->m_description);
|
|
s.append(" ").append(this->m_address);
|
|
s.append(" ").append(QString::number(this->m_port));
|
|
s.append(" ").append(this->m_user.toQString(i18n));
|
|
s.append(" ").append(this->m_isAcceptingConnections ? "true" : "false");
|
|
return s;
|
|
}
|
|
|
|
/*
|
|
* metaTypeId
|
|
*/
|
|
int CServer::getMetaTypeId() const
|
|
{
|
|
return qMetaTypeId<CServer>();
|
|
}
|
|
|
|
/*
|
|
* is a
|
|
*/
|
|
bool CServer::isA(int metaTypeId) const
|
|
{
|
|
if (metaTypeId == qMetaTypeId<CServer>()) { return true; }
|
|
|
|
return this->CValueObject::isA(metaTypeId);
|
|
}
|
|
|
|
/*
|
|
* Compare
|
|
*/
|
|
int CServer::compareImpl(const CValueObject &otherBase) const
|
|
{
|
|
const auto &other = static_cast<const CServer &>(otherBase);
|
|
|
|
return compare(TupleConverter<CServer>::toTuple(*this), TupleConverter<CServer>::toTuple(other));
|
|
}
|
|
|
|
/*
|
|
* Marshall to DBus
|
|
*/
|
|
void CServer::marshallToDbus(QDBusArgument &argument) const
|
|
{
|
|
argument << TupleConverter<CServer>::toTuple(*this);
|
|
}
|
|
|
|
/*
|
|
* Unmarshall from DBus
|
|
*/
|
|
void CServer::unmarshallFromDbus(const QDBusArgument &argument)
|
|
{
|
|
argument >> TupleConverter<CServer>::toTuple(*this);
|
|
}
|
|
|
|
/*
|
|
* Valid for login
|
|
*/
|
|
bool CServer::isValidForLogin() const
|
|
{
|
|
return this->m_user.hasValidCredentials() && this->m_port > 0 && !this->m_address.isEmpty() && this->isAcceptingConnections();
|
|
}
|
|
|
|
/*
|
|
* Equal?
|
|
*/
|
|
bool CServer::operator ==(const CServer &other) const
|
|
{
|
|
if (this == &other) return true;
|
|
return TupleConverter<CServer>::toTuple(*this) == TupleConverter<CServer>::toTuple(other);
|
|
}
|
|
|
|
/*
|
|
* Unequal?
|
|
*/
|
|
bool CServer::operator !=(const CServer &other) const
|
|
{
|
|
return !((*this) == other);
|
|
}
|
|
|
|
/*
|
|
* Hash
|
|
*/
|
|
uint CServer::getValueHash() const
|
|
{
|
|
return qHash(TupleConverter<CServer>::toTuple(*this));
|
|
}
|
|
|
|
/*
|
|
* Property by index
|
|
*/
|
|
QVariant CServer::propertyByIndex(int index) const
|
|
{
|
|
switch (index)
|
|
{
|
|
case IndexAddress:
|
|
return QVariant::fromValue(this->m_address);
|
|
case IndexDescription:
|
|
return QVariant::fromValue(this->m_description);
|
|
case IndexName:
|
|
return QVariant::fromValue(this->m_name);
|
|
case IndexPort:
|
|
return QVariant::fromValue(this->m_port);
|
|
case IndexUserId:
|
|
return QVariant::fromValue(this->m_user.getId());
|
|
case IndexUserRealName:
|
|
return QVariant::fromValue(this->m_user.getRealName());
|
|
case IndexIsAcceptingConnections:
|
|
return QVariant::fromValue(this->m_isAcceptingConnections);
|
|
default:
|
|
break;
|
|
}
|
|
|
|
Q_ASSERT_X(false, "CServer", "index unknown");
|
|
QString m = QString("no property, index ").append(QString::number(index));
|
|
return QVariant::fromValue(m);
|
|
}
|
|
|
|
/*
|
|
* Property as string by index
|
|
*/
|
|
QString CServer::propertyByIndexAsString(int index, bool i18n) const
|
|
{
|
|
QVariant qv = this->propertyByIndex(index);
|
|
return BlackMisc::qVariantToString(qv, i18n);
|
|
}
|
|
|
|
/*
|
|
* Property by index (setter)
|
|
*/
|
|
void CServer::setPropertyByIndex(const QVariant &variant, int index)
|
|
{
|
|
switch (index)
|
|
{
|
|
case IndexAddress:
|
|
this->setAddress(variant.value<QString>());
|
|
break;
|
|
case IndexPort:
|
|
this->setPort(variant.value<qint32>());
|
|
break;
|
|
case IndexDescription:
|
|
this->setDescription(variant.value<QString>());
|
|
break;
|
|
case IndexName:
|
|
this->setName(variant.value<QString>());
|
|
break;
|
|
case IndexUserId:
|
|
this->m_user.setId(variant.value<QString>());
|
|
break;
|
|
case IndexUserPassword:
|
|
this->m_user.setPassword(variant.value<QString>());
|
|
break;
|
|
case IndexUserRealName:
|
|
this->m_user.setRealName(variant.value<QString>());
|
|
break;
|
|
case IndexIsAcceptingConnections:
|
|
this->setIsAcceptingConnections(variant.value<bool>());
|
|
break;
|
|
default:
|
|
Q_ASSERT_X(false, "CServer", "index unknown");
|
|
break;
|
|
}
|
|
}
|
|
|
|
/*
|
|
* Register metadata
|
|
*/
|
|
void CServer::registerMetadata()
|
|
{
|
|
qRegisterMetaType<CServer>();
|
|
qDBusRegisterMetaType<CServer>();
|
|
}
|
|
|
|
/*
|
|
* Members
|
|
*/
|
|
const QStringList &CServer::jsonMembers()
|
|
{
|
|
return TupleConverter<CServer>::jsonMembers();
|
|
}
|
|
|
|
/*
|
|
* To JSON
|
|
*/
|
|
QJsonObject CServer::toJson() const
|
|
{
|
|
return BlackMisc::serializeJson(CServer::jsonMembers(), TupleConverter<CServer>::toTuple(*this));
|
|
}
|
|
|
|
/*
|
|
* From Json
|
|
*/
|
|
void CServer::fromJson(const QJsonObject &json)
|
|
{
|
|
BlackMisc::deserializeJson(json, CServer::jsonMembers(), TupleConverter<CServer>::toTuple(*this));
|
|
}
|
|
|
|
} // namespace
|
|
} // namespace
|