mirror of
https://bitbucket.org/smil3y/kde-playground.git
synced 2025-02-24 10:52:52 +00:00
96 lines
3.3 KiB
C++
96 lines
3.3 KiB
C++
/*
|
|
Copyright (c) 2013, 2014 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 "folderarchivecache.h"
|
|
#include "folderarchiveaccountinfo.h"
|
|
|
|
FolderArchiveCache::FolderArchiveCache(QObject *parent)
|
|
: QObject(parent)
|
|
{
|
|
}
|
|
|
|
FolderArchiveCache::~FolderArchiveCache()
|
|
{
|
|
|
|
}
|
|
|
|
void FolderArchiveCache::clearCache()
|
|
{
|
|
mCache.clear();
|
|
}
|
|
|
|
void FolderArchiveCache::clearCacheWithContainsCollection(Akonadi::Collection::Id id)
|
|
{
|
|
QHash<QString, ArchiveCache>::iterator i = mCache.begin();
|
|
while (i!=mCache.end()) {
|
|
if (i.value().colId == id) {
|
|
i = mCache.erase(i);
|
|
} else {
|
|
++i;
|
|
}
|
|
}
|
|
}
|
|
|
|
Akonadi::Collection::Id FolderArchiveCache::collectionId(FolderArchiveAccountInfo *info)
|
|
{
|
|
//qDebug()<<" Look at Cache ";
|
|
if (mCache.contains(info->instanceName())) {
|
|
//qDebug()<<"instance name : "<<info->instanceName();
|
|
switch(info->folderArchiveType()) {
|
|
case FolderArchiveAccountInfo::UniqueFolder: {
|
|
qDebug()<<"FolderArchiveAccountInfo::UniqueFolder has cache "<<mCache.value(info->instanceName()).colId;
|
|
return mCache.value(info->instanceName()).colId;
|
|
}
|
|
case FolderArchiveAccountInfo::FolderByMonths:
|
|
//qDebug()<<"FolderArchiveAccountInfo::ByMonths has cache ?";
|
|
if (mCache.value(info->instanceName()).date.month() != QDate::currentDate().month()) {
|
|
//qDebug()<<"need to remove current cache month is not good";
|
|
mCache.remove(info->instanceName());
|
|
return -1;
|
|
} else {
|
|
return mCache.value(info->instanceName()).colId;
|
|
}
|
|
case FolderArchiveAccountInfo::FolderByYears:
|
|
//qDebug()<<"FolderArchiveAccountInfo::ByYears has cache ?";
|
|
if (mCache.value(info->instanceName()).date.year() != QDate::currentDate().year()) {
|
|
//qDebug()<<"need to remove current cache year is not good";
|
|
mCache.remove(info->instanceName());
|
|
return -1;
|
|
} else {
|
|
return mCache.value(info->instanceName()).colId;
|
|
}
|
|
break;
|
|
}
|
|
return mCache.value(info->instanceName()).colId;
|
|
}
|
|
//qDebug()<<" Don't have cache for this instancename "<<info->instanceName();
|
|
return -1;
|
|
}
|
|
|
|
void FolderArchiveCache::addToCache(const QString &resourceName, Akonadi::Collection::Id id)
|
|
{
|
|
if (mCache.contains(resourceName)) {
|
|
ArchiveCache cache = mCache.value(resourceName);
|
|
cache.colId = id;
|
|
mCache.insert(resourceName, cache);
|
|
} else {
|
|
ArchiveCache cache;
|
|
cache.colId = id;
|
|
mCache.insert(resourceName, cache);
|
|
}
|
|
}
|
|
|