Compare commits
1 commit
Author | SHA1 | Date | |
---|---|---|---|
|
ecce25909b |
1 changed files with 10 additions and 49 deletions
|
@ -72,31 +72,15 @@ void NetworkPackage::createIdentityPackage(NetworkPackage* np)
|
||||||
//qCDebug(KDECONNECT_CORE) << "createIdentityPackage" << np->serialize();
|
//qCDebug(KDECONNECT_CORE) << "createIdentityPackage" << np->serialize();
|
||||||
}
|
}
|
||||||
|
|
||||||
template<class T>
|
|
||||||
QVariantMap qobject2qvariant(const T* object)
|
|
||||||
{
|
|
||||||
QVariantMap map;
|
|
||||||
auto metaObject = T::staticMetaObject;
|
|
||||||
for(int i = metaObject.propertyOffset(); i < metaObject.propertyCount(); ++i) {
|
|
||||||
QMetaProperty prop = metaObject.property(i);
|
|
||||||
map.insert(QString::fromLatin1(prop.name()), prop.readOnGadget(object));
|
|
||||||
}
|
|
||||||
|
|
||||||
return map;
|
|
||||||
}
|
|
||||||
|
|
||||||
QByteArray NetworkPackage::serialize() const
|
QByteArray NetworkPackage::serialize() const
|
||||||
{
|
{
|
||||||
//Object -> QVariant
|
//Object -> QVariant
|
||||||
//QVariantMap variant;
|
QVariantMap variant;
|
||||||
//variant["id"] = mId;
|
variant[QStringLiteral("id")] = mId;
|
||||||
//variant["type"] = mType;
|
variant[QStringLiteral("type")] = mType;
|
||||||
//variant["body"] = mBody;
|
variant[QStringLiteral("body")] = mBody;
|
||||||
QVariantMap variant = qobject2qvariant(this);
|
|
||||||
|
|
||||||
if (hasPayload()) {
|
if (hasPayload()) {
|
||||||
//qCDebug(KDECONNECT_CORE) << "Serializing payloadTransferInfo";
|
variant[QStringLiteral("payloadSize")] = mPayloadSize;
|
||||||
variant[QStringLiteral("payloadSize")] = payloadSize();
|
|
||||||
variant[QStringLiteral("payloadTransferInfo")] = mPayloadTransferInfo;
|
variant[QStringLiteral("payloadTransferInfo")] = mPayloadTransferInfo;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -106,34 +90,13 @@ QByteArray NetworkPackage::serialize() const
|
||||||
if (json.isEmpty()) {
|
if (json.isEmpty()) {
|
||||||
qCDebug(KDECONNECT_CORE) << "Serialization error:";
|
qCDebug(KDECONNECT_CORE) << "Serialization error:";
|
||||||
} else {
|
} else {
|
||||||
/*if (!isEncrypted()) {
|
//qDebug() << "Serialized package:" << json;
|
||||||
//qCDebug(KDECONNECT_CORE) << "Serialized package:" << json;
|
|
||||||
}*/
|
|
||||||
json.append('\n');
|
json.append('\n');
|
||||||
}
|
}
|
||||||
|
|
||||||
return json;
|
return json;
|
||||||
}
|
}
|
||||||
|
|
||||||
template <class T>
|
|
||||||
void qvariant2qobject(const QVariantMap& variant, T* object)
|
|
||||||
{
|
|
||||||
for ( QVariantMap::const_iterator iter = variant.begin(); iter != variant.end(); ++iter )
|
|
||||||
{
|
|
||||||
const int propertyIndex = T::staticMetaObject.indexOfProperty(iter.key().toLatin1());
|
|
||||||
if (propertyIndex < 0) {
|
|
||||||
qCWarning(KDECONNECT_CORE) << "missing property" << object << iter.key();
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
|
|
||||||
QMetaProperty property = T::staticMetaObject.property(propertyIndex);
|
|
||||||
bool ret = property.writeOnGadget(object, *iter);
|
|
||||||
if (!ret) {
|
|
||||||
qCWarning(KDECONNECT_CORE) << "couldn't set" << object << "->" << property.name() << '=' << *iter;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
bool NetworkPackage::unserialize(const QByteArray& a, NetworkPackage* np)
|
bool NetworkPackage::unserialize(const QByteArray& a, NetworkPackage* np)
|
||||||
{
|
{
|
||||||
//Json -> QVariant
|
//Json -> QVariant
|
||||||
|
@ -145,15 +108,13 @@ bool NetworkPackage::unserialize(const QByteArray& a, NetworkPackage* np)
|
||||||
}
|
}
|
||||||
|
|
||||||
auto variant = parser.toVariant().toMap();
|
auto variant = parser.toVariant().toMap();
|
||||||
qvariant2qobject(variant, np);
|
np->mId = variant["id"].toInt();
|
||||||
|
np->mType = variant["type"].toString();
|
||||||
|
np->mBody = variant["body"].toMap();
|
||||||
np->mPayloadSize = variant[QStringLiteral("payloadSize")].toInt(); //Will return 0 if was not present, which is ok
|
np->mPayloadSize = variant[QStringLiteral("payloadSize")].toInt(); //Will return 0 if was not present, which is ok
|
||||||
if (np->mPayloadSize == -1) {
|
|
||||||
np->mPayloadSize = np->get<int>(QStringLiteral("size"), -1);
|
|
||||||
}
|
|
||||||
np->mPayloadTransferInfo = variant[QStringLiteral("payloadTransferInfo")].toMap(); //Will return an empty qvariantmap if was not present, which is ok
|
np->mPayloadTransferInfo = variant[QStringLiteral("payloadTransferInfo")].toMap(); //Will return an empty qvariantmap if was not present, which is ok
|
||||||
|
|
||||||
//Ids containing characters that are not allowed as dbus paths would make app crash
|
//HACK: Ids containing characters that are not allowed as dbus paths would make app crash
|
||||||
if (np->mBody.contains(QStringLiteral("deviceId")))
|
if (np->mBody.contains(QStringLiteral("deviceId")))
|
||||||
{
|
{
|
||||||
QString deviceId = np->get<QString>(QStringLiteral("deviceId"));
|
QString deviceId = np->get<QString>(QStringLiteral("deviceId"));
|
||||||
|
|
Loading…
Reference in a new issue