Akonadi

cachepolicy.h
1/*
2 SPDX-FileCopyrightText: 2008 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 <QObject>
12#include <QSharedDataPointer>
13#include <QStringList>
14
15namespace Akonadi
16{
17class CachePolicyPrivate;
18
19/**
20 * @short Represents the caching policy for a collection.
21 *
22 * There is one cache policy per collection. It can either specify that all
23 * properties of the policy of the parent collection will be inherited (the
24 * default) or specify the following values:
25 *
26 * - The item parts that should be permanently kept locally and are downloaded
27 * during a collection sync (e.g. full mail vs. just the headers).
28 * - A minimum time for which non-permanently cached item parts have to be kept
29 * (0 - infinity).
30 * - Whether or not a collection sync is triggered on demand, i.e. as soon
31 * as it is accessed by a client.
32 * - An optional time interval for regular collection sync (aka interval
33 * mail check).
34 *
35 * Syncing means fetching updates from the Akonadi database. The cache policy
36 * does not affect updates of the Akonadi database from the backend, since
37 * backend updates will normally immediately trigger the resource to update the
38 * Akonadi database.
39 *
40 * The cache policy applies only to reading from the collection. Writing to the
41 * collection is independent of cache policy - all updates are written to the
42 * backend as soon as the resource can schedule this.
43 *
44 * @code
45 *
46 * Akonadi::CachePolicy policy;
47 * policy.setCacheTimeout( 30 );
48 * policy.setIntervalCheckTime( 20 );
49 *
50 * Akonadi::Collection collection = ...
51 * collection.setCachePolicy( policy );
52 *
53 * @endcode
54 *
55 * @todo Do we also need a size limit for the cache as well?
56 * @todo on a POP3 account, is should not be possible to change locally cached parts, find a solution for that
57 *
58 * @author Volker Krause <vkrause@kde.org>
59 */
60class AKONADICORE_EXPORT CachePolicy
61{
62 Q_GADGET
63 Q_PROPERTY(bool inheritFromParent READ inheritFromParent WRITE setInheritFromParent)
64 Q_PROPERTY(QStringList localParts READ localParts WRITE setLocalParts)
65 Q_PROPERTY(int cacheTimeout READ cacheTimeout WRITE setCacheTimeout)
66 Q_PROPERTY(int intervalCheckTime READ intervalCheckTime WRITE setIntervalCheckTime)
67 Q_PROPERTY(bool syncOnDemand READ syncOnDemand WRITE setSyncOnDemand)
68
69public:
70 /**
71 * Creates an empty cache policy.
72 */
74
75 /**
76 * Creates a cache policy from an @p other cache policy.
77 */
78 CachePolicy(const CachePolicy &other);
79
80 /**
81 * Destroys the cache policy.
82 */
84
85 /**
86 * Returns whether it inherits cache policy from the parent collection.
87 */
88 bool inheritFromParent() const;
89
90 /**
91 * Sets whether the cache policy should be inherited from the parent collection.
92 */
93 void setInheritFromParent(bool inherit);
94
95 /**
96 * Returns the parts to permanently cache locally.
97 */
98 [[nodiscard]] QStringList localParts() const;
99
100 /**
101 * Specifies the parts to permanently cache locally.
102 */
103 void setLocalParts(const QStringList &parts);
104
105 /**
106 * Returns the cache timeout for non-permanently cached parts in minutes;
107 * -1 means indefinitely.
108 */
109 [[nodiscard]] int cacheTimeout() const;
110
111 /**
112 * Sets cache timeout for non-permanently cached parts.
113 * @param timeout Timeout in minutes, -1 for indefinitely.
114 */
115 void setCacheTimeout(int timeout);
116
117 /**
118 * Returns the interval check time in minutes, -1 for never.
119 */
120 [[nodiscard]] int intervalCheckTime() const;
121
122 /**
123 * Sets interval check time.
124 * @param time Check time interval in minutes, -1 for never.
125 */
126 void setIntervalCheckTime(int time);
127
128 /**
129 * Returns whether the collection will be synced automatically when necessary,
130 * i.e. as soon as it is accessed by a client.
131 */
132 [[nodiscard]] bool syncOnDemand() const;
133
134 /**
135 * Sets whether the collection shall be synced automatically when necessary,
136 * i.e. as soon as it is accessed by a client.
137 * @param enable If @c true the collection is synced.
138 */
139 void setSyncOnDemand(bool enable);
140
141 /**
142 * @internal.
143 * @param other other cache policy
144 */
145 CachePolicy &operator=(const CachePolicy &other);
146
147 /**
148 * @internal
149 * @param other other cache policy
150 */
151 [[nodiscard]] bool operator==(const CachePolicy &other) const;
152
153private:
154 /// @cond PRIVATE
156 /// @endcond
157};
158
159}
160
161/**
162 * Allows a cache policy to be output for debugging purposes.
163 */
164AKONADICORE_EXPORT QDebug operator<<(QDebug, const Akonadi::CachePolicy &);
Represents the caching policy for a collection.
Definition cachepolicy.h:61
bool operator==(const CachePolicy &other) const
void setLocalParts(const QStringList &parts)
Specifies the parts to permanently cache locally.
CachePolicy & operator=(const CachePolicy &other)
void setIntervalCheckTime(int time)
Sets interval check time.
void setCacheTimeout(int timeout)
Sets cache timeout for non-permanently cached parts.
void setInheritFromParent(bool inherit)
Sets whether the cache policy should be inherited from the parent collection.
void setSyncOnDemand(bool enable)
Sets whether the collection shall be synced automatically when necessary, i.e.
CachePolicy()
Creates an empty cache policy.
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.