Blame view

Pods/Alamofire/Source/Alamofire.swift 18.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
  //
  //  Alamofire.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
  
  /// Types adopting the `URLConvertible` protocol can be used to construct URLs, which are then used to construct
  /// URL requests.
  public protocol URLConvertible {
      /// Returns a URL that conforms to RFC 2396 or throws an `Error`.
      ///
      /// - throws: An `Error` if the type cannot be converted to a `URL`.
      ///
      /// - returns: A URL or throws an `Error`.
      func asURL() throws -> URL
  }
  
  extension String: URLConvertible {
      /// Returns a URL if `self` represents a valid URL string that conforms to RFC 2396 or throws an `AFError`.
      ///
      /// - throws: An `AFError.invalidURL` if `self` is not a valid URL string.
      ///
      /// - returns: A URL or throws an `AFError`.
      public func asURL() throws -> URL {
          guard let url = URL(string: self) else { throw AFError.invalidURL(url: self) }
          return url
      }
  }
  
  extension URL: URLConvertible {
      /// Returns self.
      public func asURL() throws -> URL { return self }
  }
  
  extension URLComponents: URLConvertible {
      /// Returns a URL if `url` is not nil, otherwise throws an `Error`.
      ///
      /// - throws: An `AFError.invalidURL` if `url` is `nil`.
      ///
      /// - returns: A URL or throws an `AFError`.
      public func asURL() throws -> URL {
          guard let url = url else { throw AFError.invalidURL(url: self) }
          return url
      }
  }
  
  // MARK: -
  
  /// Types adopting the `URLRequestConvertible` protocol can be used to construct URL requests.
  public protocol URLRequestConvertible {
      /// Returns a URL request or throws if an `Error` was encountered.
      ///
      /// - throws: An `Error` if the underlying `URLRequest` is `nil`.
      ///
      /// - returns: A URL request.
      func asURLRequest() throws -> URLRequest
  }
  
  extension URLRequestConvertible {
      /// The URL request.
      public var urlRequest: URLRequest? { return try? asURLRequest() }
  }
  
  extension URLRequest: URLRequestConvertible {
      /// Returns a URL request or throws if an `Error` was encountered.
      public func asURLRequest() throws -> URLRequest { return self }
  }
  
  // MARK: -
  
  extension URLRequest {
      /// Creates an instance with the specified `method`, `urlString` and `headers`.
      ///
      /// - parameter url:     The URL.
      /// - parameter method:  The HTTP method.
      /// - parameter headers: The HTTP headers. `nil` by default.
      ///
      /// - returns: The new `URLRequest` instance.
      public init(url: URLConvertible, method: HTTPMethod, headers: HTTPHeaders? = nil) throws {
          let url = try url.asURL()
  
          self.init(url: url)
  
          httpMethod = method.rawValue
  
          if let headers = headers {
              for (headerField, headerValue) in headers {
                  setValue(headerValue, forHTTPHeaderField: headerField)
              }
          }
      }
  
      func adapt(using adapter: RequestAdapter?) throws -> URLRequest {
          guard let adapter = adapter else { return self }
          return try adapter.adapt(self)
      }
  }
  
  // MARK: - Data Request
  
  /// Creates a `DataRequest` using the default `SessionManager` to retrieve the contents of the specified `url`,
  /// `method`, `parameters`, `encoding` and `headers`.
  ///
  /// - parameter url:        The URL.
  /// - parameter method:     The HTTP method. `.get` by default.
  /// - parameter parameters: The parameters. `nil` by default.
  /// - parameter encoding:   The parameter encoding. `URLEncoding.default` by default.
  /// - parameter headers:    The HTTP headers. `nil` by default.
  ///
  /// - returns: The created `DataRequest`.
  @discardableResult
  public func request(
      _ url: URLConvertible,
      method: HTTPMethod = .get,
      parameters: Parameters? = nil,
      encoding: ParameterEncoding = URLEncoding.default,
      headers: HTTPHeaders? = nil)
      -> DataRequest
  {
      return SessionManager.default.request(
          url,
          method: method,
          parameters: parameters,
          encoding: encoding,
          headers: headers
      )
  }
  
  /// Creates a `DataRequest` using the default `SessionManager` to retrieve the contents of a URL based on the
  /// specified `urlRequest`.
  ///
  /// - parameter urlRequest: The URL request
  ///
  /// - returns: The created `DataRequest`.
  @discardableResult
  public func request(_ urlRequest: URLRequestConvertible) -> DataRequest {
      return SessionManager.default.request(urlRequest)
  }
  
  // MARK: - Download Request
  
  // MARK: URL Request
  
  /// Creates a `DownloadRequest` using the default `SessionManager` to retrieve the contents of the specified `url`,
  /// `method`, `parameters`, `encoding`, `headers` and save them to the `destination`.
  ///
  /// If `destination` is not specified, the contents will remain in the temporary location determined by the
  /// underlying URL session.
  ///
  /// - parameter url:         The URL.
  /// - parameter method:      The HTTP method. `.get` by default.
  /// - parameter parameters:  The parameters. `nil` by default.
  /// - parameter encoding:    The parameter encoding. `URLEncoding.default` by default.
  /// - parameter headers:     The HTTP headers. `nil` by default.
  /// - parameter destination: The closure used to determine the destination of the downloaded file. `nil` by default.
  ///
  /// - returns: The created `DownloadRequest`.
  @discardableResult
  public func download(
      _ url: URLConvertible,
      method: HTTPMethod = .get,
      parameters: Parameters? = nil,
      encoding: ParameterEncoding = URLEncoding.default,
      headers: HTTPHeaders? = nil,
      to destination: DownloadRequest.DownloadFileDestination? = nil)
      -> DownloadRequest
  {
      return SessionManager.default.download(
          url,
          method: method,
          parameters: parameters,
          encoding: encoding,
          headers: headers,
          to: destination
      )
  }
  
  /// Creates a `DownloadRequest` using the default `SessionManager` to retrieve the contents of a URL based on the
  /// specified `urlRequest` and save them to the `destination`.
  ///
  /// If `destination` is not specified, the contents will remain in the temporary location determined by the
  /// underlying URL session.
  ///
  /// - parameter urlRequest:  The URL request.
  /// - parameter destination: The closure used to determine the destination of the downloaded file. `nil` by default.
  ///
  /// - returns: The created `DownloadRequest`.
  @discardableResult
  public func download(
      _ urlRequest: URLRequestConvertible,
      to destination: DownloadRequest.DownloadFileDestination? = nil)
      -> DownloadRequest
  {
      return SessionManager.default.download(urlRequest, to: destination)
  }
  
  // MARK: Resume Data
  
  /// Creates a `DownloadRequest` using the default `SessionManager` from the `resumeData` produced from a
  /// previous request cancellation to retrieve the contents of the original request and save them to the `destination`.
  ///
  /// If `destination` is not specified, the contents will remain in the temporary location determined by the
  /// underlying URL session.
  ///
  /// On the latest release of all the Apple platforms (iOS 10, macOS 10.12, tvOS 10, watchOS 3), `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 following Stack Overflow post:
  ///
  ///    - http://stackoverflow.com/a/39347461/1342462
  ///
  /// - parameter resumeData:  The resume data. This is an opaque data blob produced by `URLSessionDownloadTask`
  ///                          when a task is cancelled. See `URLSession -downloadTask(withResumeData:)` for additional
  ///                          information.
  /// - parameter destination: The closure used to determine the destination of the downloaded file. `nil` by default.
  ///
  /// - returns: The created `DownloadRequest`.
  @discardableResult
  public func download(
      resumingWith resumeData: Data,
      to destination: DownloadRequest.DownloadFileDestination? = nil)
      -> DownloadRequest
  {
      return SessionManager.default.download(resumingWith: resumeData, to: destination)
  }
  
  // MARK: - Upload Request
  
  // MARK: File
  
  /// Creates an `UploadRequest` using the default `SessionManager` from the specified `url`, `method` and `headers`
  /// for uploading the `file`.
  ///
  /// - parameter file:    The file to upload.
  /// - parameter url:     The URL.
  /// - parameter method:  The HTTP method. `.post` by default.
  /// - parameter headers: The HTTP headers. `nil` by default.
  ///
  /// - returns: The created `UploadRequest`.
  @discardableResult
  public func upload(
      _ fileURL: URL,
      to url: URLConvertible,
      method: HTTPMethod = .post,
      headers: HTTPHeaders? = nil)
      -> UploadRequest
  {
      return SessionManager.default.upload(fileURL, to: url, method: method, headers: headers)
  }
  
  /// Creates a `UploadRequest` using the default `SessionManager` from the specified `urlRequest` for
  /// uploading the `file`.
  ///
  /// - parameter file:       The file to upload.
  /// - parameter urlRequest: The URL request.
  ///
  /// - returns: The created `UploadRequest`.
  @discardableResult
  public func upload(_ fileURL: URL, with urlRequest: URLRequestConvertible) -> UploadRequest {
      return SessionManager.default.upload(fileURL, with: urlRequest)
  }
  
  // MARK: Data
  
  /// Creates an `UploadRequest` using the default `SessionManager` from the specified `url`, `method` and `headers`
  /// for uploading the `data`.
  ///
  /// - parameter data:    The data to upload.
  /// - parameter url:     The URL.
  /// - parameter method:  The HTTP method. `.post` by default.
  /// - parameter headers: The HTTP headers. `nil` by default.
  ///
  /// - returns: The created `UploadRequest`.
  @discardableResult
  public func upload(
      _ data: Data,
      to url: URLConvertible,
      method: HTTPMethod = .post,
      headers: HTTPHeaders? = nil)
      -> UploadRequest
  {
      return SessionManager.default.upload(data, to: url, method: method, headers: headers)
  }
  
  /// Creates an `UploadRequest` using the default `SessionManager` from the specified `urlRequest` for
  /// uploading the `data`.
  ///
  /// - parameter data:       The data to upload.
  /// - parameter urlRequest: The URL request.
  ///
  /// - returns: The created `UploadRequest`.
  @discardableResult
  public func upload(_ data: Data, with urlRequest: URLRequestConvertible) -> UploadRequest {
      return SessionManager.default.upload(data, with: urlRequest)
  }
  
  // MARK: InputStream
  
  /// Creates an `UploadRequest` using the default `SessionManager` from the specified `url`, `method` and `headers`
  /// for uploading the `stream`.
  ///
  /// - parameter stream:  The stream to upload.
  /// - parameter url:     The URL.
  /// - parameter method:  The HTTP method. `.post` by default.
  /// - parameter headers: The HTTP headers. `nil` by default.
  ///
  /// - returns: The created `UploadRequest`.
  @discardableResult
  public func upload(
      _ stream: InputStream,
      to url: URLConvertible,
      method: HTTPMethod = .post,
      headers: HTTPHeaders? = nil)
      -> UploadRequest
  {
      return SessionManager.default.upload(stream, to: url, method: method, headers: headers)
  }
  
  /// Creates an `UploadRequest` using the default `SessionManager` from the specified `urlRequest` for
  /// uploading the `stream`.
  ///
  /// - parameter urlRequest: The URL request.
  /// - parameter stream:     The stream to upload.
  ///
  /// - returns: The created `UploadRequest`.
  @discardableResult
  public func upload(_ stream: InputStream, with urlRequest: URLRequestConvertible) -> UploadRequest {
      return SessionManager.default.upload(stream, with: urlRequest)
  }
  
  // MARK: MultipartFormData
  
  /// Encodes `multipartFormData` using `encodingMemoryThreshold` with the default `SessionManager` and calls
  /// `encodingCompletion` with new `UploadRequest` using the `url`, `method` and `headers`.
  ///
  /// It is important to understand the memory implications of uploading `MultipartFormData`. If the cummulative
  /// 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.
  ///
  /// - parameter multipartFormData:       The closure used to append body parts to the `MultipartFormData`.
  /// - parameter encodingMemoryThreshold: The encoding memory threshold in bytes.
  ///                                      `multipartFormDataEncodingMemoryThreshold` by default.
  /// - parameter url:                     The URL.
  /// - parameter method:                  The HTTP method. `.post` by default.
  /// - parameter headers:                 The HTTP headers. `nil` by default.
  /// - parameter encodingCompletion:      The closure called when the `MultipartFormData` encoding is complete.
  public func upload(
      multipartFormData: @escaping (MultipartFormData) -> Void,
      usingThreshold encodingMemoryThreshold: UInt64 = SessionManager.multipartFormDataEncodingMemoryThreshold,
      to url: URLConvertible,
      method: HTTPMethod = .post,
      headers: HTTPHeaders? = nil,
      encodingCompletion: ((SessionManager.MultipartFormDataEncodingResult) -> Void)?)
  {
      return SessionManager.default.upload(
          multipartFormData: multipartFormData,
          usingThreshold: encodingMemoryThreshold,
          to: url,
          method: method,
          headers: headers,
          encodingCompletion: encodingCompletion
      )
  }
  
  /// Encodes `multipartFormData` using `encodingMemoryThreshold` and the default `SessionManager` and
  /// calls `encodingCompletion` with new `UploadRequest` using the `urlRequest`.
  ///
  /// It is important to understand the memory implications of uploading `MultipartFormData`. If the cummulative
  /// 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.
  ///
  /// - parameter multipartFormData:       The closure used to append body parts to the `MultipartFormData`.
  /// - parameter encodingMemoryThreshold: The encoding memory threshold in bytes.
  ///                                      `multipartFormDataEncodingMemoryThreshold` by default.
  /// - parameter urlRequest:              The URL request.
  /// - parameter encodingCompletion:      The closure called when the `MultipartFormData` encoding is complete.
  public func upload(
      multipartFormData: @escaping (MultipartFormData) -> Void,
      usingThreshold encodingMemoryThreshold: UInt64 = SessionManager.multipartFormDataEncodingMemoryThreshold,
      with urlRequest: URLRequestConvertible,
      encodingCompletion: ((SessionManager.MultipartFormDataEncodingResult) -> Void)?)
  {
      return SessionManager.default.upload(
          multipartFormData: multipartFormData,
          usingThreshold: encodingMemoryThreshold,
          with: urlRequest,
          encodingCompletion: encodingCompletion
      )
  }
  
  #if !os(watchOS)
  
  // MARK: - Stream Request
  
  // MARK: Hostname and Port
  
  /// Creates a `StreamRequest` using the default `SessionManager` for bidirectional streaming with the `hostname`
  /// and `port`.
  ///
  /// If `startRequestsImmediately` is `true`, the request will have `resume()` called before being returned.
  ///
  /// - parameter hostName: The hostname of the server to connect to.
  /// - parameter port:     The port of the server to connect to.
  ///
  /// - returns: The created `StreamRequest`.
  @discardableResult
  @available(iOS 9.0, macOS 10.11, tvOS 9.0, *)
  public func stream(withHostName hostName: String, port: Int) -> StreamRequest {
      return SessionManager.default.stream(withHostName: hostName, port: port)
  }
  
  // MARK: NetService
  
  /// Creates a `StreamRequest` using the default `SessionManager` for bidirectional streaming with the `netService`.
  ///
  /// If `startRequestsImmediately` is `true`, the request will have `resume()` called before being returned.
  ///
  /// - parameter netService: The net service used to identify the endpoint.
  ///
  /// - returns: The created `StreamRequest`.
  @discardableResult
  @available(iOS 9.0, macOS 10.11, tvOS 9.0, *)
  public func stream(with netService: NetService) -> StreamRequest {
      return SessionManager.default.stream(with: netService)
  }
  
  #endif