summaryrefslogtreecommitdiffstats
path: root/Classes/HJMOFileCache.m
blob: 7ba7b23a30c4b1cd36ebd702a19b5005d0a3d4ae (plain)
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
//
//  HJFiler.m
//  hjlib
//
//  Copyright Hunter and Johnson 2009, 2010, 2011
//  HJCache may be used freely in any iOS or Mac application free or commercial.
//  May be redistributed as source code only if all the original files are included.
//  See http://www.markj.net/hjcache-iphone-image-cache/

#import "HJMOFileCache.h"


@implementation HJMOFileCache

@synthesize fileCount;
@synthesize byteCount;
@synthesize fileAgeLimit;
@synthesize fileCountLimit;
@synthesize maintenanceThread;


-(HJMOFileCache*)initWithRootPath:(NSString*)root {
	[super init];
	isCounting = NO;
	fileCount = 0;
	byteCount = 0;
	rootPath = root;
	[rootPath retain];
	
	fileCountLimit = 0;
	fileAgeLimit = 0;
	
	if (![[NSFileManager defaultManager] fileExistsAtPath:rootPath]) {
		[[NSFileManager defaultManager] createDirectoryAtPath:rootPath withIntermediateDirectories:YES attributes:nil error:nil];
	}
	
	loadingPath = [[NSString stringWithFormat:@"%@/loading/",rootPath] retain];
	readyPath = [[NSString stringWithFormat:@"%@/ready/",rootPath] retain];
	[self createCacheDirsIfNeeded];
	countsPath = [[NSString stringWithFormat:@"%@/counts.plist",rootPath] retain];

	//delete any half loaded files
	[self deleteAllFilesInDir:loadingPath];
	
	return self;
}

-(HJMOFileCache*)initWithRootPath:(NSString*)root 
					   isCounting:(BOOL)isCounting_ 
				   fileCountLimit:(long)countLimit
					 fileAgeLimit:(NSTimeInterval)ageLimit  {

	[self initWithRootPath:root];
	isCounting = isCounting_;
	fileCountLimit = countLimit;
	fileAgeLimit = ageLimit;

	if (isCounting) {
		[self loadCounts];
	}
	return self;
}


-(void)dealloc {
	[rootPath release];
	[loadingPath release];
	[readyPath release];
	[countsPath release];
	[maintenanceThread release];
	[super dealloc];
}


-(void)createCacheDirsIfNeeded {
	if (![[NSFileManager defaultManager] fileExistsAtPath:loadingPath]) {
		[[NSFileManager defaultManager] createDirectoryAtPath:loadingPath withIntermediateDirectories:YES attributes:nil error:nil];
	}
	if (![[NSFileManager defaultManager] fileExistsAtPath:readyPath]) {
		[[NSFileManager defaultManager] createDirectoryAtPath:readyPath withIntermediateDirectories:YES attributes:nil error:nil];
	}
}


-(void) deleteAllFilesInDir:(NSString*)path {
	NSError* err=nil;
	NSArray* files = [[NSFileManager defaultManager] contentsOfDirectoryAtPath:path error:&err];
	if (err!=nil) {
		return; 
	}
	for (NSString* file in files) {
		NSString* filepath = [NSString stringWithFormat:@"%@%@",path,file];
		[[NSFileManager defaultManager] removeItemAtPath:filepath error:&err];
	}
}

-(void) emptyCache {
	[self deleteAllFilesInDir:readyPath];
	[self deleteAllFilesInDir:loadingPath];
	self.fileCount=0;
	self.byteCount=0;
	if (isCounting) {
		[self saveCounts];
	}
}

-(NSString*)filenameForOid:(id)oid {
	NSString* oidStr = [NSString stringWithFormat:@"%@",oid];
	oidStr = [oidStr stringByReplacingOccurrencesOfString:@"/" withString:@"_"];
	return oidStr;
}

-(NSString*)readyFilePathForOid:(id)oid {
	NSString* filename = [self filenameForOid:oid];
	NSString* path = [readyPath stringByAppendingString:filename];
	return path;
}

-(NSString*)loadingFilePathForOid:(id)oid {
	NSString* filename = [self filenameForOid:oid];
	NSString* path = [loadingPath stringByAppendingString:filename];
	return path;}

-(NSString*)loadingFinishedForOid:(id)oid {
	NSString* loadingFilename = [self loadingFilePathForOid:oid];
	NSString* readyFilename = [self readyFilePathForOid:oid];
	NSError* e=nil;
	[[NSFileManager defaultManager] moveItemAtPath:loadingFilename toPath:readyFilename error:&e];
	if (e) {
		NSLog(@"HJMOFileCache failed to move loading file to ready file %@",readyFilename);
		return nil;
	} else {
		if (isCounting) {
			NSError* e;
			NSDictionary* dict = [[NSFileManager defaultManager] attributesOfItemAtPath:readyFilename error:&e];
			NSNumber* size = [dict objectForKey:NSFileSize];
			fileCount++;
			byteCount = byteCount + size.unsignedIntegerValue;
			[self saveCounts];
		}
		return readyFilename;
	}
}

-(void)removeOid:(id)oid {
	NSError* err = nil;
	NSString* path = [self readyFilePathForOid:oid];
	NSError* e;
	NSDictionary* dict = [[NSFileManager defaultManager] attributesOfItemAtPath:path error:&e];	NSNumber* size = [dict objectForKey:NSFileSize];
	[[NSFileManager	defaultManager] removeItemAtPath:path error:&err];
	if (err==nil) {
		fileCount--;
		byteCount = byteCount - size.unsignedIntegerValue;
		[self saveCounts];
	} else {
		//NSLog(@"HJMOFileCache error deleting %@",path);
	}
}


-(void) saveCounts {
	NSMutableDictionary* dict = [NSDictionary dictionaryWithObjectsAndKeys:
								 [NSNumber numberWithLongLong:byteCount],@"bytes",
								 [NSNumber numberWithLong:fileCount],@"files",nil];
	[dict writeToFile:countsPath atomically:YES];
}

-(void) loadCounts {
	NSMutableDictionary* dict = [NSDictionary dictionaryWithContentsOfFile:countsPath];
	NSNumber* files = [dict objectForKey:@"files"];
	NSNumber* bytes = [dict objectForKey:@"bytes"];
	if (files!=nil) {
		fileCount = [files longValue];
	} else {
		files = 0;
	}
	if (bytes!=nil) {
		byteCount = [bytes longLongValue];
	} else {
		byteCount = 0;
	}
}

int fileAgeCompareFunction(id obj1, id obj2, void *context) {
	NSNumber* age1 = [(NSArray*)obj1 objectAtIndex:0]; 
	NSNumber* age2 = [(NSArray*)obj2 objectAtIndex:0]; 
	return [age1 compare:age2];
}


-(void)trimCacheDir:(NSString*)cachePath {
	//limit number of files by deleting the oldest ones. 
	//creation date used to see age of file
	//modification date used to see staleness of file - how long since last used.
	
	NSLog(@"triming cache %@",cachePath);
	
	NSFileManager *fileManager = [NSFileManager defaultManager];
	NSString *file;
	NSDirectoryEnumerator *dirEnum = [fileManager enumeratorAtPath:cachePath];
	
	NSMutableArray* fileAges = [NSMutableArray arrayWithCapacity:fileCountLimit]; //used to sort files by age
	int thisDirFileCount=0;
	int deletedCount=0;
	long deletedBytes=0;
	// this loop is the slow part, which is why this whole method is run on a separate thread.
	while (file = [dirEnum nextObject]) {
		NSString* filename = [NSString stringWithFormat:@"%@%@",cachePath,file];
		NSError* e;
		NSDictionary* fsAttributes = [[NSFileManager defaultManager] attributesOfItemAtPath:filename error:&e];		
		double ageSeconds = -1* [[fsAttributes fileModificationDate] timeIntervalSinceNow];
		long filesize = [fsAttributes fileSize];
		if (ageSeconds>fileAgeLimit && fileAgeLimit>0) {
			//old files get deleted right away
			NSError* err=nil;
			[fileManager removeItemAtPath:filename error:&err];
			if (isCounting && err==nil) {
				deletedCount++;
				deletedBytes += filesize;
			}
		} else {
			//files that are not too old are going to be counted and sorted by age
			thisDirFileCount++;
			NSArray* fileAge; //a holder of filename, age, and size, for sorting names by file age
			if (isCounting) { 
				fileAge = [NSArray arrayWithObjects:[NSNumber numberWithDouble:ageSeconds],filename,[NSNumber numberWithLong:filesize],nil];
			} else {
				fileAge = [NSArray arrayWithObjects:[NSNumber numberWithDouble:ageSeconds],filename,nil];
			}
			[fileAges addObject:fileAge];
		}
	}
	
	if (thisDirFileCount >= fileCountLimit && fileCountLimit>0) {
		//thisDirFileCount is still over the limit (even if some old files were deleted) 
		//so now have to delete the oldest files. Behavoir of cache will be FIFO or LRU depending on cache policy readsUpdateFileDate
		[fileAges sortUsingFunction:fileAgeCompareFunction context:nil]; //sorted from oldest to youngest
		//for (NSArray* a in fileAges) {
		//	NSLog(@"%@ %@",[a objectAtIndex:0],[a objectAtIndex:1]);
		//}
		int index = [fileAges count]-1;
		//delete files until 20% under file count.
		while ((thisDirFileCount)>(fileCountLimit*0.8) && index>0) {
			NSError* err=nil;
			NSArray* fileAgeObj = [fileAges objectAtIndex:index];
			NSString* filename = [fileAgeObj objectAtIndex:1];
			//NSLog(@"deleting %@",filename);
			[fileManager removeItemAtPath:filename error:&err];
			if (err==nil) {
				thisDirFileCount--;
				if (isCounting) {
					NSNumber* filesize = [fileAgeObj objectAtIndex:2];
					deletedCount++;
					deletedBytes += [filesize longValue];
				}
			}
			index--;
		}
	}
	NSLog(@"cache file trimed %i files",deletedCount);
	if (isCounting) {
		fileCount -= deletedCount;
		byteCount -= deletedBytes;
		[self performSelectorOnMainThread:@selector(saveCounts) withObject:nil waitUntilDone:YES];
	}
}

-(void)trimCache {
	NSAutoreleasePool* pool = [[NSAutoreleasePool alloc] init];
	[self trimCacheDir:readyPath];
	[pool release];
}

-(void)trimCacheUsingBackgroundThread {
	self.maintenanceThread = [[[NSThread alloc] initWithTarget:self selector:@selector(trimCache) object:nil] autorelease];
	[maintenanceThread start];
}


@end