RMTileCache.m
6.41 KB
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
//
// RMTileCache.m
//
// Copyright (c) 2008-2009, Route-Me Contributors
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are met:
//
// * Redistributions of source code must retain the above copyright notice, this
// list of conditions and the following disclaimer.
// * Redistributions in binary form must reproduce the above copyright notice,
// this list of conditions and the following disclaimer in the documentation
// and/or other materials provided with the distribution.
//
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
// ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
// LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
// CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
// SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
// INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
// CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
// ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
// POSSIBILITY OF SUCH DAMAGE.
#import "RMTileCache.h"
#import "RMMemoryCache.h"
#import "RMDatabaseCache.h"
#import "RMConfiguration.h"
#import "RMTileSource.h"
@interface RMTileCache (Configuration)
- (id <RMTileCache>)memoryCacheWithConfig:(NSDictionary *)cfg;
- (id <RMTileCache>)databaseCacheWithConfig:(NSDictionary *)cfg;
@end
@implementation RMTileCache
- (id)init
{
if (!(self = [super init]))
return nil;
caches = [[NSMutableArray alloc] init];
memoryCache = nil;
id cacheCfg = [[RMConfiguration configuration] cacheConfiguration];
if (!cacheCfg) {
cacheCfg = [NSArray arrayWithObjects:
[NSDictionary dictionaryWithObject: @"memory-cache" forKey: @"type"],
[NSDictionary dictionaryWithObject: @"db-cache" forKey: @"type"],
nil];
}
for (id cfg in cacheCfg)
{
id <RMTileCache> newCache = nil;
@try {
NSString *type = [cfg valueForKey:@"type"];
if ([@"memory-cache" isEqualToString:type]) {
memoryCache = [[self memoryCacheWithConfig:cfg] retain];
continue;
}
if ([@"db-cache" isEqualToString:type])
newCache = [self databaseCacheWithConfig:cfg];
if (newCache) {
[caches addObject:newCache];
} else {
RMLog(@"failed to create cache of type %@", type);
}
}
@catch (NSException * e) {
RMLog(@"*** configuration error: %@", [e reason]);
}
}
return self;
}
- (void)dealloc
{
[memoryCache release]; memoryCache = nil;
[caches release]; caches = nil;
[super dealloc];
}
- (void)addCache:(id <RMTileCache>)cache
{
@synchronized (caches) {
[caches addObject:cache];
}
}
+ (NSNumber *)tileHash:(RMTile)tile
{
return [NSNumber numberWithUnsignedLongLong:RMTileKey(tile)];
}
// Returns the cached image if it exists. nil otherwise.
- (UIImage *)cachedImage:(RMTile)tile withCacheKey:(NSString *)aCacheKey
{
UIImage *image = [memoryCache cachedImage:tile withCacheKey:aCacheKey];
if (image) return image;
@synchronized (caches) {
for (id <RMTileCache> cache in caches)
{
image = [cache cachedImage:tile withCacheKey:aCacheKey];
if (image != nil) {
[memoryCache addImage:image forTile:tile withCacheKey:aCacheKey];
return image;
}
}
}
return nil;
}
- (void)addImage:(UIImage *)image forTile:(RMTile)tile withCacheKey:(NSString *)aCacheKey
{
[memoryCache addImage:image forTile:tile withCacheKey:aCacheKey];
@synchronized (caches) {
for (id <RMTileCache> cache in caches)
{
if ([cache respondsToSelector:@selector(addImage:forTile:withCacheKey:)]) {
[cache addImage:image forTile:tile withCacheKey:aCacheKey];
}
}
}
}
- (void)didReceiveMemoryWarning
{
LogMethod();
[memoryCache didReceiveMemoryWarning];
@synchronized (caches) {
for (id<RMTileCache> cache in caches)
{
[cache didReceiveMemoryWarning];
}
}
}
- (void)removeAllCachedImages
{
[memoryCache removeAllCachedImages];
@synchronized (caches) {
for (id<RMTileCache> cache in caches)
{
[cache removeAllCachedImages];
}
}
}
@end
#pragma mark -
@implementation RMTileCache (Configuration)
- (id <RMTileCache>)memoryCacheWithConfig:(NSDictionary *)cfg
{
NSNumber *capacity = [cfg objectForKey:@"capacity"];
if (capacity == nil)
capacity = [NSNumber numberWithInt:32];
return [[[RMMemoryCache alloc] initWithCapacity:[capacity intValue]] autorelease];
}
- (id <RMTileCache>)databaseCacheWithConfig:(NSDictionary *)cfg
{
BOOL useCacheDir = NO;
RMCachePurgeStrategy strategy = RMCachePurgeStrategyFIFO;
NSUInteger capacity = 1000;
NSUInteger minimalPurge = capacity / 10;
NSNumber *capacityNumber = [cfg objectForKey:@"capacity"];
if (capacityNumber != nil) {
NSInteger value = [capacityNumber intValue];
// 0 is valid: it means no capacity limit
if (value >= 0) {
capacity = value;
minimalPurge = MAX(1,capacity / 10);
} else
RMLog(@"illegal value for capacity: %d", value);
}
NSString *strategyStr = [cfg objectForKey:@"strategy"];
if (strategyStr != nil) {
if ([strategyStr caseInsensitiveCompare:@"FIFO"] == NSOrderedSame) strategy = RMCachePurgeStrategyFIFO;
if ([strategyStr caseInsensitiveCompare:@"LRU"] == NSOrderedSame) strategy = RMCachePurgeStrategyLRU;
}
NSNumber *useCacheDirNumber = [cfg objectForKey:@"useCachesDirectory"];
if (useCacheDirNumber != nil)
useCacheDir = [useCacheDirNumber boolValue];
NSNumber *minimalPurgeNumber = [cfg objectForKey:@"minimalPurge"];
if (minimalPurgeNumber != nil && capacity != 0) {
NSUInteger value = [minimalPurgeNumber unsignedIntValue];
if (value > 0 && value<=capacity)
minimalPurge = value;
else {
RMLog(@"minimalPurge must be at least one and at most the cache capacity");
}
}
RMDatabaseCache *dbCache = [[[RMDatabaseCache alloc] initUsingCacheDir:useCacheDir] autorelease];
[dbCache setCapacity:capacity];
[dbCache setPurgeStrategy:strategy];
[dbCache setMinimalPurge:minimalPurge];
return dbCache;
}
@end