From 1ffb27f506ed1a4b3766768b872a86af7799a39e Mon Sep 17 00:00:00 2001 From: Kitsune Ral Date: Wed, 11 Jul 2018 18:16:39 +0900 Subject: EventFactory::make() should return nullptr in case of failure Otherwise factory chaining doesn't work right (an unknown event returned by a chained factory is treated as successful parsing). --- lib/events/event.h | 2 +- lib/events/eventloader.h | 19 +++++++++++++++---- 2 files changed, 16 insertions(+), 5 deletions(-) diff --git a/lib/events/event.h b/lib/events/event.h index a205b1b4..8eb4ee88 100644 --- a/lib/events/event.h +++ b/lib/events/event.h @@ -166,7 +166,7 @@ namespace QMatrixClient for (const auto& f: factories()) if (auto e = f(json, matrixType)) return e; - return makeEvent(unknownEventTypeId(), json); + return nullptr; } private: diff --git a/lib/events/eventloader.h b/lib/events/eventloader.h index 5f1e3b57..ea261cac 100644 --- a/lib/events/eventloader.h +++ b/lib/events/eventloader.h @@ -22,6 +22,17 @@ #include "converters.h" namespace QMatrixClient { + namespace _impl { + template + static inline auto loadEvent(const QJsonObject& json, + const QString& matrixType) + { + if (auto e = EventFactory::make(json, matrixType)) + return e; + return makeEvent(unknownEventTypeId(), json); + } + } + /** Create an event with proper type from a JSON object * Use this factory template to detect the type from the JSON object * contents (the detected event type should derive from the template @@ -30,8 +41,8 @@ namespace QMatrixClient { template inline event_ptr_tt loadEvent(const QJsonObject& fullJson) { - return EventFactory - ::make(fullJson, fullJson[TypeKeyL].toString()); + return _impl::loadEvent(fullJson, + fullJson[TypeKeyL].toString()); } /** Create an event from a type string and content JSON @@ -43,8 +54,8 @@ namespace QMatrixClient { inline event_ptr_tt loadEvent(const QString& matrixType, const QJsonObject& content) { - return EventFactory - ::make(basicEventJson(matrixType, content), matrixType); + return _impl::loadEvent(basicEventJson(matrixType, content), + matrixType); } template struct FromJson> -- cgit v1.2.3