@@ -186,6 +186,24 @@ - (NSData *)cachedDataWithIdentifier:(NSString *)identifier
186
186
return retval;
187
187
}
188
188
189
+ - (void )clearFastCacheForIdentifier : (NSString *)identifier
190
+ {
191
+ NSNumber *csize;
192
+ NSUInteger index = [_fastcacheIdentifiers indexOfObject: identifier];
193
+
194
+ if ( index == NSNotFound )
195
+ return ;
196
+
197
+ csize = [_fastcacheSizes objectAtIndex: index ];
198
+
199
+ [_fastcache removeObjectForKey: identifier];
200
+
201
+ _fastcacheSize -= [csize unsignedIntegerValue ];
202
+
203
+ [_fastcacheIdentifiers removeObjectAtIndex: index ];
204
+ [_fastcacheSizes removeObjectAtIndex: index ];
205
+ }
206
+
189
207
- (void )cacheData : (NSData *)data withIdentifier : (NSString *)identifier
190
208
{
191
209
if ( identifier == nil )
@@ -203,17 +221,34 @@ - (void)cacheData:(NSData *)data withIdentifier:(NSString *)identifier
203
221
const int cdlength = (int )[data length ];
204
222
205
223
dispatch_sync ( _queue, ^ {
206
- sqlite3_bind_text ( _insert, 1 , cidentifier, cilength, NULL );
207
- sqlite3_bind_blob ( _insert, 2 , cdata, cdlength, NULL );
224
+ sqlite3_bind_blob ( _update, 1 , cdata, cdlength, NULL );
225
+ sqlite3_bind_text ( _update, 2 , cidentifier, cilength, NULL );
226
+
227
+ sqlite3_step ( _update );
228
+ sqlite3_reset ( _update );
208
229
209
- if ( sqlite3_step ( _insert ) == SQLITE_DONE )
230
+ if ( sqlite3_changes ( _database ) > 0 )
210
231
{
211
232
#ifdef HK_DEBUG_CACHE
212
- NSLog (@" HKCacheManager->Successfully saved cache with identifier: %@ " , identifier);
233
+ NSLog (@" HKCacheManager->Successfully updated cache with identifier: %@ " , identifier);
213
234
#endif
214
235
}
236
+ else
237
+ {
238
+ sqlite3_bind_text ( _insert, 1 , cidentifier, cilength, NULL );
239
+ sqlite3_bind_blob ( _insert, 2 , cdata, cdlength, NULL );
240
+
241
+ if ( sqlite3_step ( _insert ) == SQLITE_DONE )
242
+ {
243
+ #ifdef HK_DEBUG_CACHE
244
+ NSLog (@" HKCacheManager->Successfully saved cache with identifier: %@ " , identifier);
245
+ #endif
246
+ }
247
+
248
+ sqlite3_reset ( _insert );
249
+ }
215
250
216
- sqlite3_reset ( _insert ) ;
251
+ [ self clearFastCacheForIdentifier: identifier] ;
217
252
});
218
253
219
254
#ifdef HK_DEBUG_CACHE
@@ -230,14 +265,12 @@ - (void)cacheURL:(NSURL *)url completionHandler:(HKCacheManagerCompletionHandler
230
265
231
266
- (void )cacheURL : (NSURL *)url identifier : (NSString *)identifier progressHandler : (HKCacheManagerProgressHandler)progressHandler completionHandler : (HKCacheManagerCompletionHandler)completionHandler
232
267
{
233
- dispatch_queue_t cqueue = dispatch_get_current_queue ();
234
-
235
268
dispatch_async ( dispatch_get_global_queue ( DISPATCH_QUEUE_PRIORITY_DEFAULT, 0 ), ^ {
236
269
HKURLOperation *operation = [[HKURLOperation alloc ] initWithURL: url
237
270
progressHandler: ^( double progress ) {
238
271
if ( progressHandler != nil )
239
272
{
240
- dispatch_async ( cqueue , ^{
273
+ dispatch_async ( dispatch_get_main_queue () , ^{
241
274
progressHandler ( progress );
242
275
});
243
276
}
@@ -254,13 +287,13 @@ - (void)cacheURL:(NSURL *)url identifier:(NSString *)identifier progressHandler:
254
287
255
288
[self cacheData: data withIdentifier: sid];
256
289
257
- dispatch_async ( cqueue , ^{
290
+ dispatch_async ( dispatch_get_main_queue () , ^{
258
291
completionHandler ( YES , sid, nil );
259
292
});
260
293
}
261
294
else
262
295
{
263
- dispatch_async ( cqueue , ^{
296
+ dispatch_async ( dispatch_get_main_queue () , ^{
264
297
completionHandler ( NO , nil , error );
265
298
});
266
299
}
@@ -420,6 +453,19 @@ - (BOOL)setup
420
453
{
421
454
#ifdef HK_DEBUG_CACHE
422
455
NSLog (@" HKCacheManager->Error: 'Couldn't create database data insert statement!'" );
456
+ #endif
457
+ return NO ;
458
+ }
459
+
460
+ if ( _update )
461
+ {
462
+ sqlite3_finalize ( _update ); _update = nil ;
463
+ }
464
+
465
+ if ( sqlite3_prepare_v2 ( _database, " UPDATE cache SET data = ? WHERE identifier = ?" , -1 , &_update, NULL ) != SQLITE_OK )
466
+ {
467
+ #ifdef HK_DEBUG_CACHE
468
+ NSLog (@" HKCacheManager->Error: 'Couldn't create database data update statement!'" );
423
469
#endif
424
470
return NO ;
425
471
}
0 commit comments