Akonadi

collection.h
1/*
2 SPDX-FileCopyrightText: 2006-2007 Volker Krause <vkrause@kde.org>
3
4 SPDX-License-Identifier: LGPL-2.0-or-later
5*/
6
7#pragma once
8
9#include "akonadicore_export.h"
10#include "attribute.h"
11
12#include <QDebug>
13#include <QMetaType>
14#include <QSharedDataPointer>
15
16class QUrl;
17
18namespace Akonadi
19{
20class CachePolicy;
21class CollectionPrivate;
23
24/**
25 * @short Represents a collection of PIM items.
26 *
27 * This class represents a collection of PIM items, such as a folder on a mail- or
28 * groupware-server.
29 *
30 * Collections are hierarchical, i.e., they may have a parent collection.
31 *
32 * @code
33 *
34 * using namespace Akonadi;
35 *
36 * // fetching all collections recursive, starting at the root collection
37 * CollectionFetchJob *job = new CollectionFetchJob( Collection::root(), CollectionFetchJob::Recursive );
38 * connect( job, SIGNAL(result(KJob*)), SLOT(fetchFinished(KJob*)) );
39 *
40 * ...
41 *
42 * MyClass::fetchFinished( KJob *job )
43 * {
44 * if ( job->error() ) {
45 * qDebug() << "Error occurred";
46 * return;
47 * }
48 *
49 * CollectionFetchJob *fetchJob = qobject_cast<CollectionFetchJob*>( job );
50 *
51 * const Collection::List collections = fetchJob->collections();
52 * for ( const Collection &collection : collections ) {
53 * qDebug() << "Name:" << collection.name();
54 * }
55 * }
56 *
57 * @endcode
58 *
59 * @author Volker Krause <vkrause@kde.org>
60 */
61class AKONADICORE_EXPORT Collection
62{
63 Q_GADGET
64 Q_PROPERTY(Id id READ id WRITE setId)
65 Q_PROPERTY(QString remoteIdd READ remoteId WRITE setRemoteId)
66 Q_PROPERTY(bool isValid READ isValid)
67 Q_PROPERTY(QString remoteRevision READ remoteRevision WRITE setRemoteRevision)
68 Q_PROPERTY(bool enabled READ enabled WRITE setEnabled)
69 Q_PROPERTY(bool isVirtual READ isVirtual WRITE setVirtual)
70 Q_PROPERTY(QString name READ name WRITE setName)
71 Q_PROPERTY(QString displayName READ displayName)
72 Q_PROPERTY(Rights rights READ rights WRITE setRights)
73 Q_PROPERTY(QStringList contentMimeTypes READ contentMimeTypes WRITE setContentMimeTypes)
74 Q_PROPERTY(QString resource READ resource WRITE setResource)
75 Q_PROPERTY(CollectionStatistics statistics READ statistics)
76 Q_PROPERTY(CachePolicy cachePolicy READ cachePolicy)
77
78public:
79 /**
80 * Describes the unique id type.
81 */
82 using Id = qint64;
83
84 /**
85 * Describes a list of collections.
86 */
88
89 /**
90 * Describes rights of a collection.
91 */
92 enum Right {
93 ReadOnly = 0x0, ///< Can only read items or subcollection of this collection
94 CanChangeItem = 0x1, ///< Can change items in this collection
95 CanCreateItem = 0x2, ///< Can create new items in this collection
96 CanDeleteItem = 0x4, ///< Can delete items in this collection
97 CanChangeCollection = 0x8, ///< Can change this collection
98 CanCreateCollection = 0x10, ///< Can create new subcollections in this collection
99 CanDeleteCollection = 0x20, ///< Can delete this collection
100 CanLinkItem = 0x40, ///< Can create links to existing items in this virtual collection @since 4.4
101 CanUnlinkItem = 0x80, ///< Can remove links to items in this virtual collection @since 4.4
103 | CanDeleteCollection) ///< Has all rights on this storage collection
104 };
105 Q_DECLARE_FLAGS(Rights, Right)
106 Q_ENUM(Right)
107
108 /**
109 * Creates an invalid collection.
110 */
111 Collection();
112
113 /**
114 * Create a new collection.
115 *
116 * @param id The unique identifier of the collection.
117 */
118 explicit Collection(Id id);
119
120 /**
121 * Destroys the collection.
122 */
124
125 /**
126 * Creates a collection from an @p other collection.
127 */
128 Collection(const Collection &other);
129
130 /**
131 * Move constructor.
132 */
133 Collection(Collection &&other) noexcept;
134
135 /**
136 * Creates a collection from the given @p url.
137 */
138 static Collection fromUrl(const QUrl &url);
139
140 /**
141 * Sets the unique @p identifier of the collection.
142 */
143 void setId(Id identifier);
144
145 /**
146 * Returns the unique identifier of the collection.
147 */
148 [[nodiscard]] Id id() const;
149
150 /**
151 * Sets the remote @p id of the collection.
152 */
153 void setRemoteId(const QString &id);
154
155 /**
156 * Returns the remote id of the collection.
157 */
158 [[nodiscard]] QString remoteId() const;
159
160 /**
161 * Sets the remote @p revision of the collection.
162 * @param revision the collections's remote revision
163 * The remote revision can be used by resources to store some
164 * revision information of the backend to detect changes there.
165 *
166 * @note This method is supposed to be used by resources only.
167 * @since 4.5
168 */
169 void setRemoteRevision(const QString &revision);
170
171 /**
172 * Returns the remote revision of the collection.
173 *
174 * @note This method is supposed to be used by resources only.
175 * @since 4.5
176 */
177 [[nodiscard]] QString remoteRevision() const;
178
179 /**
180 * Returns whether the collection is valid.
181 */
182 [[nodiscard]] bool isValid() const;
183
184 /**
185 * Returns whether this collections's id equals the
186 * id of the @p other collection.
187 */
188 [[nodiscard]] bool operator==(const Collection &other) const;
189
190 /**
191 * Returns whether the collection's id does not equal the id
192 * of the @p other collection.
193 */
194 [[nodiscard]] bool operator!=(const Collection &other) const;
195
196 /**
197 * Assigns the @p other to this collection and returns a reference to this
198 * collection.
199 * @param other the collection to assign
200 */
201 Collection &operator=(const Collection &other);
202
203 /**
204 * @internal For use with containers only.
205 *
206 * @since 4.8
207 */
208 [[nodiscard]] bool operator<(const Collection &other) const;
209
210 /**
211 * Returns the parent collection of this object.
212 * @note This will of course only return a useful value if it was explicitly retrieved
213 * from the Akonadi server.
214 * @since 4.4
215 */
216 [[nodiscard]] Collection parentCollection() const;
217
218 /**
219 * Returns a reference to the parent collection of this object.
220 * @note This will of course only return a useful value if it was explicitly retrieved
221 * from the Akonadi server.
222 * @since 4.4
223 */
224 [[nodiscard]] Collection &parentCollection();
225
226 /**
227 * Set the parent collection of this object.
228 * @note Calling this method has no immediate effect for the object itself,
229 * such as being moved to another collection.
230 * It is mainly relevant to provide a context for RID-based operations
231 * inside resources.
232 * @param parent The parent collection.
233 * @since 4.4
234 */
235 void setParentCollection(const Collection &parent);
236
237 /**
238 * Adds an attribute to the collection.
239 *
240 * If an attribute of the same type name already exists, it is deleted and
241 * replaced with the new one.
242 *
243 * @param attribute The new attribute.
244 *
245 * @note The collection takes the ownership of the attribute.
246 */
248
249 /**
250 * Removes and deletes the attribute of the given type @p name.
251 */
252 void removeAttribute(const QByteArray &name);
253
254 /**
255 * Returns @c true if the collection has an attribute of the given type @p name,
256 * false otherwise.
257 */
258 bool hasAttribute(const QByteArray &name) const;
259
260 /**
261 * Returns a list of all attributes of the collection.
262 *
263 * @warning Do not modify the attributes returned from this method,
264 * the change will not be reflected when updating the Collection
265 * through CollectionModifyJob.
266 */
267 [[nodiscard]] Attribute::List attributes() const;
268
269 /**
270 * Removes and deletes all attributes of the collection.
271 */
272 void clearAttributes();
273
274 /**
275 * Returns the attribute of the given type @p name if available, 0 otherwise.
276 */
277 Attribute *attribute(const QByteArray &name);
278 const Attribute *attribute(const QByteArray &name) const;
279
280 /**
281 * Describes the options that can be passed to access attributes.
282 */
284 AddIfMissing, ///< Creates the attribute if it is missing
285 DontCreate ///< Default value
286 };
287
288 /**
289 * Returns the attribute of the requested type.
290 * If the collection has no attribute of that type yet, passing AddIfMissing
291 * as an argument will create and add it to the entity
292 *
293 * @param option The create options.
294 */
295 template<typename T>
296 inline T *attribute(CreateOption option = DontCreate);
297
298 /**
299 * Returns the attribute of the requested type or 0 if it is not available.
300 */
301 template<typename T>
302 inline const T *attribute() const;
303
304 /**
305 * Removes and deletes the attribute of the requested type.
306 */
307 template<typename T>
308 inline void removeAttribute();
309
310 /**
311 * Returns whether the collection has an attribute of the requested type.
312 */
313 template<typename T>
314 inline bool hasAttribute() const;
315
316 /**
317 * Returns the i18n'ed name of the collection.
318 */
319 [[nodiscard]] QString name() const;
320
321 /**
322 * Returns the display name (EntityDisplayAttribute::displayName()) if set,
323 * and Collection::name() otherwise. For human-readable strings this is preferred
324 * over Collection::name().
325 *
326 * @since 4.11
327 */
328 [[nodiscard]] QString displayName() const;
329
330 /**
331 * Sets the i18n'ed name of the collection.
332 *
333 * @param name The new collection name.
334 */
335 void setName(const QString &name);
336
337 /**
338 * Returns the rights the user has on the collection.
339 */
340 [[nodiscard]] Rights rights() const;
341
342 /**
343 * Sets the @p rights the user has on the collection.
344 */
345 void setRights(Rights rights);
346
347 /**
348 * Returns a list of possible content mimetypes,
349 * e.g. message/rfc822, x-akonadi/collection for a mail folder that
350 * supports sub-folders.
351 */
352 [[nodiscard]] QStringList contentMimeTypes() const;
353
354 /**
355 * Sets the list of possible content mime @p types.
356 */
357 void setContentMimeTypes(const QStringList &types);
358
359 /**
360 * Returns the root collection.
361 */
362 [[nodiscard]] static Collection root();
363
364 /**
365 * Returns the mimetype used for collections.
366 */
367 [[nodiscard]] static QString mimeType();
368
369 /**
370 * Returns the mimetype used for virtual collections
371 *
372 * @since 4.11
373 */
374 [[nodiscard]] static QString virtualMimeType();
375
376 /**
377 * Returns the identifier of the resource owning the collection.
378 */
379 [[nodiscard]] QString resource() const;
380
381 /**
382 * Sets the @p identifier of the resource owning the collection.
383 */
384 void setResource(const QString &identifier);
385
386 /**
387 * Returns the cache policy of the collection.
388 */
389 [[nodiscard]] CachePolicy cachePolicy() const;
390
391 /**
392 * Sets the cache @p policy of the collection.
393 */
394 void setCachePolicy(const CachePolicy &policy);
395
396 /**
397 * Returns the collection statistics of the collection.
398 */
399 [[nodiscard]] CollectionStatistics statistics() const;
400
401 /**
402 * Sets the collection @p statistics for the collection.
403 */
404 void setStatistics(const CollectionStatistics &statistics);
405
406 /**
407 * Describes the type of url which is returned in url().
408 *
409 * @since 4.7
410 */
411 enum UrlType {
412 UrlShort = 0, ///< A short url which contains the identifier only (equivalent to url())
413 UrlWithName = 1 ///< A url with identifier and name
414 };
415
416 /**
417 * Returns the url of the collection.
418 * @param type the type of url
419 * @since 4.7
420 */
421 [[nodiscard]] QUrl url(UrlType type = UrlShort) const;
422
423 /**
424 * Returns whether the collection is virtual, for example a search collection.
425 *
426 * @since 4.6
427 */
428 [[nodiscard]] bool isVirtual() const;
429
430 /**
431 * Sets whether the collection is virtual or not.
432 * Virtual collections can't be converted to non-virtual and vice versa.
433 * @param isVirtual virtual collection if @c true, otherwise a normal collection
434 * @since 4.10
435 */
436 void setVirtual(bool isVirtual);
437
438 /**
439 * Sets the collection's enabled state.
440 *
441 * Use this mechanism to set if a collection should be available
442 * to the user or not.
443 *
444 * This can be used in conjunction with the local list preference for finer grained control
445 * to define if a collection should be included depending on the purpose.
446 *
447 * For example: A collection is by default enabled, meaning it is displayed to the user, synchronized by the resource,
448 * and indexed by the indexer. A disabled collection on the other hand is not displayed, synchronized or indexed.
449 * The local list preference allows to locally override that default value for each purpose individually.
450 *
451 * The enabled state can be synchronized by backends.
452 * E.g. an imap resource may synchronize this with the subscription state.
453 *
454 * @since 4.14
455 * @see setLocalListPreference, setShouldList
456 */
457 void setEnabled(bool enabled);
458
459 /**
460 * Returns the collection's enabled state.
461 * @since 4.14
462 * @see localListPreference
463 */
464 [[nodiscard]] bool enabled() const;
465
466 /**
467 * Describes the list preference value
468 *
469 * @since 4.14
470 */
472 ListEnabled, ///< Enable collection for specified purpose
473 ListDisabled, ///< Disable collection for specified purpose
474 ListDefault ///< Fallback to enabled state
475 };
476
477 /**
478 * Describes the purpose of the listing
479 *
480 * @since 4.14
481 */
483 ListSync, ///< Listing for synchronization
484 ListDisplay, ///< Listing for display to the user
485 ListIndex ///< Listing for indexing the content
486 };
487
488 /**
489 * Sets the local list preference for the specified purpose.
490 *
491 * The local list preference overrides the enabled state unless set to ListDefault.
492 * In case of ListDefault the enabled state should be taken as fallback (shouldList() implements this logic).
493 *
494 * The default value is ListDefault.
495 *
496 * @since 4.14
497 * @see shouldList, setEnabled
498 */
499 void setLocalListPreference(ListPurpose purpose, ListPreference preference);
500
501 /**
502 * Returns the local list preference for the specified purpose.
503 * @since 4.14
504 * @see setLocalListPreference
505 */
506 [[nodiscard]] ListPreference localListPreference(ListPurpose purpose) const;
507
508 /**
509 * Returns whether the collection should be listed or not for the specified purpose
510 * Takes enabled state and local preference into account.
511 *
512 * @since 4.14
513 * @see setLocalListPreference, setEnabled
514 */
515 [[nodiscard]] bool shouldList(ListPurpose purpose) const;
516
517 /**
518 * Sets whether the collection should be listed or not for the specified purpose.
519 * Takes enabled state and local preference into account.
520 *
521 * Use this instead of sestEnabled and setLocalListPreference to automatically set
522 * the right setting.
523 *
524 * @since 4.14
525 * @see setLocalListPreference, setEnabled
526 */
527 void setShouldList(ListPurpose purpose, bool shouldList);
528
529 /**
530 * Set during sync to indicate that the provided parts are only default values;
531 * @since 4.15
532 */
533 void setKeepLocalChanges(const QSet<QByteArray> &parts);
534
535 /**
536 * Returns what parts are only default values.
537 */
538 QSet<QByteArray> keepLocalChanges() const;
539
540private:
541 friend class CollectionCreateJob;
542 friend class CollectionFetchJob;
543 friend class CollectionModifyJob;
544 friend class ProtocolHelper;
545
546 void markAttributeModified(const QByteArray &type);
547
548 /// @cond PRIVATE
550 friend class CollectionPrivate;
551 /// @endcond
552};
553
554AKONADICORE_EXPORT size_t qHash(const Akonadi::Collection &collection, size_t seed = 0) noexcept;
555
556template<typename T>
558{
559 const QByteArray type = T().type();
560 markAttributeModified(type); // do this first in case it detaches
561 if (hasAttribute(type)) {
562 if (T *attr = dynamic_cast<T *>(attribute(type))) {
563 return attr;
564 }
565 qWarning() << "Found attribute of unknown type" << type << ". Did you forget to call AttributeFactory::registerAttribute()?";
566 } else if (option == AddIfMissing) {
567 T *attr = new T();
568 addAttribute(attr);
569 return attr;
570 }
571
572 return nullptr;
573}
574
575template<typename T>
576inline const T *Akonadi::Collection::attribute() const
577{
578 const QByteArray type = T().type();
579 if (hasAttribute(type)) {
580 if (const T *attr = dynamic_cast<const T *>(attribute(type))) {
581 return attr;
582 }
583 qWarning() << "Found attribute of unknown type" << type << ". Did you forget to call AttributeFactory::registerAttribute()?";
584 }
585
586 return nullptr;
587}
588
589template<typename T>
591{
592 removeAttribute(T().type());
593}
594
595template<typename T>
597{
598 return hasAttribute(T().type());
599}
600
601} // namespace Akonadi
602
603/**
604 * Allows to output a collection for debugging purposes.
605 */
606AKONADICORE_EXPORT QDebug operator<<(QDebug d, const Akonadi::Collection &collection);
607
608Q_DECLARE_METATYPE(Akonadi::Collection::List)
609Q_DECLARE_OPERATORS_FOR_FLAGS(Akonadi::Collection::Rights)
610Q_DECLARE_TYPEINFO(Akonadi::Collection, Q_RELOCATABLE_TYPE);
Provides interface for custom attributes for Entity.
Definition attribute.h:132
QList< Attribute * > List
Describes a list of attributes.
Definition attribute.h:137
Represents the caching policy for a collection.
Definition cachepolicy.h:61
Job that creates a new collection in the Akonadi storage.
Job that fetches collections from the Akonadi storage.
Job that modifies a collection in the Akonadi storage.
Provides statistics information of a Collection.
Represents a collection of PIM items.
Definition collection.h:62
void setVirtual(bool isVirtual)
Sets whether the collection is virtual or not.
~Collection()
Destroys the collection.
qint64 Id
Describes the unique id type.
Definition collection.h:82
UrlType
Describes the type of url which is returned in url().
Definition collection.h:411
@ UrlWithName
A url with identifier and name.
Definition collection.h:413
@ UrlShort
A short url which contains the identifier only (equivalent to url())
Definition collection.h:412
void setParentCollection(const Collection &parent)
Set the parent collection of this object.
void addAttribute(Attribute *attribute)
Adds an attribute to the collection.
Collection()
Creates an invalid collection.
ListPurpose
Describes the purpose of the listing.
Definition collection.h:482
@ ListSync
Listing for synchronization.
Definition collection.h:483
@ ListIndex
Listing for indexing the content.
Definition collection.h:485
@ ListDisplay
Listing for display to the user.
Definition collection.h:484
Collection(Collection &&other) noexcept
Move constructor.
bool hasAttribute(const QByteArray &name) const
Returns true if the collection has an attribute of the given type name, false otherwise.
bool operator<(const Collection &other) const
Attribute::List attributes() const
Returns a list of all attributes of the collection.
void setName(const QString &name)
Sets the i18n'ed name of the collection.
const T * attribute() const
Returns the attribute of the requested type or 0 if it is not available.
Definition collection.h:576
CreateOption
Describes the options that can be passed to access attributes.
Definition collection.h:283
@ AddIfMissing
Creates the attribute if it is missing.
Definition collection.h:284
@ DontCreate
Default value.
Definition collection.h:285
bool operator!=(const Collection &other) const
Returns whether the collection's id does not equal the id of the other collection.
void clearAttributes()
Removes and deletes all attributes of the collection.
Collection & operator=(const Collection &other)
Assigns the other to this collection and returns a reference to this collection.
void setRemoteId(const QString &id)
Sets the remote id of the collection.
void setResource(const QString &identifier)
Sets the identifier of the resource owning the collection.
static Collection fromUrl(const QUrl &url)
Creates a collection from the given url.
void setEnabled(bool enabled)
Sets the collection's enabled state.
Right
Describes rights of a collection.
Definition collection.h:92
@ CanDeleteItem
Can delete items in this collection.
Definition collection.h:96
@ ReadOnly
Can only read items or subcollection of this collection.
Definition collection.h:93
@ CanDeleteCollection
Can delete this collection.
Definition collection.h:99
@ CanChangeCollection
Can change this collection.
Definition collection.h:97
@ CanCreateItem
Can create new items in this collection.
Definition collection.h:95
@ CanLinkItem
Can create links to existing items in this virtual collection.
Definition collection.h:100
@ CanCreateCollection
Can create new subcollections in this collection.
Definition collection.h:98
@ CanUnlinkItem
Can remove links to items in this virtual collection.
Definition collection.h:101
@ AllRights
Has all rights on this storage collection.
Definition collection.h:102
@ CanChangeItem
Can change items in this collection.
Definition collection.h:94
Collection parentCollection() const
Returns the parent collection of this object.
void setContentMimeTypes(const QStringList &types)
Sets the list of possible content mime types.
bool operator==(const Collection &other) const
Returns whether this collections's id equals the id of the other collection.
void setRights(Rights rights)
Sets the rights the user has on the collection.
bool hasAttribute() const
Returns whether the collection has an attribute of the requested type.
Definition collection.h:596
QList< Collection > List
Describes a list of collections.
Definition collection.h:87
void removeAttribute(const QByteArray &name)
Removes and deletes the attribute of the given type name.
Attribute * attribute(const QByteArray &name)
Returns the attribute of the given type name if available, 0 otherwise.
QUrl url(UrlType type=UrlShort) const
Returns the url of the collection.
void setRemoteRevision(const QString &revision)
Sets the remote revision of the collection.
void setId(Id identifier)
Sets the unique identifier of the collection.
QString remoteId() const
Returns the remote id of the collection.
void removeAttribute()
Removes and deletes the attribute of the requested type.
Definition collection.h:590
ListPreference
Describes the list preference value.
Definition collection.h:471
@ ListDefault
Fallback to enabled state.
Definition collection.h:474
@ ListDisabled
Disable collection for specified purpose.
Definition collection.h:473
@ ListEnabled
Enable collection for specified purpose.
Definition collection.h:472
Helper integration between Akonadi and Qt.
This file is part of the KDE documentation.
Documentation copyright © 1996-2025 The KDE developers.
Generated on Fri Mar 28 2025 11:53:20 by doxygen 1.13.2 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.