-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathSGCacheTask.m
265 lines (226 loc) · 6.35 KB
/
SGCacheTask.m
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
//
// Created by matt on 22/05/14.
//
#import "SGCacheTask.h"
#import "SGHTTPRequest.h"
#import "SGCachePrivate.h"
#import "SGCachePromise.h"
@interface SGCacheTask ()
@property (nonatomic, strong) SGHTTPRequest *request;
@property (nonatomic, strong) NSError *currentErrorStatus;
@property (nonatomic, assign) BOOL currentErrorRetry;
@end
@implementation SGCacheTask {
BOOL _isExecuting, _isFinished;
NSMutableOrderedSet *_completions;
NSMutableOrderedSet *_failBlocks;
NSMutableOrderedSet *_retryBlocks;
}
- (id)init {
self = [super init];
_completions = NSMutableOrderedSet.new;
_failBlocks = NSMutableOrderedSet.new;
_retryBlocks = NSMutableOrderedSet.new;
_cacheClass = SGCache.class;
return self;
}
+ (instancetype)taskForURL:(NSString *)url requestHeaders:(NSDictionary *)headers
cacheKey:(NSString *)cacheKey attempt:(int)attempt {
SGCacheTask *task = self.new;
task.attempt = attempt;
task.url = url;
task.requestHeaders = headers;
task.cacheKey = cacheKey;
return task;
}
- (void)addCompletion:(SGCacheFetchCompletion)completion {
if (completion) {
@synchronized (self) {
[_completions addObject:[completion copy]];
}
}
}
- (void)addCompletions:(NSMutableOrderedSet *)completions {
if (completions.count) {
@synchronized (self) {
[_completions unionOrderedSet:completions];
}
}
}
- (void)addFailBlock:(SGCacheFetchFail)fail {
if (fail) {
@synchronized (self) {
[_failBlocks addObject:[fail copy]];
}
}
}
- (void)addFailBlocks:(NSMutableOrderedSet *)fails {
if (fails.count) {
@synchronized (self) {
[_failBlocks unionOrderedSet:fails];
}
}
}
- (void)addRetryBlock:(SGCacheFetchOnRetry)retry {
if (retry) {
@synchronized (self) {
[_retryBlocks addObject:[retry copy]];
}
}
}
- (void)addRetryBlocks:(NSMutableOrderedSet *)retries {
if (retries.count) {
@synchronized (self) {
[_retryBlocks unionOrderedSet:retries];
}
}
}
- (void)start {
self.executing = YES;
if (self.isCancelled) {
[self finish];
return;
}
if (!self.remoteFetchOnly && [self.cacheClass haveFileForURL:self.url]) {
[self completedWithFile:[self.cacheClass fileForURL:self.url]];
} else {
[self fetchRemoteFile];
}
}
- (void)fetchRemoteFile {
self.currentErrorStatus = nil;
self.request = [SGHTTPRequest requestWithURL:[NSURL URLWithString:self.url]];
self.request.responseFormat = SGHTTPDataTypeHTTP;
self.request.allowCacheToDisk = NO;
if (self.requestHeaders) {
self.request.requestHeaders = self.requestHeaders;
}
self.request.logging = SGHTTPLogNothing;
if (SGCache.logging & SGImageCacheLogErrors) {
self.request.logging |= SGHTTPLogErrors;
}
if (SGCache.logging & SGImageCacheLogRequests) {
self.request.logging |= SGHTTPLogRequests;
}
if (SGCache.logging & SGImageCacheLogResponses) {
self.request.logging |= SGHTTPLogResponses;
}
__weakSelf me = self;
self.request.onSuccess = ^(SGHTTPRequest *req) {
me.currentErrorStatus = nil;
dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
[me completedWithFile:req.responseData];
});
};
self.request.onNetworkReachable = ^{
[me willRetry];
[me fetchRemoteFile];
};
self.request.onFailure = ^(SGHTTPRequest *req) {
me.currentErrorStatus = req.error;
NSInteger code = req.statusCode;
if (code >= 400 && code < 408) { // give up on 4XX http errors
me.currentErrorRetry = NO;
[me failedWithError:req.error allowRetry:NO];
} else {
me.currentErrorRetry = YES;
[me failedWithError:req.error allowRetry:YES];
}
};
[self.request start];
}
- (void)completedWithFile:(NSData *)data {
[self.cacheClass addData:data forCacheKey:self.cacheKey];
// call the completion blocks on the main thread
dispatch_async(dispatch_get_main_queue(), ^{
for (SGCacheFetchCompletion completion in self.completions) {
completion(data);
}
});
self.succeeded = YES;
[self finish];
}
- (void)failedWithError:(NSError *)error allowRetry:(BOOL)allowRetry {
self.succeeded = NO;
// call the completion blocks on the main thread
dispatch_async(dispatch_get_main_queue(), ^{
for (SGCacheFetchFail failBlock in self.onFailBlocks) {
failBlock(error, !allowRetry);
}
});
if (!allowRetry) {
[self finish];
}
}
- (void)willRetry {
dispatch_async(dispatch_get_main_queue(), ^{
for (SGCacheFetchOnRetry retryBlock in self.onRetryBlocks) {
retryBlock();
}
});
}
- (void)finish {
self.executing = NO;
self.finished = YES;
}
- (void)cancel {
if (self.isExecuting) {
[self.request cancel];
[self finish];
}
[super cancel];
}
#pragma mark - Equivalence
- (BOOL)matchesCacheKey:(NSString *)cacheKey {
return [cacheKey isEqualToString:self.cacheKey];
}
#pragma mark - Setters
- (void)setExecuting:(BOOL)executing {
[self willChangeValueForKey:@"isExecuting"];
_isExecuting = executing;
[self didChangeValueForKey:@"isExecuting"];
}
- (void)setFinished:(BOOL)finished {
[self willChangeValueForKey:@"isFinished"];
_isFinished = finished;
[self didChangeValueForKey:@"isFinished"];
}
- (void)setPromise:(SGCachePromise *)promise {
_promise = promise;
if (promise.onRetry) {
[self addRetryBlock:promise.onRetry];
}
if (promise.onFail) {
[self addFailBlock:promise.onFail];
}
if (self.request && self.currentErrorStatus) {
[self failedWithError:self.currentErrorStatus allowRetry:self.currentErrorRetry];
[self fetchRemoteFile];
}
}
#pragma mark - Getters
- (NSArray *)completions {
@synchronized (self) {
return _completions.copy;
}
}
- (NSArray *)onFailBlocks {
@synchronized (self) {
return _failBlocks.copy;
}
}
- (NSArray *)onRetryBlocks {
@synchronized (self) {
return _retryBlocks.copy;
}
}
- (BOOL)isExecuting {
return _isExecuting;
}
- (BOOL)isFinished {
return _isFinished;
}
- (BOOL)isConcurrent {
return YES;
}
@end