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
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
|
/****************************************************************************
**
** Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies).
** Contact: Qt Software Information (qt-info@nokia.com)
**
** This file is part of the $MODULE$ of the Qt Toolkit.
**
** $TROLLTECH_DUAL_LICENSE$
**
****************************************************************************/
#include "qcontiguouscache.h"
#include <QDebug>
void QContiguousCacheData::dump() const
{
qDebug() << "capacity:" << alloc;
qDebug() << "count:" << count;
qDebug() << "start:" << start;
qDebug() << "offset:" << offset;
}
/*! \class QContiguousCache
\brief The QContiguousCache class is a template class that provides a contiguous cache.
\ingroup tools
\ingroup shared
\reentrant
The QContiguousCache class provides an efficient way of caching items for
display in a user interface view. Unlike QCache though it adds a restriction
that elements within the cache are contiguous. This has the advantage that
of matching how user interface views most commonly request data, as
a set of rows localized around the current scrolled position. It also
allows the cache to use less overhead than QCache both in terms of
performance and memory.
The simplest way of using an contiguous cache is to use the append()
and prepend().
\code
MyRecord record(int row) const
{
Q_ASSERT(row >= 0 && row < count());
while(row > cache.lastIndex())
cache.append(slowFetchRecord(cache.lastIndex()+1));
while(row < cache.firstIndex())
cache.prepend(slowFetchRecord(cache.firstIndex()-1));
return cache.at(row);
}
\endcode
If the cache is full then the item with the furthest index from where
the new item is appended or prepended is removed.
This usage can be further optimized by using the insert() function
in the case where the requested row is a long way from the currently cached
items. If there is a is a gap between where the new item is inserted and the currently
cached items then the existing cached items are first removed to retain
the contiguous nature of the cache. Hence it is important to take some care then
when using insert() in order to avoid to unwanted clearing of the cache.
See the The \l{Contiguous Cache Example}{Contiguous Cache} example.
*/
/*! \fn QContiguousCache::QContiguousCache(int capacity)
Constructs a cache with the given \a capacity.
\sa setCapacity()
*/
/*! \fn QContiguousCache::QContiguousCache(const QContiguousCache<T> &other)
Constructs a copy of \a other.
This operation takes \l{constant time}, because QContiguousCache is
\l{implicitly shared}. This makes returning a QContiguousCache from a
function very fast. If a shared instance is modified, it will be
copied (copy-on-write), and that takes \l{linear time}.
\sa operator=()
*/
/*! \fn QContiguousCache::~QContiguousCache()
Destroys the cache.
*/
/*! \fn void QContiguousCache::detach()
\internal
*/
/*! \fn bool QContiguousCache::isDetached() const
\internal
*/
/*! \fn void QContiguousCache::setSharable(bool sharable)
\internal
*/
/*! \fn QContiguousCache<T> &QContiguousCache::operator=(const QContiguousCache<T> &other)
Assigns \a other to this cache and returns a reference to this cache.
*/
/*! \fn bool QContiguousCache::operator==(const QContiguousCache<T> &other) const
Returns true if \a other is equal to this cache; otherwise returns false.
Two cache are considered equal if they contain the same values at the same
indexes. This function requires the value type to implement the \c operator==().
\sa operator!=()
*/
/*! \fn bool QContiguousCache::operator!=(const QContiguousCache<T> &other) const
Returns true if \a other is not equal to this cache; otherwise
returns false.
Two cache are considered equal if they contain the same values at the same
indexes. This function requires the value type to implement the \c operator==().
\sa operator==()
*/
/*! \fn int QContiguousCache::capacity() const
Returns the number of items the cache can store before it is full.
When a cache contains a number of items equal to its capacity, adding new
items will cause items furthest from the added item to be removed.
\sa setCapacity(), size()
*/
/*! \fn int QContiguousCache::count() const
\overload
Same as size().
*/
/*! \fn int QContiguousCache::size() const
Returns the number of items contained within the cache.
\sa capacity()
*/
/*! \fn bool QContiguousCache::isEmpty() const
Returns true if no items are stored within the cache.
\sa size(), capacity()
*/
/*! \fn bool QContiguousCache::isFull() const
Returns true if the number of items stored within the cache is equal
to the capacity of the cache.
\sa size(), capacity()
*/
/*! \fn int QContiguousCache::available() const
Returns the number of items that can be added to the cache before it becomes full.
\sa size(), capacity(), isFull()
*/
/*! \fn void QContiguousCache::clear()
Removes all items from the cache. The capacity is unchanged.
*/
/*! \fn void QContiguousCache::setCapacity(int size)
Sets the capacity of the cache to the given \a size. A cache can hold a
number of items equal to its capacity. When inserting, appending or prepending
items to the cache, if the cache is already full then the item furthest from
the added item will be removed.
If the given \a size is smaller than the current count of items in the cache
then only the last \a size items from the cache will remain.
\sa capacity(), isFull()
*/
/*! \fn const T &QContiguousCache::at(int i) const
Returns the item at index position \a i in the cache. \a i must
be a valid index position in the cache (i.e, firstIndex() <= \a i <= lastIndex()).
The indexes in the cache refer to number of positions the item is from the
first item appended into the cache. That is to say a cache with a capacity of
100, that has had 150 items appended will have a valid index range of
50 to 149. This allows inserting an retrieving items into the cache based
on a theoretical infinite list
\sa firstIndex(), lastIndex(), insert(), operator[]()
*/
/*! \fn T &QContiguousCache::operator[](int i)
Returns the item at index position \a i as a modifiable reference. If
the cache does not contain an item at the given index position \a i
then it will first insert an empty item at that position.
In most cases it is better to use either at() or insert().
Note that using non-const operators can cause QContiguousCache to do a deep
copy.
\sa insert(), at()
*/
/*! \fn const T &QContiguousCache::operator[](int i) const
\overload
Same as at(\a i).
*/
/*! \fn void QContiguousCache::append(const T &value)
Inserts \a value at the end of the cache. If the cache is already full
the item at the start of the cache will be removed.
\sa prepend(), insert(), isFull()
*/
/*! \fn void QContiguousCache::prepend(const T &value)
Inserts \a value at the start of the cache. If the cache is already full
the item at the end of the cache will be removed.
\sa append(), insert(), isFull()
*/
/*! \fn void QContiguousCache::insert(int i, const T &value)
Inserts the \a value at the index position \a i. If the cache already contains
an item at \a i then that value is replaced. If \a i is either one more than
lastIndex() or one less than firstIndex() it is the equivalent to an append()
or a prepend().
If the given index \a i is not within the current range of the cache nor adjacent
to the bounds of the cache's index range the cache is first cleared before
inserting the item. At this point the cache will have a size of 1. It is worth
while then taking effort to insert items in an order that starts adjacent to the
current index range for the cache.
\sa prepend(), append(), isFull(), firstIndex(), lastIndex()
*/
/*! \fn bool QContiguousCache::containsIndex(int i) const
Returns true if the cache's index range includes the given index \a i.
\sa firstIndex(), lastIndex()
*/
/*! \fn int QContiguousCache::firstIndex() const
Returns the first valid index in the cache. The index will be invalid if the
cache is empty. However the following code is valid even when the cache is empty:
\code
for (int i = cache.firstIndex(); i <= cache.lastIndex(); ++i)
qDebug() << "Item" << i << "of the cache is" << cache.at(i);
\endcode
\sa capacity(), size(), lastIndex()
*/
/*! \fn int QContiguousCache::lastIndex() const
Returns the last valid index in the cache. If the cache is empty will return -1.
\code
for (int i = cache.firstIndex(); i <= cache.lastIndex(); ++i)
qDebug() << "Item" << i << "of the cache is" << cache.at(i);
\endcode
\sa capacity(), size(), firstIndex()
*/
/*! \fn T &QContiguousCache::first()
Returns a reference to the first item in the cache. This function
assumes that the cache isn't empty.
\sa last(), isEmpty()
*/
/*! \fn T &QContiguousCache::last()
Returns a reference to the last item in the cache. This function
assumes that the cache isn't empty.
\sa first(), isEmpty()
*/
/*! \fn const T& QContiguousCache::first() const
\overload
*/
/*! \fn const T& QContiguousCache::last() const
\overload
*/
/*! \fn void QContiguousCache::removeFirst()
Removes the first item from the cache. This function assumes that
the cache isn't empty.
\sa removeLast()
*/
/*! \fn void QContiguousCache::removeLast()
Removes the last item from the cache. This function assumes that
the cache isn't empty.
\sa removeFirst()
*/
/*! \fn T QContiguousCache::takeFirst()
Removes the first item in the cache and returns it.
If you don't sue the return value, removeFirst() is more efficient.
\sa takeLast(), removeFirst()
*/
/*! \fn T QContiguousCache::takeLast()
Removes the last item in the cache and returns it.
If you don't sue the return value, removeLast() is more efficient.
\sa takeFirst(), removeLast()
*/
/*! \fn void QContiguousCache::dump() const
\internal
Sends information about the cache's internal structure to qDebug()
*/
|