Start to create a cache for path when we import filter

wilder
Montel Laurent 9 years ago
parent f4c563382a
commit b3c39df257
  1. 1
      src/CMakeLists.txt
  2. 51
      src/filter/filterimporterpathcache.cpp
  3. 42
      src/filter/filterimporterpathcache.h

@ -65,6 +65,7 @@ set(libmailcommon_filter_SRCS
filter/kmfilterdialog.cpp
filter/mailfilter.cpp
filter/mdnadvicedialog.cpp
filter/filterimporterpathcache.cpp
)
set(libmailcommon_filter_dialog

@ -0,0 +1,51 @@
/*
Copyright (c) 2017 Montel Laurent <montel@kde.org>
This program is free software; you can redistribute it and/or modify it
under the terms of the GNU General Public License, version 2, as
published by the Free Software Foundation.
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
*/
#include "filterimporterpathcache.h"
using namespace MailCommon;
FilterImporterPathCache::FilterImporterPathCache(QObject *parent)
: QObject(parent)
{
}
FilterImporterPathCache::~FilterImporterPathCache()
{
}
FilterImporterPathCache *FilterImporterPathCache::self()
{
static FilterImporterPathCache s_self;
return &s_self;
}
void FilterImporterPathCache::insert(const QString &original, const QString &newValue)
{
mFilterCache.insert(original, newValue);
}
QString FilterImporterPathCache::convertedFilterPath(const QString &original)
{
return mFilterCache.value(original);
}
void FilterImporterPathCache::clear()
{
mFilterCache.clear();
}

@ -0,0 +1,42 @@
/*
Copyright (c) 2017 Montel Laurent <montel@kde.org>
This program is free software; you can redistribute it and/or modify it
under the terms of the GNU General Public License, version 2, as
published by the Free Software Foundation.
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
*/
#ifndef FILTERIMPORTERPATHCACHE_H
#define FILTERIMPORTERPATHCACHE_H
#include <QObject>
#include <QHash>
namespace MailCommon
{
class FilterImporterPathCache : public QObject
{
Q_OBJECT
public:
static FilterImporterPathCache *self();
explicit FilterImporterPathCache(QObject *parent = nullptr);
~FilterImporterPathCache();
void insert(const QString &original, const QString &newValue);
QString convertedFilterPath(const QString &original);
void clear();
private:
QHash<QString, QString> mFilterCache;
};
}
#endif // FILTERIMPORTERPATHCACHE_H
Loading…
Cancel
Save