123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461 |
- //
- // Request.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
-
- /// `Request` is the common superclass of all Alamofire request types and provides common state, delegate, and callback
- /// handling.
- public class Request {
- /// State of the `Request`, with managed transitions between states set when calling `resume()`, `suspend()`, or
- /// `cancel()` on the `Request`.
- public enum State {
- /// Initial state of the `Request`.
- case initialized
- /// `State` set when `resume()` is called. Any tasks created for the `Request` will have `resume()` called on
- /// them in this state.
- case resumed
- /// `State` set when `suspend()` is called. Any tasks created for the `Request` will have `suspend()` called on
- /// them in this state.
- case suspended
- /// `State` set when `cancel()` is called. Any tasks created for the `Request` will have `cancel()` called on
- /// them. Unlike `resumed` or `suspended`, once in the `cancelled` state, the `Request` can no longer transition
- /// to any other state.
- case cancelled
- /// `State` set when all response serialization completion closures have been cleared on the `Request` and
- /// enqueued on their respective queues.
- case finished
-
- /// Determines whether `self` can be transitioned to the provided `State`.
- func canTransitionTo(_ state: State) -> Bool {
- switch (self, state) {
- case (.initialized, _):
- return true
- case (_, .initialized), (.cancelled, _), (.finished, _):
- return false
- case (.resumed, .cancelled), (.suspended, .cancelled), (.resumed, .suspended), (.suspended, .resumed):
- return true
- case (.suspended, .suspended), (.resumed, .resumed):
- return false
- case (_, .finished):
- return true
- }
- }
- }
-
- // MARK: - Initial State
-
- /// `UUID` providing a unique identifier for the `Request`, used in the `Hashable` and `Equatable` conformances.
- public let id: UUID
- /// The serial queue for all internal async actions.
- public let underlyingQueue: DispatchQueue
- /// The queue used for all serialization actions. By default it's a serial queue that targets `underlyingQueue`.
- public let serializationQueue: DispatchQueue
- /// `EventMonitor` used for event callbacks.
- public let eventMonitor: EventMonitor?
- /// The `Request`'s interceptor.
- public let interceptor: RequestInterceptor?
- /// The `Request`'s delegate.
- public private(set) weak var delegate: RequestDelegate?
-
- // MARK: - Mutable State
-
- /// Type encapsulating all mutable state that may need to be accessed from anything other than the `underlyingQueue`.
- struct MutableState {
- /// State of the `Request`.
- var state: State = .initialized
- /// `ProgressHandler` and `DispatchQueue` provided for upload progress callbacks.
- var uploadProgressHandler: (handler: ProgressHandler, queue: DispatchQueue)?
- /// `ProgressHandler` and `DispatchQueue` provided for download progress callbacks.
- var downloadProgressHandler: (handler: ProgressHandler, queue: DispatchQueue)?
- /// `RedirectHandler` provided for to handle request redirection.
- var redirectHandler: RedirectHandler?
- /// `CachedResponseHandler` provided to handle response caching.
- var cachedResponseHandler: CachedResponseHandler?
- /// Closure called when the `Request` is able to create a cURL description of itself.
- var cURLHandler: ((String) -> Void)?
- /// Response serialization closures that handle response parsing.
- var responseSerializers: [() -> Void] = []
- /// Response serialization completion closures executed once all response serializers are complete.
- var responseSerializerCompletions: [() -> Void] = []
- /// Whether response serializer processing is finished.
- var responseSerializerProcessingFinished = false
- /// `URLCredential` used for authentication challenges.
- var credential: URLCredential?
- /// All `URLRequest`s created by Alamofire on behalf of the `Request`.
- var requests: [URLRequest] = []
- /// All `URLSessionTask`s created by Alamofire on behalf of the `Request`.
- var tasks: [URLSessionTask] = []
- /// All `URLSessionTaskMetrics` values gathered by Alamofire on behalf of the `Request`. Should correspond
- /// exactly the the `tasks` created.
- var metrics: [URLSessionTaskMetrics] = []
- /// Number of times any retriers provided retried the `Request`.
- var retryCount = 0
- /// Final `AFError` for the `Request`, whether from various internal Alamofire calls or as a result of a `task`.
- var error: AFError?
- }
-
- /// Protected `MutableState` value that provides thread-safe access to state values.
- fileprivate let protectedMutableState: Protector<MutableState> = Protector(MutableState())
-
- /// `State` of the `Request`.
- public var state: State { return protectedMutableState.directValue.state }
- /// Returns whether `state` is `.initialized`.
- public var isInitialized: Bool { return state == .initialized }
- /// Returns whether `state is `.resumed`.
- public var isResumed: Bool { return state == .resumed }
- /// Returns whether `state` is `.suspended`.
- public var isSuspended: Bool { return state == .suspended }
- /// Returns whether `state` is `.cancelled`.
- public var isCancelled: Bool { return state == .cancelled }
- /// Returns whether `state` is `.finished`.
- public var isFinished: Bool { return state == .finished }
-
- // MARK: Progress
-
- /// Closure type executed when monitoring the upload or download progress of a request.
- public typealias ProgressHandler = (Progress) -> Void
-
- /// `Progress` of the upload of the body of the executed `URLRequest`. Reset to `0` if the `Request` is retried.
- public let uploadProgress = Progress(totalUnitCount: 0)
- /// `Progress` of the download of any response data. Reset to `0` if the `Request` is retried.
- public let downloadProgress = Progress(totalUnitCount: 0)
- /// `ProgressHandler` called when `uploadProgress` is updated, on the provided `DispatchQueue`.
- fileprivate var uploadProgressHandler: (handler: ProgressHandler, queue: DispatchQueue)? {
- get { return protectedMutableState.directValue.uploadProgressHandler }
- set { protectedMutableState.write { $0.uploadProgressHandler = newValue } }
- }
-
- /// `ProgressHandler` called when `downloadProgress` is updated, on the provided `DispatchQueue`.
- fileprivate var downloadProgressHandler: (handler: ProgressHandler, queue: DispatchQueue)? {
- get { return protectedMutableState.directValue.downloadProgressHandler }
- set { protectedMutableState.write { $0.downloadProgressHandler = newValue } }
- }
-
- // MARK: Redirect Handling
-
- /// `RedirectHandler` set on the instance.
- public private(set) var redirectHandler: RedirectHandler? {
- get { return protectedMutableState.directValue.redirectHandler }
- set { protectedMutableState.write { $0.redirectHandler = newValue } }
- }
-
- // MARK: Cached Response Handling
-
- /// `CachedResponseHandler` set on the instance.
- public private(set) var cachedResponseHandler: CachedResponseHandler? {
- get { return protectedMutableState.directValue.cachedResponseHandler }
- set { protectedMutableState.write { $0.cachedResponseHandler = newValue } }
- }
-
- // MARK: URLCredential
-
- /// `URLCredential` used for authentication challenges. Created by calling one of the `authenticate` methods.
- public private(set) var credential: URLCredential? {
- get { return protectedMutableState.directValue.credential }
- set { protectedMutableState.write { $0.credential = newValue } }
- }
-
- // MARK: Validators
-
- /// `Validator` callback closures that store the validation calls enqueued.
- fileprivate var protectedValidators: Protector<[() -> Void]> = Protector([])
-
- // MARK: URLRequests
-
- /// All `URLRequests` created on behalf of the `Request`, including original and adapted requests.
- public var requests: [URLRequest] { return protectedMutableState.directValue.requests }
- /// First `URLRequest` created on behalf of the `Request`. May not be the first one actually executed.
- public var firstRequest: URLRequest? { return requests.first }
- /// Last `URLRequest` created on behalf of the `Request`.
- public var lastRequest: URLRequest? { return requests.last }
- /// Current `URLRequest` created on behalf of the `Request`.
- public var request: URLRequest? { return lastRequest }
-
- /// `URLRequest`s from all of the `URLSessionTask`s executed on behalf of the `Request`. May be different from
- /// `requests` due to `URLSession` manipulation.
- public var performedRequests: [URLRequest] {
- return protectedMutableState.read { $0.tasks.compactMap { $0.currentRequest } }
- }
-
- // MARK: HTTPURLResponse
-
- /// `HTTPURLResponse` received from the server, if any. If the `Request` was retried, this is the response of the
- /// last `URLSessionTask`.
- public var response: HTTPURLResponse? { return lastTask?.response as? HTTPURLResponse }
-
- // MARK: Tasks
-
- /// All `URLSessionTask`s created on behalf of the `Request`.
- public var tasks: [URLSessionTask] { return protectedMutableState.directValue.tasks }
- /// First `URLSessionTask` created on behalf of the `Request`.
- public var firstTask: URLSessionTask? { return tasks.first }
- /// Last `URLSessionTask` crated on behalf of the `Request`.
- public var lastTask: URLSessionTask? { return tasks.last }
- /// Current `URLSessionTask` created on behalf of the `Request`.
- public var task: URLSessionTask? { return lastTask }
-
- // MARK: Metrics
-
- /// All `URLSessionTaskMetrics` gathered on behalf of the `Request`. Should correspond to the `tasks` created.
- public var allMetrics: [URLSessionTaskMetrics] { return protectedMutableState.directValue.metrics }
- /// First `URLSessionTaskMetrics` gathered on behalf of the `Request`.
- public var firstMetrics: URLSessionTaskMetrics? { return allMetrics.first }
- /// Last `URLSessionTaskMetrics` gathered on behalf of the `Request`.
- public var lastMetrics: URLSessionTaskMetrics? { return allMetrics.last }
- /// Current `URLSessionTaskMetrics` gathered on behalf of the `Request`.
- public var metrics: URLSessionTaskMetrics? { return lastMetrics }
-
- // MARK: Retry Count
-
- /// Number of times the `Request` has been retried.
- public var retryCount: Int { return protectedMutableState.directValue.retryCount }
-
- // MARK: Error
-
- /// `Error` returned from Alamofire internally, from the network request directly, or any validators executed.
- public fileprivate(set) var error: AFError? {
- get { return protectedMutableState.directValue.error }
- set { protectedMutableState.write { $0.error = newValue } }
- }
-
- /// Default initializer for the `Request` superclass.
- ///
- /// - Parameters:
- /// - id: `UUID` used for the `Hashable` and `Equatable` implementations. `UUID()` by default.
- /// - underlyingQueue: `DispatchQueue` on which all internal `Request` work is performed.
- /// - serializationQueue: `DispatchQueue` on which all serialization work is performed. By default targets
- /// `underlyingQueue`, but can be passed another queue from a `Session`.
- /// - eventMonitor: `EventMonitor` called for event callbacks from internal `Request` actions.
- /// - interceptor: `RequestInterceptor` used throughout the request lifecycle.
- /// - delegate: `RequestDelegate` that provides an interface to actions not performed by the `Request`.
- init(id: UUID = UUID(),
- underlyingQueue: DispatchQueue,
- serializationQueue: DispatchQueue,
- eventMonitor: EventMonitor?,
- interceptor: RequestInterceptor?,
- delegate: RequestDelegate) {
- self.id = id
- self.underlyingQueue = underlyingQueue
- self.serializationQueue = serializationQueue
- self.eventMonitor = eventMonitor
- self.interceptor = interceptor
- self.delegate = delegate
- }
-
- // MARK: - Internal Event API
-
- // All API must be called from underlyingQueue.
-
- /// Called when an initial `URLRequest` has been created on behalf of the instance. If a `RequestAdapter` is active,
- /// the `URLRequest` will be adapted before being issued.
- ///
- /// - Parameter request: The `URLRequest` created.
- func didCreateInitialURLRequest(_ request: URLRequest) {
- protectedMutableState.write { $0.requests.append(request) }
-
- eventMonitor?.request(self, didCreateInitialURLRequest: request)
- }
-
- /// Called when initial `URLRequest` creation has failed, typically through a `URLRequestConvertible`.
- ///
- /// - Note: Triggers retry.
- ///
- /// - Parameter error: `AFError` thrown from the failed creation.
- func didFailToCreateURLRequest(with error: AFError) {
- self.error = error
-
- eventMonitor?.request(self, didFailToCreateURLRequestWithError: error)
-
- callCURLHandlerIfNecessary()
-
- retryOrFinish(error: error)
- }
-
- /// Called when a `RequestAdapter` has successfully adapted a `URLRequest`.
- ///
- /// - Parameters:
- /// - initialRequest: The `URLRequest` that was adapted.
- /// - adaptedRequest: The `URLRequest` returned by the `RequestAdapter`.
- func didAdaptInitialRequest(_ initialRequest: URLRequest, to adaptedRequest: URLRequest) {
- protectedMutableState.write { $0.requests.append(adaptedRequest) }
-
- eventMonitor?.request(self, didAdaptInitialRequest: initialRequest, to: adaptedRequest)
- }
-
- /// Called when a `RequestAdapter` fails to adapt a `URLRequest`.
- ///
- /// - Note: Triggers retry.
- ///
- /// - Parameters:
- /// - request: The `URLRequest` the adapter was called with.
- /// - error: The `AFError` returned by the `RequestAdapter`.
- func didFailToAdaptURLRequest(_ request: URLRequest, withError error: AFError) {
- self.error = error
-
- eventMonitor?.request(self, didFailToAdaptURLRequest: request, withError: error)
-
- callCURLHandlerIfNecessary()
-
- retryOrFinish(error: error)
- }
-
- /// Final `URLRequest` has been created for the instance.
- ///
- /// - Parameter request: The `URLRequest` created.
- func didCreateURLRequest(_ request: URLRequest) {
- eventMonitor?.request(self, didCreateURLRequest: request)
-
- callCURLHandlerIfNecessary()
- }
-
- /// Asynchronously calls any stored `cURLHandler` and then removes it from `mutableState`.
- private func callCURLHandlerIfNecessary() {
- protectedMutableState.write { mutableState in
- guard let cURLHandler = mutableState.cURLHandler else { return }
-
- self.underlyingQueue.async { cURLHandler(self.cURLDescription()) }
- mutableState.cURLHandler = nil
- }
- }
-
- /// Called when a `URLSessionTask` is created on behalf of the instance.
- ///
- /// - Parameter task: The `URLSessionTask` created.
- func didCreateTask(_ task: URLSessionTask) {
- protectedMutableState.write { $0.tasks.append(task) }
-
- eventMonitor?.request(self, didCreateTask: task)
- }
-
- /// Called when resumption is completed.
- func didResume() {
- eventMonitor?.requestDidResume(self)
- }
-
- /// Called when a `URLSessionTask` is resumed on behalf of the instance.
- ///
- /// - Parameter task: The `URLSessionTask` resumed.
- func didResumeTask(_ task: URLSessionTask) {
- eventMonitor?.request(self, didResumeTask: task)
- }
-
- /// Called when suspension is completed.
- func didSuspend() {
- eventMonitor?.requestDidSuspend(self)
- }
-
- /// Called when a `URLSessionTask` is suspended on behalf of the instance.
- ///
- /// - Parameter task: The `URLSessionTask` suspended.
- func didSuspendTask(_ task: URLSessionTask) {
- eventMonitor?.request(self, didSuspendTask: task)
- }
-
- /// Called when cancellation is completed, sets `error` to `AFError.explicitlyCancelled`.
- func didCancel() {
- error = AFError.explicitlyCancelled
-
- eventMonitor?.requestDidCancel(self)
- }
-
- /// Called when a `URLSessionTask` is cancelled on behalf of the instance.
- ///
- /// - Parameter task: The `URLSessionTask` cancelled.
- func didCancelTask(_ task: URLSessionTask) {
- eventMonitor?.request(self, didCancelTask: task)
- }
-
- /// Called when a `URLSessionTaskMetrics` value is gathered on behalf of the instance.
- ///
- /// - Parameter metrics: The `URLSessionTaskMetrics` gathered.
- func didGatherMetrics(_ metrics: URLSessionTaskMetrics) {
- protectedMutableState.write { $0.metrics.append(metrics) }
-
- eventMonitor?.request(self, didGatherMetrics: metrics)
- }
-
- /// Called when a `URLSessionTask` fails before it is finished, typically during certificate pinning.
- ///
- /// - Parameters:
- /// - task: The `URLSessionTask` which failed.
- /// - error: The early failure `AFError`.
- func didFailTask(_ task: URLSessionTask, earlyWithError error: AFError) {
- self.error = error
-
- // Task will still complete, so didCompleteTask(_:with:) will handle retry.
- eventMonitor?.request(self, didFailTask: task, earlyWithError: error)
- }
-
- /// Called when a `URLSessionTask` completes. All tasks will eventually call this method.
- ///
- /// - Note: Response validation is synchronously triggered in this step.
- ///
- /// - Parameters:
- /// - task: The `URLSessionTask` which completed.
- /// - error: The `AFError` `task` may have completed with. If `error` has already been set on the instance, this
- /// value is ignored.
- func didCompleteTask(_ task: URLSessionTask, with error: AFError?) {
- self.error = self.error ?? error
- protectedValidators.directValue.forEach { $0() }
-
- eventMonitor?.request(self, didCompleteTask: task, with: error)
-
- retryOrFinish(error: self.error)
- }
-
- /// Called when the `RequestDelegate` is going to retry this `Request`. Calls `reset()`.
- func prepareForRetry() {
- protectedMutableState.write { $0.retryCount += 1 }
-
- reset()
-
- eventMonitor?.requestIsRetrying(self)
- }
-
- /// Called to determine whether retry will be triggered for the particular error, or whether the instance should
- /// call `finish()`.
- ///
- /// - Parameter error: The possible `AFError` which may trigger retry.
- func retryOrFinish(error: AFError?) {
- guard let error = error, let delegate = delegate else { finish(); return }
-
- delegate.retryResult(for: self, dueTo: error) { retryResult in
- switch retryResult {
- case .doNotRetry:
- self.finish()
- case let .doNotRetryWithError(retryError):
- self.finish(error: retryError.asAFError(orFailWith: "Received retryError was not already AFError"))
- case .retry, .retryWithDelay:
- delegate.retryRequest(self, withDelay: retryResult.delay)
- }
- }
- }
-
- /// Finishes this `Request` and starts the response serializers.
- ///
- /// - Parameter error: The possible `Error` with which the instance will finish.
- func finish(error: AFError? = nil) {
- if let error = error { self.error = error }
-
- // Start response handlers
- processNextResponseSerializer()
-
- eventMonitor?.requestDidFinish(self)
- }
-
- /// Appends the response serialization closure to the instance.
- ///
- /// - Note: This method will also `resume` the instance if `delegate.startImmediately` returns `true`.
- ///
- /// - Parameter closure: The closure containing the response serialization call.
- func appendResponseSerializer(_ closure: @escaping () -> Void) {
- protectedMutableState.write { mutableState in
- mutableState.responseSerializers.append(closure)
-
- if mutableState.state == .finished {
- mutableState.state = .resumed
- }
-
- if mutableState.responseSerializerProcessingFinished {
- underlyingQueue.async { self.processNextResponseSerializer() }
- }
-
- if mutableState.state.canTransitionTo(.resumed) {
- underlyingQueue.async { if self.delegate?.startImmediately == true { self.resume() } }
- }
- }
- }
-
- /// Returns the next response serializer closure to execute if there's one left.
- ///
- /// - Returns: The next response serialization closure, if there is one.
- func nextResponseSerializer() -> (() -> Void)? {
- var responseSerializer: (() -> Void)?
-
- protectedMutableState.write { mutableState in
- let responseSerializerIndex = mutableState.responseSerializerCompletions.count
-
- if responseSerializerIndex < mutableState.responseSerializers.count {
- responseSerializer = mutableState.responseSerializers[responseSerializerIndex]
- }
- }
-
- return responseSerializer
- }
-
- /// Processes the next response serializer and calls all completions if response serialization is complete.
- func processNextResponseSerializer() {
- guard let responseSerializer = nextResponseSerializer() else {
- // Execute all response serializer completions and clear them
- var completions: [() -> Void] = []
-
- protectedMutableState.write { mutableState in
- completions = mutableState.responseSerializerCompletions
-
- // Clear out all response serializers and response serializer completions in mutable state since the
- // request is complete. It's important to do this prior to calling the completion closures in case
- // the completions call back into the request triggering a re-processing of the response serializers.
- // An example of how this can happen is by calling cancel inside a response completion closure.
- mutableState.responseSerializers.removeAll()
- mutableState.responseSerializerCompletions.removeAll()
-
- if mutableState.state.canTransitionTo(.finished) {
- mutableState.state = .finished
- }
-
- mutableState.responseSerializerProcessingFinished = true
- }
-
- completions.forEach { $0() }
-
- // Cleanup the request
- cleanup()
-
- return
- }
-
- serializationQueue.async { responseSerializer() }
- }
-
- /// Notifies the `Request` that the response serializer is complete.
- ///
- /// - Parameter completion: The completion handler provided with the response serializer, called when all serializers
- /// are complete.
- func responseSerializerDidComplete(completion: @escaping () -> Void) {
- protectedMutableState.write { $0.responseSerializerCompletions.append(completion) }
- processNextResponseSerializer()
- }
-
- /// Resets all task and response serializer related state for retry.
- func reset() {
- error = nil
-
- uploadProgress.totalUnitCount = 0
- uploadProgress.completedUnitCount = 0
- downloadProgress.totalUnitCount = 0
- downloadProgress.completedUnitCount = 0
-
- protectedMutableState.write { $0.responseSerializerCompletions = [] }
- }
-
- /// Called when updating the upload progress.
- ///
- /// - Parameters:
- /// - totalBytesSent: Total bytes sent so far.
- /// - totalBytesExpectedToSend: Total bytes expected to send.
- func updateUploadProgress(totalBytesSent: Int64, totalBytesExpectedToSend: Int64) {
- uploadProgress.totalUnitCount = totalBytesExpectedToSend
- uploadProgress.completedUnitCount = totalBytesSent
-
- uploadProgressHandler?.queue.async { self.uploadProgressHandler?.handler(self.uploadProgress) }
- }
-
- /// Perform a closure on the current `state` while locked.
- ///
- /// - Parameter perform: The closure to perform.
- func withState(perform: (State) -> Void) {
- protectedMutableState.withState(perform: perform)
- }
-
- // MARK: Task Creation
-
- /// Called when creating a `URLSessionTask` for this `Request`. Subclasses must override.
- ///
- /// - Parameters:
- /// - request: `URLRequest` to use to create the `URLSessionTask`.
- /// - session: `URLSession` which creates the `URLSessionTask`.
- ///
- /// - Returns: The `URLSessionTask` created.
- func task(for request: URLRequest, using session: URLSession) -> URLSessionTask {
- fatalError("Subclasses must override.")
- }
-
- // MARK: - Public API
-
- // These APIs are callable from any queue.
-
- // MARK: State
-
- /// Cancels the instance. Once cancelled, a `Request` can no longer be resumed or suspended.
- ///
- /// - Returns: The instance.
- @discardableResult
- public func cancel() -> Self {
- protectedMutableState.write { mutableState in
- guard mutableState.state.canTransitionTo(.cancelled) else { return }
-
- mutableState.state = .cancelled
-
- underlyingQueue.async { self.didCancel() }
-
- guard let task = mutableState.tasks.last, task.state != .completed else {
- underlyingQueue.async { self.finish() }
- return
- }
-
- // Resume to ensure metrics are gathered.
- task.resume()
- task.cancel()
- underlyingQueue.async { self.didCancelTask(task) }
- }
-
- return self
- }
-
- /// Suspends the instance.
- ///
- /// - Returns: The instance.
- @discardableResult
- public func suspend() -> Self {
- protectedMutableState.write { mutableState in
- guard mutableState.state.canTransitionTo(.suspended) else { return }
-
- mutableState.state = .suspended
-
- underlyingQueue.async { self.didSuspend() }
-
- guard let task = mutableState.tasks.last, task.state != .completed else { return }
-
- task.suspend()
- underlyingQueue.async { self.didSuspendTask(task) }
- }
-
- return self
- }
-
- /// Resumes the instance.
- ///
- /// - Returns: The instance.
- @discardableResult
- public func resume() -> Self {
- protectedMutableState.write { mutableState in
- guard mutableState.state.canTransitionTo(.resumed) else { return }
-
- mutableState.state = .resumed
-
- underlyingQueue.async { self.didResume() }
-
- guard let task = mutableState.tasks.last, task.state != .completed else { return }
-
- task.resume()
- underlyingQueue.async { self.didResumeTask(task) }
- }
-
- return self
- }
-
- // MARK: - Closure API
-
- /// Associates a credential using the provided values with the instance.
- ///
- /// - Parameters:
- /// - username: The username.
- /// - password: The password.
- /// - persistence: The `URLCredential.Persistence` for the created `URLCredential`. `.forSession` by default.
- ///
- /// - Returns: The instance.
- @discardableResult
- public func authenticate(username: String, password: String, persistence: URLCredential.Persistence = .forSession) -> Self {
- let credential = URLCredential(user: username, password: password, persistence: persistence)
-
- return authenticate(with: credential)
- }
-
- /// Associates the provided credential with the instance.
- ///
- /// - Parameter credential: The `URLCredential`.
- ///
- /// - Returns: The instance.
- @discardableResult
- public func authenticate(with credential: URLCredential) -> Self {
- protectedMutableState.write { $0.credential = credential }
-
- return self
- }
-
- /// Sets a closure to be called periodically during the lifecycle of the instance as data is read from the server.
- ///
- /// - Note: Only the last closure provided is used.
- ///
- /// - Parameters:
- /// - queue: The `DispatchQueue` to execute the closure on. `.main` by default.
- /// - closure: The closure to be executed periodically as data is read from the server.
- ///
- /// - Returns: The instance.
- @discardableResult
- public func downloadProgress(queue: DispatchQueue = .main, closure: @escaping ProgressHandler) -> Self {
- protectedMutableState.write { $0.downloadProgressHandler = (handler: closure, queue: queue) }
-
- return self
- }
-
- /// Sets a closure to be called periodically during the lifecycle of the instance as data is sent to the server.
- ///
- /// - Note: Only the last closure provided is used.
- ///
- /// - Parameters:
- /// - queue: The `DispatchQueue` to execute the closure on. `.main` by default.
- /// - closure: The closure to be executed periodically as data is sent to the server.
- ///
- /// - Returns: The instance.
- @discardableResult
- public func uploadProgress(queue: DispatchQueue = .main, closure: @escaping ProgressHandler) -> Self {
- protectedMutableState.write { $0.uploadProgressHandler = (handler: closure, queue: queue) }
-
- return self
- }
-
- // MARK: Redirects
-
- /// Sets the redirect handler for the instance which will be used if a redirect response is encountered.
- ///
- /// - Note: Attempting to set the redirect handler more than once is a logic error and will crash.
- ///
- /// - Parameter handler: The `RedirectHandler`.
- ///
- /// - Returns: The instance.
- @discardableResult
- public func redirect(using handler: RedirectHandler) -> Self {
- protectedMutableState.write { mutableState in
- precondition(mutableState.redirectHandler == nil, "Redirect handler has already been set.")
- mutableState.redirectHandler = handler
- }
-
- return self
- }
-
- // MARK: Cached Responses
-
- /// Sets the cached response handler for the `Request` which will be used when attempting to cache a response.
- ///
- /// - Note: Attempting to set the cache handler more than once is a logic error and will crash.
- ///
- /// - Parameter handler: The `CachedResponseHandler`.
- ///
- /// - Returns: The instance.
- @discardableResult
- public func cacheResponse(using handler: CachedResponseHandler) -> Self {
- protectedMutableState.write { mutableState in
- precondition(mutableState.cachedResponseHandler == nil, "Cached response handler has already been set.")
- mutableState.cachedResponseHandler = handler
- }
-
- return self
- }
-
- /// Sets a handler to be called when the cURL description of the request is available.
- ///
- /// - Note: When waiting for a `Request`'s `URLRequest` to be created, only the last `handler` will be called.
- ///
- /// - Parameter handler: Closure to be called when the cURL description is available.
- ///
- /// - Returns: The instance.
- @discardableResult
- public func cURLDescription(calling handler: @escaping (String) -> Void) -> Self {
- protectedMutableState.write { mutableState in
- if mutableState.requests.last != nil {
- underlyingQueue.async { handler(self.cURLDescription()) }
- } else {
- mutableState.cURLHandler = handler
- }
- }
-
- return self
- }
-
- // MARK: Cleanup
-
- /// Final cleanup step executed when the instance finishes response serialization.
- func cleanup() {
- delegate?.cleanup(after: self)
- // No-op: override in subclass
- }
- }
-
- // MARK: - Protocol Conformances
-
- extension Request: Equatable {
- public static func ==(lhs: Request, rhs: Request) -> Bool {
- return lhs.id == rhs.id
- }
- }
-
- extension Request: Hashable {
- public func hash(into hasher: inout Hasher) {
- hasher.combine(id)
- }
- }
-
- extension Request: CustomStringConvertible {
- /// A textual representation of this instance, including the `HTTPMethod` and `URL` if the `URLRequest` has been
- /// created, as well as the response status code, if a response has been received.
- public var description: String {
- guard let request = performedRequests.last ?? lastRequest,
- let url = request.url,
- let method = request.httpMethod else { return "No request created yet." }
-
- let requestDescription = "\(method) \(url.absoluteString)"
-
- return response.map { "\(requestDescription) (\($0.statusCode))" } ?? requestDescription
- }
- }
-
- extension Request {
- /// cURL representation of the instance.
- ///
- /// - Returns: The cURL equivalent of the instance.
- public func cURLDescription() -> String {
- guard
- let request = lastRequest,
- let url = request.url,
- let host = url.host,
- let method = request.httpMethod else { return "$ curl command could not be created" }
-
- var components = ["$ curl -v"]
-
- components.append("-X \(method)")
-
- if let credentialStorage = delegate?.sessionConfiguration.urlCredentialStorage {
- let protectionSpace = URLProtectionSpace(host: host,
- port: url.port ?? 0,
- protocol: url.scheme,
- realm: host,
- authenticationMethod: NSURLAuthenticationMethodHTTPBasic)
-
- if let credentials = credentialStorage.credentials(for: protectionSpace)?.values {
- for credential in credentials {
- guard let user = credential.user, let password = credential.password else { continue }
- components.append("-u \(user):\(password)")
- }
- } else {
- if let credential = credential, let user = credential.user, let password = credential.password {
- components.append("-u \(user):\(password)")
- }
- }
- }
-
- if let configuration = delegate?.sessionConfiguration, configuration.httpShouldSetCookies {
- if
- let cookieStorage = configuration.httpCookieStorage,
- let cookies = cookieStorage.cookies(for: url), !cookies.isEmpty {
- let allCookies = cookies.map { "\($0.name)=\($0.value)" }.joined(separator: ";")
-
- components.append("-b \"\(allCookies)\"")
- }
- }
-
- var headers = HTTPHeaders()
-
- if let sessionHeaders = delegate?.sessionConfiguration.headers {
- for header in sessionHeaders where header.name != "Cookie" {
- headers[header.name] = header.value
- }
- }
-
- for header in request.headers where header.name != "Cookie" {
- headers[header.name] = header.value
- }
-
- for header in headers {
- let escapedValue = header.value.replacingOccurrences(of: "\"", with: "\\\"")
- components.append("-H \"\(header.name): \(escapedValue)\"")
- }
-
- if let httpBodyData = request.httpBody {
- let httpBody = String(decoding: httpBodyData, as: UTF8.self)
- var escapedBody = httpBody.replacingOccurrences(of: "\\\"", with: "\\\\\"")
- escapedBody = escapedBody.replacingOccurrences(of: "\"", with: "\\\"")
-
- components.append("-d \"\(escapedBody)\"")
- }
-
- components.append("\"\(url.absoluteString)\"")
-
- return components.joined(separator: " \\\n\t")
- }
- }
-
- /// Protocol abstraction for `Request`'s communication back to the `SessionDelegate`.
- public protocol RequestDelegate: AnyObject {
- /// `URLSessionConfiguration` used to create the underlying `URLSessionTask`s.
- var sessionConfiguration: URLSessionConfiguration { get }
-
- /// Determines whether the `Request` should automatically call `resume()` when adding the first response handler.
- var startImmediately: Bool { get }
-
- /// Notifies the delegate the `Request` has reached a point where it needs cleanup.
- ///
- /// - Parameter request: The `Request` to cleanup after.
- func cleanup(after request: Request)
-
- /// Asynchronously ask the delegate whether a `Request` will be retried.
- ///
- /// - Parameters:
- /// - request: `Request` which failed.
- /// - error: `Error` which produced the failure.
- /// - completion: Closure taking the `RetryResult` for evaluation.
- func retryResult(for request: Request, dueTo error: AFError, completion: @escaping (RetryResult) -> Void)
-
- /// Asynchronously retry the `Request`.
- ///
- /// - Parameters:
- /// - request: `Request` which will be retried.
- /// - timeDelay: `TimeInterval` after which the retry will be triggered.
- func retryRequest(_ request: Request, withDelay timeDelay: TimeInterval?)
- }
-
- // MARK: - Subclasses
-
- // MARK: - DataRequest
-
- /// `Request` subclass which handles in-memory `Data` download using `URLSessionDataTask`.
- public class DataRequest: Request {
- /// `URLRequestConvertible` value used to create `URLRequest`s for this instance.
- public let convertible: URLRequestConvertible
- /// `Data` read from the server so far.
- public var data: Data? { return protectedData.directValue }
-
- /// Protected storage for the `Data` read by the instance.
- private var protectedData: Protector<Data?> = Protector(nil)
-
- /// Creates a `DataRequest` using the provided parameters.
- ///
- /// - Parameters:
- /// - id: `UUID` used for the `Hashable` and `Equatable` implementations. `UUID()` by default.
- /// - convertible: `URLRequestConvertible` value used to create `URLRequest`s for this instance.
- /// - underlyingQueue: `DispatchQueue` on which all internal `Request` work is performed.
- /// - serializationQueue: `DispatchQueue` on which all serialization work is performed. By default targets
- /// `underlyingQueue`, but can be passed another queue from a `Session`.
- /// - eventMonitor: `EventMonitor` called for event callbacks from internal `Request` actions.
- /// - interceptor: `RequestInterceptor` used throughout the request lifecycle.
- /// - delegate: `RequestDelegate` that provides an interface to actions not performed by the `Request`.
- init(id: UUID = UUID(),
- convertible: URLRequestConvertible,
- underlyingQueue: DispatchQueue,
- serializationQueue: DispatchQueue,
- eventMonitor: EventMonitor?,
- interceptor: RequestInterceptor?,
- delegate: RequestDelegate) {
- self.convertible = convertible
-
- super.init(id: id,
- underlyingQueue: underlyingQueue,
- serializationQueue: serializationQueue,
- eventMonitor: eventMonitor,
- interceptor: interceptor,
- delegate: delegate)
- }
-
- override func reset() {
- super.reset()
-
- protectedData.directValue = nil
- }
-
- /// Called when `Data` is received by this instance.
- ///
- /// - Note: Also calls `updateDownloadProgress`.
- ///
- /// - Parameter data: The `Data` received.
- func didReceive(data: Data) {
- if self.data == nil {
- protectedData.directValue = data
- } else {
- protectedData.append(data)
- }
-
- updateDownloadProgress()
- }
-
- override func task(for request: URLRequest, using session: URLSession) -> URLSessionTask {
- let copiedRequest = request
- return session.dataTask(with: copiedRequest)
- }
-
- /// Called to updated the `downloadProgress` of the instance.
- func updateDownloadProgress() {
- let totalBytesReceived = Int64(data?.count ?? 0)
- let totalBytesExpected = task?.response?.expectedContentLength ?? NSURLSessionTransferSizeUnknown
-
- downloadProgress.totalUnitCount = totalBytesExpected
- downloadProgress.completedUnitCount = totalBytesReceived
-
- downloadProgressHandler?.queue.async { self.downloadProgressHandler?.handler(self.downloadProgress) }
- }
-
- /// Validates the request, using the specified closure.
- ///
- /// - Note: If validation fails, subsequent calls to response handlers will have an associated error.
- ///
- /// - Parameter validation: `Validation` closure used to validate the response.
- ///
- /// - Returns: The instance.
- @discardableResult
- public func validate(_ validation: @escaping Validation) -> Self {
- let validator: () -> Void = { [unowned self] in
- guard self.error == nil, let response = self.response else { return }
-
- let result = validation(self.request, response, self.data)
-
- if case let .failure(error) = result { self.error = error.asAFError(or: .responseValidationFailed(reason: .customValidationFailed(error: error))) }
-
- self.eventMonitor?.request(self,
- didValidateRequest: self.request,
- response: response,
- data: self.data,
- withResult: result)
- }
-
- protectedValidators.append(validator)
-
- return self
- }
- }
-
- // MARK: - DownloadRequest
-
- /// `Request` subclass which downloads `Data` to a file on disk using `URLSessionDownloadTask`.
- public class DownloadRequest: Request {
- /// A set of options to be executed prior to moving a downloaded file from the temporary `URL` to the destination
- /// `URL`.
- public struct Options: OptionSet {
- /// Specifies that intermediate directories for the destination URL should be created.
- public static let createIntermediateDirectories = Options(rawValue: 1 << 0)
- /// Specifies that any previous file at the destination `URL` should be removed.
- public static let removePreviousFile = Options(rawValue: 1 << 1)
-
- /// Returns the raw bitmask value of the option and satisfies the `RawRepresentable` protocol.
- public let rawValue: Int
-
- public init(rawValue: Int) {
- self.rawValue = rawValue
- }
- }
-
- // MARK: Destination
-
- /// A closure executed once a download request has successfully completed in order to determine where to move the
- /// temporary file written to during the download process. The closure takes two arguments: the temporary file URL
- /// and the URL response, and returns a two arguments: the file URL where the temporary file should be moved and
- /// the options defining how the file should be moved.
- public typealias Destination = (_ temporaryURL: URL,
- _ response: HTTPURLResponse) -> (destinationURL: URL, options: Options)
-
- // MARK: Destination
-
- /// Creates a download file destination closure which uses the default file manager to move the temporary file to a
- /// file URL in the first available directory with the specified search path directory and search path domain mask.
- ///
- /// - Parameters:
- /// - directory: The search path directory. `.documentDirectory` by default.
- /// - domain: The search path domain mask. `.userDomainMask` by default.
- /// - options: `DownloadRequest.Options` used when moving the downloaded file to its destination. None by
- /// default.
- /// - Returns: The `Destination` closure.
- public class func suggestedDownloadDestination(for directory: FileManager.SearchPathDirectory = .documentDirectory,
- in domain: FileManager.SearchPathDomainMask = .userDomainMask,
- options: Options = []) -> Destination {
- return { temporaryURL, response in
- let directoryURLs = FileManager.default.urls(for: directory, in: domain)
- let url = directoryURLs.first?.appendingPathComponent(response.suggestedFilename!) ?? temporaryURL
-
- return (url, options)
- }
- }
-
- /// Default `Destination` used by Alamofire to ensure all downloads persist. This `Destination` prepends
- /// `Alamofire_` to the automatically generated download name and moves it within the temporary directory. Files
- /// with this destination must be additionally moved if they should survive the system reclamation of temporary
- /// space.
- static let defaultDestination: Destination = { url, _ in
- let filename = "Alamofire_\(url.lastPathComponent)"
- let destination = url.deletingLastPathComponent().appendingPathComponent(filename)
-
- return (destination, [])
- }
-
- /// Type describing the source used to create the underlying `URLSessionDownloadTask`.
- public enum Downloadable {
- /// Download should be started from the `URLRequest` produced by the associated `URLRequestConvertible` value.
- case request(URLRequestConvertible)
- /// Download should be started from the associated resume `Data` value.
- case resumeData(Data)
- }
-
- // MARK: Mutable State
-
- /// Type containing all mutable state for `DownloadRequest` instances.
- private struct DownloadRequestMutableState {
- /// Possible resume `Data` produced when cancelling the instance.
- var resumeData: Data?
- /// `URL` to which `Data` is being downloaded.
- var fileURL: URL?
- }
-
- /// Protected mutable state specific to `DownloadRequest`.
- private let protectedDownloadMutableState: Protector<DownloadRequestMutableState> = Protector(DownloadRequestMutableState())
-
- /// If the download is resumable and eventually cancelled, this value may be used to resume the download using the
- /// `download(resumingWith data:)` API.
- ///
- /// - Note: For more information about `resumeData`, see [Apple's documentation](https://developer.apple.com/documentation/foundation/urlsessiondownloadtask/1411634-cancel).
- public var resumeData: Data? { return protectedDownloadMutableState.directValue.resumeData }
- /// If the download is successful, the `URL` where the file was downloaded.
- public var fileURL: URL? { return protectedDownloadMutableState.directValue.fileURL }
-
- // MARK: Initial State
-
- /// `Downloadable` value used for this instance.
- public let downloadable: Downloadable
- /// The `Destination` to which the downloaded file is moved.
- let destination: Destination
-
- /// Creates a `DownloadRequest` using the provided parameters.
- ///
- /// - Parameters:
- /// - id: `UUID` used for the `Hashable` and `Equatable` implementations. `UUID()` by default.
- /// - downloadable: `Downloadable` value used to create `URLSessionDownloadTasks` for the instance.
- /// - underlyingQueue: `DispatchQueue` on which all internal `Request` work is performed.
- /// - serializationQueue: `DispatchQueue` on which all serialization work is performed. By default targets
- /// `underlyingQueue`, but can be passed another queue from a `Session`.
- /// - eventMonitor: `EventMonitor` called for event callbacks from internal `Request` actions.
- /// - interceptor: `RequestInterceptor` used throughout the request lifecycle.
- /// - delegate: `RequestDelegate` that provides an interface to actions not performed by the `Request`
- /// - destination: `Destination` closure used to move the downloaded file to its final location.
- init(id: UUID = UUID(),
- downloadable: Downloadable,
- underlyingQueue: DispatchQueue,
- serializationQueue: DispatchQueue,
- eventMonitor: EventMonitor?,
- interceptor: RequestInterceptor?,
- delegate: RequestDelegate,
- destination: @escaping Destination) {
- self.downloadable = downloadable
- self.destination = destination
-
- super.init(id: id,
- underlyingQueue: underlyingQueue,
- serializationQueue: serializationQueue,
- eventMonitor: eventMonitor,
- interceptor: interceptor,
- delegate: delegate)
- }
-
- override func reset() {
- super.reset()
-
- protectedDownloadMutableState.write {
- $0.resumeData = nil
- $0.fileURL = nil
- }
- }
-
- /// Called when a download has finished.
- ///
- /// - Parameters:
- /// - task: `URLSessionTask` that finished the download.
- /// - result: `Result` of the automatic move to `destination`.
- func didFinishDownloading(using task: URLSessionTask, with result: Result<URL, AFError>) {
- eventMonitor?.request(self, didFinishDownloadingUsing: task, with: result)
-
- switch result {
- case let .success(url): protectedDownloadMutableState.write { $0.fileURL = url }
- case let .failure(error): self.error = error
- }
- }
-
- /// Updates the `downloadProgress` using the provided values.
- ///
- /// - Parameters:
- /// - bytesWritten: Total bytes written so far.
- /// - totalBytesExpectedToWrite: Total bytes expected to write.
- func updateDownloadProgress(bytesWritten: Int64, totalBytesExpectedToWrite: Int64) {
- downloadProgress.totalUnitCount = totalBytesExpectedToWrite
- downloadProgress.completedUnitCount += bytesWritten
-
- downloadProgressHandler?.queue.async { self.downloadProgressHandler?.handler(self.downloadProgress) }
- }
-
- override func task(for request: URLRequest, using session: URLSession) -> URLSessionTask {
- return session.downloadTask(with: request)
- }
-
- /// Creates a `URLSessionTask` from the provided resume data.
- ///
- /// - Parameters:
- /// - data: `Data` used to resume the download.
- /// - session: `URLSession` used to create the `URLSessionTask`.
- ///
- /// - Returns: The `URLSessionTask` created.
- public func task(forResumeData data: Data, using session: URLSession) -> URLSessionTask {
- return session.downloadTask(withResumeData: data)
- }
-
- /// Cancels the instance. Once cancelled, a `DownloadRequest` can no longer be resumed or suspended.
- ///
- /// - Note: This method will NOT produce resume data. If you wish to cancel and produce resume data, use
- /// `cancel(producingResumeData:)` or `cancel(byProducingResumeData:)`.
- ///
- /// - Returns: The instance.
- @discardableResult
- public override func cancel() -> Self {
- return cancel(producingResumeData: false)
- }
-
- /// Cancels the instance, optionally producing resume data. Once cancelled, a `DownloadRequest` can no longer be
- /// resumed or suspended.
- ///
- /// - Note: If `producingResumeData` is `true`, the `resumeData` property will be populated with any resume data, if
- /// available.
- ///
- /// - Returns: The instance.
- @discardableResult
- public func cancel(producingResumeData shouldProduceResumeData: Bool) -> Self {
- return cancel(optionallyProducingResumeData: shouldProduceResumeData ? { _ in } : nil)
- }
-
- /// Cancels the instance while producing resume data. Once cancelled, a `DownloadRequest` can no longer be resumed
- /// or suspended.
- ///
- /// - Note: The resume data passed to the completion handler will also be available on the instance's `resumeData`
- /// property.
- ///
- /// - Parameter completionHandler: The completion handler that is called when the download has been successfully
- /// cancelled. It is not guaranteed to be called on a particular queue, so you may
- /// want use an appropriate queue to perform your work.
- ///
- /// - Returns: The instance.
- @discardableResult
- public func cancel(byProducingResumeData completionHandler: @escaping (_ data: Data?) -> Void) -> Self {
- return cancel(optionallyProducingResumeData: completionHandler)
- }
-
- /// Internal implementation of cancellation that optionally takes a resume data handler. If no handler is passed,
- /// cancellation is performed without producing resume data.
- ///
- /// - Parameter completionHandler: Optional resume data handler.
- ///
- /// - Returns: The instance.
- private func cancel(optionallyProducingResumeData completionHandler: ((_ resumeData: Data?) -> Void)?) -> Self {
- protectedMutableState.write { mutableState in
- guard mutableState.state.canTransitionTo(.cancelled) else { return }
-
- mutableState.state = .cancelled
-
- underlyingQueue.async { self.didCancel() }
-
- guard let task = mutableState.tasks.last as? URLSessionDownloadTask, task.state != .completed else {
- underlyingQueue.async { self.finish() }
- return
- }
-
- if let completionHandler = completionHandler {
- // Resume to ensure metrics are gathered.
- task.resume()
- task.cancel { resumeData in
- self.protectedDownloadMutableState.write { $0.resumeData = resumeData }
- self.underlyingQueue.async { self.didCancelTask(task) }
- completionHandler(resumeData)
- }
- } else {
- // Resume to ensure metrics are gathered.
- task.resume()
- task.cancel()
- self.underlyingQueue.async { self.didCancelTask(task) }
- }
- }
-
- return self
- }
-
- /// Validates the request, using the specified closure.
- ///
- /// - Note: If validation fails, subsequent calls to response handlers will have an associated error.
- ///
- /// - Parameter validation: `Validation` closure to validate the response.
- ///
- /// - Returns: The instance.
- @discardableResult
- public func validate(_ validation: @escaping Validation) -> Self {
- let validator: () -> Void = { [unowned self] in
- guard self.error == nil, let response = self.response else { return }
-
- let result = validation(self.request, response, self.fileURL)
-
- if case let .failure(error) = result { self.error = error.asAFError(or: .responseValidationFailed(reason: .customValidationFailed(error: error))) }
-
- self.eventMonitor?.request(self,
- didValidateRequest: self.request,
- response: response,
- fileURL: self.fileURL,
- withResult: result)
- }
-
- protectedValidators.append(validator)
-
- return self
- }
- }
-
- // MARK: - UploadRequest
-
- /// `DataRequest` subclass which handles `Data` upload from memory, file, or stream using `URLSessionUploadTask`.
- public class UploadRequest: DataRequest {
- /// Type describing the origin of the upload, whether `Data`, file, or stream.
- public enum Uploadable {
- /// Upload from the provided `Data` value.
- case data(Data)
- /// Upload from the provided file `URL`, as well as a `Bool` determining whether the source file should be
- /// automatically removed once uploaded.
- case file(URL, shouldRemove: Bool)
- /// Upload from the provided `InputStream`.
- case stream(InputStream)
- }
-
- // MARK: Initial State
-
- /// The `UploadableConvertible` value used to produce the `Uploadable` value for this instance.
- public let upload: UploadableConvertible
-
- /// `FileManager` used to perform cleanup tasks, including the removal of multipart form encoded payloads written
- /// to disk.
- public let fileManager: FileManager
-
- // MARK: Mutable State
-
- /// `Uploadable` value used by the instance.
- public var uploadable: Uploadable?
-
- /// Creates an `UploadRequest` using the provided parameters.
- ///
- /// - Parameters:
- /// - id: `UUID` used for the `Hashable` and `Equatable` implementations. `UUID()` by default.
- /// - convertible: `UploadConvertible` value used to determine the type of upload to be performed.
- /// - underlyingQueue: `DispatchQueue` on which all internal `Request` work is performed.
- /// - serializationQueue: `DispatchQueue` on which all serialization work is performed. By default targets
- /// `underlyingQueue`, but can be passed another queue from a `Session`.
- /// - eventMonitor: `EventMonitor` called for event callbacks from internal `Request` actions.
- /// - interceptor: `RequestInterceptor` used throughout the request lifecycle.
- /// - delegate: `RequestDelegate` that provides an interface to actions not performed by the `Request`.
- init(id: UUID = UUID(),
- convertible: UploadConvertible,
- underlyingQueue: DispatchQueue,
- serializationQueue: DispatchQueue,
- eventMonitor: EventMonitor?,
- interceptor: RequestInterceptor?,
- fileManager: FileManager,
- delegate: RequestDelegate) {
- upload = convertible
- self.fileManager = fileManager
-
- super.init(id: id,
- convertible: convertible,
- underlyingQueue: underlyingQueue,
- serializationQueue: serializationQueue,
- eventMonitor: eventMonitor,
- interceptor: interceptor,
- delegate: delegate)
- }
-
- /// Called when the `Uploadable` value has been created from the `UploadConvertible`.
- ///
- /// - Parameter uploadable: The `Uploadable` that was created.
- func didCreateUploadable(_ uploadable: Uploadable) {
- self.uploadable = uploadable
-
- eventMonitor?.request(self, didCreateUploadable: uploadable)
- }
-
- /// Called when the `Uploadable` value could not be created.
- ///
- /// - Parameter error: `AFError` produced by the failure.
- func didFailToCreateUploadable(with error: AFError) {
- self.error = error
-
- eventMonitor?.request(self, didFailToCreateUploadableWithError: error)
-
- retryOrFinish(error: error)
- }
-
- override func task(for request: URLRequest, using session: URLSession) -> URLSessionTask {
- guard let uploadable = uploadable else {
- fatalError("Attempting to create a URLSessionUploadTask when Uploadable value doesn't exist.")
- }
-
- switch uploadable {
- case let .data(data): return session.uploadTask(with: request, from: data)
- case let .file(url, _): return session.uploadTask(with: request, fromFile: url)
- case .stream: return session.uploadTask(withStreamedRequest: request)
- }
- }
-
- /// Produces the `InputStream` from `uploadable`, if it can.
- ///
- /// - Note: Calling this method with a non-`.stream` `Uploadable` is a logic error and will crash.
- ///
- /// - Returns: The `InputStream`.
- func inputStream() -> InputStream {
- guard let uploadable = uploadable else {
- fatalError("Attempting to access the input stream but the uploadable doesn't exist.")
- }
-
- guard case let .stream(stream) = uploadable else {
- fatalError("Attempted to access the stream of an UploadRequest that wasn't created with one.")
- }
-
- eventMonitor?.request(self, didProvideInputStream: stream)
-
- return stream
- }
-
- public override func cleanup() {
- defer { super.cleanup() }
-
- guard
- let uploadable = self.uploadable,
- case let .file(url, shouldRemove) = uploadable,
- shouldRemove
- else { return }
-
- try? fileManager.removeItem(at: url)
- }
- }
-
- /// A type that can produce an `UploadRequest.Uploadable` value.
- public protocol UploadableConvertible {
- /// Produces an `UploadRequest.Uploadable` value from the instance.
- ///
- /// - Returns: The `UploadRequest.Uploadable`.
- /// - Throws: Any `Error` produced during creation.
- func createUploadable() throws -> UploadRequest.Uploadable
- }
-
- extension UploadRequest.Uploadable: UploadableConvertible {
- public func createUploadable() throws -> UploadRequest.Uploadable {
- return self
- }
- }
-
- /// A type that can be converted to an upload, whether from an `UploadRequest.Uploadable` or `URLRequestConvertible`.
- public protocol UploadConvertible: UploadableConvertible & URLRequestConvertible {}
|