What's the canonical way to differentiate errors?

blov · 2017-03-27 07:00:06 · 665 次点击    
这是一个分享于 2017-03-27 07:00:06 的资源,其中的信息可能已经有所发展或是发生改变。

For example, you open a file and get back a PathError.

How would you differentiate between (say) a file not found and a permission error.


评论:

natefinch:

This is the best guide I've seen: https://dave.cheney.net/2016/04/27/dont-just-check-errors-handle-them-gracefully

JackOhBlades:

That post really helped me with Go's error handling.

TLDR; check for the behaviour of the error, not the concrete type.

type Temporary interface {
    IsTemporary() bool
}
_, err := canFail(..)
if temp, ok := err.(Temporary); ok {
    // handle the temporary error
    If temp.IsTemporary() {
        //...
    }
}

Hope this helps!

ragefacesmirk:

The grpc library offers a good working example.

jerf:

Cast the error back into its underlying type (generally the two-argument form to avoid crashing if you are wrong), and then use whatever that type offers to determine the more-specific problem.

If the type doesn't offer any useful methods or public fields, you are out of luck. That's why it's important to be careful with what errors you return; any data discarded by what you return stays discarded.

riking27:

The two-argument form looking like this:

if err, ok := err.(*os.PathError); ok {
    // ... check code ...
} else if err != nil {
    // ... other errors ...
}
tgaz:

Type assertion as /u/jerf suggests.

The other common way is to have a boolean function to identify classes of errors, like os.IsPermission. Internally that could do whatever. In os, they look at errno values.

natefinch:

note there's an os.IsNotExist as well. These two functions are what you need for your specific case. In the general case, use Dave Cheney's handling errors by behavior.


入群交流(和以上内容无关):加入Go大咖交流群,或添加微信:liuxiaoyan-s 备注:入群;或加QQ群:692541889

665 次点击  
加入收藏 微博
暂无回复
添加一条新回复 (您需要 登录 后才能回复 没有账号 ?)
  • 请尽量让自己的回复能够对别人有帮助
  • 支持 Markdown 格式, **粗体**、~~删除线~~、`单行代码`
  • 支持 @ 本站用户;支持表情(输入 : 提示),见 Emoji cheat sheet
  • 图片支持拖拽、截图粘贴等方式上传