/* Copyright (c) 2013 Daniel Vrátil 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 namespace Akonadi { class SearchResultJobPrivate : public Akonadi::JobPrivate { public: SearchResultJobPrivate(SearchResultJob *parent); QByteArray searchId; Collection collection; ImapSet uid; QVector 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 &ids) { Q_D(SearchResultJob); d->rid.clear(); d->uid = ImapSet(); d->uid.add(ids); } void SearchResultJob::setResult(const QVector &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); }