Qt logo

QIntCache Class Reference


The QIntCache class is a template class that provides a cache based on long keys. More...

#include <qintcache.h>

Inherits QGCache.

List of all member functions.

Public Members


Detailed Description

The QIntCache class is a template class that provides a cache based on long keys.

QIntCache is implemented as both a template and a macro class. Define a template instance QIntCache<X> to create a cache that operates on pointers to X, or X*.

A cache is a least recently used (LRU) list of cache items. Each cache item has a cost. The sum of item costs, totalCost(), will not exceed the maximum cache cost, maxCost(). If inserting a new item would cause the total cost to exceed the maximum cost, the least recently used items in the cache are deleted.

Apart from insert, by far the most important function is find() (which also exists as operatior[]). This function looks up an item, returns it, and by default marks it as being the least recently used item.

There are also methods to remove() an object from the cache and delete it, and to take() an object out of the cache without deleting it.

QIntCache, as it must, takes over ownership of the items you insert. That implies that it will delete the items at its discretion, and that you must not delete them. There is one exception, however: If the cost of an object you try to insert() is higher than the allowed total cost of the cache, insert() returns FALSE and in this case you must delete the object yourself.

In addition to totalCost() and maxCost()/setMaxCost(), there are access functions to obtain the number of items in the cache (count()), the size of the hash array (size(), set using the constructor) and whether the cache is empty (you guessed it: isEmpty()). Finally, there is a statistics(), which prints various cache statistics on stdout.

There is also a QIntCacheIterator which may be used to traverse the items in the cache in arbritrary order.

See also: QIntCacheIterator, QCache and Collection Classes


Member Function Documentation

QIntCache::QIntCache ( const QIntCache<type> & c )

For internal use only.

QIntCache::QIntCache ( int maxCost=100, int size=17 )

Constructs an empty cache with maximum allowed total cost maxCost and optimized to contain a bit less than size items.

QIntCache::~QIntCache ()

Destroys the object and all objects in it.

void QIntCache::clear () [virtual]

Removes all items from the cache, and deletes them.

All cache iterators that operate this on cache are reset.

See also: remove() and take().

Reimplemented from QCollection.

uint QIntCache::count () const [virtual]

Returns the number of items in the cache.

See also: totalCost().

Reimplemented from QCollection.

type * QIntCache::find ( long k, bool ref=TRUE ) const

Returns the item associated with \ k, or null if the key does not exist in the cache. If ref is TRUE (the default), the item is moved to the front of the LRU list.

If there are two or more items with equal keys, then the one that was inserted last is returned.

bool QIntCache::insert ( long k, const type * d, long c=1, int p=0 )

Inserts the item d into the cache with key k, cost (default 1) and priority p (default 0). Returns TRUE if it succeeds and FALSE if it fails.

The cache's size is limited, and if the total cost is too high, QIntCache will delete some of the least-used objects.

Warning: If this function returns FALSE, you must delete d yourself. Additionally, be very careful about using d after calling this function, as any other insertions into the cache, from anywhere in the application, or within Qt itself, could cause the object to be discarded from the cache, and the pointer to become invalid.

bool QIntCache::isEmpty () const

Returns TRUE if the cache is empty, or TRUE if there is at least one object in it.

int QIntCache::maxCost () const

Returns the maximum allowed total cost of the cache.

See also: setMaxCost() and totalCost().

QIntCache<type>& QIntCache::operator= ( const QIntCache<type> & c )

For internal use only.

type * QIntCache::operator[] ( long k ) const

Returns the item associated with k, or null if k does not exist in the cache, and moves the item to the front of the LRU list.

If there are two or more items with equal keys, then the one that was inserted last is returned.

This is the same as find( k, TRUE ).

See also: find().

bool QIntCache::remove ( long k )

Deletes the item associated with k, and returns TRUE if the item was present in the cache or FALSE if it was not.

If there are two or more items with equal keys, then the one that was inserted last is is deleted.

All iterators that refer to the removed item are set to point to the next item in the cache's traversal order.

See also: take() and clear().

void QIntCache::setMaxCost ( int m )

Sets the maximum allowed total cost of the cache to m. If the current total cost is above m, some items are deleted immediately.

See also: maxCost() and totalCost().

uint QIntCache::size () const

Returns the size of the hash array used to implement the cache. This should be a bit bigger than count() is likely to be.

type * QIntCache::take ( long k )

Takes the item associated with k out of the cache without deleting it, and returns a pointer to the item taken out, or null if the key does not exist in the cache.

If there are two or more items with equal keys, then the one that was inserted last is taken.

All iterators that refer to the taken item are set to point to the next item in the cache's traversal order.

See also: remove() and clear().

int QIntCache::totalCost () const

Returns the total cost of the items in the cache. This is an integer in the range 0 to maxCost().

See also: setMaxCost().


Search the documentation, FAQ, qt-interest archive and more (uses www.troll.no):


This file is part of the Qt toolkit, copyright © 1995-98 Troll Tech, all rights reserved.

It was generated from the following files:


Copyright © 1998 Troll TechTrademarks
Qt version 1.42