处理Swift 2中异步关闭错误的最佳方法?

问题描述 投票:6回答:3

我正在使用大量异步网络请求(顺便说一下,iOS中的任何网络请求都需要通过异步),我正在寻找方法来更好地处理Apple的不支持dataTaskWithRequestthrows中的错误。

我有这样的代码:

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网络封包处理错误的最佳,最现代的方法是什么?据我了解,没有任何方法可以在任何异步网络功能中使用吗?

swift asynchronous throw nserror
3个回答
14
投票

有很多方法可以解决此问题,但是我建议使用期望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
投票

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


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)")
}
© www.soinside.com 2019 - 2024. All rights reserved.