/usr/include/akonadi/collectionstatistics.h is in kdepimlibs5-dev 4:4.14.10-1ubuntu2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 | /*
Copyright (c) 2006 Volker Krause <vkrause@kde.org>
This library is free software; you can redistribute it and/or modify it
under the terms of the GNU Library General Public License as published by
the Free Software Foundation; either version 2 of the License, or (at your
option) any later version.
This library is distributed in the hope that it will be useful, but WITHOUT
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public
License for more details.
You should have received a copy of the GNU Library General Public License
along with this library; see the file COPYING.LIB. If not, write to the
Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
02110-1301, USA.
*/
#ifndef AKONADI_COLLECTIONSTATISTICS_H
#define AKONADI_COLLECTIONSTATISTICS_H
#include "akonadi_export.h"
#include <QtCore/QMetaType>
#include <QtCore/QSharedDataPointer>
namespace Akonadi {
/**
* @short Provides statistics information of a Collection.
*
* This class contains information such as total number of items,
* number of new and unread items, etc.
*
* This information might be expensive to obtain and is thus
* not included when fetching collections with a CollectionFetchJob.
* It can be retrieved separately using CollectionStatisticsJob.
*
* Example:
*
* @code
*
* Akonadi::Collection collection = ...
*
* Akonadi::CollectionStatisticsJob *job = new Akonadi::CollectionStatisticsJob( collection );
* connect( job, SIGNAL(result(KJob*)), SLOT(jobFinished(KJob*)) );
*
* ...
*
* MyClass::jobFinished( KJob *job )
* {
* if ( job->error() ) {
* qDebug() << "Error occurred";
* return;
* }
*
* CollectionStatisticsJob *statisticsJob = qobject_cast<CollectionStatisticsJob*>( job );
*
* const Akonadi::CollectionStatistics statistics = statisticsJob->statistics();
* qDebug() << "Unread items:" << statistics.unreadCount();
* }
*
* @endcode
*
* This class is implicitly shared.
*
* @author Volker Krause <vkrause@kde.org>
*/
class AKONADI_EXPORT CollectionStatistics
{
public:
/**
* Creates a new collection statistics object.
*/
CollectionStatistics();
/**
* Creates a collection statistics object from an @p other one.
*/
CollectionStatistics(const CollectionStatistics &other);
/**
* Destroys the collection statistics object.
*/
~CollectionStatistics();
/**
* Returns the number of items in this collection or @c -1 if
* this information is not available.
*
* @see setCount()
* @see unreadCount()
*/
qint64 count() const;
/**
* Sets the number of items in this collection.
*
* @param count The number of items.
* @see count()
*/
void setCount(qint64 count);
/**
* Returns the number of unread items in this collection or @c -1 if
* this information is not available.
*
* @see setUnreadCount()
* @see count()
*/
qint64 unreadCount() const;
/**
* Sets the number of unread items in this collection.
*
* @param count The number of unread messages.
* @see unreadCount()
*/
void setUnreadCount(qint64 count);
/**
* Returns the total size of the items in this collection or @c -1 if
* this information is not available.
*
* @see setSize()
* @since 4.3
*/
qint64 size() const;
/**
* Sets the total size of the items in this collection.
*
* @param size The total size of the items
* @see size()
* @since 4.3
*/
void setSize(qint64 size);
/**
* Assigns @p other to this statistics object and returns a reference to this one.
*/
CollectionStatistics &operator=(const CollectionStatistics &other);
private:
//@cond PRIVATE
class Private;
QSharedDataPointer<Private> d;
//@endcond
};
}
/**
* Allows to output the collection statistics for debugging purposes.
*/
AKONADI_EXPORT QDebug operator<<(QDebug d, const Akonadi::CollectionStatistics &);
Q_DECLARE_METATYPE(Akonadi::CollectionStatistics)
#endif
|