akondi-mime5/akonadi-mime5/autotests/benchmarker/maildir/maildirfetchallheaders.cpp

47 lines
1.3 KiB
C++
Raw Normal View History

2024-08-05 16:19:50 +02:00
/*
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"));
}