/* * Copyright (C) 2014 Christian Mollekopf * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program 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 General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the * Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ #pragma once #include "sink_export.h" #include #include #include #include namespace Sink { namespace ApplicationDomain { namespace Buffer { struct MailContact; struct ContactEmail; } } } /** * Defines how to convert qt primitives to flatbuffer ones */ template flatbuffers::uoffset_t SINK_EXPORT variantToProperty(const QVariant &, flatbuffers::FlatBufferBuilder &fbb); /** * Defines how to convert flatbuffer primitives to qt ones */ template QVariant SINK_EXPORT propertyToVariant(const flatbuffers::String *); template QVariant SINK_EXPORT propertyToVariant(uint8_t); template QVariant SINK_EXPORT propertyToVariant(const flatbuffers::Vector *); template QVariant SINK_EXPORT propertyToVariant(const flatbuffers::Vector> *); template QVariant SINK_EXPORT propertyToVariant(const Sink::ApplicationDomain::Buffer::MailContact *); template QVariant SINK_EXPORT propertyToVariant(const flatbuffers::Vector> *); template QVariant SINK_EXPORT propertyToVariant(const flatbuffers::Vector> *); /** * The property mapper is a non-typesafe virtual dispatch. * * Instead of using an interface and requring each implementation to override * a virtual method per property, the property mapper can be filled with accessors * that extract the properties from resource types. */ class PropertyMapper { public: virtual ~PropertyMapper(){}; template void addMapping(FunctionReturnValue (Buffer::*f)() const, void (BufferBuilder::*f2)(Arg)) { addReadMapping(f); addWriteMapping(f2); } virtual QVariant getProperty(const QByteArray &key, void const *buffer) const { if (mReadAccessors.contains(key)) { auto accessor = mReadAccessors.value(key); return accessor(buffer); } return QVariant(); } virtual void setProperty(const QByteArray &key, const QVariant &value, QList> &builderCalls, flatbuffers::FlatBufferBuilder &fbb) const { if (mWriteAccessors.contains(key)) { auto accessor = mWriteAccessors.value(key); builderCalls << accessor(value, fbb); } } bool hasMapping(const QByteArray &key) const { return mReadAccessors.contains(key); } QList availableProperties() const { return mReadAccessors.keys(); } private: void addReadMapping(const QByteArray &property, const std::function &mapping) { mReadAccessors.insert(property, mapping); } template void addReadMapping(FunctionReturnValue (Buffer::*f)() const) { addReadMapping(T::name, [f](void const *buffer) -> QVariant { return propertyToVariant((static_cast(buffer)->*f)()); }); } void addWriteMapping(const QByteArray &property, const std::function(const QVariant &, flatbuffers::FlatBufferBuilder &)> &mapping) { mWriteAccessors.insert(property, mapping); } template void addWriteMapping(void (BufferBuilder::*f)(uint8_t)) { addWriteMapping(T::name, [f](const QVariant &value, flatbuffers::FlatBufferBuilder &fbb) -> std::function { return [value, f](void *builder) { (static_cast(builder)->*f)(value.value()); }; }); } template void addWriteMapping(void (BufferBuilder::*f)(bool)) { addWriteMapping(T::name, [f](const QVariant &value, flatbuffers::FlatBufferBuilder &fbb) -> std::function { return [value, f](void *builder) { (static_cast(builder)->*f)(value.value()); }; }); } template void addWriteMapping(void (BufferBuilder::*f)(flatbuffers::Offset)) { addWriteMapping(T::name, [f](const QVariant &value, flatbuffers::FlatBufferBuilder &fbb) -> std::function { auto offset = variantToProperty(value, fbb); return [offset, f](void *builder) { (static_cast(builder)->*f)(offset); }; }); } QHash> mReadAccessors; QHash(const QVariant &, flatbuffers::FlatBufferBuilder &)>> mWriteAccessors; };