/* * Copyright (C) 2014 Christian Mollekopf * * 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) version 3, or any * later version accepted by the membership of KDE e.V. (or its * successor approved by the membership of KDE e.V.), which shall * act as a proxy defined in Section 6 of version 3 of the license. * * 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, see . */ #pragma once #include #include #include #include #include "applicationdomaintype.h" #include "resultprovider.h" namespace Sink { class Query; namespace Log { struct Context; } /** * Interface for the store facade. * * All methods are synchronous. * Facades are stateful (they hold connections to resources and database). * * TODO: would it make sense to split the write, read and notification parts? (we could potentially save some connections) */ template class StoreFacade { public: virtual ~StoreFacade(){}; QByteArray type() const { return ApplicationDomain::getTypeName(); } /** * Create an entity in the store. * * The job returns succefully once the task has been successfully placed in the queue */ virtual KAsync::Job create(const DomainType &domainObject) = 0; /** * Modify an entity in the store. * * The job returns succefully once the task has been successfully placed in the queue */ virtual KAsync::Job modify(const DomainType &domainObject) = 0; /** * Move an entity to a new resource. * * The job returns succefully once the task has been successfully placed in the queue */ virtual KAsync::Job move(const DomainType &domainObject, const QByteArray &newResource) = 0; /** * Copy an entity to a new resource. * * The job returns succefully once the task has been successfully placed in the queue */ virtual KAsync::Job copy(const DomainType &domainObject, const QByteArray &newResource) = 0; /** * Remove an entity from the store. * * The job returns succefully once the task has been successfully placed in the queue */ virtual KAsync::Job remove(const DomainType &domainObject) = 0; /** * Load entities from the store. */ virtual QPair, typename Sink::ResultEmitter::Ptr> load(const Query &query, const Log::Context &) = 0; }; template class NullFacade : public StoreFacade { public: virtual ~NullFacade(){}; KAsync::Job create(const DomainType &domainObject) { return KAsync::error(-1, "Failed to create a facade"); } KAsync::Job modify(const DomainType &domainObject) { return KAsync::error(-1, "Failed to create a facade"); } KAsync::Job move(const DomainType &domainObject, const QByteArray &newResource) { return KAsync::error(-1, "Failed to create a facade"); } KAsync::Job copy(const DomainType &domainObject, const QByteArray &newResource) { return KAsync::error(-1, "Failed to create a facade"); } KAsync::Job remove(const DomainType &domainObject) { return KAsync::error(-1, "Failed to create a facade"); } QPair, typename Sink::ResultEmitter::Ptr> load(const Query &query, const Log::Context &) { return qMakePair(KAsync::null(), typename Sink::ResultEmitter::Ptr()); } }; }