RMDatabaseCache.m
3.17 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
//
// RMDatabaseCache.m
// RouteMe
//
// Created by Joseph Gentle on 19/09/08.
// Copyright 2008 __MyCompanyName__. All rights reserved.
//
#import "RMDatabaseCache.h"
#import "RMTileCacheDAO.h"
#import "RMTileImage.h"
#import "RMTile.h"
@implementation RMDatabaseCache
+ (NSString*)dbPathForTileSource: (id<RMTileSource>) source usingCacheDir: (BOOL) useCacheDir
{
NSArray *paths;
if (useCacheDir) {
paths = NSSearchPathForDirectoriesInDomains(NSCachesDirectory, NSUserDomainMask, YES);
} else {
paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
}
if ([paths count] > 0) // Should only be one...
{
NSString *filename = [NSString stringWithFormat:@"Map%@.sqlite", [source description]];
return [[paths objectAtIndex:0] stringByAppendingPathComponent:filename];
}
return nil;
}
-(id) initWithDatabase: (NSString*)path
{
if (![super init])
return nil;
// NSLog(@"%d items in DB", [[DAO sharedManager] count]);
dao = [[RMTileCacheDAO alloc] initWithDatabase:path];
if (dao == nil)
return nil;
return self;
}
-(id) initWithTileSource: (id<RMTileSource>) source usingCacheDir: (BOOL) useCacheDir
{
return [self initWithDatabase:[RMDatabaseCache dbPathForTileSource:source usingCacheDir: useCacheDir]];
}
-(void) dealloc
{
[[NSNotificationCenter defaultCenter] removeObserver:self];
[super dealloc];
}
-(void) setPurgeStrategy: (RMCachePurgeStrategy) theStrategy
{
purgeStrategy = theStrategy;
}
-(void) setCapacity: (NSUInteger) theCapacity
{
capacity = theCapacity;
}
-(void) setMinimalPurge: (NSUInteger) theMinimalPurge
{
minimalPurge = theMinimalPurge;
}
-(void)addTile: (RMTile)tile WithImage: (RMTileImage*)image
{
// The tile probably hasn't loaded any data yet... we must be patient.
// However, if the image is already loaded we probably don't need to cache it.
// This will be the case for any other web caches which are active.
if (![image isLoaded])
{
[[NSNotificationCenter defaultCenter] addObserver:self
selector:@selector(addImageData:)
name:RMMapImageLoadedNotification
object:image];
}
}
-(void) addImageData: (NSNotification *)notification
{
NSData *data = [[notification userInfo] objectForKey:@"data"];
RMTileImage *image = (RMTileImage*)[notification object];
if (capacity != 0) {
NSUInteger tilesInDb = [dao count];
if (capacity <= tilesInDb) {
[dao purgeTiles: MAX(minimalPurge, 1+tilesInDb-capacity)];
}
}
[dao addData:data LastUsed:[image lastUsedTime] ForTile:RMTileHash([image tile])];
[[NSNotificationCenter defaultCenter] removeObserver:self
name:RMMapImageLoadedNotification
object:image];
// NSLog(@"%d items in DB", [dao count]);
}
-(RMTileImage*) cachedImage:(RMTile)tile
{
// NSLog(@"Looking for cached image in DB");
NSData *data = [dao dataForTile:RMTileHash(tile)];
if (data == nil)
return nil;
if (capacity != 0 && purgeStrategy == RMCachePurgeStrategyLRU) {
[dao touchTile: RMTileHash(tile) withDate: [NSDate date]];
}
RMTileImage *image = [RMTileImage imageWithTile:tile FromData:data];
// NSLog(@"DB cache hit for tile %d %d %d", tile.x, tile.y, tile.zoom);
return image;
}
@end