akondi-mime5/akonadi-mime5/autotests/benchmarker/maildir/maildirfetchallheaders.cpp
Ward from fusion-voyager-3 a8e7e301c1
Some checks failed
PikaOS Package Build & Release (Canary) (amd64-v3) / build (push) Failing after 12s
fixx akondi
2024-08-05 17:19:50 +03:00

47 lines
1.3 KiB
C++

/*
SPDX-FileCopyrightText: 2009 Igor Trindade Oliveira <igor_trindade@yahoo.com.br>
based on kdepimlibs/akonadi/tests/benchmarker.cpp wrote by Robert Zwerus <arzie@dds.nl>
SPDX-License-Identifier: LGPL-2.0-or-later
*/
#include "maildirfetchallheaders.h"
#include <QDebug>
#include <Akonadi/CollectionFetchJob>
#include <Akonadi/CollectionFetchScope>
#include <Akonadi/ItemFetchJob>
#include <Akonadi/ItemFetchScope>
#include "akonadi/messageparts.h"
#include <KMime/KMimeMessage>
using namespace Akonadi;
MailDirFetchAllHeaders::MailDirFetchAllHeaders()
: MailDir()
{
}
void MailDirFetchAllHeaders::runTest()
{
timer.start();
qDebug() << " Listing all headers of every folder.";
auto clj = new CollectionFetchJob(Collection::root(), CollectionFetchJob::Recursive);
clj->fetchScope().setResource(currentInstance.identifier());
clj->exec();
const Collection::List list = clj->collections();
for (const Collection &collection : list) {
auto ifj = new ItemFetchJob(collection, this);
ifj->fetchScope().fetchPayloadPart(MessagePart::Envelope);
ifj->exec();
QString a;
const auto items = ifj->items();
for (const Item &item : items) {
a = item.payload<KMime::Message::Ptr>()->subject()->asUnicodeString();
}
}
outputStats(QStringLiteral("fullheaderlist"));
}