/****************************************************************************** * Copyright (C) 2015 Felix Rohrbach * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ #pragma once #include "util.h" #include namespace QMatrixClient { // === event_ptr_tt<> and type casting facilities === template using event_ptr_tt = std::unique_ptr; template inline EventT* rawPtr(const event_ptr_tt& ptr) { return ptr.get(); } template inline TargetEventT* weakPtrCast(const event_ptr_tt& ptr) { return static_cast(rawPtr(ptr)); } template inline event_ptr_tt ptrCast(event_ptr_tt&& ptr) { return unique_ptr_cast(ptr); } // === Standard Matrix key names and basicEventJson() === static const auto TypeKey = QStringLiteral("type"); static const auto ContentKey = QStringLiteral("content"); static const auto EventIdKey = QStringLiteral("event_id"); static const auto TypeKeyL = "type"_ls; static const auto ContentKeyL = "content"_ls; static const auto EventIdKeyL = "event_id"_ls; static const auto UnsignedKeyL = "unsigned"_ls; static const auto RedactedCauseKeyL = "redacted_because"_ls; static const auto PrevContentKeyL = "prev_content"_ls; // Minimal correct Matrix event JSON template inline QJsonObject basicEventJson(StrT matrixType, const QJsonObject& content) { return { { TypeKey, std::forward(matrixType) }, { ContentKey, content } }; } // === Event factory === using event_type_t = size_t; using event_mtype_t = const char*; template struct EventTypeTraits { static const event_type_t id; }; template <> struct EventTypeTraits { static constexpr event_type_t id = 0; }; event_type_t nextTypeId(); template const event_type_t EventTypeTraits::id = nextTypeId(); template inline event_type_t typeId() { return EventTypeTraits>::id; } inline event_type_t unknownEventTypeId() { return typeId(); } template inline event_ptr_tt makeEvent(ArgTs&&... args) { return std::make_unique(std::forward(args)...); } template class EventFactory { public: template static void addMethod(FnT&& method) { factories().emplace_back(std::forward(method)); } /** Chain two type factories * Adds the factory class of EventT2 (EventT2::factory_t) to * the list in factory class of EventT1 (EventT1::factory_t) so * that when EventT1::factory_t::make() is invoked, types of * EventT2 factory are looked through as well. This is used * to include RoomEvent types into the more general Event factory, * and state event types into the RoomEvent factory. */ template static auto chainFactory() { addMethod(&EventT::factory_t::make); return 0; } static event_ptr_tt make(const QJsonObject& json, const QString& matrixType) { for (const auto& f: factories()) if (auto e = f(json, matrixType)) return e; return makeEvent(unknownEventTypeId(), json); } private: static auto& factories() { using inner_factory_tt = std::function(const QJsonObject&, const QString&)>; static std::vector _factories {}; return _factories; } }; /** Add a type to its default factory * Adds a standard factory method (via makeEvent<>) for a given * type to EventT::factory_t factory class so that it can be * created dynamically from loadEvent<>(). * * \tparam EventT the type to enable dynamic creation of * \return the registered type id * \sa loadEvent, Event::type */ template inline void setupFactory() { EventT::factory_t::addMethod( [] (const QJsonObject& json, const QString& jsonMatrixType) { return EventT::matrixTypeId() == jsonMatrixType ? makeEvent(json) : nullptr; }); } // === Event === class Event { Q_GADGET Q_PROPERTY(Type type READ type CONSTANT) Q_PROPERTY(QJsonObject contentJson READ contentJson CONSTANT) public: using Type = event_type_t; using factory_t = EventFactory; explicit Event(Type type, const QJsonObject& json); explicit Event(Type type, event_mtype_t matrixType, const QJsonObject& contentJson = {}); Event(const Event&) = delete; Event(Event&&) = default; Event& operator=(const Event&) = delete; Event& operator=(Event&&) = delete; virtual ~Event(); Type type() const { return _type; } QString matrixType() const; QByteArray originalJson() const; QJsonObject originalJsonObject() const { return fullJson(); } const QJsonObject& fullJson() const { return _json; } // According to the CS API spec, every event also has // a "content" object; but since its structure is different for // different types, we're implementing it per-event type. const QJsonObject contentJson() const; const QJsonObject unsignedJson() const; virtual bool isStateEvent() const { return false; } protected: QJsonObject& editJson() { return _json; } private: Type _type; QJsonObject _json; }; using EventPtr = event_ptr_tt; template using EventsArray = std::vector>; using Events = EventsArray; // === Macros used with event class definitions === // This macro should be used in a public section of an event class to // provide matrixTypeId() and typeId(). #define DEFINE_EVENT_TYPEID(_Id, _Type) \ static constexpr event_mtype_t matrixTypeId() { return _Id; } \ static auto typeId() { return QMatrixClient::typeId<_Type>(); } \ // End of macro // This macro should be put after an event class definition (in .h or .cpp) // to enable its deserialisation from a /sync and other // polymorphic event arrays #define REGISTER_EVENT_TYPE(_Type) \ namespace { \ [[gnu::unused]] \ static const auto _factoryAdded##_Type = ( setupFactory<_Type>(), 0); \ } \ // End of macro // This macro provides constants in EventType:: namespace for // back-compatibility with libQMatrixClient 0.3 event type system. #define DEFINE_EVENTTYPE_ALIAS(_Id, _Type) \ namespace EventType \ { \ [[deprecated("Use typeId<>(), is<>() or visit<>()")]] \ static const auto _Id = typeId<_Type>(); \ } \ // End of macro // === is<>() and visit<>() === template inline bool is(const Event& e) { return e.type() == typeId(); } inline bool isUnknown(const Event& e) { return e.type() == unknownEventTypeId(); } template inline fn_return_t visit(const Event& event, FnT visitor) { using event_type = fn_arg_t; if (is(event)) return visitor(static_cast(event)); return fn_return_t(); } template inline auto visit(const Event& event, FnT visitor1, FnTs&&... visitors) { using event_type1 = fn_arg_t; if (is(event)) return visitor1(static_cast(event)); return visit(event, std::forward(visitors)...); } template inline auto visit(const event_ptr_tt& eptr, FnTs&&... visitors) { using return_type = decltype(visit(*eptr, visitors...)); if (eptr) return visit(*eptr, visitors...); return return_type(); } } // namespace QMatrixClient Q_DECLARE_METATYPE(QMatrixClient::Event*) Q_DECLARE_METATYPE(const QMatrixClient::Event*)