forked from pinterest/PINRemoteImage
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPINRemoteImageManager.h
347 lines (272 loc) · 18.1 KB
/
PINRemoteImageManager.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
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
//
// PINRemoteImageManager.h
// Pods
//
// Created by Garrett Moon on 8/17/14.
//
//
@import Foundation;
@import UIKit;
#import "PINRemoteImageManagerResult.h"
@class FLAnimatedImage;
@class PINCache;
@class PINRemoteImageManagerResult;
/*
@warning when using in extension or watch extension, define PIN_APP_EXTENSIONS=1
*/
extern NSString * const PINRemoteImageManagerErrorDomain;
/**
Error codes returned by PINRemoteImage
*/
typedef NS_ENUM(NSUInteger, PINRemoteImageManagerError) {
/** The image failed to decode */
PINRemoteImageManagerErrorFailedToDecodeImage = 1,
/** The image could not be downloaded and therefore could not be processed */
PINRemoteImageManagerErrorFailedToFetchImageForProcessing = 2,
/** The image returned by the processor block was nil */
PINRemoteImageManagerErrorFailedToProcessImage = 3,
};
/**
Options with which to download and process images
*/
typedef NS_ENUM(NSUInteger, PINRemoteImageManagerDownloadOptions) {
/** Download and process with default options (no other options set) */
PINRemoteImageManagerDownloadOptionsNone = 0,
/** Regardless of the image type downloaded, return UIImages and *not* FLAnimatedImage */
PINRemoteImageManagerDownloadOptionsIgnoreGIFs = 1,
/** Skip decoding the image before returning. This means smaller images returned, but images will be decoded on the main thread when set on an image view */
PINRemoteImageManagerDownloadOptionsSkipDecode = 1 << 1,
/** Skip the early check of the memory cache */
PINRemoteImageManagerDownloadOptionsSkipEarlyCheck = 1 << 2,
/** Save processed images as JPEGs in the cache. The default is PNG to support transparency */
PINRemoteImageManagerSaveProcessedImageAsJPEG = 1 << 3,
};
/**
Priority to download and process image at.
*/
typedef NS_ENUM(NSUInteger, PINRemoteImageManagerPriority) {
/** Very low priority */
PINRemoteImageManagerPriorityVeryLow = 0,
/** Low priority */
PINRemoteImageManagerPriorityLow,
/** Medium priority */
PINRemoteImageManagerPriorityMedium,
/** High priority */
PINRemoteImageManagerPriorityHigh,
/** Very high priority */
PINRemoteImageManagerPriorityVeryHigh,
};
NSOperationQueuePriority operationPriorityWithImageManagerPriority(PINRemoteImageManagerPriority priority);
float dataTaskPriorityWithImageManagerPriority(PINRemoteImageManagerPriority priority);
/**
Completion called for many PINRemoteImage tasks as well as progress updates. Passed in a PINRemoteImageManagerResult.
@param result PINRemoteImageManagerResult which contains the downloaded image.
*/
typedef void (^PINRemoteImageManagerImageCompletion)(PINRemoteImageManagerResult *result);
/**
Processor block to post-process a downloaded image. Passed in a PINRemoteImageManagerResult and a pointer to an NSUInteger which can be updated to indicate the cost of processing the image.
@param result PINRemoteImageManagerResult which contains the downloaded image.
@param cost NSUInteger point which can be modified to indicate the cost of processing the image. This is used when determining which cache objects to evict on memory pressure.
@return return the processed UIImage
*/
typedef UIImage *(^PINRemoteImageManagerImageProcessor)(PINRemoteImageManagerResult *result, NSUInteger *cost);
/**
PINRemoteImageManager is the main workhorse of PINRemoteImage. It is unnecessary to access directly if you simply
wish to download images and have them rendered in a UIImageView, UIButton or FLAnimatedImageView.
However, if you wish to download images directly, this class is your guy / gal.
You can use this class to download images, postprocess downloaded images, prefetch images, download images progressively, or download one image in a set of images depending on network performance.
*/
/**
Completion Handler block which will be forwarded to NSURLSessionTaskDelegate's completion handler
@param disposition One of several constants that describes how the challenge should be handled.
@param credential The credential that should be used for authentication if disposition is NSURLSessionAuthChallengeUseCredential; otherwise, NULL.
*/
typedef void(^PINRemoteImageManagerAuthenticationChallengeCompletionHandler)(NSURLSessionAuthChallengeDisposition disposition, NSURLCredential *credential);
/**
Authentication challenge handler
@param task The task whose request requires authentication.
@param challenge An object that contains the request for authentication.
@param aHandler A PINRemoteImageManagerAuthenticationChallengeCompletionHandler, see example for further details.
*/
typedef void(^PINRemoteImageManagerAuthenticationChallenge)(NSURLSessionTask *task, NSURLAuthenticationChallenge *challenge, PINRemoteImageManagerAuthenticationChallengeCompletionHandler aHandler);
@interface PINRemoteImageManager : NSObject
@property (nonatomic, readonly) PINCache *cache;
/**
Create and return a PINRemoteImageManager created with the specified configuration. If configuration is nil, [NSURLSessionConfiguration defaultConfiguration] is used. You specify a custom configuration if you need to configure timeout values, cookie policies, additional HTTP headers, etc.
@param configuration The configuration used to create the PINRemoteImageManager.
@return A PINRemoteImageManager with the specified configuration.
*/
- (instancetype)initWithSessionConfiguration:(NSURLSessionConfiguration *)configuration;
/**
Get the shared instance of PINRemoteImageManager
@return Shared instance of PINRemoteImageManager
*/
+ (instancetype)sharedImageManager;
/**
The result of this method is assigned to self.cache in init. If you wish to provide a customized cache to the manager you can subclass PINRemoteImageManager and return a custom PINCache from this method.
@return An instance of a PINCache object.
*/
- (PINCache *)defaultImageCache;
/**
Set the Authentication Challenge Block
@see PINRemoteImageManagerAuthenticationChallenge
@param challengeBlock A PINRemoteImageManagerAuthenticationChallenge block.
*/
- (void)setAuthenticationChallenge:(PINRemoteImageManagerAuthenticationChallenge)aChallenge;
/**
Set the minimum BPS to download the highest quality image in a set.
@see downloadImageWithURLs:options:progress:completion:
@param highQualityBPSThreshold bytes per second minimum. Defaults to 500000.
@param completion Completion to be called once highQualityBPSThreshold has been set.
*/
- (void)setHighQualityBPSThreshold:(float)highQualityBPSThreshold completion:(dispatch_block_t)completion;
/**
Set the maximum BPS to download the lowest quality image in a set.
@see downloadImageWithURLs:options:progress:completion:
@param lowQualityBPSThreshold bytes per second maximum. Defaults to 50000.
@param completion Completion to be called once lowQualityBPSThreshold has been set.
*/
- (void)setLowQualityBPSThreshold:(float)lowQualityBPSThreshold
completion:(dispatch_block_t)completion;
/**
Set whether high quality images should be downloaded when a low quality image is cached if network connectivity has improved.
@see downloadImageWithURLs:options:progress:completion:
@param shouldUpgradeLowQualityImages if YES, low quality images will be 'upgraded'.
@param completion Completion to be called once shouldUpgradeLowQualityImages has been set.
*/
- (void)setShouldUpgradeLowQualityImages:(BOOL)shouldUpgradeLowQualityImages
completion:(dispatch_block_t)completion;
/**
Set the maximum number of concurrent operations (decompressing images, creating gifs, etc).
@param maxNumberOfConcurrentOperations The maximum number of concurrent operations. Defaults to NSOperationQueueDefaultMaxConcurrentOperationCount.
@param completion Completion to be called once maxNumberOfConcurrentOperations is set.
*/
- (void)setMaxNumberOfConcurrentOperations:(NSInteger)maxNumberOfConcurrentOperations
completion:(dispatch_block_t)completion;
/**
Set the maximum number of concurrent downloads.
@param maxNumberOfConcurrentDownloads The maximum number of concurrent downloads. Defaults to 10.
@param completion Completion to be called once maxNumberOfConcurrentDownloads is set.
*/
- (void)setMaxNumberOfConcurrentDownloads:(NSInteger)maxNumberOfConcurrentDownloads
completion:(dispatch_block_t)completion;
/**
Set the estimated time remaining to download threshold at which to generate progressive images. Progressive images previews will only be generated if the estimated remaining time on a download is greater than estimatedTimeRemainingThreshold. If estimatedTimeRemainingThreshold is less than zero, this check is skipped.
@param estimatedRemainingTimeThreshold The estimated remaining time threshold used to decide to skip progressive rendering. Defaults to 0.1.
@param completion Completion to be called once estimatedTimeRemainingTimeThreshold is set.
*/
- (void)setEstimatedRemainingTimeThresholdForProgressiveDownloads:(NSTimeInterval)estimatedRemainingTimeThreshold
completion:(dispatch_block_t)completion;
/**
Sets the progress at which progressive images are generated. By default this is @[@0.00, @0.35, @0.65] which generates at most, 3 progressive images. The first progressive image will only be generated when at least one scan has been completed (so you never see half an image).
@param progressThresholds an array of progress thresholds at which to generate progressive images. progress thresholds should range from 0.00 - 1.00. Defaults to @[@0.00, @0.35, @0.65]
@param completion Completion to be called once progressThresholds is set.
*/
- (void)setProgressThresholds:(NSArray *)progressThresholds
completion:(dispatch_block_t)completion;
/**
Prefetch an image at the given URL.
@param url NSURL where the image to prefetch resides.
*/
- (void)prefetchImageWithURL:(NSURL *)url;
/**
Prefetch an image at the given URL with given options.
@param url NSURL where the image to prefetch resides.
@param options PINRemoteImageManagerDownloadOptions options with which to pefetch the image.
*/
- (void)prefetchImageWithURL:(NSURL *)url options:(PINRemoteImageManagerDownloadOptions)options;
/**
Prefetch images at the given URLs.
@param urls An array of NSURLs where the images to prefetch reside.
*/
- (void)prefetchImagesWithURLs:(NSArray *)urls;
/**
Prefetch images at the given URLs with given options.
@param urls An array of NSURLs where the images to prefetch reside.
@param options PINRemoteImageManagerDownloadOptions options with which to pefetch the image.
*/
- (void)prefetchImagesWithURLs:(NSArray *)urls options:(PINRemoteImageManagerDownloadOptions)options;;
/**
Download or retrieve from cache the image found at the url. All completions are called on an arbitrary callback queue unless called on the main thread and the result is in the memory cache (this is an optimization to allow synchronous results for the UI when an object is cached in memory).
@param url NSURL where the image to download resides.
@param completion PINRemoteImageManagerImageCompletion block to call when image has been fetched from the cache or downloaded.
@return An NSUUID which uniquely identifies this request. To be used for canceling requests and verifying that the callback is for the request you expect (see categories for example).
*/
- (NSUUID *)downloadImageWithURL:(NSURL *)url completion:(PINRemoteImageManagerImageCompletion)completion;
/**
Download or retrieve from cache the image found at the url. All completions are called on an arbitrary callback queue unless called on the main thread and the result is in the memory cache (this is an optimization to allow synchronous results for the UI when an object is cached in memory).
@param url NSURL where the image to download resides.
@param options PINRemoteImageManagerDownloadOptions options with which to fetch the image.
@param completion PINRemoteImageManagerImageCompletion block to call when image has been fetched from the cache or downloaded.
@return An NSUUID which uniquely identifies this request. To be used for canceling requests and verifying that the callback is for the request you expect (see categories for example).
*/
- (NSUUID *)downloadImageWithURL:(NSURL *)url
options:(PINRemoteImageManagerDownloadOptions)options
completion:(PINRemoteImageManagerImageCompletion)completion;
/**
Download or retrieve from cache the image found at the url. All completions are called on an arbitrary callback queue unless called on the main thread and the result is in the memory cache (this is an optimization to allow synchronous results for the UI when an object is cached in memory).
@param url NSURL where the image to download resides.
@param options PINRemoteImageManagerDownloadOptions options with which to fetch the image.
@param progress PINRemoteImageManagerImageCompletion block which will be called to update progress of the image download.
@param completion PINRemoteImageManagerImageCompletion block to call when image has been fetched from the cache or downloaded.
@return An NSUUID which uniquely identifies this request. To be used for canceling requests and verifying that the callback is for the request you expect (see categories for example).
*/
- (NSUUID *)downloadImageWithURL:(NSURL *)url
options:(PINRemoteImageManagerDownloadOptions)options
progress:(PINRemoteImageManagerImageCompletion)progress
completion:(PINRemoteImageManagerImageCompletion)completion;
/**
Download or retrieve from cache the image found at the url and process it before calling completion. All completions are called on an arbitrary callback queue unless called on the main thread and the result is in the memory cache (this is an optimization to allow synchronous results for the UI when an object is cached in memory).
@param url NSURL where the image to download resides.
@param options PINRemoteImageManagerDownloadOptions options with which to fetch the image.
@param processorKey NSString key to uniquely identify processor and process. Will be used for caching processed images.
@param processor PINRemoteImageManagerImageProcessor block which will be called to post-process downloaded image.
@param completion PINRemoteImageManagerImageCompletion block to call when image has been fetched from the cache or downloaded.
@return An NSUUID which uniquely identifies this request. To be used for canceling requests and verifying that the callback is for the request you expect (see categories for example).
*/
- (NSUUID *)downloadImageWithURL:(NSURL *)url
options:(PINRemoteImageManagerDownloadOptions)options
processorKey:(NSString *)processorKey
processor:(PINRemoteImageManagerImageProcessor)processor
completion:(PINRemoteImageManagerImageCompletion)completion;
/**
Download or retrieve from cache one of the images found at the urls in the passed in array based on current network performance. URLs should be sorted from lowest quality image URL to highest. All completions are called on an arbitrary callback queue unless called on the main thread and the result is in the memory cache (this is an optimization to allow synchronous results for the UI when an object is cached in memory).
Unless setShouldUpgradeLowQualityImages is set to YES, this method checks the cache for all URLs and returns the highest quality version stored. It is possible though unlikely for a cached image to not be returned if it is still being cached while a call is made to this method and if network conditions have changed. See source for more details.
@param urls An array of NSURLs of increasing size.
@param options PINRemoteImageManagerDownloadOptions options with which to fetch the image.
@param progress PINRemoteImageManagerImageCompletion block which will be called to update progress of the image download.
@param completion PINRemoteImageManagerImageCompletion block to call when image has been fetched from the cache or downloaded.
@return An NSUUID which uniquely identifies this request. To be used for canceling requests and verifying that the callback is for the request you expect (see categories for example).
*/
- (NSUUID *)downloadImageWithURLs:(NSArray *)urls
options:(PINRemoteImageManagerDownloadOptions)options
progress:(PINRemoteImageManagerImageCompletion)progress
completion:(PINRemoteImageManagerImageCompletion)completion;
/**
Returns the cacheKey for a given URL and processorKey. Exposed to be overridden if necessary or to be used with imageFromCacheWithCacheKey
@see imageFromCacheWithCacheKey:completion:
@param url NSURL to be downloaded
@param processorKey NSString key to uniquely identify processor and process.
@return returns an NSString which is the key used for caching.
*/
- (NSString *)cacheKeyForURL:(NSURL *)url processorKey:(NSString *)processorKey;
/**
Directly get an image from the underlying cache.
@see cacheKeyForURL:processorKey:
@param cacheKey NSString key to look up image in the cache.
@param completion PINRemoteImageManagerImageCompletion block to call when image has been fetched from the cache.
*/
- (void)imageFromCacheWithCacheKey:(NSString *)cacheKey completion:(PINRemoteImageManagerImageCompletion)completion;
/**
Cancel a download. Canceling will only cancel the download if all other downloads are also canceled with their associated UUIDs. Canceling *does not* guarantee that your completion will not be called. You can use the UUID provided on the result object verify the completion you want called is being called.
@see PINRemoteImageCategoryManager
@param UUID NSUUID of the task to cancel.
*/
- (void)cancelTaskWithUUID:(NSUUID *)UUID;
/**
Set the priority of a download task. Since there is only one task per download, the priority of the download task will always be the last priority this method was called with.
@param priority priority to set on the task.
@param UUID NSUUID of the task to set the priority on.
*/
- (void)setPriority:(PINRemoteImageManagerPriority)priority ofTaskWithUUID:(NSUUID *)UUID;
@end