在Swift 2中处理异步闭包错误的最佳方法是什么?

时间:2016-01-22 23:43:06

标签: swift asynchronous throw nserror

我使用了很多异步网络请求(顺便提一下iOS中的任何网络请求都需要异步),我找到了更好地处理来自Apple dataTaskWithRequest的错误的方法不支持throws

我有这样的代码:

func sendRequest(someData: MyCustomClass?, completion: (response: NSData?) -> ()) {
    let request = NSURLRequest(URL: NSURL(string: "http://google.com")!)

    if someData == nil {
        // throw my custom error
    }

    let task = NSURLSession.sharedSession().dataTaskWithRequest(request) {
        data, response, error in

        // here I want to handle Apple's error
    }
    task.resume()
}

我需要解析可能的自定义错误并处理来自dataTaskWithRequest的可能的连接错误。 Swift 2引入了throws,但你无法从Apple的关闭中抛出,因为它们没有抛出支持并且运行异步。

我只看到添加到我的完成块NSError返回的方法,但据我所知使用NSError是旧式的Objective-C方式。 ErrorType只能用于投掷(afaik)。

使用Apple网络关闭时,处理错误的最佳和最现代的方法是什么?根据我的理解,任何异步网络功能都没有办法投入使用吗?

3 个答案:

答案 0 :(得分:13)

有很多方法可以解决这个问题,但我建议使用一个需要Result Enum的完成块。这可能是最“迅捷”的方式。

结果枚举恰好有两个状态,即成功和错误,这对于通常的两个可选返回值(数据和错误)来说是一个很大的优势,这会导致4种可能的状态。

enum Result<T> {
    case Success(T)
    case Error(String, Int)
}

在完成块中使用结果枚举完成拼图。

let InvalidURLCode = 999
let NoDataCode = 998
func getFrom(urlString: String, completion:Result<NSData> -> Void) {
    // make sure the URL is valid, if not return custom error
    guard let url = NSURL(string: urlString) else { return completion(.Error("Invalid URL", InvalidURLCode)) }

    let request = NSURLRequest(URL: url)
    NSURLSession.sharedSession().dataTaskWithRequest(request) { data, response, error in
       // if error returned, extract message and code then pass as Result enum
        guard error == nil else { return completion(.Error(error!.localizedDescription, error!.code)) }

        // if no data is returned, return custom error
        guard let data = data else { return completion(.Error("No data returned", NoDataCode)) }

        // return success
        completion(.Success(data))
    }.resume()
}

因为返回值是枚举,所以应该关闭它。

getFrom("http://www.google.com") { result in
    switch result {
    case .Success(let data):
        // handle successful data response here
        let responseString = String(data:data, encoding: NSASCIIStringEncoding)
        print("got data: \(responseString)");
    case .Error(let msg, let code):
        // handle error here
        print("Error [\(code)]: \(msg)")
    }
}

另一个解决方案是传递两个完成块,一个用于成功,一个用于错误。类似的东西:

func getFrom(urlString: String, successHandler:NSData -> Void, errorHandler:(String, Int) -> Void)

答案 1 :(得分:1)

它与Casey's answer非常相似, 但是有了 Swift 5 ,现在我们可以在标准库

中实现Result(通用枚举)实现
//Don't add this code to your project, this has already been implemented
//in standard library.
public enum Result<Success, Failure: Error> {
    case success(Success), failure(Failure)
}

它非常易于使用,

URLSession.shared.dataTask(with: url) { (result: Result<(response: URLResponse, data: Data), Error>) in
    switch result {
    case let .success(success):
        handleResponse(success.response, data: success.data)
    case let .error(error):
        handleError(error)
    }
}

https://developer.apple.com/documentation/swift/result

https://github.com/apple/swift-evolution/blob/master/proposals/0235-add-result.md

答案 2 :(得分:0)

使用类似JavaScript的Promise库或类似Scala的“Future and Promise”库,这是一种优雅的方法。

使用Scala风格的期货和承诺,它可能如下所示:

您原来的功能

func sendRequest(someData: MyCustomClass?, completion: (response: NSData?) -> ())

可以如下所示实现。它还表明,如何创造承诺,在失败的未来早期回归以及如何履行/拒绝承诺:

func sendRequest(someData: MyCustomClass) -> Future<NSData> {
  guard let url = ... else {
    return Future.failure(MySessionError.InvalidURL)  // bail out early with a completed future
  }
  let request = ... // setup request
  let promise = Promise<NSData>()  
  NSURLSession.sharedSession().dataTaskWithRequest(request) { data, response, error in
    guard let error = error else { 
      promise.reject(error) // Client error
    }
    // The following assertions should be true, unless error != nil
    assert(data != nil) 
    assert(response != nil)

    // We expect HTTP protocol:
    guard let response = response! as NSHTTPURLResponse else {
      promise.reject(MySessionError.ProtocolError)  // signal that we expected HTTP.
    }

    // Check status code:
    guard myValidStatusCodeArray.contains(response.statusCode) else {
      let message: String? = ... // convert the response data to a string, if any and if possible
      promise.reject(MySessionError.InvalidStatusCode(statusCode: response.statusCode, message: message ?? ""))
    }

    // Check MIME type if given:
    if let mimeType = response.MIMEType {
      guard myValidMIMETypesArray.contains(mimeType) else {
        promise.reject(MySessionError.MIMETypeNotAccepted(mimeType: mimeType))
      }
    } else {
      // If we require a MIMEType - reject the promise.
    }
    // transform data to some other object if desired, can be done in a later, too. 

    promise.fulfill(data!)
  }.resume()

  return promise.future!
}

如果请求成功,您可能会期望JSON作为响应。

现在,您可以按如下方式使用它:

sendRequest(myObject).map { data in 
  return try NSJSONSerialization.dataWithJSONObject(data, options: [])
}
.map { object in
   // the object returned from the step above, unless it failed.
   // Now, "process" the object: 
   ...
   // You may throw an error if something goes wrong:
   if failed {
       throw MyError.Failed
   }
}
.onFailure { error in
   // We reach here IFF an error occurred in any of the 
   // previous tasks.
   // error is of type ErrorType.
   print("Error: \(error)")
}