1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039 |
- //
- // Session.swift
- //
- // Copyright (c) 2014-2018 Alamofire Software Foundation (http://alamofire.org/)
- //
- // 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.
- //
-
- import Foundation
-
- /// `Session` creates and manages Alamofire's `Request` types during their lifetimes. It also provides common
- /// functionality for all `Request`s, including queuing, interception, trust management, redirect handling, and response
- /// cache handling.
- open class Session {
- /// Shared singleton instance used by all `AF.request` APIs. Cannot be modified.
- public static let `default` = Session()
-
- /// Underlying `URLSession` used to create `URLSessionTasks` for this instance, and for which this instance's
- /// `delegate` handles `URLSessionDelegate` callbacks.
- public let session: URLSession
- /// Instance's `SessionDelegate`, which handles the `URLSessionDelegate` methods and `Request` interaction.
- public let delegate: SessionDelegate
- /// Root `DispatchQueue` for all internal callbacks and state update. **MUST** be a serial queue.
- public let rootQueue: DispatchQueue
- /// Value determining whether this instance automatically calls `resume()` on all created `Request`s.
- public let startRequestsImmediately: Bool
- /// `DispatchQueue` on which `URLRequest`s are created asynchronously. By default this queue uses `rootQueue` as its
- /// `target`, but a separate queue can be used if request creation is determined to be a bottleneck. Always profile
- /// and test before introducing an additional queue.
- public let requestQueue: DispatchQueue
- /// `DispatchQueue` passed to all `Request`s on which they perform their response serialization. By default this
- /// queue uses `rootQueue` as its `target` but a separate queue can be used if response serialization is determined
- /// to be a bottleneck. Always profile and test before introducing an additional queue.
- public let serializationQueue: DispatchQueue
- /// `RequestInterceptor` used for all `Request` created by the instance. `RequestInterceptor`s can also be set on a
- /// per-`Request` basis, in which case the `Request`'s interceptor takes precedence over this value.
- public let interceptor: RequestInterceptor?
- /// `ServerTrustManager` instance used to evaluate all trust challenges and provide certificate and key pinning.
- public let serverTrustManager: ServerTrustManager?
- /// `RedirectHandler` instance used to provide customization for request redirection.
- public let redirectHandler: RedirectHandler?
- /// `CachedResponseHandler` instance used to provide customization of cached response handling.
- public let cachedResponseHandler: CachedResponseHandler?
- /// `CompositeEventMonitor` used to compose Alamofire's `defaultEventMonitors` and any passed `EventMonitor`s.
- public let eventMonitor: CompositeEventMonitor
- /// `EventMonitor`s included in all instances. `[AlamofireNotifications()]` by default.
- public let defaultEventMonitors: [EventMonitor] = [AlamofireNotifications()]
-
- /// Internal map between `Request`s and any `URLSessionTasks` that may be in flight for them.
- var requestTaskMap = RequestTaskMap()
- /// Set of currently active `Request`s.
- var activeRequests: Set<Request> = []
-
- /// Creates a `Session` from a `URLSession` and other parameters.
- ///
- /// - Note: When passing a `URLSession`, you must create the `URLSession` with a specific `delegateQueue` value and
- /// pass the `delegateQueue`'s `underlyingQueue` as the `rootQueue` parameter of this initializer.
- ///
- /// - Parameters:
- /// - session: Underlying `URLSession` for this instance.
- /// - delegate: `SessionDelegate` that handles `session`'s delegate callbacks as well as `Request`
- /// interaction.
- /// - rootQueue: Root `DispatchQueue` for all internal callbacks and state updates. **MUST** be a
- /// serial queue.
- /// - startRequestsImmediately: Determines whether this instance will automatically start all `Request`s. `true`
- /// by default. If set to `false`, all `Request`s created must have `.resume()` called.
- /// on them for them to start.
- /// - requestQueue: `DispatchQueue` on which to perform `URLRequest` creation. By default this queue
- /// will use the `rootQueue` as its `target`. A separate queue can be used if it's
- /// determined request creation is a bottleneck, but that should only be done after
- /// careful testing and profiling. `nil` by default.
- /// - serializationQueue: `DispatchQueue` on which to perform all response serialization. By default this
- /// queue will use the `rootQueue` as its `target`. A separate queue can be used if
- /// it's determined response serialization is a bottleneck, but that should only be
- /// done after careful testing and profiling. `nil` by default.
- /// - interceptor: `RequestInterceptor` to be used for all `Request`s created by this instance. `nil`
- /// by default.
- /// - serverTrustManager: `ServerTrustManager` to be used for all trust evaluations by this instance. `nil`
- /// by default.
- /// - redirectHandler: `RedirectHandler` to be used by all `Request`s created by this instance. `nil` by
- /// default.
- /// - cachedResponseHandler: `CachedResponseHandler` to be used by all `Request`s created by this instance.
- /// `nil` by default.
- /// - eventMonitors: Additional `EventMonitor`s used by the instance. Alamofire always adds a
- /// `AlamofireNotifications` `EventMonitor` to the array passed here. `[]` by default.
- public init(session: URLSession,
- delegate: SessionDelegate,
- rootQueue: DispatchQueue,
- startRequestsImmediately: Bool = true,
- requestQueue: DispatchQueue? = nil,
- serializationQueue: DispatchQueue? = nil,
- interceptor: RequestInterceptor? = nil,
- serverTrustManager: ServerTrustManager? = nil,
- redirectHandler: RedirectHandler? = nil,
- cachedResponseHandler: CachedResponseHandler? = nil,
- eventMonitors: [EventMonitor] = []) {
- precondition(session.configuration.identifier == nil,
- "Alamofire does not support background URLSessionConfigurations.")
- precondition(session.delegateQueue.underlyingQueue === rootQueue,
- "Session(session:) initializer must be passed the DispatchQueue used as the delegateQueue's underlyingQueue as rootQueue.")
-
- self.session = session
- self.delegate = delegate
- self.rootQueue = rootQueue
- self.startRequestsImmediately = startRequestsImmediately
- self.requestQueue = requestQueue ?? DispatchQueue(label: "\(rootQueue.label).requestQueue", target: rootQueue)
- self.serializationQueue = serializationQueue ?? DispatchQueue(label: "\(rootQueue.label).serializationQueue", target: rootQueue)
- self.interceptor = interceptor
- self.serverTrustManager = serverTrustManager
- self.redirectHandler = redirectHandler
- self.cachedResponseHandler = cachedResponseHandler
- eventMonitor = CompositeEventMonitor(monitors: defaultEventMonitors + eventMonitors)
- delegate.eventMonitor = eventMonitor
- delegate.stateProvider = self
- }
-
- /// Creates a `Session` from a `URLSessionConfiguration`.
- ///
- /// - Note: This initializer lets Alamofire handle the creation of the underlying `URLSession` and its
- /// `delegateQueue`, and is the recommended initializer for most uses.
- ///
- /// - Parameters:
- /// - configuration: `URLSessionConfiguration` to be used to create the underlying `URLSession`. Changes
- /// to this value after being passed to this initializer will have no effect.
- /// `URLSessionConfiguration.af.default` by default.
- /// - delegate: `SessionDelegate` that handles `session`'s delegate callbacks as well as `Request`
- /// interaction. `SessionDelegate()` by default.
- /// - rootQueue: Root `DispatchQueue` for all internal callbacks and state updates. **MUST** be a
- /// serial queue. `DispatchQueue(label: "org.alamofire.session.rootQueue")` by default.
- /// - startRequestsImmediately: Determines whether this instance will automatically start all `Request`s. `true`
- /// by default. If set to `false`, all `Request`s created must have `.resume()` called.
- /// on them for them to start.
- /// - requestQueue: `DispatchQueue` on which to perform `URLRequest` creation. By default this queue
- /// will use the `rootQueue` as its `target`. A separate queue can be used if it's
- /// determined request creation is a bottleneck, but that should only be done after
- /// careful testing and profiling. `nil` by default.
- /// - serializationQueue: `DispatchQueue` on which to perform all response serialization. By default this
- /// queue will use the `rootQueue` as its `target`. A separate queue can be used if
- /// it's determined response serialization is a bottleneck, but that should only be
- /// done after careful testing and profiling. `nil` by default.
- /// - interceptor: `RequestInterceptor` to be used for all `Request`s created by this instance. `nil`
- /// by default.
- /// - serverTrustManager: `ServerTrustManager` to be used for all trust evaluations by this instance. `nil`
- /// by default.
- /// - redirectHandler: `RedirectHandler` to be used by all `Request`s created by this instance. `nil` by
- /// default.
- /// - cachedResponseHandler: `CachedResponseHandler` to be used by all `Request`s created by this instance.
- /// `nil` by default.
- /// - eventMonitors: Additional `EventMonitor`s used by the instance. Alamofire always adds a
- /// `AlamofireNotifications` `EventMonitor` to the array passed here. `[]` by default.
- public convenience init(configuration: URLSessionConfiguration = URLSessionConfiguration.af.default,
- delegate: SessionDelegate = SessionDelegate(),
- rootQueue: DispatchQueue = DispatchQueue(label: "org.alamofire.session.rootQueue"),
- startRequestsImmediately: Bool = true,
- requestQueue: DispatchQueue? = nil,
- serializationQueue: DispatchQueue? = nil,
- interceptor: RequestInterceptor? = nil,
- serverTrustManager: ServerTrustManager? = nil,
- redirectHandler: RedirectHandler? = nil,
- cachedResponseHandler: CachedResponseHandler? = nil,
- eventMonitors: [EventMonitor] = []) {
- precondition(configuration.identifier == nil, "Alamofire does not support background URLSessionConfigurations.")
-
- let delegateQueue = OperationQueue(maxConcurrentOperationCount: 1, underlyingQueue: rootQueue, name: "org.alamofire.session.sessionDelegateQueue")
- let session = URLSession(configuration: configuration, delegate: delegate, delegateQueue: delegateQueue)
-
- self.init(session: session,
- delegate: delegate,
- rootQueue: rootQueue,
- startRequestsImmediately: startRequestsImmediately,
- requestQueue: requestQueue,
- serializationQueue: serializationQueue,
- interceptor: interceptor,
- serverTrustManager: serverTrustManager,
- redirectHandler: redirectHandler,
- cachedResponseHandler: cachedResponseHandler,
- eventMonitors: eventMonitors)
- }
-
- deinit {
- finishRequestsForDeinit()
- session.invalidateAndCancel()
- }
-
- // MARK: - Cancellation
-
- /// Cancel all active `Request`s, optionally calling a completion handler when complete.
- ///
- /// - Note: This is an asynchronous operation and does not block the creation of future `Request`s. Cancelled
- /// `Request`s may not cancel immediately due internal work, and may not cancel at all if they are close to
- /// completion when cancelled.
- ///
- /// - Parameters:
- /// - queue: `DispatchQueue` on which the completion handler is run. `.main` by default.
- /// - completion: Closure to be called when all `Request`s have been cancelled.
- public func cancelAllRequests(completingOnQueue queue: DispatchQueue = .main, completion: (() -> Void)? = nil) {
- rootQueue.async {
- self.activeRequests.forEach { $0.cancel() }
- queue.async { completion?() }
- }
- }
-
- // MARK: - DataRequest
-
- struct RequestConvertible: URLRequestConvertible {
- let url: URLConvertible
- let method: HTTPMethod
- let parameters: Parameters?
- let encoding: ParameterEncoding
- let headers: HTTPHeaders?
-
- func asURLRequest() throws -> URLRequest {
- let request = try URLRequest(url: url, method: method, headers: headers)
- return try encoding.encode(request, with: parameters)
- }
- }
-
- /// Creates a `DataRequest` from a `URLRequest` created using the passed components and a `RequestInterceptor`.
- ///
- /// - Parameters:
- /// - convertible: `URLConvertible` value to be used as the `URLRequest`'s `URL`.
- /// - method: `HTTPMethod` for the `URLRequest`. `.get` by default.
- /// - parameters: `Parameters` (a.k.a. `[String: Any]`) value to be encoded into the `URLRequest`. `nil` by default.
- /// - encoding: `ParameterEncoding` to be used to encode the `parameters` value into the `URLRequest`.
- /// `URLEncoding.default` by default.
- /// - headers: `HTTPHeaders` value to be added to the `URLRequest`. `nil` by default.
- /// - interceptor: `RequestInterceptor` value to be used by the returned `DataRequest`. `nil` by default.
- ///
- /// - Returns: The created `DataRequest`.
- open func request(_ convertible: URLConvertible,
- method: HTTPMethod = .get,
- parameters: Parameters? = nil,
- encoding: ParameterEncoding = URLEncoding.default,
- headers: HTTPHeaders? = nil,
- interceptor: RequestInterceptor? = nil) -> DataRequest {
- let convertible = RequestConvertible(url: convertible,
- method: method,
- parameters: parameters,
- encoding: encoding,
- headers: headers)
-
- return request(convertible, interceptor: interceptor)
- }
-
- struct RequestEncodableConvertible<Parameters: Encodable>: URLRequestConvertible {
- let url: URLConvertible
- let method: HTTPMethod
- let parameters: Parameters?
- let encoder: ParameterEncoder
- let headers: HTTPHeaders?
-
- func asURLRequest() throws -> URLRequest {
- let request = try URLRequest(url: url, method: method, headers: headers)
-
- return try parameters.map { try encoder.encode($0, into: request) } ?? request
- }
- }
-
- /// Creates a `DataRequest` from a `URLRequest` created using the passed components, `Encodable` parameters, and a
- /// `RequestInterceptor`.
- ///
- /// - Parameters:
- /// - convertible: `URLConvertible` value to be used as the `URLRequest`'s `URL`.
- /// - method: `HTTPMethod` for the `URLRequest`. `.get` by default.
- /// - parameters: `Encodable` value to be encoded into the `URLRequest`. `nil` by default.
- /// - encoder: `ParameterEncoder` to be used to encode the `parameters` value into the `URLRequest`.
- /// `URLEncodedFormParameterEncoder.default` by default.
- /// - headers: `HTTPHeaders` value to be added to the `URLRequest`. `nil` by default.
- /// - interceptor: `RequestInterceptor` value to be used by the returned `DataRequest`. `nil` by default.
- ///
- /// - Returns: The created `DataRequest`.
- open func request<Parameters: Encodable>(_ convertible: URLConvertible,
- method: HTTPMethod = .get,
- parameters: Parameters? = nil,
- encoder: ParameterEncoder = URLEncodedFormParameterEncoder.default,
- headers: HTTPHeaders? = nil,
- interceptor: RequestInterceptor? = nil) -> DataRequest {
- let convertible = RequestEncodableConvertible(url: convertible,
- method: method,
- parameters: parameters,
- encoder: encoder,
- headers: headers)
-
- return request(convertible, interceptor: interceptor)
- }
-
- /// Creates a `DataRequest` from a `URLRequestConvertible` value and a `RequestInterceptor`.
- ///
- /// - Parameters:
- /// - convertible: `URLRequestConvertible` value to be used to create the `URLRequest`.
- /// - interceptor: `RequestInterceptor` value to be used by the returned `DataRequest`. `nil` by default.
- ///
- /// - Returns: The created `DataRequest`.
- open func request(_ convertible: URLRequestConvertible, interceptor: RequestInterceptor? = nil) -> DataRequest {
- let request = DataRequest(convertible: convertible,
- underlyingQueue: rootQueue,
- serializationQueue: serializationQueue,
- eventMonitor: eventMonitor,
- interceptor: interceptor,
- delegate: self)
-
- perform(request)
-
- return request
- }
-
- // MARK: - DownloadRequest
-
- /// Creates a `DownloadRequest` using a `URLRequest` created using the passed components, `RequestInterceptor`, and
- /// `Destination`.
- ///
- /// - Parameters:
- /// - convertible: `URLConvertible` value to be used as the `URLRequest`'s `URL`.
- /// - method: `HTTPMethod` for the `URLRequest`. `.get` by default.
- /// - parameters: `Parameters` (a.k.a. `[String: Any]`) value to be encoded into the `URLRequest`. `nil` by default.
- /// - encoding: `ParameterEncoding` to be used to encode the `parameters` value into the `URLRequest`. Defaults
- /// to `URLEncoding.default`.
- /// - headers: `HTTPHeaders` value to be added to the `URLRequest`. `nil` by default.
- /// - interceptor: `RequestInterceptor` value to be used by the returned `DataRequest`. `nil` by default.
- /// - destination: `DownloadRequest.Destination` closure used to determine how and where the downloaded file
- /// should be moved. `nil` by default.
- ///
- /// - Returns: The created `DownloadRequest`.
- open func download(_ convertible: URLConvertible,
- method: HTTPMethod = .get,
- parameters: Parameters? = nil,
- encoding: ParameterEncoding = URLEncoding.default,
- headers: HTTPHeaders? = nil,
- interceptor: RequestInterceptor? = nil,
- to destination: DownloadRequest.Destination? = nil) -> DownloadRequest {
- let convertible = RequestConvertible(url: convertible,
- method: method,
- parameters: parameters,
- encoding: encoding,
- headers: headers)
-
- return download(convertible, interceptor: interceptor, to: destination)
- }
-
- /// Creates a `DownloadRequest` from a `URLRequest` created using the passed components, `Encodable` parameters, and
- /// a `RequestInterceptor`.
- ///
- /// - Parameters:
- /// - convertible: `URLConvertible` value to be used as the `URLRequest`'s `URL`.
- /// - method: `HTTPMethod` for the `URLRequest`. `.get` by default.
- /// - parameters: Value conforming to `Encodable` to be encoded into the `URLRequest`. `nil` by default.
- /// - encoder: `ParameterEncoder` to be used to encode the `parameters` value into the `URLRequest`. Defaults
- /// to `URLEncodedFormParameterEncoder.default`.
- /// - headers: `HTTPHeaders` value to be added to the `URLRequest`. `nil` by default.
- /// - interceptor: `RequestInterceptor` value to be used by the returned `DataRequest`. `nil` by default.
- /// - destination: `DownloadRequest.Destination` closure used to determine how and where the downloaded file
- /// should be moved. `nil` by default.
- ///
- /// - Returns: The created `DownloadRequest`.
- open func download<Parameters: Encodable>(_ convertible: URLConvertible,
- method: HTTPMethod = .get,
- parameters: Parameters? = nil,
- encoder: ParameterEncoder = URLEncodedFormParameterEncoder.default,
- headers: HTTPHeaders? = nil,
- interceptor: RequestInterceptor? = nil,
- to destination: DownloadRequest.Destination? = nil) -> DownloadRequest {
- let convertible = RequestEncodableConvertible(url: convertible,
- method: method,
- parameters: parameters,
- encoder: encoder,
- headers: headers)
-
- return download(convertible, interceptor: interceptor, to: destination)
- }
-
- /// Creates a `DownloadRequest` from a `URLRequestConvertible` value, a `RequestInterceptor`, and a `Destination`.
- ///
- /// - Parameters:
- /// - convertible: `URLRequestConvertible` value to be used to create the `URLRequest`.
- /// - interceptor: `RequestInterceptor` value to be used by the returned `DataRequest`. `nil` by default.
- /// - destination: `DownloadRequest.Destination` closure used to determine how and where the downloaded file
- /// should be moved. `nil` by default.
- ///
- /// - Returns: The created `DownloadRequest`.
- open func download(_ convertible: URLRequestConvertible,
- interceptor: RequestInterceptor? = nil,
- to destination: DownloadRequest.Destination? = nil) -> DownloadRequest {
- let request = DownloadRequest(downloadable: .request(convertible),
- underlyingQueue: rootQueue,
- serializationQueue: serializationQueue,
- eventMonitor: eventMonitor,
- interceptor: interceptor,
- delegate: self,
- destination: destination ?? DownloadRequest.defaultDestination)
-
- perform(request)
-
- return request
- }
-
- /// Creates a `DownloadRequest` from the `resumeData` produced from a previously cancelled `DownloadRequest`, as
- /// well as a `RequestInterceptor`, and a `Destination`.
- ///
- /// - Note: If `destination` is not specified, the download will be moved to a temporary location determined by
- /// Alamofire. The file will not be deleted until the system purges the temporary files.
- ///
- /// - Note: On some versions of all Apple platforms (iOS 10 - 10.2, macOS 10.12 - 10.12.2, tvOS 10 - 10.1, watchOS 3 - 3.1.1),
- /// `resumeData` is broken on background URL session configurations. There's an underlying bug in the `resumeData`
- /// generation logic where the data is written incorrectly and will always fail to resume the download. For more
- /// information about the bug and possible workarounds, please refer to the [this Stack Overflow post](http://stackoverflow.com/a/39347461/1342462).
- ///
- /// - Parameters:
- /// - data: The resume data from a previously cancelled `DownloadRequest` or `URLSessionDownloadTask`.
- /// - interceptor: `RequestInterceptor` value to be used by the returned `DataRequest`. `nil` by default.
- /// - destination: `DownloadRequest.Destination` closure used to determine how and where the downloaded file
- /// should be moved. `nil` by default.
- ///
- /// - Returns: The created `DownloadRequest`.
- open func download(resumingWith data: Data,
- interceptor: RequestInterceptor? = nil,
- to destination: DownloadRequest.Destination? = nil) -> DownloadRequest {
- let request = DownloadRequest(downloadable: .resumeData(data),
- underlyingQueue: rootQueue,
- serializationQueue: serializationQueue,
- eventMonitor: eventMonitor,
- interceptor: interceptor,
- delegate: self,
- destination: destination ?? DownloadRequest.defaultDestination)
-
- perform(request)
-
- return request
- }
-
- // MARK: - UploadRequest
-
- struct ParameterlessRequestConvertible: URLRequestConvertible {
- let url: URLConvertible
- let method: HTTPMethod
- let headers: HTTPHeaders?
-
- func asURLRequest() throws -> URLRequest {
- return try URLRequest(url: url, method: method, headers: headers)
- }
- }
-
- struct Upload: UploadConvertible {
- let request: URLRequestConvertible
- let uploadable: UploadableConvertible
-
- func createUploadable() throws -> UploadRequest.Uploadable {
- return try uploadable.createUploadable()
- }
-
- func asURLRequest() throws -> URLRequest {
- return try request.asURLRequest()
- }
- }
-
- // MARK: Data
-
- /// Creates an `UploadRequest` for the given `Data`, `URLRequest` components, and `RequestInterceptor`.
- ///
- /// - Parameters:
- /// - data: The `Data` to upload.
- /// - convertible: `URLConvertible` value to be used as the `URLRequest`'s `URL`.
- /// - method: `HTTPMethod` for the `URLRequest`. `.post` by default.
- /// - headers: `HTTPHeaders` value to be added to the `URLRequest`. `nil` by default.
- /// - interceptor: `RequestInterceptor` value to be used by the returned `DataRequest`. `nil` by default.
- /// - fileManager: `FileManager` instance to be used by the returned `UploadRequest`. `.default` instance by
- /// default.
- ///
- /// - Returns: The created `UploadRequest`.
- open func upload(_ data: Data,
- to convertible: URLConvertible,
- method: HTTPMethod = .post,
- headers: HTTPHeaders? = nil,
- interceptor: RequestInterceptor? = nil,
- fileManager: FileManager = .default) -> UploadRequest {
- let convertible = ParameterlessRequestConvertible(url: convertible, method: method, headers: headers)
-
- return upload(data, with: convertible, interceptor: interceptor, fileManager: fileManager)
- }
-
- /// Creates an `UploadRequest` for the given `Data` using the `URLRequestConvertible` value and `RequestInterceptor`.
- ///
- /// - Parameters:
- /// - data: The `Data` to upload.
- /// - convertible: `URLRequestConvertible` value to be used to create the `URLRequest`.
- /// - interceptor: `RequestInterceptor` value to be used by the returned `DataRequest`. `nil` by default.
- /// - fileManager: `FileManager` instance to be used by the returned `UploadRequest`. `.default` instance by
- /// default.
- ///
- /// - Returns: The created `UploadRequest`.
- open func upload(_ data: Data,
- with convertible: URLRequestConvertible,
- interceptor: RequestInterceptor? = nil,
- fileManager: FileManager = .default) -> UploadRequest {
- return upload(.data(data), with: convertible, interceptor: interceptor, fileManager: fileManager)
- }
-
- // MARK: File
-
- /// Creates an `UploadRequest` for the file at the given file `URL`, using a `URLRequest` from the provided
- /// components and `RequestInterceptor`.
- ///
- /// - Parameters:
- /// - fileURL: The `URL` of the file to upload.
- /// - convertible: `URLConvertible` value to be used as the `URLRequest`'s `URL`.
- /// - method: `HTTPMethod` for the `URLRequest`. `.post` by default.
- /// - headers: `HTTPHeaders` value to be added to the `URLRequest`. `nil` by default.
- /// - interceptor: `RequestInterceptor` value to be used by the returned `UploadRequest`. `nil` by default.
- /// - fileManager: `FileManager` instance to be used by the returned `UploadRequest`. `.default` instance by
- /// default.
- ///
- /// - Returns: The created `UploadRequest`.
- open func upload(_ fileURL: URL,
- to convertible: URLConvertible,
- method: HTTPMethod = .post,
- headers: HTTPHeaders? = nil,
- interceptor: RequestInterceptor? = nil,
- fileManager: FileManager = .default) -> UploadRequest {
- let convertible = ParameterlessRequestConvertible(url: convertible, method: method, headers: headers)
-
- return upload(fileURL, with: convertible, interceptor: interceptor, fileManager: fileManager)
- }
-
- /// Creates an `UploadRequest` for the file at the given file `URL` using the `URLRequestConvertible` value and
- /// `RequestInterceptor`.
- ///
- /// - Parameters:
- /// - fileURL: The `URL` of the file to upload.
- /// - convertible: `URLRequestConvertible` value to be used to create the `URLRequest`.
- /// - interceptor: `RequestInterceptor` value to be used by the returned `DataRequest`. `nil` by default.
- /// - fileManager: `FileManager` instance to be used by the returned `UploadRequest`. `.default` instance by
- /// default.
- ///
- /// - Returns: The created `UploadRequest`.
- open func upload(_ fileURL: URL,
- with convertible: URLRequestConvertible,
- interceptor: RequestInterceptor? = nil,
- fileManager: FileManager = .default) -> UploadRequest {
- return upload(.file(fileURL, shouldRemove: false), with: convertible, interceptor: interceptor, fileManager: fileManager)
- }
-
- // MARK: InputStream
-
- /// Creates an `UploadRequest` from the `InputStream` provided using a `URLRequest` from the provided components and
- /// `RequestInterceptor`.
- ///
- /// - Parameters:
- /// - stream: The `InputStream` that provides the data to upload.
- /// - convertible: `URLConvertible` value to be used as the `URLRequest`'s `URL`.
- /// - method: `HTTPMethod` for the `URLRequest`. `.post` by default.
- /// - headers: `HTTPHeaders` value to be added to the `URLRequest`. `nil` by default.
- /// - interceptor: `RequestInterceptor` value to be used by the returned `DataRequest`. `nil` by default.
- /// - fileManager: `FileManager` instance to be used by the returned `UploadRequest`. `.default` instance by
- /// default.
- ///
- /// - Returns: The created `UploadRequest`.
- open func upload(_ stream: InputStream,
- to convertible: URLConvertible,
- method: HTTPMethod = .post,
- headers: HTTPHeaders? = nil,
- interceptor: RequestInterceptor? = nil,
- fileManager: FileManager = .default) -> UploadRequest {
- let convertible = ParameterlessRequestConvertible(url: convertible, method: method, headers: headers)
-
- return upload(stream, with: convertible, interceptor: interceptor, fileManager: fileManager)
- }
-
- /// Creates an `UploadRequest` from the provided `InputStream` using the `URLRequestConvertible` value and
- /// `RequestInterceptor`.
- ///
- /// - Parameters:
- /// - stream: The `InputStream` that provides the data to upload.
- /// - convertible: `URLRequestConvertible` value to be used to create the `URLRequest`.
- /// - interceptor: `RequestInterceptor` value to be used by the returned `DataRequest`. `nil` by default.
- /// - fileManager: `FileManager` instance to be used by the returned `UploadRequest`. `.default` instance by
- /// default.
- ///
- /// - Returns: The created `UploadRequest`.
- open func upload(_ stream: InputStream,
- with convertible: URLRequestConvertible,
- interceptor: RequestInterceptor? = nil,
- fileManager: FileManager = .default) -> UploadRequest {
- return upload(.stream(stream), with: convertible, interceptor: interceptor, fileManager: fileManager)
- }
-
- // MARK: MultipartFormData
-
- /// Creates an `UploadRequest` for the multipart form data built using a closure and sent using the provided
- /// `URLRequest` components and `RequestInterceptor`.
- ///
- /// It is important to understand the memory implications of uploading `MultipartFormData`. If the cumulative
- /// payload is small, encoding the data in-memory and directly uploading to a server is the by far the most
- /// efficient approach. However, if the payload is too large, encoding the data in-memory could cause your app to
- /// be terminated. Larger payloads must first be written to disk using input and output streams to keep the memory
- /// footprint low, then the data can be uploaded as a stream from the resulting file. Streaming from disk MUST be
- /// used for larger payloads such as video content.
- ///
- /// The `encodingMemoryThreshold` parameter allows Alamofire to automatically determine whether to encode in-memory
- /// or stream from disk. If the content length of the `MultipartFormData` is below the `encodingMemoryThreshold`,
- /// encoding takes place in-memory. If the content length exceeds the threshold, the data is streamed to disk
- /// during the encoding process. Then the result is uploaded as data or as a stream depending on which encoding
- /// technique was used.
- ///
- /// - Parameters:
- /// - multipartFormData: `MultipartFormData` building closure.
- /// - convertible: `URLConvertible` value to be used as the `URLRequest`'s `URL`.
- /// - encodingMemoryThreshold: Byte threshold used to determine whether the form data is encoded into memory or
- /// onto disk before being uploaded. `MultipartFormData.encodingMemoryThreshold` by
- /// default.
- /// - method: `HTTPMethod` for the `URLRequest`. `.post` by default.
- /// - headers: `HTTPHeaders` value to be added to the `URLRequest`. `nil` by default.
- /// - interceptor: `RequestInterceptor` value to be used by the returned `DataRequest`. `nil` by default.
- /// - fileManager: `FileManager` to be used if the form data exceeds the memory threshold and is
- /// written to disk before being uploaded. `.default` instance by default.
- ///
- /// - Returns: The created `UploadRequest`.
- open func upload(multipartFormData: @escaping (MultipartFormData) -> Void,
- to url: URLConvertible,
- usingThreshold encodingMemoryThreshold: UInt64 = MultipartFormData.encodingMemoryThreshold,
- method: HTTPMethod = .post,
- headers: HTTPHeaders? = nil,
- interceptor: RequestInterceptor? = nil,
- fileManager: FileManager = .default) -> UploadRequest {
- let convertible = ParameterlessRequestConvertible(url: url, method: method, headers: headers)
-
- let formData = MultipartFormData(fileManager: fileManager)
- multipartFormData(formData)
-
- return upload(multipartFormData: formData,
- with: convertible,
- usingThreshold: encodingMemoryThreshold,
- interceptor: interceptor,
- fileManager: fileManager)
- }
-
- /// Creates an `UploadRequest` using a `MultipartFormData` building closure, the provided `URLRequestConvertible`
- /// value, and a `RequestInterceptor`.
- ///
- /// It is important to understand the memory implications of uploading `MultipartFormData`. If the cumulative
- /// payload is small, encoding the data in-memory and directly uploading to a server is the by far the most
- /// efficient approach. However, if the payload is too large, encoding the data in-memory could cause your app to
- /// be terminated. Larger payloads must first be written to disk using input and output streams to keep the memory
- /// footprint low, then the data can be uploaded as a stream from the resulting file. Streaming from disk MUST be
- /// used for larger payloads such as video content.
- ///
- /// The `encodingMemoryThreshold` parameter allows Alamofire to automatically determine whether to encode in-memory
- /// or stream from disk. If the content length of the `MultipartFormData` is below the `encodingMemoryThreshold`,
- /// encoding takes place in-memory. If the content length exceeds the threshold, the data is streamed to disk
- /// during the encoding process. Then the result is uploaded as data or as a stream depending on which encoding
- /// technique was used.
- ///
- /// - Parameters:
- /// - multipartFormData: `MultipartFormData` building closure.
- /// - request: `URLRequestConvertible` value to be used to create the `URLRequest`.
- /// - encodingMemoryThreshold: Byte threshold used to determine whether the form data is encoded into memory or
- /// onto disk before being uploaded. `MultipartFormData.encodingMemoryThreshold` by
- /// default.
- /// - interceptor: `RequestInterceptor` value to be used by the returned `DataRequest`. `nil` by default.
- /// - fileManager: `FileManager` to be used if the form data exceeds the memory threshold and is
- /// written to disk before being uploaded. `.default` instance by default.
- ///
- /// - Returns: The created `UploadRequest`.
- open func upload(multipartFormData: @escaping (MultipartFormData) -> Void,
- with request: URLRequestConvertible,
- usingThreshold encodingMemoryThreshold: UInt64 = MultipartFormData.encodingMemoryThreshold,
- interceptor: RequestInterceptor? = nil,
- fileManager: FileManager = .default) -> UploadRequest {
- let formData = MultipartFormData(fileManager: fileManager)
- multipartFormData(formData)
-
- return upload(multipartFormData: formData,
- with: request,
- usingThreshold: encodingMemoryThreshold,
- interceptor: interceptor,
- fileManager: fileManager)
- }
-
- /// Creates an `UploadRequest` for the prebuilt `MultipartFormData` value using the provided `URLRequest` components
- /// and `RequestInterceptor`.
- ///
- /// It is important to understand the memory implications of uploading `MultipartFormData`. If the cumulative
- /// payload is small, encoding the data in-memory and directly uploading to a server is the by far the most
- /// efficient approach. However, if the payload is too large, encoding the data in-memory could cause your app to
- /// be terminated. Larger payloads must first be written to disk using input and output streams to keep the memory
- /// footprint low, then the data can be uploaded as a stream from the resulting file. Streaming from disk MUST be
- /// used for larger payloads such as video content.
- ///
- /// The `encodingMemoryThreshold` parameter allows Alamofire to automatically determine whether to encode in-memory
- /// or stream from disk. If the content length of the `MultipartFormData` is below the `encodingMemoryThreshold`,
- /// encoding takes place in-memory. If the content length exceeds the threshold, the data is streamed to disk
- /// during the encoding process. Then the result is uploaded as data or as a stream depending on which encoding
- /// technique was used.
- ///
- /// - Parameters:
- /// - multipartFormData: `MultipartFormData` instance to upload.
- /// - url: `URLConvertible` value to be used as the `URLRequest`'s `URL`.
- /// - encodingMemoryThreshold: Byte threshold used to determine whether the form data is encoded into memory or
- /// onto disk before being uploaded. `MultipartFormData.encodingMemoryThreshold` by
- /// default.
- /// - method: `HTTPMethod` for the `URLRequest`. `.post` by default.
- /// - headers: `HTTPHeaders` value to be added to the `URLRequest`. `nil` by default.
- /// - interceptor: `RequestInterceptor` value to be used by the returned `DataRequest`. `nil` by default.
- /// - fileManager: `FileManager` to be used if the form data exceeds the memory threshold and is
- /// written to disk before being uploaded. `.default` instance by default.
- ///
- /// - Returns: The created `UploadRequest`.
- open func upload(multipartFormData: MultipartFormData,
- to url: URLConvertible,
- usingThreshold encodingMemoryThreshold: UInt64 = MultipartFormData.encodingMemoryThreshold,
- method: HTTPMethod = .post,
- headers: HTTPHeaders? = nil,
- interceptor: RequestInterceptor? = nil,
- fileManager: FileManager = .default) -> UploadRequest {
- let convertible = ParameterlessRequestConvertible(url: url, method: method, headers: headers)
-
- let multipartUpload = MultipartUpload(isInBackgroundSession: session.configuration.identifier != nil,
- encodingMemoryThreshold: encodingMemoryThreshold,
- request: convertible,
- multipartFormData: multipartFormData)
-
- return upload(multipartUpload, interceptor: interceptor, fileManager: fileManager)
- }
-
- /// Creates an `UploadRequest` for the prebuilt `MultipartFormData` value using the providing `URLRequestConvertible`
- /// value and `RequestInterceptor`.
- ///
- /// It is important to understand the memory implications of uploading `MultipartFormData`. If the cumulative
- /// payload is small, encoding the data in-memory and directly uploading to a server is the by far the most
- /// efficient approach. However, if the payload is too large, encoding the data in-memory could cause your app to
- /// be terminated. Larger payloads must first be written to disk using input and output streams to keep the memory
- /// footprint low, then the data can be uploaded as a stream from the resulting file. Streaming from disk MUST be
- /// used for larger payloads such as video content.
- ///
- /// The `encodingMemoryThreshold` parameter allows Alamofire to automatically determine whether to encode in-memory
- /// or stream from disk. If the content length of the `MultipartFormData` is below the `encodingMemoryThreshold`,
- /// encoding takes place in-memory. If the content length exceeds the threshold, the data is streamed to disk
- /// during the encoding process. Then the result is uploaded as data or as a stream depending on which encoding
- /// technique was used.
- ///
- /// - Parameters:
- /// - multipartFormData: `MultipartFormData` instance to upload.
- /// - request: `URLRequestConvertible` value to be used to create the `URLRequest`.
- /// - encodingMemoryThreshold: Byte threshold used to determine whether the form data is encoded into memory or
- /// onto disk before being uploaded. `MultipartFormData.encodingMemoryThreshold` by
- /// default.
- /// - interceptor: `RequestInterceptor` value to be used by the returned `DataRequest`. `nil` by default.
- /// - fileManager: `FileManager` instance to be used by the returned `UploadRequest`. `.default` instance by
- /// default.
- ///
- /// - Returns: The created `UploadRequest`.
- open func upload(multipartFormData: MultipartFormData,
- with request: URLRequestConvertible,
- usingThreshold encodingMemoryThreshold: UInt64 = MultipartFormData.encodingMemoryThreshold,
- interceptor: RequestInterceptor? = nil,
- fileManager: FileManager = .default) -> UploadRequest {
- let multipartUpload = MultipartUpload(isInBackgroundSession: session.configuration.identifier != nil,
- encodingMemoryThreshold: encodingMemoryThreshold,
- request: request,
- multipartFormData: multipartFormData)
-
- return upload(multipartUpload, interceptor: interceptor, fileManager: fileManager)
- }
-
- // MARK: - Internal API
-
- // MARK: Uploadable
-
- func upload(_ uploadable: UploadRequest.Uploadable,
- with convertible: URLRequestConvertible,
- interceptor: RequestInterceptor?,
- fileManager: FileManager) -> UploadRequest {
- let uploadable = Upload(request: convertible, uploadable: uploadable)
-
- return upload(uploadable, interceptor: interceptor, fileManager: fileManager)
- }
-
- func upload(_ upload: UploadConvertible, interceptor: RequestInterceptor?, fileManager: FileManager) -> UploadRequest {
- let request = UploadRequest(convertible: upload,
- underlyingQueue: rootQueue,
- serializationQueue: serializationQueue,
- eventMonitor: eventMonitor,
- interceptor: interceptor,
- fileManager: fileManager,
- delegate: self)
-
- perform(request)
-
- return request
- }
-
- // MARK: Perform
-
- /// Perform `Request`.
- ///
- /// - Note: Called during retry.
- ///
- /// - Parameter request: The `Request` to perform.
- func perform(_ request: Request) {
- switch request {
- case let r as DataRequest: perform(r)
- case let r as UploadRequest: perform(r)
- case let r as DownloadRequest: perform(r)
- default: fatalError("Attempted to perform unsupported Request subclass: \(type(of: request))")
- }
- }
-
- func perform(_ request: DataRequest) {
- requestQueue.async {
- guard !request.isCancelled else { return }
-
- self.activeRequests.insert(request)
-
- self.performSetupOperations(for: request, convertible: request.convertible)
- }
- }
-
- func perform(_ request: UploadRequest) {
- requestQueue.async {
- guard !request.isCancelled else { return }
-
- self.activeRequests.insert(request)
-
- do {
- let uploadable = try request.upload.createUploadable()
- self.rootQueue.async { request.didCreateUploadable(uploadable) }
-
- self.performSetupOperations(for: request, convertible: request.convertible)
- } catch {
- self.rootQueue.async { request.didFailToCreateUploadable(with: error.asAFError(or: .createUploadableFailed(error: error))) }
- }
- }
- }
-
- func perform(_ request: DownloadRequest) {
- requestQueue.async {
- guard !request.isCancelled else { return }
-
- self.activeRequests.insert(request)
-
- switch request.downloadable {
- case let .request(convertible):
- self.performSetupOperations(for: request, convertible: convertible)
- case let .resumeData(resumeData):
- self.rootQueue.async { self.didReceiveResumeData(resumeData, for: request) }
- }
- }
- }
-
- func performSetupOperations(for request: Request, convertible: URLRequestConvertible) {
- let initialRequest: URLRequest
-
- do {
- initialRequest = try convertible.asURLRequest()
- try initialRequest.validate()
- } catch {
- rootQueue.async { request.didFailToCreateURLRequest(with: error.asAFError(or: .createURLRequestFailed(error: error))) }
- return
- }
-
- rootQueue.async { request.didCreateInitialURLRequest(initialRequest) }
-
- guard !request.isCancelled else { return }
-
- guard let adapter = adapter(for: request) else {
- rootQueue.async { self.didCreateURLRequest(initialRequest, for: request) }
- return
- }
-
- adapter.adapt(initialRequest, for: self) { result in
- do {
- let adaptedRequest = try result.get()
- try adaptedRequest.validate()
-
- self.rootQueue.async {
- request.didAdaptInitialRequest(initialRequest, to: adaptedRequest)
- self.didCreateURLRequest(adaptedRequest, for: request)
- }
- } catch {
- self.rootQueue.async { request.didFailToAdaptURLRequest(initialRequest, withError: .requestAdaptationFailed(error: error)) }
- }
- }
- }
-
- // MARK: - Task Handling
-
- func didCreateURLRequest(_ urlRequest: URLRequest, for request: Request) {
- request.didCreateURLRequest(urlRequest)
-
- guard !request.isCancelled else { return }
-
- let task = request.task(for: urlRequest, using: session)
- requestTaskMap[request] = task
- request.didCreateTask(task)
-
- updateStatesForTask(task, request: request)
- }
-
- func didReceiveResumeData(_ data: Data, for request: DownloadRequest) {
- guard !request.isCancelled else { return }
-
- let task = request.task(forResumeData: data, using: session)
- requestTaskMap[request] = task
- request.didCreateTask(task)
-
- updateStatesForTask(task, request: request)
- }
-
- func updateStatesForTask(_ task: URLSessionTask, request: Request) {
- request.withState { state in
- switch state {
- case .initialized, .finished:
- // Do nothing.
- break
- case .resumed:
- task.resume()
- rootQueue.async { request.didResumeTask(task) }
- case .suspended:
- task.suspend()
- rootQueue.async { request.didSuspendTask(task) }
- case .cancelled:
- // Resume to ensure metrics are gathered.
- task.resume()
- task.cancel()
- rootQueue.async { request.didCancelTask(task) }
- }
- }
- }
-
- // MARK: - Adapters and Retriers
-
- func adapter(for request: Request) -> RequestAdapter? {
- if let requestInterceptor = request.interceptor, let sessionInterceptor = interceptor {
- return Interceptor(adapters: [requestInterceptor, sessionInterceptor])
- } else {
- return request.interceptor ?? interceptor
- }
- }
-
- func retrier(for request: Request) -> RequestRetrier? {
- if let requestInterceptor = request.interceptor, let sessionInterceptor = interceptor {
- return Interceptor(retriers: [requestInterceptor, sessionInterceptor])
- } else {
- return request.interceptor ?? interceptor
- }
- }
-
- // MARK: - Invalidation
-
- func finishRequestsForDeinit() {
- requestTaskMap.requests.forEach { $0.finish(error: AFError.sessionDeinitialized) }
- }
- }
-
- // MARK: - RequestDelegate
-
- extension Session: RequestDelegate {
- public var sessionConfiguration: URLSessionConfiguration {
- return session.configuration
- }
-
- public var startImmediately: Bool { return startRequestsImmediately }
-
- public func cleanup(after request: Request) {
- activeRequests.remove(request)
- }
-
- public func retryResult(for request: Request, dueTo error: AFError, completion: @escaping (RetryResult) -> Void) {
- guard let retrier = retrier(for: request) else {
- rootQueue.async { completion(.doNotRetry) }
- return
- }
-
- retrier.retry(request, for: self, dueTo: error) { retryResult in
- self.rootQueue.async {
- guard let retryResultError = retryResult.error else { completion(retryResult); return }
-
- let retryError = AFError.requestRetryFailed(retryError: retryResultError, originalError: error)
- completion(.doNotRetryWithError(retryError))
- }
- }
- }
-
- public func retryRequest(_ request: Request, withDelay timeDelay: TimeInterval?) {
- rootQueue.async {
- let retry: () -> Void = {
- guard !request.isCancelled else { return }
-
- request.prepareForRetry()
- self.perform(request)
- }
-
- if let retryDelay = timeDelay {
- self.rootQueue.after(retryDelay) { retry() }
- } else {
- retry()
- }
- }
- }
- }
-
- // MARK: - SessionStateProvider
-
- extension Session: SessionStateProvider {
- func request(for task: URLSessionTask) -> Request? {
- return requestTaskMap[task]
- }
-
- func didGatherMetricsForTask(_ task: URLSessionTask) {
- requestTaskMap.disassociateIfNecessaryAfterGatheringMetricsForTask(task)
- }
-
- func didCompleteTask(_ task: URLSessionTask) {
- requestTaskMap.disassociateIfNecessaryAfterCompletingTask(task)
- }
-
- func credential(for task: URLSessionTask, in protectionSpace: URLProtectionSpace) -> URLCredential? {
- return requestTaskMap[task]?.credential ??
- session.configuration.urlCredentialStorage?.defaultCredential(for: protectionSpace)
- }
-
- func cancelRequestsForSessionInvalidation(with error: Error?) {
- requestTaskMap.requests.forEach { $0.finish(error: AFError.sessionInvalidated(error: error)) }
- }
- }
|