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.
 
 
 

179 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 "mailutil.h"
#include "kmkernel.h"
#include <akonadi/collectionstatistics.h>
#include <akonadi/collection.h>
#include <Akonadi/AgentManager>
#include <Akonadi/ChangeRecorder>
#include <Soprano/Vocabulary/NAO>
#include <Nepomuk2/Variant>
#include <Nepomuk2/ResourceManager>
#include <nepomuk2/datamanagement.h>
#include <QDBusInterface>
#include <QDBusConnectionInterface>
#include <QLabel>
#include <KDialog>
#include <QGroupBox>
#include <KLocale>
#include <KPushButton>
#include <QFormLayout>
#include <kio/global.h>
#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 );
KPushButton *forceReindex = new KPushButton(i18n("Force reindexing"));
indexingLayout->addWidget( forceReindex );
if(!Nepomuk2::ResourceManager::instance()->initialized()) {
mLastIndexed->hide();
forceReindex->setEnabled(false);
} else {
connect(forceReindex,SIGNAL(clicked()),SLOT(slotReindexing()));
}
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 {
KUrl url = col.url( Akonadi::Collection::UrlShort );
if(!url.isEmpty()) {
const Nepomuk2::Resource parentResource( url );
const QDateTime dt = parentResource.property( Soprano::Vocabulary::NAO::lastModified() ).toDateTime();
if(dt.isValid()) {
mLastIndexed->setText(i18n("Folder was indexed: %1",KGlobal::locale()->formatDate(dt.date())));
}
}
}
}
}
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 );
Nepomuk2::removeResources( QList <QUrl>() << collection.url() );
}
}
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()
{
//Be sure to remove collection resources before to reindex.
Nepomuk2::removeResources( QList <QUrl>() << mCurrentCollection.url() );
QDBusInterface interfaceNepomukFeeder( "org.freedesktop.Akonadi.Agent.akonadi_nepomuk_feeder", "/" );
if(interfaceNepomukFeeder.isValid()) {
interfaceNepomukFeeder.asyncCall(QLatin1String("forceReindexCollection"),(qlonglong)mCurrentCollection.id());
}
}
#include "collectionmaintenancepage.moc"