You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
170 lines
6.6 KiB
170 lines
6.6 KiB
/* -*- mode: C++; c-file-style: "gnu" -*- |
|
This file is part of KMail, the KDE mail client. |
|
Copyright (c) 2009-2010 Montel Laurent <montel@kde.org> |
|
|
|
KMail 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. |
|
|
|
KMail 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 "collectionmaintenancepage.h" |
|
#include "util/mailutil.h" |
|
#include "kmkernel.h" |
|
|
|
#include <akonadi/collectionstatistics.h> |
|
#include <akonadi/collection.h> |
|
#include <Akonadi/AgentManager> |
|
#include <Akonadi/ChangeRecorder> |
|
|
|
#include <QDBusInterface> |
|
#include <QDBusConnectionInterface> |
|
|
|
#include <KDialog> |
|
#include <KLocalizedString> |
|
#include <KLocale> |
|
#include <KPushButton> |
|
#include <kio/global.h> |
|
#include <KLocale> |
|
|
|
#include <QGroupBox> |
|
#include <QLabel> |
|
#include <QFormLayout> |
|
#include <QCheckBox> |
|
#include <akonadi/indexpolicyattribute.h> |
|
|
|
using namespace Akonadi; |
|
|
|
|
|
CollectionMaintenancePage::CollectionMaintenancePage(QWidget * parent) : |
|
CollectionPropertiesPage( parent ), |
|
mIsNotAVirtualCollection( true ), |
|
mFolderSizeLabel(0), |
|
mCollectionCount(0) |
|
{ |
|
setObjectName( QLatin1String( "KMail::CollectionMaintenancePage" ) ); |
|
setPageTitle( i18n("Maintenance") ); |
|
} |
|
|
|
void CollectionMaintenancePage::init(const Akonadi::Collection & col) |
|
{ |
|
mCurrentCollection = col; |
|
|
|
QVBoxLayout *topLayout = new QVBoxLayout( this ); |
|
topLayout->setSpacing( KDialog::spacingHint() ); |
|
topLayout->setMargin( KDialog::marginHint() ); |
|
QGroupBox *filesGroup = new QGroupBox( i18n("Files"), this ); |
|
QFormLayout *box = new QFormLayout( filesGroup ); |
|
box->setSpacing( KDialog::spacingHint() ); |
|
mIsNotAVirtualCollection = !MailCommon::Util::isVirtualCollection( col ); |
|
connect( KMKernel::self()->folderCollectionMonitor(), SIGNAL(collectionStatisticsChanged(Akonadi::Collection::Id,Akonadi::CollectionStatistics)), this, SLOT(updateCollectionStatistic(Akonadi::Collection::Id,Akonadi::CollectionStatistics)) ); |
|
|
|
const AgentInstance instance = Akonadi::AgentManager::self()->instance( col.resource() ); |
|
const QString folderDesc = instance.type().name(); |
|
|
|
if ( mIsNotAVirtualCollection ) { |
|
QLabel *label = new QLabel( folderDesc, filesGroup ); |
|
box->addRow( new QLabel( i18n("Folder type:"), filesGroup ), label ); |
|
} |
|
|
|
mFolderSizeLabel = new QLabel( i18nc( "folder size", "Not available" ), filesGroup ); |
|
box->addRow( new QLabel( i18n("Size:"), filesGroup ), mFolderSizeLabel ); |
|
|
|
topLayout->addWidget( filesGroup ); |
|
|
|
QGroupBox *messagesGroup = new QGroupBox( i18n("Messages"), this); |
|
box = new QFormLayout( messagesGroup ); |
|
box->setSpacing( KDialog::spacingHint() ); |
|
|
|
mCollectionCount = new QLabel( messagesGroup ); |
|
box->addRow( new QLabel( i18n("Total messages:"), messagesGroup ), mCollectionCount ); |
|
|
|
mCollectionUnread = new QLabel( messagesGroup ); |
|
box->addRow( new QLabel( i18n("Unread messages:"), messagesGroup ), mCollectionUnread ); |
|
|
|
topLayout->addWidget( messagesGroup ); |
|
QGroupBox *indexingGroup = new QGroupBox( i18n( "Indexing" ), this ); |
|
QVBoxLayout *indexingLayout = new QVBoxLayout( indexingGroup ); |
|
mIndexingEnabled = new QCheckBox( i18n( "Enable Full Text Indexing" ) ); |
|
indexingLayout->addWidget( mIndexingEnabled ); |
|
|
|
mLastIndexed = new QLabel( i18n( "Still not indexed." ) ); |
|
|
|
indexingLayout->addWidget( mLastIndexed ); |
|
#if 0 |
|
KPushButton *forceReindex = new KPushButton(i18n("Force reindexing")); |
|
indexingLayout->addWidget( forceReindex ); |
|
connect(forceReindex,SIGNAL(clicked()),SLOT(slotReindexing())); |
|
#endif |
|
topLayout->addWidget( indexingGroup ); |
|
topLayout->addStretch( 100 ); |
|
} |
|
|
|
void CollectionMaintenancePage::load(const Collection & col) |
|
{ |
|
init( col ); |
|
if ( col.isValid() ) { |
|
updateLabel( col.statistics().count(), col.statistics().unreadCount(), col.statistics().size() ); |
|
Akonadi::IndexPolicyAttribute *attr = col.attribute<Akonadi::IndexPolicyAttribute>(); |
|
const bool indexingWasEnabled(!attr || attr->indexingEnabled()); |
|
mIndexingEnabled->setChecked( indexingWasEnabled ); |
|
if(!indexingWasEnabled) |
|
mLastIndexed->hide(); |
|
else { |
|
QDBusInterface interfaceBalooIndexer( QLatin1String("org.freedesktop.Akonadi.Agent.akonadi_baloo_indexer"), QLatin1String("/") ); |
|
if(interfaceBalooIndexer.isValid()) { |
|
if (!interfaceBalooIndexer.callWithCallback(QLatin1String("indexedItems"), QList<QVariant>() << (qlonglong)mCurrentCollection.id(), this, SLOT(onIndexedItemsReceived(qint64)))) { |
|
kWarning() << "Failed to request indexed items"; |
|
} |
|
} |
|
} |
|
} |
|
} |
|
|
|
void CollectionMaintenancePage::onIndexedItemsReceived(qint64 num) |
|
{ |
|
kDebug() << num; |
|
mLastIndexed->setText(i18np("Indexed %1 item of this collection", "Indexed %1 items of this collection", num)); |
|
} |
|
|
|
void CollectionMaintenancePage::updateLabel( qint64 nbMail, qint64 nbUnreadMail, qint64 size ) |
|
{ |
|
mCollectionCount->setText( QString::number( qMax( 0LL, nbMail ) ) ); |
|
mCollectionUnread->setText( QString::number( qMax( 0LL, nbUnreadMail ) ) ); |
|
mFolderSizeLabel->setText( KGlobal::locale()->formatByteSize( qMax( 0LL, size ) ) ); |
|
} |
|
|
|
void CollectionMaintenancePage::save(Collection &collection) |
|
{ |
|
if ( !collection.hasAttribute<Akonadi::IndexPolicyAttribute>() && mIndexingEnabled->isChecked() ) |
|
return; |
|
Akonadi::IndexPolicyAttribute *attr = collection.attribute<Akonadi::IndexPolicyAttribute>( Akonadi::Collection::AddIfMissing ); |
|
if( mIndexingEnabled->isChecked() ) |
|
attr->setIndexingEnabled( true ); |
|
else { |
|
attr->setIndexingEnabled( false ); |
|
} |
|
} |
|
|
|
void CollectionMaintenancePage::updateCollectionStatistic(Akonadi::Collection::Id id, const Akonadi::CollectionStatistics& statistic) |
|
{ |
|
if ( id == mCurrentCollection.id() ) { |
|
updateLabel( statistic.count(), statistic.unreadCount(), statistic.size() ); |
|
} |
|
} |
|
|
|
void CollectionMaintenancePage::slotReindexing() |
|
{ |
|
QDBusInterface interfaceBalooIndexer( QLatin1String("org.freedesktop.Akonadi.Agent.akonadi_baloo_indexer"), QLatin1String("/") ); |
|
if(interfaceBalooIndexer.isValid()) { |
|
interfaceBalooIndexer.asyncCall(QLatin1String("reindexCollection"),(qlonglong)mCurrentCollection.id()); |
|
} |
|
}
|
|
|