kde-playground/kdepimlibs/akonadi/collectionselectjob.cpp
2015-04-14 21:49:29 +00:00

78 lines
2.4 KiB
C++

/*
Copyright (c) 2006 - 2007 Volker Krause <vkrause@kde.org>
This library is free software; you can redistribute it and/or modify it
under the terms of the GNU Library General Public License as published by
the Free Software Foundation; either version 2 of the License, or (at your
option) any later version.
This library 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 Library General Public
License for more details.
You should have received a copy of the GNU Library General Public License
along with this library; see the file COPYING.LIB. If not, write to the
Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
02110-1301, USA.
*/
#include "collectionselectjob_p.h"
#include "job_p.h"
#include "protocol_p.h"
#include <akonadi/private/imapparser_p.h>
#include <QtCore/QDebug>
#include <KLocalizedString>
using namespace Akonadi;
class Akonadi::CollectionSelectJobPrivate : public JobPrivate
{
public:
CollectionSelectJobPrivate(CollectionSelectJob *parent)
: JobPrivate(parent)
{
}
QString jobDebuggingString() const { /*Q_DECL_OVERRIDE*/
if (mCollection.id() > 0) {
return QString::number(mCollection.id());
} else {
return QString::fromLatin1("RemoteID ") + QString::number(mCollection.id());
}
}
Collection mCollection;
};
CollectionSelectJob::CollectionSelectJob(const Collection &collection, QObject *parent)
: Job(new CollectionSelectJobPrivate(this), parent)
{
Q_D(CollectionSelectJob);
d->mCollection = collection;
}
CollectionSelectJob::~CollectionSelectJob()
{
}
void CollectionSelectJob::doStart()
{
Q_D(CollectionSelectJob);
if (d->mCollection.isValid()) {
QByteArray command(d->newTag() + " SELECT SILENT ");
d->writeData(command + QByteArray::number(d->mCollection.id()) + '\n');
} else if (!d->mCollection.remoteId().isEmpty()) {
QByteArray command(d->newTag() + " " AKONADI_CMD_RID " SELECT SILENT ");
d->writeData(command + ImapParser::quote(d->mCollection.remoteId().toUtf8()) + '\n');
} else {
setError(Unknown);
setErrorText(i18n("Invalid collection specified"));
emitResult();
}
}
#include "moc_collectionselectjob_p.cpp"