mirror of
https://github.com/pkg/errors.git
synced 2025-05-29 18:53:07 +00:00
113 lines
2.0 KiB
Go
113 lines
2.0 KiB
Go
// Package errors implements functions to manipulate errors.
|
|
package errors
|
|
|
|
import (
|
|
"fmt"
|
|
"io"
|
|
"os"
|
|
"runtime"
|
|
)
|
|
|
|
// New returns an error that formats as the given text.
|
|
func New(text string) error {
|
|
return struct {
|
|
error
|
|
pc uintptr
|
|
}{
|
|
fmt.Errorf(text),
|
|
pc(),
|
|
}
|
|
}
|
|
|
|
type e struct {
|
|
cause error
|
|
message string
|
|
pc uintptr
|
|
}
|
|
|
|
func (e *e) Error() string {
|
|
return e.message + ": " + e.cause.Error()
|
|
}
|
|
|
|
func (e *e) Cause() error {
|
|
return e.cause
|
|
}
|
|
|
|
// Wrap returns an error annotating the cause with message.
|
|
// If cause is nil, Wrap returns nil.
|
|
func Wrap(cause error, message string) error {
|
|
if cause == nil {
|
|
return nil
|
|
}
|
|
return &e{
|
|
cause: cause,
|
|
message: message,
|
|
pc: pc(),
|
|
}
|
|
}
|
|
|
|
type causer interface {
|
|
Cause() error
|
|
}
|
|
|
|
// 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 {
|
|
for err != nil {
|
|
cause, ok := err.(causer)
|
|
if !ok {
|
|
break
|
|
}
|
|
err = cause.Cause()
|
|
}
|
|
return err
|
|
}
|
|
|
|
type locationer interface {
|
|
Location() (string, int)
|
|
}
|
|
|
|
// Print prints the error to Stderr.
|
|
func Print(err error) {
|
|
Fprint(os.Stderr, err)
|
|
}
|
|
|
|
// Fprint prints the error to the supplied writer.
|
|
// The format of the output is the same as Print.
|
|
// If err is nil, nothing is printed.
|
|
func Fprint(w io.Writer, err error) {
|
|
for err != nil {
|
|
location, ok := err.(locationer)
|
|
if ok {
|
|
file, line := location.Location()
|
|
fmt.Fprint(w, "%s:%d: ", file, line)
|
|
}
|
|
switch err := err.(type) {
|
|
case *e:
|
|
fmt.Fprintln(w, err.message)
|
|
default:
|
|
fmt.Fprintln(w, err.Error())
|
|
}
|
|
|
|
cause, ok := err.(causer)
|
|
if !ok {
|
|
break
|
|
}
|
|
err = cause.Cause()
|
|
}
|
|
}
|
|
|
|
func pc() uintptr {
|
|
pc, _, _, _ := runtime.Caller(2)
|
|
return pc
|
|
}
|