mirror of
https://github.com/TECHNOFAB11/zfs-localpv.git
synced 2025-12-12 22:40:12 +01:00
100 lines
2.4 KiB
Go
100 lines
2.4 KiB
Go
|
|
/*
|
||
|
|
Copyright 2019 The OpenEBS Authors
|
||
|
|
|
||
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
||
|
|
you may not use this file except in compliance with the License.
|
||
|
|
You may obtain a copy of the License at
|
||
|
|
|
||
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
||
|
|
|
||
|
|
Unless required by applicable law or agreed to in writing, software
|
||
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
||
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||
|
|
See the License for the specific language governing permissions and
|
||
|
|
limitations under the License.
|
||
|
|
*/
|
||
|
|
|
||
|
|
package errors
|
||
|
|
|
||
|
|
import (
|
||
|
|
"fmt"
|
||
|
|
)
|
||
|
|
|
||
|
|
// New returns an error with the supplied message.
|
||
|
|
// New also records the stack trace at the point it was called.
|
||
|
|
func New(message string) error {
|
||
|
|
return &err{
|
||
|
|
prefix: stackTraceMessagePrefix,
|
||
|
|
msg: message,
|
||
|
|
stack: callers(),
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
// Errorf formats according to a format specifier and returns the string
|
||
|
|
// as a value that satisfies error.
|
||
|
|
// Errorf also records the stack trace at the point it was called.
|
||
|
|
func Errorf(format string, args ...interface{}) error {
|
||
|
|
return &err{
|
||
|
|
prefix: stackTraceMessagePrefix,
|
||
|
|
msg: fmt.Sprintf(format, args...),
|
||
|
|
stack: callers(),
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
// Wrap annotates err with a new message.
|
||
|
|
// If err is nil, Wrap returns nil.
|
||
|
|
func Wrap(err error, message string) error {
|
||
|
|
if err == nil {
|
||
|
|
return nil
|
||
|
|
}
|
||
|
|
return &wrapper{wrapErrorMessagePrefix, message, err}
|
||
|
|
}
|
||
|
|
|
||
|
|
// Wrapf annotates 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{wrapErrorMessagePrefix, fmt.Sprintf(format, args...), err}
|
||
|
|
}
|
||
|
|
|
||
|
|
// WithStack annotates err with a stack trace at the
|
||
|
|
// point WithStack was called. If err is nil, WithStack returns nil.
|
||
|
|
func WithStack(err error) error {
|
||
|
|
if err == nil {
|
||
|
|
return nil
|
||
|
|
}
|
||
|
|
return &withStack{
|
||
|
|
stackTraceMessagePrefix,
|
||
|
|
err,
|
||
|
|
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
|
||
|
|
}
|