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/pusher.cpp | 38 ++++++++++++++++++-------------------- 1 file changed, 18 insertions(+), 20 deletions(-) (limited to 'lib/csapi/pusher.cpp') diff --git a/lib/csapi/pusher.cpp b/lib/csapi/pusher.cpp index 531970b3..d20db88a 100644 --- a/lib/csapi/pusher.cpp +++ b/lib/csapi/pusher.cpp @@ -16,43 +16,41 @@ namespace QMatrixClient { // Converters - template <> struct FromJson + template <> struct FromJsonObject { - GetPushersJob::PusherData operator()(const QJsonValue& jv) + GetPushersJob::PusherData operator()(const QJsonObject& jo) const { - const auto& _json = jv.toObject(); GetPushersJob::PusherData result; result.url = - fromJson(_json.value("url"_ls)); + fromJson(jo.value("url"_ls)); result.format = - fromJson(_json.value("format"_ls)); + fromJson(jo.value("format"_ls)); return result; } }; - template <> struct FromJson + template <> struct FromJsonObject { - GetPushersJob::Pusher operator()(const QJsonValue& jv) + GetPushersJob::Pusher operator()(const QJsonObject& jo) const { - const auto& _json = jv.toObject(); GetPushersJob::Pusher result; result.pushkey = - fromJson(_json.value("pushkey"_ls)); + fromJson(jo.value("pushkey"_ls)); result.kind = - fromJson(_json.value("kind"_ls)); + fromJson(jo.value("kind"_ls)); result.appId = - fromJson(_json.value("app_id"_ls)); + fromJson(jo.value("app_id"_ls)); result.appDisplayName = - fromJson(_json.value("app_display_name"_ls)); + fromJson(jo.value("app_display_name"_ls)); result.deviceDisplayName = - fromJson(_json.value("device_display_name"_ls)); + fromJson(jo.value("device_display_name"_ls)); result.profileTag = - fromJson(_json.value("profile_tag"_ls)); + fromJson(jo.value("profile_tag"_ls)); result.lang = - fromJson(_json.value("lang"_ls)); + fromJson(jo.value("lang"_ls)); result.data = - fromJson(_json.value("data"_ls)); + fromJson(jo.value("data"_ls)); return result; } @@ -100,10 +98,10 @@ namespace QMatrixClient QJsonObject toJson(const PostPusherJob::PusherData& pod) { - QJsonObject _json; - addParam(_json, QStringLiteral("url"), pod.url); - addParam(_json, QStringLiteral("format"), pod.format); - return _json; + QJsonObject jo; + addParam(jo, QStringLiteral("url"), pod.url); + addParam(jo, QStringLiteral("format"), pod.format); + return jo; } } // namespace QMatrixClient -- cgit v1.2.3