| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224 |
- //
- // KingfisherManager.swift
- // Kingfisher
- //
- // Created by Wei Wang on 15/4/6.
- //
- // Copyright (c) 2016 Wei Wang <onevcat@gmail.com>
- //
- // Permission is hereby granted, free of charge, to any person obtaining a copy
- // of this software and associated documentation files (the "Software"), to deal
- // in the Software without restriction, including without limitation the rights
- // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
- // copies of the Software, and to permit persons to whom the Software is
- // furnished to do so, subject to the following conditions:
- //
- // The above copyright notice and this permission notice shall be included in
- // all copies or substantial portions of the Software.
- //
- // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
- // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
- // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
- // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
- // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
- // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
- // THE SOFTWARE.
- #if os(OSX)
- import AppKit
- #else
- import UIKit
- #endif
- public typealias DownloadProgressBlock = ((receivedSize: Int64, totalSize: Int64) -> ())
- public typealias CompletionHandler = ((image: Image?, error: NSError?, cacheType: CacheType, imageURL: NSURL?) -> ())
- /// RetrieveImageTask represents a task of image retrieving process.
- /// It contains an async task of getting image from disk and from network.
- public class RetrieveImageTask {
-
- // If task is canceled before the download task started (which means the `downloadTask` is nil),
- // the download task should not begin.
- var cancelledBeforeDownlodStarting: Bool = false
-
- /// The disk retrieve task in this image task. Kingfisher will try to look up in cache first. This task represent the cache search task.
- public var diskRetrieveTask: RetrieveImageDiskTask?
-
- /// The network retrieve task in this image task.
- public var downloadTask: RetrieveImageDownloadTask?
-
- /**
- Cancel current task. If this task does not begin or already done, do nothing.
- */
- public func cancel() {
- // From Xcode 7 beta 6, the `dispatch_block_cancel` will crash at runtime.
- // It fixed in Xcode 7.1.
- // See https://github.com/onevcat/Kingfisher/issues/99 for more.
- if let diskRetrieveTask = diskRetrieveTask {
- dispatch_block_cancel(diskRetrieveTask)
- }
-
- if let downloadTask = downloadTask {
- downloadTask.cancel()
- } else {
- cancelledBeforeDownlodStarting = true
- }
- }
- }
- /// Error domain of Kingfisher
- public let KingfisherErrorDomain = "com.onevcat.Kingfisher.Error"
- private let instance = KingfisherManager()
- /// Main manager class of Kingfisher. It connects Kingfisher downloader and cache.
- /// You can use this class to retrieve an image via a specified URL from web or cache.
- public class KingfisherManager {
-
- /// Shared manager used by the extensions across Kingfisher.
- public class var sharedManager: KingfisherManager {
- return instance
- }
-
- /// Cache used by this manager
- public var cache: ImageCache
-
- /// Downloader used by this manager
- public var downloader: ImageDownloader
-
- /**
- Default init method
-
- - returns: A Kingfisher manager object with default cache and default downloader.
- */
- public init() {
- cache = ImageCache.defaultCache
- downloader = ImageDownloader.defaultDownloader
- }
-
- /**
- Get an image with resource.
- If KingfisherOptions.None is used as `options`, Kingfisher will seek the image in memory and disk first.
- If not found, it will download the image at `resource.downloadURL` and cache it with `resource.cacheKey`.
- These default behaviors could be adjusted by passing different options. See `KingfisherOptions` for more.
-
- - parameter resource: Resource object contains information such as `cacheKey` and `downloadURL`.
- - parameter optionsInfo: A dictionary could control some behaviors. See `KingfisherOptionsInfo` for more.
- - parameter progressBlock: Called every time downloaded data changed. This could be used as a progress UI.
- - parameter completionHandler: Called when the whole retrieving process finished.
-
- - returns: A `RetrieveImageTask` task object. You can use this object to cancel the task.
- */
- public func retrieveImageWithResource(resource: Resource,
- optionsInfo: KingfisherOptionsInfo?,
- progressBlock: DownloadProgressBlock?,
- completionHandler: CompletionHandler?) -> RetrieveImageTask
- {
- let task = RetrieveImageTask()
- if let optionsInfo = optionsInfo where optionsInfo.forceRefresh {
- downloadAndCacheImageWithURL(resource.downloadURL,
- forKey: resource.cacheKey,
- retrieveImageTask: task,
- progressBlock: progressBlock,
- completionHandler: completionHandler,
- options: optionsInfo)
- } else {
- tryToRetrieveImageFromCacheForKey(resource.cacheKey,
- withURL: resource.downloadURL,
- retrieveImageTask: task,
- progressBlock: progressBlock,
- completionHandler: completionHandler,
- options: optionsInfo)
- }
-
- return task
- }
- /**
- Get an image with `URL.absoluteString` as the key.
- If KingfisherOptions.None is used as `options`, Kingfisher will seek the image in memory and disk first.
- If not found, it will download the image at URL and cache it with `URL.absoluteString` value as its key.
-
- If you need to specify the key other than `URL.absoluteString`, please use resource version of this API with `resource.cacheKey` set to what you want.
-
- These default behaviors could be adjusted by passing different options. See `KingfisherOptions` for more.
-
- - parameter URL: The image URL.
- - parameter optionsInfo: A dictionary could control some behaviors. See `KingfisherOptionsInfo` for more.
- - parameter progressBlock: Called every time downloaded data changed. This could be used as a progress UI.
- - parameter completionHandler: Called when the whole retrieving process finished.
-
- - returns: A `RetrieveImageTask` task object. You can use this object to cancel the task.
- */
- public func retrieveImageWithURL(URL: NSURL,
- optionsInfo: KingfisherOptionsInfo?,
- progressBlock: DownloadProgressBlock?,
- completionHandler: CompletionHandler?) -> RetrieveImageTask
- {
- return retrieveImageWithResource(Resource(downloadURL: URL), optionsInfo: optionsInfo, progressBlock: progressBlock, completionHandler: completionHandler)
- }
-
- func downloadAndCacheImageWithURL(URL: NSURL,
- forKey key: String,
- retrieveImageTask: RetrieveImageTask,
- progressBlock: DownloadProgressBlock?,
- completionHandler: CompletionHandler?,
- options: KingfisherOptionsInfo?)
- {
- let downloader = options?.downloader ?? self.downloader
- downloader.downloadImageWithURL(URL, retrieveImageTask: retrieveImageTask, options: options,
- progressBlock: { receivedSize, totalSize in
- progressBlock?(receivedSize: receivedSize, totalSize: totalSize)
- },
- completionHandler: { image, error, imageURL, originalData in
- let targetCache = options?.targetCache ?? self.cache
- if let error = error where error.code == KingfisherError.NotModified.rawValue {
- // Not modified. Try to find the image from cache.
- // (The image should be in cache. It should be guaranteed by the framework users.)
- targetCache.retrieveImageForKey(key, options: options, completionHandler: { (cacheImage, cacheType) -> () in
- completionHandler?(image: cacheImage, error: nil, cacheType: cacheType, imageURL: URL)
-
- })
- return
- }
-
- if let image = image, originalData = originalData {
- targetCache.storeImage(image, originalData: originalData, forKey: key, toDisk: options?.cacheMemoryOnly ?? true, completionHandler: nil)
- }
-
- completionHandler?(image: image, error: error, cacheType: .None, imageURL: URL)
- })
- }
-
- func tryToRetrieveImageFromCacheForKey(key: String,
- withURL URL: NSURL,
- retrieveImageTask: RetrieveImageTask,
- progressBlock: DownloadProgressBlock?,
- completionHandler: CompletionHandler?,
- options: KingfisherOptionsInfo?)
- {
- let diskTaskCompletionHandler: CompletionHandler = { (image, error, cacheType, imageURL) -> () in
- // Break retain cycle created inside diskTask closure below
- retrieveImageTask.diskRetrieveTask = nil
- completionHandler?(image: image, error: error, cacheType: cacheType, imageURL: imageURL)
- }
-
- let targetCache = options?.targetCache ?? cache
- let diskTask = targetCache.retrieveImageForKey(key, options: options,
- completionHandler: { image, cacheType in
- if image != nil {
- diskTaskCompletionHandler(image: image, error: nil, cacheType:cacheType, imageURL: URL)
- } else {
- self.downloadAndCacheImageWithURL(URL,
- forKey: key,
- retrieveImageTask: retrieveImageTask,
- progressBlock: progressBlock,
- completionHandler: diskTaskCompletionHandler,
- options: options)
- }
- })
- retrieveImageTask.diskRetrieveTask = diskTask
- }
- }
|