| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236 | ////  Indicator.swift//  Kingfisher////  Created by João D. Moreira on 30/08/16.////  Copyright (c) 2019 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(watchOS)#if canImport(AppKit) && !targetEnvironment(macCatalyst)import AppKitpublic typealias IndicatorView = NSView#elseimport UIKitpublic typealias IndicatorView = UIView#endif/// Represents the activity indicator type which should be added to/// an image view when an image is being downloaded.////// - none: No indicator./// - activity: Uses the system activity indicator./// - image: Uses an image as indicator. GIF is supported./// - custom: Uses a custom indicator. The type of associated value should conform to the `Indicator` protocol.public enum IndicatorType {    /// No indicator.    case none    /// Uses the system activity indicator.    case activity    /// Uses an image as indicator. GIF is supported.    case image(imageData: Data)    /// Uses a custom indicator. The type of associated value should conform to the `Indicator` protocol.    case custom(indicator: Indicator)}/// An indicator type which can be used to show the download task is in progress.public protocol Indicator {        /// Called when the indicator should start animating.    func startAnimatingView()        /// Called when the indicator should stop animating.    func stopAnimatingView()    /// Center offset of the indicator. Kingfisher will use this value to determine the position of    /// indicator in the super view.    var centerOffset: CGPoint { get }        /// The indicator view which would be added to the super view.    var view: IndicatorView { get }    /// The size strategy used when adding the indicator to image view.    /// - Parameter imageView: The super view of indicator.    func sizeStrategy(in imageView: KFCrossPlatformImageView) -> IndicatorSizeStrategy}public enum IndicatorSizeStrategy {    case intrinsicSize    case full    case size(CGSize)}extension Indicator {        /// Default implementation of `centerOffset` of `Indicator`. The default value is `.zero`, means that there is    /// no offset for the indicator view.    public var centerOffset: CGPoint { return .zero }    /// Default implementation of `centerOffset` of `Indicator`. The default value is `.full`, means that the indicator    /// will pin to the same height and width as the image view.    public func sizeStrategy(in imageView: KFCrossPlatformImageView) -> IndicatorSizeStrategy {        return .full    }}// Displays a NSProgressIndicator / UIActivityIndicatorViewfinal class ActivityIndicator: Indicator {    #if os(macOS)    private let activityIndicatorView: NSProgressIndicator    #else    private let activityIndicatorView: UIActivityIndicatorView    #endif    private var animatingCount = 0    var view: IndicatorView {        return activityIndicatorView    }    func startAnimatingView() {        if animatingCount == 0 {            #if os(macOS)            activityIndicatorView.startAnimation(nil)            #else            activityIndicatorView.startAnimating()            #endif            activityIndicatorView.isHidden = false        }        animatingCount += 1    }    func stopAnimatingView() {        animatingCount = max(animatingCount - 1, 0)        if animatingCount == 0 {            #if os(macOS)                activityIndicatorView.stopAnimation(nil)            #else                activityIndicatorView.stopAnimating()            #endif            activityIndicatorView.isHidden = true        }    }    func sizeStrategy(in imageView: KFCrossPlatformImageView) -> IndicatorSizeStrategy {        return .intrinsicSize    }    init() {        #if os(macOS)            activityIndicatorView = NSProgressIndicator(frame: CGRect(x: 0, y: 0, width: 16, height: 16))            activityIndicatorView.controlSize = .small            activityIndicatorView.style = .spinning        #else            let indicatorStyle: UIActivityIndicatorView.Style            #if os(tvOS)            if #available(tvOS 13.0, *) {                indicatorStyle = UIActivityIndicatorView.Style.large            } else {                indicatorStyle = UIActivityIndicatorView.Style.white            }            #else            if #available(iOS 13.0, * ) {                indicatorStyle = UIActivityIndicatorView.Style.medium            } else {                indicatorStyle = UIActivityIndicatorView.Style.gray            }            #endif            #if swift(>=4.2)            activityIndicatorView = UIActivityIndicatorView(style: indicatorStyle)            #else            activityIndicatorView = UIActivityIndicatorView(activityIndicatorStyle: indicatorStyle)            #endif        #endif    }}#if canImport(UIKit)extension UIActivityIndicatorView.Style {    #if compiler(>=5.1)    #else    static let large = UIActivityIndicatorView.Style.white    #if !os(tvOS)    static let medium = UIActivityIndicatorView.Style.gray    #endif    #endif}#endif// MARK: - ImageIndicator// Displays an ImageView. Supports giffinal class ImageIndicator: Indicator {    private let animatedImageIndicatorView: KFCrossPlatformImageView    var view: IndicatorView {        return animatedImageIndicatorView    }    init?(        imageData data: Data,        processor: ImageProcessor = DefaultImageProcessor.default,        options: KingfisherParsedOptionsInfo? = nil)    {        var options = options ?? KingfisherParsedOptionsInfo(nil)        // Use normal image view to show animations, so we need to preload all animation data.        if !options.preloadAllAnimationData {            options.preloadAllAnimationData = true        }                guard let image = processor.process(item: .data(data), options: options) else {            return nil        }        animatedImageIndicatorView = KFCrossPlatformImageView()        animatedImageIndicatorView.image = image                #if os(macOS)            // Need for gif to animate on macOS            animatedImageIndicatorView.imageScaling = .scaleNone            animatedImageIndicatorView.canDrawSubviewsIntoLayer = true        #else            animatedImageIndicatorView.contentMode = .center        #endif    }    func startAnimatingView() {        #if os(macOS)            animatedImageIndicatorView.animates = true        #else            animatedImageIndicatorView.startAnimating()        #endif        animatedImageIndicatorView.isHidden = false    }    func stopAnimatingView() {        #if os(macOS)            animatedImageIndicatorView.animates = false        #else            animatedImageIndicatorView.stopAnimating()        #endif        animatedImageIndicatorView.isHidden = true    }}#endif
 |