Akonadi

itemmovejob.cpp
1/*
2 SPDX-FileCopyrightText: 2008 Volker Krause <vkrause@kde.org>
3
4 SPDX-License-Identifier: LGPL-2.0-or-later
5*/
6
7#include "itemmovejob.h"
8
9#include "collection.h"
10#include "job_p.h"
11#include "private/protocol_p.h"
12#include "protocolhelper_p.h"
13
14#include <KLocalizedString>
15
16#include <span>
17
18using namespace Akonadi;
19
20class Akonadi::ItemMoveJobPrivate : public Akonadi::JobPrivate
21{
22 static constexpr size_t MaxBatchSize = 10'000;
23
24public:
25 explicit ItemMoveJobPrivate(ItemMoveJob *parent)
26 : JobPrivate(parent)
27 {
28 }
29
30 QString jobDebuggingString() const override
31 {
32 QString str = QStringLiteral("Move item");
33 if (source.isValid()) {
34 str += QStringLiteral("from collection %1").arg(source.id());
35 }
36 str += QStringLiteral(" to collection %1. ").arg(destination.id());
37 if (items.isEmpty()) {
38 str += QStringLiteral("No Items defined.");
39 } else {
40 str += QStringLiteral("Items: ");
41 const int nbItems = items.count();
42 for (int i = 0; i < nbItems; ++i) {
43 if (i != 0) {
44 str += QStringLiteral(", ");
45 }
46 str += QString::number(items.at(i).id());
47 }
48 }
49 return str;
50 }
51
52 bool nextBatch()
53 {
54 Q_Q(ItemMoveJob);
55
56 if (remainingItems.empty()) {
57 return true;
58 }
59
60 try {
61 const auto batchSize = qMin(MaxBatchSize, remainingItems.size());
62 const auto batch = remainingItems.subspan(0, batchSize);
63 remainingItems = remainingItems.subspan(batchSize);
64 const auto batchItems = QList(batch.begin(), batch.end());
65 sendCommand(Protocol::MoveItemsCommandPtr::create(ProtocolHelper::entitySetToScope(batchItems),
66 ProtocolHelper::commandContextToProtocol(source, Tag(), batchItems),
67 ProtocolHelper::entityToScope(destination)));
68 return false;
69 } catch (const Akonadi::Exception &e) {
70 q->setError(Job::Unknown);
71 q->setErrorText(QString::fromUtf8(e.what()));
72 q->emitResult();
73 return true;
74 }
75 }
76
77 Item::List items;
78 Collection destination;
79 Collection source;
80 std::span<Item> remainingItems;
81
82 Q_DECLARE_PUBLIC(ItemMoveJob)
83};
84
85ItemMoveJob::ItemMoveJob(const Item &item, const Collection &destination, QObject *parent)
86 : Job(new ItemMoveJobPrivate(this), parent)
87{
89 d->destination = destination;
90 d->items.append(item);
91}
92
94 : Job(new ItemMoveJobPrivate(this), parent)
95{
97 d->destination = destination;
98 d->items = items;
99}
100
101ItemMoveJob::ItemMoveJob(const Item::List &items, const Collection &source, const Collection &destination, QObject *parent)
102 : Job(new ItemMoveJobPrivate(this), parent)
103{
105 d->source = source;
106 d->destination = destination;
107 d->items = items;
108}
109
110ItemMoveJob::~ItemMoveJob() = default;
111
113{
115
116 if (d->items.isEmpty()) {
118 setErrorText(i18n("No objects specified for moving"));
119 emitResult();
120 return;
121 }
122
123 if (!d->destination.isValid() && d->destination.remoteId().isEmpty()) {
125 setErrorText(i18n("No valid destination specified"));
126 emitResult();
127 return;
128 }
129
130 d->remainingItems = std::span<Item>(d->items);
131 d->nextBatch();
132}
133
134bool ItemMoveJob::doHandleResponse(qint64 tag, const Protocol::CommandPtr &response)
135{
137
138 if (!response->isResponse() || response->type() != Protocol::Command::MoveItems) {
139 return Job::doHandleResponse(tag, response);
140 }
141
142 return d->nextBatch();
143}
144
146{
147 Q_D(const ItemMoveJob);
148 return d->destination;
149}
150
152{
153 Q_D(const ItemMoveJob);
154 return d->items;
155}
156
157#include "moc_itemmovejob.cpp"
Represents a collection of PIM items.
Definition collection.h:62
const char * what() const noexcept override
Returns the error message associated with this exception.
Definition exception.cpp:65
ItemMoveJob(const Item &item, const Collection &destination, QObject *parent=nullptr)
Move the given item into the given collection.
~ItemMoveJob() override
Destroys the item move job.
Akonadi::Item::List items() const
Returns the list of items that where passed in the constructor.
bool doHandleResponse(qint64 tag, const Protocol::CommandPtr &response) override
This method should be reimplemented in the concrete jobs in case you want to handle incoming data.
Collection destinationCollection() const
Returns the destination collection.
void doStart() override
This method must be reimplemented in the concrete jobs.
Represents a PIM item stored in Akonadi storage.
Definition item.h:100
QList< Item > List
Describes a list of items.
Definition item.h:110
virtual bool doHandleResponse(qint64 tag, const Protocol::CommandPtr &response)
This method should be reimplemented in the concrete jobs in case you want to handle incoming data.
Definition job.cpp:381
Job(QObject *parent=nullptr)
Creates a new job.
Definition job.cpp:290
@ Unknown
Unknown error.
Definition job.h:102
void setErrorText(const QString &errorText)
void emitResult()
void setError(int errorCode)
QString i18n(const char *text, const TYPE &arg...)
Helper integration between Akonadi and Qt.
KLEO_EXPORT std::unique_ptr< GpgME::DefaultAssuanTransaction > sendCommand(std::shared_ptr< GpgME::Context > &assuanContext, const std::string &command, GpgME::Error &err)
QObject * parent() const const
QString arg(Args &&... args) const const
QString fromUtf8(QByteArrayView str)
QString number(double n, char format, int precision)
Q_D(Todo)
This file is part of the KDE documentation.
Documentation copyright © 1996-2025 The KDE developers.
Generated on Fri Mar 28 2025 11:53:21 by doxygen 1.13.2 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.