/**************************************************************************** ** ** Copyright (C) 2015 The Qt Company Ltd. ** Contact: http://www.qt.io/licensing/ ** ** This file is part of the Qt Messaging Framework. ** ** $QT_BEGIN_LICENSE:LGPL21$ ** Commercial License Usage ** Licensees holding valid commercial Qt licenses may use this file in ** accordance with the commercial license agreement provided with the ** Software or, alternatively, in accordance with the terms contained in ** a written agreement between you and The Qt Company. For licensing terms ** and conditions see http://www.qt.io/terms-conditions. For further ** information use the contact form at http://www.qt.io/contact-us. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser ** General Public License version 2.1 or version 3 as published by the Free ** Software Foundation and appearing in the file LICENSE.LGPLv21 and ** LICENSE.LGPLv3 included in the packaging of this file. Please review the ** following information to ensure the GNU Lesser General Public License ** requirements will be met: https://www.gnu.org/licenses/lgpl.html and ** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** As a special exception, The Qt Company gives you certain additional ** rights. These rights are described in The Qt Company LGPL Exception ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. ** ** $QT_END_LICENSE$ ** ****************************************************************************/ #ifndef QMAILCONTENTMANAGER_H #define QMAILCONTENTMANAGER_H #include "qmailglobal.h" #include "qmailstore.h" #include #include #include class QMailMessage; class QMailContentManager; class QMF_EXPORT QMailContentManagerFactory { public: static QStringList schemes(); static QString defaultFilterScheme(); static QString defaultScheme(); static QString defaultIndexerScheme(); static QMailContentManager *create(const QString &scheme); static bool init(); static void clearContent(); }; struct QMF_EXPORT QMailContentManagerPluginInterface : public QFactoryInterface { virtual QString key() const = 0; virtual QMailContentManager *create() = 0; }; QT_BEGIN_NAMESPACE #define QMailContentManagerPluginInterface_iid "com.nokia.QMailContentManagerPluginInterface" Q_DECLARE_INTERFACE(QMailContentManagerPluginInterface, QMailContentManagerPluginInterface_iid) QT_END_NAMESPACE class QMF_EXPORT QMailContentManagerPlugin : public QObject, public QMailContentManagerPluginInterface { Q_OBJECT Q_INTERFACES(QMailContentManagerPluginInterface:QFactoryInterface) public: QMailContentManagerPlugin(); ~QMailContentManagerPlugin(); QStringList keys() const override; }; class QMF_EXPORT QMailContentManager { friend class QMailManagerContentFactory; protected: QMailContentManager(); virtual ~QMailContentManager(); public: enum ManagerRole { FilterRole, StorageRole, IndexRole }; enum DurabilityRequirement { EnsureDurability = 0, DeferDurability, NoDurability }; virtual QMailStore::ErrorCode add(QMailMessage *message, DurabilityRequirement durability) = 0; virtual QMailStore::ErrorCode update(QMailMessage *message, DurabilityRequirement durability) = 0; virtual QMailStore::ErrorCode ensureDurability() = 0; virtual QMailStore::ErrorCode ensureDurability(const QList &identifiers) = 0; virtual QMailStore::ErrorCode remove(const QString &identifier) = 0; virtual QMailStore::ErrorCode remove(const QList &identifiers); virtual QMailStore::ErrorCode load(const QString &identifier, QMailMessage *message) = 0; virtual bool init(); virtual void clearContent(); virtual ManagerRole role() const; }; #endif