/* * 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 "applicationdomaintype.h" #include "resultprovider.h" namespace Akonadi2 { class Query; /** * 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(); } virtual KAsync::Job create(const DomainType &domainObject) = 0; virtual KAsync::Job modify(const DomainType &domainObject) = 0; virtual KAsync::Job remove(const DomainType &domainObject) = 0; virtual KAsync::Job load(const Query &query, const QSharedPointer > &resultProvider) = 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 remove(const DomainType &domainObject) { return KAsync::error(-1, "Failed to create a facade"); } KAsync::Job load(const Query &query, const QSharedPointer > &resultProvider) { return KAsync::error(-1, "Failed to create a facade"); } }; }