-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathSGCache.h
313 lines (245 loc) · 9.95 KB
/
SGCache.h
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
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
//
// Created by matt on 7/05/15.
//
#import <UIKit/UIKit.h>
#import "SGCachePromise.h"
typedef NS_OPTIONS(NSInteger, SGImageCacheLogging) {SGImageCacheLogNothing = 0,
SGImageCacheLogRequests = 1 << 0,
SGImageCacheLogResponses = 1 << 1,
SGImageCacheLogErrors = 1 << 2,
SGImageCacheLogMemoryFlushing = 1 << 3,
SGImageCacheLogAll = (SGImageCacheLogRequests | SGImageCacheLogResponses | SGImageCacheLogErrors | SGImageCacheLogMemoryFlushing)};
#ifndef __weakSelf
#define __weakSelf __weak typeof(self)
#endif
#define SGCacheFlushed @"SGCacheFlushed"
/**
`SGCache` provides a fast and simple disk and memory cache for files
fetched from remote URLs.
NSString *url = @"http://example.com/image.jpg";
__weak typeof(self) me = self;
[SGCache getFileForURL:url].then(^(NSData *data) {
// do stuff with the file
});
*/
@interface SGCache : NSObject
#pragma mark - Fetching Images
/** @name Fetching files */
/**
Fetch a file from cache if available, or remote it not.
Returns a PromiseKit promise that resolves with an NSData.
NSString *url = @"http://example.com/image.jpg";
__weak typeof(self) me = self;
[SGCache getFileForURL:url].then(^(NSData *data) {
// do stuff with the file
});
- If the URL is not already queued a new file fetch task will be added to
<fastQueue>.
- If the URL is already in <fastQueue> the promise will resolve when the
existing task completes.
- If the URL is already in <slowQueue> it will be moved to <fastQueue> and
the promise will resolve when the existing task completes.
*/
+ (SGCachePromise *)getFileForURL:(NSString *)url;
/**
Fetch a file from cache if available, or remote it not, sending HTTP headers
with the request.
Returns a PromiseKit promise that resolves with an NSData.
NSString *url = @"http://example.com/image.jpg";
NSDictionary *requestHeaders = @{@"Authorization" : @"abcd1234"};
- If the URL is not already queued a new file fetch task will be added to
<fastQueue>.
- If the URL is already in <fastQueue> the promise will resolve when the
existing task completes.
- If the URL is already in <slowQueue> it will be moved to <fastQueue> and
the promise will resolve when the existing task completes.
*/
+ (SGCachePromise *)getFileForURL:(NSString *)url requestHeaders:(NSDictionary *)headers;
/**
Fetch a file from cache if available, or remote it not, sending HTTP headers
with the request and providing an explicit cache key. Returns a PromiseKit
promise that resolves with an NSData.
NSString *url = @"http://example.com/image.jpg";
NSDictionary *requestHeaders = @{@"Authorization" : @"abcd1234"};
NSStrig *cacheKey = [NSString stringWithFormat:@"%@%@", username, url];
- If the URL is not already queued a new file fetch task will be added to
<fastQueue>.
- If the URL is already in <fastQueue> the promise will resolve when the
existing task completes.
- If the URL is already in <slowQueue> it will be moved to <fastQueue> and
the promise will resolve when the existing task completes.
*/
+ (SGCachePromise *)getFileForURL:(NSString *)url requestHeaders:(NSDictionary *)headers
cacheKey:(NSString *)cacheKey;
/**
Fetch a file from remote it.
Returns a PromiseKit promise that resolves with an NSData.
NSString *url = @"http://example.com/image.jpg";
__weak typeof(self) me = self;
[SGCache getFileForURL:url].then(^(NSData *data) {
// do stuff with the file
});
- If the URL is not already queued a new file fetch task will be added to
<fastQueue>.
- If the URL is already in <fastQueue> the promise will resolve when the
existing task completes.
- If the URL is already in <slowQueue> it will be moved to <fastQueue> and
the promise will resolve when the existing task completes.
*/
+ (SGCachePromise *)getRemoteFileForURL:(NSString *)url;
/**
Fetch a file from remote, sending HTTP headers with the request.
Returns a PromiseKit promise that resolves with an NSData.
NSString *url = @"http://example.com/image.jpg";
NSDictionary *requestHeaders = @{@"Authorization" : @"abcd1234"};
- If the URL is not already queued a new file fetch task will be added to
<fastQueue>.
- If the URL is already in <fastQueue> the promise will resolve when the
existing task completes.
- If the URL is already in <slowQueue> it will be moved to <fastQueue> and
the promise will resolve when the existing task completes.
*/
+ (SGCachePromise *)getRemoteFileForURL:(NSString *)url requestHeaders:(NSDictionary *)headers;
/**
Fetch a file from remote, sending HTTP headers with the request and
providing an explicit cache key. Returns a PromiseKit promise that resolves
with an NSData.
NSString *url = @"http://example.com/image.jpg";
NSDictionary *requestHeaders = @{@"Authorization" : @"abcd1234"};
NSStrig *cacheKey = [NSString stringWithFormat:@"%@%@", username, url];
- If the URL is not already queued a new file fetch task will be added to
<fastQueue>.
- If the URL is already in <fastQueue> the promise will resolve when the
existing task completes.
- If the URL is already in <slowQueue> it will be moved to <fastQueue> and
the promise will resolve when the existing task completes.
*/
+ (SGCachePromise *)getRemoteFileForURL:(NSString *)url requestHeaders:(NSDictionary *)headers
cacheKey:(NSString *)cacheKey;
/**
Fetch a file from cache if available, or remote it not.
Returns a PromiseKit promise that resolves with an NSData.
NSString *url = @"http://example.com/image.jpg";
__weak typeof(self) me = self;
[SGCache slowGetFileForURL:url].then(^(NSData *data) {
// do stuff with the file
});
- If the URL is not already queued a new file fetch task will be added to
<slowQueue>.
- If the URL is already in either <slowQueue> or <fastQueue> the promise will
resolve when the existing task completes.
*/
+ (SGCachePromise *)slowGetFileForURL:(NSString *)url;
/**
Fetch a file from cache if available, or remote it not, sending HTTP headers
with the request. Returns a PromiseKit promise that resolves with an NSData.
NSString *url = @"http://example.com/image.jpg";
NSDictionary *requestHeaders = @{@"Authorization" : @"abcd1234"};
- If the URL is not already queued a new file fetch task will be added to
<slowQueue>.
- If the URL is already in either <slowQueue> or <fastQueue> the promise will
resolve when the existing task completes.
*/
+ (SGCachePromise *)slowGetFileForURL:(NSString *)url requestHeaders:(NSDictionary *)headers;
/**
Fetch a file from cache if available, or remote it not, sending HTTP headers
with the request and providing an explicit cache key. Returns a PromiseKit
promise that resolves with an NSData.
NSString *url = @"http://example.com/image.jpg";
NSDictionary *requestHeaders = @{@"Authorization" : @"abcd1234"};
NSStrig *cacheKey = [NSString stringWithFormat:@"%@%@", username, url];
- If the URL is not already queued a new file fetch task will be added to
<slowQueue>.
- If the URL is already in either <slowQueue> or <fastQueue> the promise will
resolve when the existing task completes.
*/
+ (SGCachePromise *)slowGetFileForURL:(NSString *)url requestHeaders:(NSDictionary *)headers
cacheKey:(NSString *)cacheKey;
/**
* Move an image fetch task from <fastQueue> to <slowQueue>.
*/
+ (void)moveTaskToSlowQueueForURL:(NSString *)url;
/**
* Move an image fetch task identified by URL and HTTP request headers from
* <fastQueue> to <slowQueue>.
*/
+ (void)moveTaskToSlowQueueForURL:(NSString *)url requestHeaders:(NSDictionary *)headers;
/**
* Move an image fetch task identified by cache key from <fastQueue> to <slowQueue>.
*/
+ (void)moveTaskToSlowQueueForCacheKey:(NSString *)cacheKey;
#pragma mark - House Keeping
/** @name House keeping */
/**
* Delete files from cache older than a specified age, based on the date at
* which the file was added to the cache.
*/
+ (void)flushFilesOlderThan:(NSTimeInterval)age;
#pragma mark - Operation Queues
/** @name Operation queues */
/**
* The operation queue used for non urgent file fetches
* ([slowGetFileForURL:](<+[SGCache slowGetFileForURL:]>)).
* By default this is a serial queue.
*/
@property (nonatomic, strong) NSOperationQueue *slowQueue;
/**
* The operation queue used for urgent file fetches
* ([getFileForURL:](<+[SGCache getFileForURL:]>)). By
* default this queue uses the maximum number of concurrent operations as
* determined by iOS.
*/
@property (nonatomic, strong) NSOperationQueue *fastQueue;
/** @name Misc helpers */
/**
* Returns YES if the file is found in the cache.
*/
+ (BOOL)haveFileForURL:(NSString *)url;
/**
* Returns YES if the file with matching URL and HTTP headers is found in the cache.
*/
+ (BOOL)haveFileForURL:(NSString *)url requestHeaders:(NSDictionary *)headers;
/**
* Returns YES if the file is found in the cache.
*/
+ (BOOL)haveFileForCacheKey:(NSString *)cacheKey;
/**
* Retrieves a file from cache. Returns nil if the file is not found in
* the cache.
*
* @warning If you want a single method which will return a file from either
* cache or remote, use
* [getFileForURL:](<+[SGCache getFileForURL:]>) instead.
*/
+ (NSData *)fileForURL:(NSString *)url;
/**
* Retrieves a file with matching URL and HTTP headers if found in the cache.
* Returns nil if the file is not found in the cache.
*
* @warning If you want a single method which will return a file from either
* cache or remote, use
* [getFileForURL:](<+[SGCache getFileForURL:]>) instead.
*/
+ (NSData *)fileForURL:(NSString *)url requestHeaders:(NSDictionary *)headers;
/**
* Retrieves a file with matching cache key if found in the cache.
* Returns nil if the file is not found in the cache.
*
* @warning If you want a single method which will return a file from either
* cache or remote, use
* [getFileForURL:](<+[SGCache getFileForURL:]>) instead.
*/
+ (NSData *)fileForCacheKey:(NSString *)cacheKey;
#pragma - mark - Logging
/** @name Logging */
/**
* Set logging level (defaults to SGImageCacheLogNothing)
*/
+ (void)setLogging:(SGImageCacheLogging)logging;
/**
* Logging level (defaults to SGImageCacheLogNothing)
*/
+ (SGImageCacheLogging)logging;
+ (void)addData:(NSData *)data forCacheKey:(NSString *)cacheKey;
+ (void)removeDataForCacheKey:(NSString *)cacheKey;
@end