forked from steipete/SDURLCache
-
Notifications
You must be signed in to change notification settings - Fork 0
/
SDURLCache.h
57 lines (50 loc) · 1.88 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
//
// SDURLCache.h
// SDURLCache
// Copyright (c) 2010-2011 Olivier Poitrey <[email protected]>
// Modernized to use GCD by Peter Steinberger <[email protected]>
//
// Created by Olivier Poitrey on 15/03/10.
// Copyright 2010 Dailymotion. All rights reserved.
//
#import <Foundation/Foundation.h>
@interface SDURLCache : NSURLCache
{
@private
dispatch_queue_t _diskCacheQueue;
dispatch_queue_t _dateFormatterQueue;
NSString *_diskCachePath;
NSMutableDictionary *_diskCacheInfo;
BOOL _diskCacheInfoDirty;
BOOL _ignoreMemoryOnlyStoragePolicy;
NSUInteger _diskCacheUsage;
NSTimeInterval _minCacheInterval;
dispatch_source_t _maintenanceTimer;
BOOL _timerPaused;
}
/*
* 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;
/*
* 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