123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215 |
- // Package errors provides simple error handling primitives.
- //
- // The traditional error handling idiom in Go is roughly akin to
- //
- // if err != nil {
- // return err
- // }
- //
- // which applied recursively up the call stack results in error reports
- // without context or debugging information. The errors package allows
- // programmers to add context to the failure path in their code in a way
- // that does not destroy the original value of the error.
- //
- // Adding context to an error
- //
- // The errors.Wrap function returns a new error that adds context to the
- // original error. For example
- //
- // _, err := ioutil.ReadAll(r)
- // if err != nil {
- // return errors.Wrap(err, "read failed")
- // }
- //
- // Retrieving the cause of an error
- //
- // Using errors.Wrap constructs a stack of errors, adding context to the
- // preceding error. Depending on the nature of the error it may be necessary
- // to reverse the operation of errors.Wrap to retrieve the original error
- // for inspection. Any error value which implements this interface
- //
- // type Causer interface {
- // Cause() error
- // }
- //
- // can be inspected by errors.Cause. errors.Cause will recursively retrieve
- // the topmost error which does not implement causer, which is assumed to be
- // the original cause. For example:
- //
- // switch err := errors.Cause(err).(type) {
- // case *MyError:
- // // handle specifically
- // default:
- // // unknown error
- // }
- //
- // Formatted printing of errors
- //
- // All error values returned from this package implement fmt.Formatter and can
- // be formatted by the fmt package. The following verbs are supported
- //
- // %s print the error. If the error has a Cause it will be
- // printed recursively
- // %v see %s
- // %+v extended format. Each Frame of the error's StackTrace will
- // be printed in detail.
- //
- // Retrieving the stack trace of an error or wrapper
- //
- // New, Errorf, Wrap, and Wrapf record a stack trace at the point they are
- // invoked. This information can be retrieved with the following interface.
- //
- // type stackTracer interface {
- // StackTrace() errors.StackTrace
- // }
- //
- // Where errors.StackTrace is defined as
- //
- // type StackTrace []Frame
- //
- // The Frame type represents a call site in the stack trace. Frame supports
- // the fmt.Formatter interface that can be used for printing information about
- // the stack trace of this error. For example:
- //
- // if err, ok := err.(stackTracer); ok {
- // for _, f := range err.StackTrace() {
- // fmt.Printf("%+s:%d", f)
- // }
- // }
- //
- // See the documentation for Frame.Format for more details.
- package errors
- import (
- "fmt"
- "io"
- )
- // _error is an error implementation returned by New and Errorf
- // that implements its own fmt.Formatter.
- type _error struct {
- msg string
- *stack
- }
- func (e _error) Error() string { return e.msg }
- func (e _error) Format(s fmt.State, verb rune) {
- switch verb {
- case 'v':
- if s.Flag('+') {
- io.WriteString(s, e.msg)
- fmt.Fprintf(s, "%+v", e.StackTrace())
- return
- }
- fallthrough
- case 's':
- io.WriteString(s, e.msg)
- }
- }
- // New returns an error with the supplied message.
- func New(message string) error {
- return _error{
- message,
- callers(),
- }
- }
- // Errorf formats according to a format specifier and returns the string
- // as a value that satisfies error.
- func Errorf(format string, args ...interface{}) error {
- return _error{
- fmt.Sprintf(format, args...),
- callers(),
- }
- }
- type cause struct {
- cause error
- msg string
- }
- func (c cause) Error() string { return fmt.Sprintf("%s: %v", c.msg, c.Cause()) }
- func (c cause) Cause() error { return c.cause }
- // wrapper is an error implementation returned by Wrap and Wrapf
- // that implements its own fmt.Formatter.
- type wrapper struct {
- cause
- *stack
- }
- func (w wrapper) Format(s fmt.State, verb rune) {
- switch verb {
- case 'v':
- if s.Flag('+') {
- fmt.Fprintf(s, "%+v\n", w.Cause())
- io.WriteString(s, w.msg)
- fmt.Fprintf(s, "%+v", w.StackTrace())
- return
- }
- fallthrough
- case 's':
- io.WriteString(s, w.Error())
- case 'q':
- fmt.Fprintf(s, "%q", w.Error())
- }
- }
- // Wrap returns an error annotating err with message.
- // If err is nil, Wrap returns nil.
- func Wrap(err error, message string) error {
- if err == nil {
- return nil
- }
- return wrapper{
- cause: cause{
- cause: err,
- msg: message,
- },
- stack: callers(),
- }
- }
- // Wrapf returns an error annotating err with the format specifier.
- // If err is nil, Wrapf returns nil.
- func Wrapf(err error, format string, args ...interface{}) error {
- if err == nil {
- return nil
- }
- return wrapper{
- cause: cause{
- cause: err,
- msg: fmt.Sprintf(format, args...),
- },
- stack: callers(),
- }
- }
- // Cause returns the underlying cause of the error, if possible.
- // An error value has a cause if it implements the following
- // interface:
- //
- // type Causer interface {
- // Cause() error
- // }
- //
- // If the error does not implement Cause, the original error will
- // be returned. If the error is nil, nil will be returned without further
- // investigation.
- func Cause(err error) error {
- type causer interface {
- Cause() error
- }
- for err != nil {
- cause, ok := err.(causer)
- if !ok {
- break
- }
- err = cause.Cause()
- }
- return err
- }
|