Blame view

Pods/Alamofire/Source/TaskDelegate.swift 15.4 KB
75d24c15   yangbin   123
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
  //
  //  TaskDelegate.swift
  //
  //  Copyright (c) 2014 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
  
  /// The task delegate is responsible for handling all delegate callbacks for the underlying task as well as
  /// executing all operations attached to the serial operation queue upon task completion.
  open class TaskDelegate: NSObject {
  
      // MARK: Properties
  
      /// The serial operation queue used to execute all operations after the task completes.
      public let queue: OperationQueue
  
      /// The data returned by the server.
      public var data: Data? { return nil }
  
      /// The error generated throughout the lifecyle of the task.
      public var error: Error?
  
      var task: URLSessionTask? {
          set {
              taskLock.lock(); defer { taskLock.unlock() }
              _task = newValue
          }
          get {
              taskLock.lock(); defer { taskLock.unlock() }
              return _task
          }
      }
  
      var initialResponseTime: CFAbsoluteTime?
      var credential: URLCredential?
      var metrics: AnyObject? // URLSessionTaskMetrics
  
      private var _task: URLSessionTask? {
          didSet { reset() }
      }
  
      private let taskLock = NSLock()
  
      // MARK: Lifecycle
  
      init(task: URLSessionTask?) {
          _task = task
  
          self.queue = {
              let operationQueue = OperationQueue()
  
              operationQueue.maxConcurrentOperationCount = 1
              operationQueue.isSuspended = true
              operationQueue.qualityOfService = .utility
  
              return operationQueue
          }()
      }
  
      func reset() {
          error = nil
          initialResponseTime = nil
      }
  
      // MARK: URLSessionTaskDelegate
  
      var taskWillPerformHTTPRedirection: ((URLSession, URLSessionTask, HTTPURLResponse, URLRequest) -> URLRequest?)?
      var taskDidReceiveChallenge: ((URLSession, URLSessionTask, URLAuthenticationChallenge) -> (URLSession.AuthChallengeDisposition, URLCredential?))?
      var taskNeedNewBodyStream: ((URLSession, URLSessionTask) -> InputStream?)?
      var taskDidCompleteWithError: ((URLSession, URLSessionTask, Error?) -> Void)?
  
      @objc(URLSession:task:willPerformHTTPRedirection:newRequest:completionHandler:)
      func urlSession(
          _ session: URLSession,
          task: URLSessionTask,
          willPerformHTTPRedirection response: HTTPURLResponse,
          newRequest request: URLRequest,
          completionHandler: @escaping (URLRequest?) -> Void)
      {
          var redirectRequest: URLRequest? = request
  
          if let taskWillPerformHTTPRedirection = taskWillPerformHTTPRedirection {
              redirectRequest = taskWillPerformHTTPRedirection(session, task, response, request)
          }
  
          completionHandler(redirectRequest)
      }
  
      @objc(URLSession:task:didReceiveChallenge:completionHandler:)
      func urlSession(
          _ session: URLSession,
          task: URLSessionTask,
          didReceive challenge: URLAuthenticationChallenge,
          completionHandler: @escaping (URLSession.AuthChallengeDisposition, URLCredential?) -> Void)
      {
          var disposition: URLSession.AuthChallengeDisposition = .performDefaultHandling
          var credential: URLCredential?
  
          if let taskDidReceiveChallenge = taskDidReceiveChallenge {
              (disposition, credential) = taskDidReceiveChallenge(session, task, challenge)
          } else if challenge.protectionSpace.authenticationMethod == NSURLAuthenticationMethodServerTrust {
              let host = challenge.protectionSpace.host
  
              if
                  let serverTrustPolicy = session.serverTrustPolicyManager?.serverTrustPolicy(forHost: host),
                  let serverTrust = challenge.protectionSpace.serverTrust
              {
                  if serverTrustPolicy.evaluate(serverTrust, forHost: host) {
                      disposition = .useCredential
                      credential = URLCredential(trust: serverTrust)
                  } else {
                      disposition = .cancelAuthenticationChallenge
                  }
              }
          } else {
              if challenge.previousFailureCount > 0 {
                  disposition = .rejectProtectionSpace
              } else {
                  credential = self.credential ?? session.configuration.urlCredentialStorage?.defaultCredential(for: challenge.protectionSpace)
  
                  if credential != nil {
                      disposition = .useCredential
                  }
              }
          }
  
          completionHandler(disposition, credential)
      }
  
      @objc(URLSession:task:needNewBodyStream:)
      func urlSession(
          _ session: URLSession,
          task: URLSessionTask,
          needNewBodyStream completionHandler: @escaping (InputStream?) -> Void)
      {
          var bodyStream: InputStream?
  
          if let taskNeedNewBodyStream = taskNeedNewBodyStream {
              bodyStream = taskNeedNewBodyStream(session, task)
          }
  
          completionHandler(bodyStream)
      }
  
      @objc(URLSession:task:didCompleteWithError:)
      func urlSession(_ session: URLSession, task: URLSessionTask, didCompleteWithError error: Error?) {
          if let taskDidCompleteWithError = taskDidCompleteWithError {
              taskDidCompleteWithError(session, task, error)
          } else {
              if let error = error {
                  if self.error == nil { self.error = error }
  
                  if
                      let downloadDelegate = self as? DownloadTaskDelegate,
                      let resumeData = (error as NSError).userInfo[NSURLSessionDownloadTaskResumeData] as? Data
                  {
                      downloadDelegate.resumeData = resumeData
                  }
              }
  
              queue.isSuspended = false
          }
      }
  }
  
  // MARK: -
  
  class DataTaskDelegate: TaskDelegate, URLSessionDataDelegate {
  
      // MARK: Properties
  
      var dataTask: URLSessionDataTask { return task as! URLSessionDataTask }
  
      override var data: Data? {
          if dataStream != nil {
              return nil
          } else {
              return mutableData
          }
      }
  
      var progress: Progress
      var progressHandler: (closure: Request.ProgressHandler, queue: DispatchQueue)?
  
      var dataStream: ((_ data: Data) -> Void)?
  
      private var totalBytesReceived: Int64 = 0
      private var mutableData: Data
  
      private var expectedContentLength: Int64?
  
      // MARK: Lifecycle
  
      override init(task: URLSessionTask?) {
          mutableData = Data()
          progress = Progress(totalUnitCount: 0)
  
          super.init(task: task)
      }
  
      override func reset() {
          super.reset()
  
          progress = Progress(totalUnitCount: 0)
          totalBytesReceived = 0
          mutableData = Data()
          expectedContentLength = nil
      }
  
      // MARK: URLSessionDataDelegate
  
      var dataTaskDidReceiveResponse: ((URLSession, URLSessionDataTask, URLResponse) -> URLSession.ResponseDisposition)?
      var dataTaskDidBecomeDownloadTask: ((URLSession, URLSessionDataTask, URLSessionDownloadTask) -> Void)?
      var dataTaskDidReceiveData: ((URLSession, URLSessionDataTask, Data) -> Void)?
      var dataTaskWillCacheResponse: ((URLSession, URLSessionDataTask, CachedURLResponse) -> CachedURLResponse?)?
  
      func urlSession(
          _ session: URLSession,
          dataTask: URLSessionDataTask,
          didReceive response: URLResponse,
          completionHandler: @escaping (URLSession.ResponseDisposition) -> Void)
      {
          var disposition: URLSession.ResponseDisposition = .allow
  
          expectedContentLength = response.expectedContentLength
  
          if let dataTaskDidReceiveResponse = dataTaskDidReceiveResponse {
              disposition = dataTaskDidReceiveResponse(session, dataTask, response)
          }
  
          completionHandler(disposition)
      }
  
      func urlSession(
          _ session: URLSession,
          dataTask: URLSessionDataTask,
          didBecome downloadTask: URLSessionDownloadTask)
      {
          dataTaskDidBecomeDownloadTask?(session, dataTask, downloadTask)
      }
  
      func urlSession(_ session: URLSession, dataTask: URLSessionDataTask, didReceive data: Data) {
          if initialResponseTime == nil { initialResponseTime = CFAbsoluteTimeGetCurrent() }
  
          if let dataTaskDidReceiveData = dataTaskDidReceiveData {
              dataTaskDidReceiveData(session, dataTask, data)
          } else {
              if let dataStream = dataStream {
                  dataStream(data)
              } else {
                  mutableData.append(data)
              }
  
              let bytesReceived = Int64(data.count)
              totalBytesReceived += bytesReceived
              let totalBytesExpected = dataTask.response?.expectedContentLength ?? NSURLSessionTransferSizeUnknown
  
              progress.totalUnitCount = totalBytesExpected
              progress.completedUnitCount = totalBytesReceived
  
              if let progressHandler = progressHandler {
                  progressHandler.queue.async { progressHandler.closure(self.progress) }
              }
          }
      }
  
      func urlSession(
          _ session: URLSession,
          dataTask: URLSessionDataTask,
          willCacheResponse proposedResponse: CachedURLResponse,
          completionHandler: @escaping (CachedURLResponse?) -> Void)
      {
          var cachedResponse: CachedURLResponse? = proposedResponse
  
          if let dataTaskWillCacheResponse = dataTaskWillCacheResponse {
              cachedResponse = dataTaskWillCacheResponse(session, dataTask, proposedResponse)
          }
  
          completionHandler(cachedResponse)
      }
  }
  
  // MARK: -
  
  class DownloadTaskDelegate: TaskDelegate, URLSessionDownloadDelegate {
  
      // MARK: Properties
  
      var downloadTask: URLSessionDownloadTask { return task as! URLSessionDownloadTask }
  
      var progress: Progress
      var progressHandler: (closure: Request.ProgressHandler, queue: DispatchQueue)?
  
      var resumeData: Data?
      override var data: Data? { return resumeData }
  
      var destination: DownloadRequest.DownloadFileDestination?
  
      var temporaryURL: URL?
      var destinationURL: URL?
  
      var fileURL: URL? { return destination != nil ? destinationURL : temporaryURL }
  
      // MARK: Lifecycle
  
      override init(task: URLSessionTask?) {
          progress = Progress(totalUnitCount: 0)
          super.init(task: task)
      }
  
      override func reset() {
          super.reset()
  
          progress = Progress(totalUnitCount: 0)
          resumeData = nil
      }
  
      // MARK: URLSessionDownloadDelegate
  
      var downloadTaskDidFinishDownloadingToURL: ((URLSession, URLSessionDownloadTask, URL) -> URL)?
      var downloadTaskDidWriteData: ((URLSession, URLSessionDownloadTask, Int64, Int64, Int64) -> Void)?
      var downloadTaskDidResumeAtOffset: ((URLSession, URLSessionDownloadTask, Int64, Int64) -> Void)?
  
      func urlSession(
          _ session: URLSession,
          downloadTask: URLSessionDownloadTask,
          didFinishDownloadingTo location: URL)
      {
          temporaryURL = location
  
          guard
              let destination = destination,
              let response = downloadTask.response as? HTTPURLResponse
          else { return }
  
          let result = destination(location, response)
          let destinationURL = result.destinationURL
          let options = result.options
  
          self.destinationURL = destinationURL
  
          do {
              if options.contains(.removePreviousFile), FileManager.default.fileExists(atPath: destinationURL.path) {
                  try FileManager.default.removeItem(at: destinationURL)
              }
  
              if options.contains(.createIntermediateDirectories) {
                  let directory = destinationURL.deletingLastPathComponent()
                  try FileManager.default.createDirectory(at: directory, withIntermediateDirectories: true)
              }
  
              try FileManager.default.moveItem(at: location, to: destinationURL)
          } catch {
              self.error = error
          }
      }
  
      func urlSession(
          _ session: URLSession,
          downloadTask: URLSessionDownloadTask,
          didWriteData bytesWritten: Int64,
          totalBytesWritten: Int64,
          totalBytesExpectedToWrite: Int64)
      {
          if initialResponseTime == nil { initialResponseTime = CFAbsoluteTimeGetCurrent() }
  
          if let downloadTaskDidWriteData = downloadTaskDidWriteData {
              downloadTaskDidWriteData(
                  session,
                  downloadTask,
                  bytesWritten,
                  totalBytesWritten,
                  totalBytesExpectedToWrite
              )
          } else {
              progress.totalUnitCount = totalBytesExpectedToWrite
              progress.completedUnitCount = totalBytesWritten
  
              if let progressHandler = progressHandler {
                  progressHandler.queue.async { progressHandler.closure(self.progress) }
              }
          }
      }
  
      func urlSession(
          _ session: URLSession,
          downloadTask: URLSessionDownloadTask,
          didResumeAtOffset fileOffset: Int64,
          expectedTotalBytes: Int64)
      {
          if let downloadTaskDidResumeAtOffset = downloadTaskDidResumeAtOffset {
              downloadTaskDidResumeAtOffset(session, downloadTask, fileOffset, expectedTotalBytes)
          } else {
              progress.totalUnitCount = expectedTotalBytes
              progress.completedUnitCount = fileOffset
          }
      }
  }
  
  // MARK: -
  
  class UploadTaskDelegate: DataTaskDelegate {
  
      // MARK: Properties
  
      var uploadTask: URLSessionUploadTask { return task as! URLSessionUploadTask }
  
      var uploadProgress: Progress
      var uploadProgressHandler: (closure: Request.ProgressHandler, queue: DispatchQueue)?
  
      // MARK: Lifecycle
  
      override init(task: URLSessionTask?) {
          uploadProgress = Progress(totalUnitCount: 0)
          super.init(task: task)
      }
  
      override func reset() {
          super.reset()
          uploadProgress = Progress(totalUnitCount: 0)
      }
  
      // MARK: URLSessionTaskDelegate
  
      var taskDidSendBodyData: ((URLSession, URLSessionTask, Int64, Int64, Int64) -> Void)?
  
      func URLSession(
          _ session: URLSession,
          task: URLSessionTask,
          didSendBodyData bytesSent: Int64,
          totalBytesSent: Int64,
          totalBytesExpectedToSend: Int64)
      {
          if initialResponseTime == nil { initialResponseTime = CFAbsoluteTimeGetCurrent() }
  
          if let taskDidSendBodyData = taskDidSendBodyData {
              taskDidSendBodyData(session, task, bytesSent, totalBytesSent, totalBytesExpectedToSend)
          } else {
              uploadProgress.totalUnitCount = totalBytesExpectedToSend
              uploadProgress.completedUnitCount = totalBytesSent
  
              if let uploadProgressHandler = uploadProgressHandler {
                  uploadProgressHandler.queue.async { uploadProgressHandler.closure(self.uploadProgress) }
              }
          }
      }
  }