/* * 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 #include #include #include "domain/applicationdomaintype.h" #include "domain/event.h" #include "domain/mail.h" #include "entity_generated.h" #include "metadata_generated.h" #include "entitybuffer.h" #include "propertymapper.h" #include "log.h" /** * Create a buffer from a domain object using the provided mappings */ template flatbuffers::Offset createBufferPart(const Akonadi2::ApplicationDomain::ApplicationDomainType &domainObject, flatbuffers::FlatBufferBuilder &fbb, const WritePropertyMapper &mapper) { //First create a primitives such as strings using the mappings QList > propertiesToAddToResource; for (const auto &property : domainObject.changedProperties()) { // Trace() << "copying property " << property; const auto value = domainObject.getProperty(property); if (mapper.hasMapping(property)) { mapper.setProperty(property, domainObject.getProperty(property), propertiesToAddToResource, fbb); } else { // Trace() << "no mapping for property available " << property; } } //Then create all porperties using the above generated builderCalls Builder builder(fbb); for (auto propertyBuilder : propertiesToAddToResource) { propertyBuilder(builder); } return builder.Finish(); } /** * Create the buffer and finish the FlatBufferBuilder. * * After this the buffer can be extracted from the FlatBufferBuilder object. */ template static void createBufferPartBuffer(const Akonadi2::ApplicationDomain::ApplicationDomainType &domainObject, flatbuffers::FlatBufferBuilder &fbb, WritePropertyMapper &mapper) { auto pos = createBufferPart(domainObject, fbb, mapper); // Because we cannot template the following call // Akonadi2::ApplicationDomain::Buffer::FinishEventBuffer(fbb, pos); // FIXME: This means all buffers in here must have the AKFB identifier fbb.Finish(pos, "AKFB"); flatbuffers::Verifier verifier(fbb.GetBufferPointer(), fbb.GetSize()); if (!verifier.VerifyBuffer()) { Warning() << "Created invalid uffer"; } } /** * A generic adaptor implementation that uses a property mapper to read/write values. * * TODO: this is the read-only part. Create a write only equivalent */ template class GenericBufferAdaptor : public Akonadi2::ApplicationDomain::BufferAdaptor { public: GenericBufferAdaptor() : BufferAdaptor() { } //TODO remove void setProperty(const QByteArray &key, const QVariant &value) { } virtual QVariant getProperty(const QByteArray &key) const { if (mResourceBuffer && mResourceMapper->hasMapping(key)) { return mResourceMapper->getProperty(key, mResourceBuffer); } else if (mLocalBuffer && mLocalMapper->hasMapping(key)) { return mLocalMapper->getProperty(key, mLocalBuffer); } qWarning() << "no mapping available for key " << key; return QVariant(); } virtual QList availableProperties() const { QList props; props << mResourceMapper->availableProperties(); props << mLocalMapper->availableProperties(); return props; } LocalBuffer const *mLocalBuffer; ResourceBuffer const *mResourceBuffer; QSharedPointer > mLocalMapper; QSharedPointer > mResourceMapper; }; class DomainTypeAdaptorFactoryInterface { public: typedef QSharedPointer Ptr; virtual ~DomainTypeAdaptorFactoryInterface() {}; virtual QSharedPointer createAdaptor(const Akonadi2::Entity &entity) = 0; virtual void createBuffer(const Akonadi2::ApplicationDomain::ApplicationDomainType &domainType, flatbuffers::FlatBufferBuilder &fbb, void const *metadataData = 0, size_t metadataSize = 0) = 0; }; /** * The factory should define how to go from an entitybuffer (local + resource buffer), to a domain type adapter. * It defines how values are split accross local and resource buffer. * This is required by the facade the read the value, and by the pipeline preprocessors to access the domain values in a generic way. */ template class DomainTypeAdaptorFactory : public DomainTypeAdaptorFactoryInterface { typedef typename Akonadi2::ApplicationDomain::TypeImplementation::Buffer LocalBuffer; typedef typename Akonadi2::ApplicationDomain::TypeImplementation::BufferBuilder LocalBuilder; public: DomainTypeAdaptorFactory() : mLocalMapper(Akonadi2::ApplicationDomain::TypeImplementation::initializeReadPropertyMapper()), mResourceMapper(QSharedPointer >::create()), mLocalWriteMapper(Akonadi2::ApplicationDomain::TypeImplementation::initializeWritePropertyMapper()), mResourceWriteMapper(QSharedPointer >::create()) {}; virtual ~DomainTypeAdaptorFactory() {}; /** * Creates an adaptor for the given domain and resource types. * * This returns by default a GenericBufferAdaptor initialized with the corresponding property mappers. */ virtual QSharedPointer createAdaptor(const Akonadi2::Entity &entity) Q_DECL_OVERRIDE { const auto resourceBuffer = Akonadi2::EntityBuffer::readBuffer(entity.resource()); const auto localBuffer = Akonadi2::EntityBuffer::readBuffer(entity.local()); // const auto metadataBuffer = Akonadi2::EntityBuffer::readBuffer(entity.metadata()); auto adaptor = QSharedPointer >::create(); adaptor->mLocalBuffer = localBuffer; adaptor->mLocalMapper = mLocalMapper; adaptor->mResourceBuffer = resourceBuffer; adaptor->mResourceMapper = mResourceMapper; return adaptor; } virtual void createBuffer(const Akonadi2::ApplicationDomain::ApplicationDomainType &domainObject, flatbuffers::FlatBufferBuilder &fbb, void const *metadataData = 0, size_t metadataSize = 0) Q_DECL_OVERRIDE { flatbuffers::FlatBufferBuilder localFbb; if (mLocalWriteMapper) { Trace() << "Creating local buffer part"; createBufferPartBuffer(domainObject, localFbb, *mLocalWriteMapper); } flatbuffers::FlatBufferBuilder resFbb; if (mResourceWriteMapper) { Trace() << "Creating resouce buffer part"; createBufferPartBuffer(domainObject, resFbb, *mResourceWriteMapper); } Akonadi2::EntityBuffer::assembleEntityBuffer(fbb, metadataData, metadataSize, resFbb.GetBufferPointer(), resFbb.GetSize(), localFbb.GetBufferPointer(), localFbb.GetSize()); } protected: QSharedPointer > mLocalMapper; QSharedPointer > mResourceMapper; QSharedPointer > mLocalWriteMapper; QSharedPointer > mResourceWriteMapper; };