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
|
/*
* Copyright (C) 2005 Stefan Kleine Stegemann
*
* The sources from MissigKit are not released under any particular
* license. Do with them what ever you want to do. Include them in
* your projects, use MissingKit standalone or simply ignore it.
* Whatever you do, keep in mind the this piece of software may
* have errors and that it is distributed WITHOUT ANY WARRANTY;
* without even the implied warranty of MERCHANTABILITY or FITNESS
* FOR A PARTICULAR PURPOSE.
*/
#import "MKLRUCache.h"
/**
* Holds a Cache entry.
*/
@interface LRUCacheEntry : NSObject
{
id object;
MKLinkedListElement* historyEntry;
}
- (id) initWithObject: (id)anObject historyEntry: (id)aHistoryEntry;
- (id) object;
- (void) setObject: (id)anObject;
- (MKLinkedListElement*) historyEntry;
@end
/**
* Non-Public methods.
*/
@interface MKLRUCache (Private)
- (void) _shrinkToMaxSize;
@end
@implementation MKLRUCache
- (id) initWithMaxSize: (unsigned long)aMaxSize
{
self = [super init];
if (self)
{
maxSize = aMaxSize;
size = 0;
map = [[NSMutableDictionary alloc] init];
history = [[MKLinkedList alloc] init];
}
return self;
}
- (void) dealloc
{
[map release];
[history release];
[super dealloc];
}
- (void) putObject: (id)anObject forKey: (id)aKey
{
LRUCacheEntry* newEntry;
NSAssert(anObject, @"object must not be nil");
NSAssert(aKey, @"key must not be nil");
// check if the object fits into the cache theoretically
if ([anObject sizeInLRUCache] > [self maximumSize])
{
[NSException raise: NSInvalidArgumentException
format: @"object does not fit into cache (%d > %d)",
[anObject sizeInLRUCache], [self maximumSize]];
}
// add to cache
newEntry = [map objectForKey: aKey];
if (newEntry)
{
size = size - [[newEntry object] sizeInLRUCache];
[newEntry setObject: anObject];
}
else
{
MKLinkedListElement* historyEntry = [history addObject: aKey];
newEntry = [[LRUCacheEntry alloc] initWithObject: anObject
historyEntry: historyEntry];
[map setObject: newEntry forKey: aKey];
[newEntry release];
}
size = size + [anObject sizeInLRUCache];
[self _shrinkToMaxSize];
}
- (id) objectForKey: (id)aKey
{
LRUCacheEntry* theEntry;
NSAssert(aKey, @"key must not be nil");
theEntry = [map objectForKey: aKey];
if (theEntry)
{
[history makeLast: [theEntry historyEntry]];
}
return [theEntry object];
}
- (BOOL) containsObjectForKey: (id)aKey
{
return ([map objectForKey: aKey] != nil);
}
- (id) removeObjectForKey: (id)aKey
{
LRUCacheEntry* theEntry;
id theObject;
NSAssert(aKey, @"key must not be nil");
theObject = nil;
theEntry = [map objectForKey: aKey];
if (theEntry)
{
[history remove: [theEntry historyEntry]];
theObject = [[theEntry object] retain];
size = size - [theObject sizeInLRUCache];
[map removeObjectForKey: aKey];
[theObject autorelease];
}
return theObject;
}
- (void) clear
{
NSEnumerator* e = [[map allKeys] objectEnumerator];
id aKey;
while ((aKey = [e nextObject]))
{
[self removeObjectForKey: aKey];
}
}
- (void) setMaximumSize: (long)aMaxSize
{
if ([self maximumSize] != aMaxSize)
{
maxSize = aMaxSize;
[self _shrinkToMaxSize];
}
}
- (unsigned long) maximumSize
{
return maxSize;
}
- (unsigned) countObjects
{
return [map count];
}
- (unsigned long) size
{
return size;
}
@end
/* ----------------------------------------------------- */
/* Category Private */
/* ----------------------------------------------------- */
@implementation MKLRUCache (Private)
/** Remove objects from the cache until the sum of the sizes of the
* objects in the cache is at most equal to the maximum size. */
- (void) _shrinkToMaxSize
{
while (([self size] > [self maximumSize]) && ([self countObjects] > 0))
{
MKLinkedListElement* aCandidate = [history first];
NSAssert(aCandidate, @"no first element in history");
[self removeObjectForKey: [aCandidate object]];
}
}
@end
/* ----------------------------------------------------- */
/* Category Testing */
/* ----------------------------------------------------- */
@implementation MKLRUCache (Testing)
@end
/* ----------------------------------------------------- */
/* Class LRUCacheEntry */
/* ----------------------------------------------------- */
@implementation LRUCacheEntry
- (id) initWithObject: (id)anObject historyEntry: (id)aHistoryEntry
{
self = [super init];
if (self)
{
object = [anObject retain];
historyEntry = aHistoryEntry;
}
return self;
}
- (void) dealloc
{
[self setObject: nil];
[super dealloc];
}
- (id) object
{
return object;
}
- (void) setObject: (id)anObject
{
if (anObject == object)
return;
[object release];
object = [anObject retain];
}
- (MKLinkedListElement*) historyEntry
{
return historyEntry;
}
@end
|