mirror of
https://bitbucket.org/smil3y/kde-playground.git
synced 2025-02-23 10:22:50 +00:00
118 lines
2.8 KiB
C++
118 lines
2.8 KiB
C++
/*
|
|
Copyright (c) 2013 Daniel Vrátil <dvratil@redhat.com>
|
|
|
|
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 "searchresultjob_p.h"
|
|
#include "job_p.h"
|
|
#include "protocolhelper_p.h"
|
|
|
|
#include <akonadi/private/protocol_p.h>
|
|
|
|
namespace Akonadi {
|
|
|
|
class SearchResultJobPrivate : public Akonadi::JobPrivate
|
|
{
|
|
public:
|
|
SearchResultJobPrivate(SearchResultJob *parent);
|
|
|
|
QByteArray searchId;
|
|
Collection collection;
|
|
ImapSet uid;
|
|
QVector<QByteArray> rid;
|
|
};
|
|
|
|
SearchResultJobPrivate::SearchResultJobPrivate(SearchResultJob *parent)
|
|
: JobPrivate(parent)
|
|
{
|
|
}
|
|
|
|
}
|
|
|
|
using namespace Akonadi;
|
|
|
|
SearchResultJob::SearchResultJob(const QByteArray &searchId, const Collection &collection, QObject *parent)
|
|
: Job(new SearchResultJobPrivate(this), parent)
|
|
{
|
|
Q_D(SearchResultJob);
|
|
Q_ASSERT(collection.isValid());
|
|
|
|
d->searchId = searchId;
|
|
d->collection = collection;
|
|
}
|
|
|
|
SearchResultJob::~SearchResultJob()
|
|
{
|
|
}
|
|
|
|
void SearchResultJob::setSearchId(const QByteArray &searchId)
|
|
{
|
|
Q_D(SearchResultJob);
|
|
d->searchId = searchId;
|
|
}
|
|
|
|
QByteArray SearchResultJob::searchId() const
|
|
{
|
|
return d_func()->searchId;
|
|
}
|
|
|
|
void SearchResultJob::setResult(const ImapSet &set)
|
|
{
|
|
Q_D(SearchResultJob);
|
|
d->rid.clear();
|
|
d->uid = set;
|
|
}
|
|
|
|
void SearchResultJob::setResult(const QVector<qint64> &ids)
|
|
{
|
|
Q_D(SearchResultJob);
|
|
d->rid.clear();
|
|
d->uid = ImapSet();
|
|
d->uid.add(ids);
|
|
}
|
|
|
|
void SearchResultJob::setResult(const QVector<QByteArray> &remoteIds)
|
|
{
|
|
Q_D(SearchResultJob);
|
|
d->uid = ImapSet();
|
|
d->rid = remoteIds;
|
|
}
|
|
|
|
void SearchResultJob::doStart()
|
|
{
|
|
Q_D(SearchResultJob);
|
|
|
|
QByteArray command = d->newTag() + ' ';
|
|
|
|
if (!d->rid.isEmpty()) {
|
|
command += AKONADI_CMD_RID;
|
|
} else {
|
|
command += AKONADI_CMD_UID;
|
|
}
|
|
|
|
command += " SEARCH_RESULT " + d->searchId + " " + QByteArray::number(d->collection.id()) + " (";
|
|
|
|
if (!d->rid.isEmpty()) {
|
|
command += ImapParser::join(d->rid.toList(), " ");
|
|
} else if (!d->uid.isEmpty()) {
|
|
command += d->uid.toImapSequenceSet();
|
|
}
|
|
|
|
command += ")";
|
|
|
|
d->writeData(command);
|
|
}
|