From 4244cee8d5e0f760cccd2b45ad587670573ef03c Mon Sep 17 00:00:00 2001 From: Kitsune Ral Date: Mon, 24 Sep 2018 19:20:10 +0900 Subject: Prepare for CS API 0.4.0 This commit consists of two parts: upgrading the API infrastructure and trivial but sweeping update to the generated files. 1. The API infrastructure (converters.h, *.mustache and some other non-generated files) now can deal with top-level JSON arrays and response inlining; better supports property maps; and gets some formatting fixes in generated code. 2. Generated files now use QJsonValue instead of QJsonObject as a default type to (un)marshall Matrix API data structures, to match the change in the infrastructure above This commit is still using the old Matrix API definitions, before CS API 0.4.0. Getting to CS API 0.4.0 will come next. --- lib/csapi/definitions/auth_data.cpp | 19 ++++--- lib/csapi/definitions/auth_data.h | 4 +- lib/csapi/definitions/client_device.cpp | 25 +++++---- lib/csapi/definitions/client_device.h | 4 +- lib/csapi/definitions/device_keys.cpp | 29 +++++----- lib/csapi/definitions/device_keys.h | 4 +- lib/csapi/definitions/event_filter.cpp | 29 +++++----- lib/csapi/definitions/event_filter.h | 4 +- lib/csapi/definitions/public_rooms_response.cpp | 70 ++++++++++++------------- lib/csapi/definitions/public_rooms_response.h | 8 +-- lib/csapi/definitions/push_condition.cpp | 25 +++++---- lib/csapi/definitions/push_condition.h | 4 +- lib/csapi/definitions/push_rule.cpp | 33 ++++++------ lib/csapi/definitions/push_rule.h | 4 +- lib/csapi/definitions/push_ruleset.cpp | 29 +++++----- lib/csapi/definitions/push_ruleset.h | 4 +- lib/csapi/definitions/room_event_filter.cpp | 21 ++++---- lib/csapi/definitions/room_event_filter.h | 4 +- lib/csapi/definitions/sync_filter.cpp | 66 +++++++++++------------ lib/csapi/definitions/sync_filter.h | 8 +-- lib/csapi/definitions/user_identifier.cpp | 15 +++--- lib/csapi/definitions/user_identifier.h | 4 +- 22 files changed, 200 insertions(+), 213 deletions(-) (limited to 'lib/csapi/definitions') diff --git a/lib/csapi/definitions/auth_data.cpp b/lib/csapi/definitions/auth_data.cpp index 94e3c05c..f8639432 100644 --- a/lib/csapi/definitions/auth_data.cpp +++ b/lib/csapi/definitions/auth_data.cpp @@ -8,22 +8,21 @@ using namespace QMatrixClient; QJsonObject QMatrixClient::toJson(const AuthenticationData& pod) { - QJsonObject _json = toJson(pod.authInfo); - addParam<>(_json, QStringLiteral("type"), pod.type); - addParam(_json, QStringLiteral("session"), pod.session); - return _json; + QJsonObject jo = toJson(pod.authInfo); + addParam<>(jo, QStringLiteral("type"), pod.type); + addParam(jo, QStringLiteral("session"), pod.session); + return jo; } -AuthenticationData FromJson::operator()(const QJsonValue& jv) +AuthenticationData FromJsonObject::operator()(QJsonObject jo) const { - auto _json = jv.toObject(); AuthenticationData result; result.type = - fromJson(_json.take("type"_ls)); + fromJson(jo.take("type"_ls)); result.session = - fromJson(_json.take("session"_ls)); - - result.authInfo = fromJson>(_json); + fromJson(jo.take("session"_ls)); + + result.authInfo = fromJson>(jo); return result; } diff --git a/lib/csapi/definitions/auth_data.h b/lib/csapi/definitions/auth_data.h index dce55396..661d3e5f 100644 --- a/lib/csapi/definitions/auth_data.h +++ b/lib/csapi/definitions/auth_data.h @@ -26,9 +26,9 @@ namespace QMatrixClient QJsonObject toJson(const AuthenticationData& pod); - template <> struct FromJson + template <> struct FromJsonObject { - AuthenticationData operator()(const QJsonValue& jv); + AuthenticationData operator()(QJsonObject jo) const; }; } // namespace QMatrixClient diff --git a/lib/csapi/definitions/client_device.cpp b/lib/csapi/definitions/client_device.cpp index bd7acd02..4a192f85 100644 --- a/lib/csapi/definitions/client_device.cpp +++ b/lib/csapi/definitions/client_device.cpp @@ -8,27 +8,26 @@ using namespace QMatrixClient; QJsonObject QMatrixClient::toJson(const Device& pod) { - QJsonObject _json; - addParam<>(_json, QStringLiteral("device_id"), pod.deviceId); - addParam(_json, QStringLiteral("display_name"), pod.displayName); - addParam(_json, QStringLiteral("last_seen_ip"), pod.lastSeenIp); - addParam(_json, QStringLiteral("last_seen_ts"), pod.lastSeenTs); - return _json; + QJsonObject jo; + addParam<>(jo, QStringLiteral("device_id"), pod.deviceId); + addParam(jo, QStringLiteral("display_name"), pod.displayName); + addParam(jo, QStringLiteral("last_seen_ip"), pod.lastSeenIp); + addParam(jo, QStringLiteral("last_seen_ts"), pod.lastSeenTs); + return jo; } -Device FromJson::operator()(const QJsonValue& jv) +Device FromJsonObject::operator()(const QJsonObject& jo) const { - const auto& _json = jv.toObject(); Device result; result.deviceId = - fromJson(_json.value("device_id"_ls)); + fromJson(jo.value("device_id"_ls)); result.displayName = - fromJson(_json.value("display_name"_ls)); + fromJson(jo.value("display_name"_ls)); result.lastSeenIp = - fromJson(_json.value("last_seen_ip"_ls)); + fromJson(jo.value("last_seen_ip"_ls)); result.lastSeenTs = - fromJson(_json.value("last_seen_ts"_ls)); - + fromJson(jo.value("last_seen_ts"_ls)); + return result; } diff --git a/lib/csapi/definitions/client_device.h b/lib/csapi/definitions/client_device.h index ba65483d..9f10888a 100644 --- a/lib/csapi/definitions/client_device.h +++ b/lib/csapi/definitions/client_device.h @@ -31,9 +31,9 @@ namespace QMatrixClient QJsonObject toJson(const Device& pod); - template <> struct FromJson + template <> struct FromJsonObject { - Device operator()(const QJsonValue& jv); + Device operator()(const QJsonObject& jo) const; }; } // namespace QMatrixClient diff --git a/lib/csapi/definitions/device_keys.cpp b/lib/csapi/definitions/device_keys.cpp index d17f4c12..a0e0ca42 100644 --- a/lib/csapi/definitions/device_keys.cpp +++ b/lib/csapi/definitions/device_keys.cpp @@ -8,30 +8,29 @@ using namespace QMatrixClient; QJsonObject QMatrixClient::toJson(const DeviceKeys& pod) { - QJsonObject _json; - addParam<>(_json, QStringLiteral("user_id"), pod.userId); - addParam<>(_json, QStringLiteral("device_id"), pod.deviceId); - addParam<>(_json, QStringLiteral("algorithms"), pod.algorithms); - addParam<>(_json, QStringLiteral("keys"), pod.keys); - addParam<>(_json, QStringLiteral("signatures"), pod.signatures); - return _json; + QJsonObject jo; + addParam<>(jo, QStringLiteral("user_id"), pod.userId); + addParam<>(jo, QStringLiteral("device_id"), pod.deviceId); + addParam<>(jo, QStringLiteral("algorithms"), pod.algorithms); + addParam<>(jo, QStringLiteral("keys"), pod.keys); + addParam<>(jo, QStringLiteral("signatures"), pod.signatures); + return jo; } -DeviceKeys FromJson::operator()(const QJsonValue& jv) +DeviceKeys FromJsonObject::operator()(const QJsonObject& jo) const { - const auto& _json = jv.toObject(); DeviceKeys result; result.userId = - fromJson(_json.value("user_id"_ls)); + fromJson(jo.value("user_id"_ls)); result.deviceId = - fromJson(_json.value("device_id"_ls)); + fromJson(jo.value("device_id"_ls)); result.algorithms = - fromJson(_json.value("algorithms"_ls)); + fromJson(jo.value("algorithms"_ls)); result.keys = - fromJson>(_json.value("keys"_ls)); + fromJson>(jo.value("keys"_ls)); result.signatures = - fromJson>>(_json.value("signatures"_ls)); - + fromJson>>(jo.value("signatures"_ls)); + return result; } diff --git a/lib/csapi/definitions/device_keys.h b/lib/csapi/definitions/device_keys.h index 4b223609..6023e7e8 100644 --- a/lib/csapi/definitions/device_keys.h +++ b/lib/csapi/definitions/device_keys.h @@ -37,9 +37,9 @@ namespace QMatrixClient QJsonObject toJson(const DeviceKeys& pod); - template <> struct FromJson + template <> struct FromJsonObject { - DeviceKeys operator()(const QJsonValue& jv); + DeviceKeys operator()(const QJsonObject& jo) const; }; } // namespace QMatrixClient diff --git a/lib/csapi/definitions/event_filter.cpp b/lib/csapi/definitions/event_filter.cpp index 336de0dd..2f0bc899 100644 --- a/lib/csapi/definitions/event_filter.cpp +++ b/lib/csapi/definitions/event_filter.cpp @@ -8,30 +8,29 @@ using namespace QMatrixClient; QJsonObject QMatrixClient::toJson(const Filter& pod) { - QJsonObject _json; - addParam(_json, QStringLiteral("limit"), pod.limit); - addParam(_json, QStringLiteral("not_senders"), pod.notSenders); - addParam(_json, QStringLiteral("not_types"), pod.notTypes); - addParam(_json, QStringLiteral("senders"), pod.senders); - addParam(_json, QStringLiteral("types"), pod.types); - return _json; + QJsonObject jo; + addParam(jo, QStringLiteral("limit"), pod.limit); + addParam(jo, QStringLiteral("not_senders"), pod.notSenders); + addParam(jo, QStringLiteral("not_types"), pod.notTypes); + addParam(jo, QStringLiteral("senders"), pod.senders); + addParam(jo, QStringLiteral("types"), pod.types); + return jo; } -Filter FromJson::operator()(const QJsonValue& jv) +Filter FromJsonObject::operator()(const QJsonObject& jo) const { - const auto& _json = jv.toObject(); Filter result; result.limit = - fromJson(_json.value("limit"_ls)); + fromJson(jo.value("limit"_ls)); result.notSenders = - fromJson(_json.value("not_senders"_ls)); + fromJson(jo.value("not_senders"_ls)); result.notTypes = - fromJson(_json.value("not_types"_ls)); + fromJson(jo.value("not_types"_ls)); result.senders = - fromJson(_json.value("senders"_ls)); + fromJson(jo.value("senders"_ls)); result.types = - fromJson(_json.value("types"_ls)); - + fromJson(jo.value("types"_ls)); + return result; } diff --git a/lib/csapi/definitions/event_filter.h b/lib/csapi/definitions/event_filter.h index 76f08319..2c64181b 100644 --- a/lib/csapi/definitions/event_filter.h +++ b/lib/csapi/definitions/event_filter.h @@ -28,9 +28,9 @@ namespace QMatrixClient QJsonObject toJson(const Filter& pod); - template <> struct FromJson + template <> struct FromJsonObject { - Filter operator()(const QJsonValue& jv); + Filter operator()(const QJsonObject& jo) const; }; } // namespace QMatrixClient diff --git a/lib/csapi/definitions/public_rooms_response.cpp b/lib/csapi/definitions/public_rooms_response.cpp index 7cdf16af..60ae3749 100644 --- a/lib/csapi/definitions/public_rooms_response.cpp +++ b/lib/csapi/definitions/public_rooms_response.cpp @@ -8,68 +8,66 @@ using namespace QMatrixClient; QJsonObject QMatrixClient::toJson(const PublicRoomsChunk& pod) { - QJsonObject _json; - addParam(_json, QStringLiteral("aliases"), pod.aliases); - addParam(_json, QStringLiteral("canonical_alias"), pod.canonicalAlias); - addParam(_json, QStringLiteral("name"), pod.name); - addParam<>(_json, QStringLiteral("num_joined_members"), pod.numJoinedMembers); - addParam<>(_json, QStringLiteral("room_id"), pod.roomId); - addParam(_json, QStringLiteral("topic"), pod.topic); - addParam<>(_json, QStringLiteral("world_readable"), pod.worldReadable); - addParam<>(_json, QStringLiteral("guest_can_join"), pod.guestCanJoin); - addParam(_json, QStringLiteral("avatar_url"), pod.avatarUrl); - return _json; + QJsonObject jo; + addParam(jo, QStringLiteral("aliases"), pod.aliases); + addParam(jo, QStringLiteral("canonical_alias"), pod.canonicalAlias); + addParam(jo, QStringLiteral("name"), pod.name); + addParam<>(jo, QStringLiteral("num_joined_members"), pod.numJoinedMembers); + addParam<>(jo, QStringLiteral("room_id"), pod.roomId); + addParam(jo, QStringLiteral("topic"), pod.topic); + addParam<>(jo, QStringLiteral("world_readable"), pod.worldReadable); + addParam<>(jo, QStringLiteral("guest_can_join"), pod.guestCanJoin); + addParam(jo, QStringLiteral("avatar_url"), pod.avatarUrl); + return jo; } -PublicRoomsChunk FromJson::operator()(const QJsonValue& jv) +PublicRoomsChunk FromJsonObject::operator()(const QJsonObject& jo) const { - const auto& _json = jv.toObject(); PublicRoomsChunk result; result.aliases = - fromJson(_json.value("aliases"_ls)); + fromJson(jo.value("aliases"_ls)); result.canonicalAlias = - fromJson(_json.value("canonical_alias"_ls)); + fromJson(jo.value("canonical_alias"_ls)); result.name = - fromJson(_json.value("name"_ls)); + fromJson(jo.value("name"_ls)); result.numJoinedMembers = - fromJson(_json.value("num_joined_members"_ls)); + fromJson(jo.value("num_joined_members"_ls)); result.roomId = - fromJson(_json.value("room_id"_ls)); + fromJson(jo.value("room_id"_ls)); result.topic = - fromJson(_json.value("topic"_ls)); + fromJson(jo.value("topic"_ls)); result.worldReadable = - fromJson(_json.value("world_readable"_ls)); + fromJson(jo.value("world_readable"_ls)); result.guestCanJoin = - fromJson(_json.value("guest_can_join"_ls)); + fromJson(jo.value("guest_can_join"_ls)); result.avatarUrl = - fromJson(_json.value("avatar_url"_ls)); - + fromJson(jo.value("avatar_url"_ls)); + return result; } QJsonObject QMatrixClient::toJson(const PublicRoomsResponse& pod) { - QJsonObject _json; - addParam<>(_json, QStringLiteral("chunk"), pod.chunk); - addParam(_json, QStringLiteral("next_batch"), pod.nextBatch); - addParam(_json, QStringLiteral("prev_batch"), pod.prevBatch); - addParam(_json, QStringLiteral("total_room_count_estimate"), pod.totalRoomCountEstimate); - return _json; + QJsonObject jo; + addParam<>(jo, QStringLiteral("chunk"), pod.chunk); + addParam(jo, QStringLiteral("next_batch"), pod.nextBatch); + addParam(jo, QStringLiteral("prev_batch"), pod.prevBatch); + addParam(jo, QStringLiteral("total_room_count_estimate"), pod.totalRoomCountEstimate); + return jo; } -PublicRoomsResponse FromJson::operator()(const QJsonValue& jv) +PublicRoomsResponse FromJsonObject::operator()(const QJsonObject& jo) const { - const auto& _json = jv.toObject(); PublicRoomsResponse result; result.chunk = - fromJson>(_json.value("chunk"_ls)); + fromJson>(jo.value("chunk"_ls)); result.nextBatch = - fromJson(_json.value("next_batch"_ls)); + fromJson(jo.value("next_batch"_ls)); result.prevBatch = - fromJson(_json.value("prev_batch"_ls)); + fromJson(jo.value("prev_batch"_ls)); result.totalRoomCountEstimate = - fromJson(_json.value("total_room_count_estimate"_ls)); - + fromJson(jo.value("total_room_count_estimate"_ls)); + return result; } diff --git a/lib/csapi/definitions/public_rooms_response.h b/lib/csapi/definitions/public_rooms_response.h index eea4bc5e..e7fe5ad8 100644 --- a/lib/csapi/definitions/public_rooms_response.h +++ b/lib/csapi/definitions/public_rooms_response.h @@ -39,9 +39,9 @@ namespace QMatrixClient QJsonObject toJson(const PublicRoomsChunk& pod); - template <> struct FromJson + template <> struct FromJsonObject { - PublicRoomsChunk operator()(const QJsonValue& jv); + PublicRoomsChunk operator()(const QJsonObject& jo) const; }; /// A list of the rooms on the server. @@ -64,9 +64,9 @@ namespace QMatrixClient QJsonObject toJson(const PublicRoomsResponse& pod); - template <> struct FromJson + template <> struct FromJsonObject { - PublicRoomsResponse operator()(const QJsonValue& jv); + PublicRoomsResponse operator()(const QJsonObject& jo) const; }; } // namespace QMatrixClient diff --git a/lib/csapi/definitions/push_condition.cpp b/lib/csapi/definitions/push_condition.cpp index 19351ae1..045094bc 100644 --- a/lib/csapi/definitions/push_condition.cpp +++ b/lib/csapi/definitions/push_condition.cpp @@ -8,27 +8,26 @@ using namespace QMatrixClient; QJsonObject QMatrixClient::toJson(const PushCondition& pod) { - QJsonObject _json; - addParam<>(_json, QStringLiteral("kind"), pod.kind); - addParam(_json, QStringLiteral("key"), pod.key); - addParam(_json, QStringLiteral("pattern"), pod.pattern); - addParam(_json, QStringLiteral("is"), pod.is); - return _json; + QJsonObject jo; + addParam<>(jo, QStringLiteral("kind"), pod.kind); + addParam(jo, QStringLiteral("key"), pod.key); + addParam(jo, QStringLiteral("pattern"), pod.pattern); + addParam(jo, QStringLiteral("is"), pod.is); + return jo; } -PushCondition FromJson::operator()(const QJsonValue& jv) +PushCondition FromJsonObject::operator()(const QJsonObject& jo) const { - const auto& _json = jv.toObject(); PushCondition result; result.kind = - fromJson(_json.value("kind"_ls)); + fromJson(jo.value("kind"_ls)); result.key = - fromJson(_json.value("key"_ls)); + fromJson(jo.value("key"_ls)); result.pattern = - fromJson(_json.value("pattern"_ls)); + fromJson(jo.value("pattern"_ls)); result.is = - fromJson(_json.value("is"_ls)); - + fromJson(jo.value("is"_ls)); + return result; } diff --git a/lib/csapi/definitions/push_condition.h b/lib/csapi/definitions/push_condition.h index 99d7083c..defcebb3 100644 --- a/lib/csapi/definitions/push_condition.h +++ b/lib/csapi/definitions/push_condition.h @@ -31,9 +31,9 @@ namespace QMatrixClient QJsonObject toJson(const PushCondition& pod); - template <> struct FromJson + template <> struct FromJsonObject { - PushCondition operator()(const QJsonValue& jv); + PushCondition operator()(const QJsonObject& jo) const; }; } // namespace QMatrixClient diff --git a/lib/csapi/definitions/push_rule.cpp b/lib/csapi/definitions/push_rule.cpp index 833135ec..baddd187 100644 --- a/lib/csapi/definitions/push_rule.cpp +++ b/lib/csapi/definitions/push_rule.cpp @@ -8,33 +8,32 @@ using namespace QMatrixClient; QJsonObject QMatrixClient::toJson(const PushRule& pod) { - QJsonObject _json; - addParam<>(_json, QStringLiteral("actions"), pod.actions); - addParam<>(_json, QStringLiteral("default"), pod.isDefault); - addParam<>(_json, QStringLiteral("enabled"), pod.enabled); - addParam<>(_json, QStringLiteral("rule_id"), pod.ruleId); - addParam(_json, QStringLiteral("conditions"), pod.conditions); - addParam(_json, QStringLiteral("pattern"), pod.pattern); - return _json; + QJsonObject jo; + addParam<>(jo, QStringLiteral("actions"), pod.actions); + addParam<>(jo, QStringLiteral("default"), pod.isDefault); + addParam<>(jo, QStringLiteral("enabled"), pod.enabled); + addParam<>(jo, QStringLiteral("rule_id"), pod.ruleId); + addParam(jo, QStringLiteral("conditions"), pod.conditions); + addParam(jo, QStringLiteral("pattern"), pod.pattern); + return jo; } -PushRule FromJson::operator()(const QJsonValue& jv) +PushRule FromJsonObject::operator()(const QJsonObject& jo) const { - const auto& _json = jv.toObject(); PushRule result; result.actions = - fromJson>(_json.value("actions"_ls)); + fromJson>(jo.value("actions"_ls)); result.isDefault = - fromJson(_json.value("default"_ls)); + fromJson(jo.value("default"_ls)); result.enabled = - fromJson(_json.value("enabled"_ls)); + fromJson(jo.value("enabled"_ls)); result.ruleId = - fromJson(_json.value("rule_id"_ls)); + fromJson(jo.value("rule_id"_ls)); result.conditions = - fromJson>(_json.value("conditions"_ls)); + fromJson>(jo.value("conditions"_ls)); result.pattern = - fromJson(_json.value("pattern"_ls)); - + fromJson(jo.value("pattern"_ls)); + return result; } diff --git a/lib/csapi/definitions/push_rule.h b/lib/csapi/definitions/push_rule.h index c6542aa6..5f52876d 100644 --- a/lib/csapi/definitions/push_rule.h +++ b/lib/csapi/definitions/push_rule.h @@ -37,9 +37,9 @@ namespace QMatrixClient QJsonObject toJson(const PushRule& pod); - template <> struct FromJson + template <> struct FromJsonObject { - PushRule operator()(const QJsonValue& jv); + PushRule operator()(const QJsonObject& jo) const; }; } // namespace QMatrixClient diff --git a/lib/csapi/definitions/push_ruleset.cpp b/lib/csapi/definitions/push_ruleset.cpp index c424f686..14b7a4b6 100644 --- a/lib/csapi/definitions/push_ruleset.cpp +++ b/lib/csapi/definitions/push_ruleset.cpp @@ -8,30 +8,29 @@ using namespace QMatrixClient; QJsonObject QMatrixClient::toJson(const PushRuleset& pod) { - QJsonObject _json; - addParam(_json, QStringLiteral("content"), pod.content); - addParam(_json, QStringLiteral("override"), pod.override); - addParam(_json, QStringLiteral("room"), pod.room); - addParam(_json, QStringLiteral("sender"), pod.sender); - addParam(_json, QStringLiteral("underride"), pod.underride); - return _json; + QJsonObject jo; + addParam(jo, QStringLiteral("content"), pod.content); + addParam(jo, QStringLiteral("override"), pod.override); + addParam(jo, QStringLiteral("room"), pod.room); + addParam(jo, QStringLiteral("sender"), pod.sender); + addParam(jo, QStringLiteral("underride"), pod.underride); + return jo; } -PushRuleset FromJson::operator()(const QJsonValue& jv) +PushRuleset FromJsonObject::operator()(const QJsonObject& jo) const { - const auto& _json = jv.toObject(); PushRuleset result; result.content = - fromJson>(_json.value("content"_ls)); + fromJson>(jo.value("content"_ls)); result.override = - fromJson>(_json.value("override"_ls)); + fromJson>(jo.value("override"_ls)); result.room = - fromJson>(_json.value("room"_ls)); + fromJson>(jo.value("room"_ls)); result.sender = - fromJson>(_json.value("sender"_ls)); + fromJson>(jo.value("sender"_ls)); result.underride = - fromJson>(_json.value("underride"_ls)); - + fromJson>(jo.value("underride"_ls)); + return result; } diff --git a/lib/csapi/definitions/push_ruleset.h b/lib/csapi/definitions/push_ruleset.h index a5e9ff2c..a274b72a 100644 --- a/lib/csapi/definitions/push_ruleset.h +++ b/lib/csapi/definitions/push_ruleset.h @@ -25,9 +25,9 @@ namespace QMatrixClient QJsonObject toJson(const PushRuleset& pod); - template <> struct FromJson + template <> struct FromJsonObject { - PushRuleset operator()(const QJsonValue& jv); + PushRuleset operator()(const QJsonObject& jo) const; }; } // namespace QMatrixClient diff --git a/lib/csapi/definitions/room_event_filter.cpp b/lib/csapi/definitions/room_event_filter.cpp index 18ce07ec..f6f1e5cb 100644 --- a/lib/csapi/definitions/room_event_filter.cpp +++ b/lib/csapi/definitions/room_event_filter.cpp @@ -8,24 +8,23 @@ using namespace QMatrixClient; QJsonObject QMatrixClient::toJson(const RoomEventFilter& pod) { - QJsonObject _json; - addParam(_json, QStringLiteral("not_rooms"), pod.notRooms); - addParam(_json, QStringLiteral("rooms"), pod.rooms); - addParam(_json, QStringLiteral("contains_url"), pod.containsUrl); - return _json; + QJsonObject jo; + addParam(jo, QStringLiteral("not_rooms"), pod.notRooms); + addParam(jo, QStringLiteral("rooms"), pod.rooms); + addParam(jo, QStringLiteral("contains_url"), pod.containsUrl); + return jo; } -RoomEventFilter FromJson::operator()(const QJsonValue& jv) +RoomEventFilter FromJsonObject::operator()(const QJsonObject& jo) const { - const auto& _json = jv.toObject(); RoomEventFilter result; result.notRooms = - fromJson(_json.value("not_rooms"_ls)); + fromJson(jo.value("not_rooms"_ls)); result.rooms = - fromJson(_json.value("rooms"_ls)); + fromJson(jo.value("rooms"_ls)); result.containsUrl = - fromJson(_json.value("contains_url"_ls)); - + fromJson(jo.value("contains_url"_ls)); + return result; } diff --git a/lib/csapi/definitions/room_event_filter.h b/lib/csapi/definitions/room_event_filter.h index 3252af30..1e8d644e 100644 --- a/lib/csapi/definitions/room_event_filter.h +++ b/lib/csapi/definitions/room_event_filter.h @@ -25,9 +25,9 @@ namespace QMatrixClient QJsonObject toJson(const RoomEventFilter& pod); - template <> struct FromJson + template <> struct FromJsonObject { - RoomEventFilter operator()(const QJsonValue& jv); + RoomEventFilter operator()(const QJsonObject& jo) const; }; } // namespace QMatrixClient diff --git a/lib/csapi/definitions/sync_filter.cpp b/lib/csapi/definitions/sync_filter.cpp index b42f15f5..984e99ae 100644 --- a/lib/csapi/definitions/sync_filter.cpp +++ b/lib/csapi/definitions/sync_filter.cpp @@ -8,65 +8,63 @@ using namespace QMatrixClient; QJsonObject QMatrixClient::toJson(const RoomFilter& pod) { - QJsonObject _json; - addParam(_json, QStringLiteral("not_rooms"), pod.notRooms); - addParam(_json, QStringLiteral("rooms"), pod.rooms); - addParam(_json, QStringLiteral("ephemeral"), pod.ephemeral); - addParam(_json, QStringLiteral("include_leave"), pod.includeLeave); - addParam(_json, QStringLiteral("state"), pod.state); - addParam(_json, QStringLiteral("timeline"), pod.timeline); - addParam(_json, QStringLiteral("account_data"), pod.accountData); - return _json; + QJsonObject jo; + addParam(jo, QStringLiteral("not_rooms"), pod.notRooms); + addParam(jo, QStringLiteral("rooms"), pod.rooms); + addParam(jo, QStringLiteral("ephemeral"), pod.ephemeral); + addParam(jo, QStringLiteral("include_leave"), pod.includeLeave); + addParam(jo, QStringLiteral("state"), pod.state); + addParam(jo, QStringLiteral("timeline"), pod.timeline); + addParam(jo, QStringLiteral("account_data"), pod.accountData); + return jo; } -RoomFilter FromJson::operator()(const QJsonValue& jv) +RoomFilter FromJsonObject::operator()(const QJsonObject& jo) const { - const auto& _json = jv.toObject(); RoomFilter result; result.notRooms = - fromJson(_json.value("not_rooms"_ls)); + fromJson(jo.value("not_rooms"_ls)); result.rooms = - fromJson(_json.value("rooms"_ls)); + fromJson(jo.value("rooms"_ls)); result.ephemeral = - fromJson(_json.value("ephemeral"_ls)); + fromJson(jo.value("ephemeral"_ls)); result.includeLeave = - fromJson(_json.value("include_leave"_ls)); + fromJson(jo.value("include_leave"_ls)); result.state = - fromJson(_json.value("state"_ls)); + fromJson(jo.value("state"_ls)); result.timeline = - fromJson(_json.value("timeline"_ls)); + fromJson(jo.value("timeline"_ls)); result.accountData = - fromJson(_json.value("account_data"_ls)); - + fromJson(jo.value("account_data"_ls)); + return result; } QJsonObject QMatrixClient::toJson(const SyncFilter& pod) { - QJsonObject _json; - addParam(_json, QStringLiteral("event_fields"), pod.eventFields); - addParam(_json, QStringLiteral("event_format"), pod.eventFormat); - addParam(_json, QStringLiteral("presence"), pod.presence); - addParam(_json, QStringLiteral("account_data"), pod.accountData); - addParam(_json, QStringLiteral("room"), pod.room); - return _json; + QJsonObject jo; + addParam(jo, QStringLiteral("event_fields"), pod.eventFields); + addParam(jo, QStringLiteral("event_format"), pod.eventFormat); + addParam(jo, QStringLiteral("presence"), pod.presence); + addParam(jo, QStringLiteral("account_data"), pod.accountData); + addParam(jo, QStringLiteral("room"), pod.room); + return jo; } -SyncFilter FromJson::operator()(const QJsonValue& jv) +SyncFilter FromJsonObject::operator()(const QJsonObject& jo) const { - const auto& _json = jv.toObject(); SyncFilter result; result.eventFields = - fromJson(_json.value("event_fields"_ls)); + fromJson(jo.value("event_fields"_ls)); result.eventFormat = - fromJson(_json.value("event_format"_ls)); + fromJson(jo.value("event_format"_ls)); result.presence = - fromJson(_json.value("presence"_ls)); + fromJson(jo.value("presence"_ls)); result.accountData = - fromJson(_json.value("account_data"_ls)); + fromJson(jo.value("account_data"_ls)); result.room = - fromJson(_json.value("room"_ls)); - + fromJson(jo.value("room"_ls)); + return result; } diff --git a/lib/csapi/definitions/sync_filter.h b/lib/csapi/definitions/sync_filter.h index 7f48f02c..47b5fcdb 100644 --- a/lib/csapi/definitions/sync_filter.h +++ b/lib/csapi/definitions/sync_filter.h @@ -35,9 +35,9 @@ namespace QMatrixClient QJsonObject toJson(const RoomFilter& pod); - template <> struct FromJson + template <> struct FromJsonObject { - RoomFilter operator()(const QJsonValue& jv); + RoomFilter operator()(const QJsonObject& jo) const; }; struct SyncFilter @@ -56,9 +56,9 @@ namespace QMatrixClient QJsonObject toJson(const SyncFilter& pod); - template <> struct FromJson + template <> struct FromJsonObject { - SyncFilter operator()(const QJsonValue& jv); + SyncFilter operator()(const QJsonObject& jo) const; }; } // namespace QMatrixClient diff --git a/lib/csapi/definitions/user_identifier.cpp b/lib/csapi/definitions/user_identifier.cpp index 3d3acaba..80a6d450 100644 --- a/lib/csapi/definitions/user_identifier.cpp +++ b/lib/csapi/definitions/user_identifier.cpp @@ -8,19 +8,18 @@ using namespace QMatrixClient; QJsonObject QMatrixClient::toJson(const UserIdentifier& pod) { - QJsonObject _json = toJson(pod.additionalProperties); - addParam<>(_json, QStringLiteral("type"), pod.type); - return _json; + QJsonObject jo = toJson(pod.additionalProperties); + addParam<>(jo, QStringLiteral("type"), pod.type); + return jo; } -UserIdentifier FromJson::operator()(const QJsonValue& jv) +UserIdentifier FromJsonObject::operator()(QJsonObject jo) const { - auto _json = jv.toObject(); UserIdentifier result; result.type = - fromJson(_json.take("type"_ls)); - - result.additionalProperties = fromJson(_json); + fromJson(jo.take("type"_ls)); + + result.additionalProperties = fromJson(jo); return result; } diff --git a/lib/csapi/definitions/user_identifier.h b/lib/csapi/definitions/user_identifier.h index edc254d3..42614436 100644 --- a/lib/csapi/definitions/user_identifier.h +++ b/lib/csapi/definitions/user_identifier.h @@ -23,9 +23,9 @@ namespace QMatrixClient QJsonObject toJson(const UserIdentifier& pod); - template <> struct FromJson + template <> struct FromJsonObject { - UserIdentifier operator()(const QJsonValue& jv); + UserIdentifier operator()(QJsonObject jo) const; }; } // namespace QMatrixClient -- cgit v1.2.3