Akonadi

core/collectionstatistics.h
1/*
2 SPDX-FileCopyrightText: 2006 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
11#include <QMetaType>
12#include <QSharedDataPointer>
13
14namespace Akonadi
15{
16class CollectionStatisticsPrivate;
17
18/**
19 * @short Provides statistics information of a Collection.
20 *
21 * This class contains information such as total number of items,
22 * number of new and unread items, etc.
23 *
24 * This information might be expensive to obtain and is thus
25 * not included when fetching collections with a CollectionFetchJob.
26 * It can be retrieved separately using CollectionStatisticsJob.
27 *
28 * Example:
29 *
30 * @code
31 *
32 * Akonadi::Collection collection = ...
33 *
34 * Akonadi::CollectionStatisticsJob *job = new Akonadi::CollectionStatisticsJob( collection );
35 * connect( job, SIGNAL(result(KJob*)), SLOT(jobFinished(KJob*)) );
36 *
37 * ...
38 *
39 * MyClass::jobFinished( KJob *job )
40 * {
41 * if ( job->error() ) {
42 * qDebug() << "Error occurred";
43 * return;
44 * }
45 *
46 * CollectionStatisticsJob *statisticsJob = qobject_cast<CollectionStatisticsJob*>( job );
47 *
48 * const Akonadi::CollectionStatistics statistics = statisticsJob->statistics();
49 * qDebug() << "Unread items:" << statistics.unreadCount();
50 * }
51 *
52 * @endcode
53 *
54 * This class is implicitly shared.
55 *
56 * @author Volker Krause <vkrause@kde.org>
57 */
58class AKONADICORE_EXPORT CollectionStatistics
59{
60 Q_GADGET
61 Q_PROPERTY(int count READ count)
62 Q_PROPERTY(int size READ size)
63
64public:
65 /**
66 * Creates a new collection statistics object.
67 */
69
70 /**
71 * Creates a collection statistics object from an @p other one.
72 */
74
75 /**
76 * Destroys the collection statistics object.
77 */
79
80 /**
81 * Returns the number of items in this collection or @c -1 if
82 * this information is not available.
83 *
84 * @see setCount()
85 * @see unreadCount()
86 */
87 [[nodiscard]] qint64 count() const;
88
89 /**
90 * Sets the number of items in this collection.
91 *
92 * @param count The number of items.
93 * @see count()
94 */
95 void setCount(qint64 count);
96
97 /**
98 * Returns the number of unread items in this collection or @c -1 if
99 * this information is not available.
100 *
101 * @see setUnreadCount()
102 * @see count()
103 */
104 [[nodiscard]] qint64 unreadCount() const;
105
106 /**
107 * Sets the number of unread items in this collection.
108 *
109 * @param count The number of unread messages.
110 * @see unreadCount()
111 */
112 void setUnreadCount(qint64 count);
113
114 /**
115 * Returns the total size of the items in this collection or @c -1 if
116 * this information is not available.
117 *
118 * @see setSize()
119 * @since 4.3
120 */
121 [[nodiscard]] qint64 size() const;
122
123 /**
124 * Sets the total size of the items in this collection.
125 *
126 * @param size The total size of the items
127 * @see size()
128 * @since 4.3
129 */
130 void setSize(qint64 size);
131
132 /**
133 * Assigns @p other to this statistics object and returns a reference to this one.
134 */
136
137private:
138 /// @cond PRIVATE
140 /// @endcond
141};
142
143}
144
145/**
146 * Allows to output the collection statistics for debugging purposes.
147 */
148AKONADICORE_EXPORT QDebug operator<<(QDebug d, const Akonadi::CollectionStatistics &);
149
150Q_DECLARE_METATYPE(Akonadi::CollectionStatistics)
Provides statistics information of a Collection.
qint64 unreadCount() const
Returns the number of unread items in this collection or -1 if this information is not available.
void setUnreadCount(qint64 count)
Sets the number of unread items in this collection.
void setSize(qint64 size)
Sets the total size of the items in this collection.
~CollectionStatistics()
Destroys the collection statistics object.
void setCount(qint64 count)
Sets the number of items in this collection.
CollectionStatistics()
Creates a new collection statistics object.
CollectionStatistics & operator=(const CollectionStatistics &other)
Assigns other to this statistics object and returns a reference to this one.
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:21 by doxygen 1.13.2 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.