forked from rs/SDURLCache
-
Notifications
You must be signed in to change notification settings - Fork 1
/
SDURLCache.h
59 lines (51 loc) · 1.85 KB
/
SDURLCache.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
//
// SDURLCache.h
// SDURLCache
//
// Created by Olivier Poitrey on 15/03/10.
// Copyright 2010 Dailymotion. All rights reserved.
//
#import <Foundation/Foundation.h>
@interface SDURLCache : NSURLCache
{
@private
NSString *diskCachePath;
NSMutableDictionary *diskCacheInfo;
BOOL diskCacheInfoDirty, ignoreMemoryOnlyStoragePolicy;
NSUInteger diskCacheUsage;
NSTimeInterval minCacheInterval;
NSOperationQueue *ioQueue;
NSTimer *periodicMaintenanceTimer;
NSOperation *periodicMaintenanceOperation;
}
/*
* Defines the minimum number of seconds between now and the expiration time of a cacheable response
* in order for the response to be cached on disk. This prevent from spending time and storage capacity
* for an entry which will certainly expire before behing read back from disk cache (memory cache is
* best suited for short term cache). The default value is set to 5 minutes (300 seconds).
*/
@property (nonatomic, assign) NSTimeInterval minCacheInterval;
/*
* Allow the responses that have a storage policy of NSURLCacheStorageAllowedInMemoryOnly to be cached
* on the disk anyway.
*
* This is mainly a workaround against cache policies generated by the UIWebViews: starting from iOS 4.2,
* it always has a cache policy of NSURLCacheStorageAllowedInMemoryOnly.
* The default value is YES
*/
@property (nonatomic, assign) BOOL ignoreMemoryOnlyStoragePolicy;
/*
* Set this to YES to log usage and statistics with NSLog.
* The default value is NO.
*/
@property (nonatomic, assign) BOOL verboseLogging;
/*
* Returns a default cache director path to be used at cache initialization. The generated path directory
* will be located in the application's cache directory and thus won't be synced by iTunes.
*/
+ (NSString *)defaultCachePath;
/*
* Checks if the provided URL exists in cache.
*/
- (BOOL)isCached:(NSURL *)url;
@end