
Updates the differ service to support calling and configuring multiple differs. The differs are configured as an ordered list of differs which will each be attempting until a supported differ is called. Additionally a not supported error type was added to allow differs to be selective of whether the differ arguments are supported by the differ. This error type corresponds to the GRPC unimplemented error. Signed-off-by: Derek McGowan <derek@mcgstyle.net>
60 lines
2.1 KiB
Go
60 lines
2.1 KiB
Go
// Package errdefs defines the common errors used throughout containerd
|
|
// packages.
|
|
//
|
|
// Use with errors.Wrap and error.Wrapf to add context to an error.
|
|
//
|
|
// To detect an error class, use the IsXXX functions to tell whether an error
|
|
// is of a certain type.
|
|
//
|
|
// The functions ToGRPC and FromGRPC can be used to map server-side and
|
|
// client-side errors to the correct types.
|
|
package errdefs
|
|
|
|
import "github.com/pkg/errors"
|
|
|
|
// Definitions of common error types used throughout containerd. All containerd
|
|
// errors returned by most packages will map into one of these errors classes.
|
|
// Packages should return errors of these types when they want to instruct a
|
|
// client to take a particular action.
|
|
//
|
|
// For the most part, we just try to provide local grpc errors. Most conditions
|
|
// map very well to those defined by grpc.
|
|
var (
|
|
ErrUnknown = errors.New("unknown") // used internally to represent a missed mapping.
|
|
ErrInvalidArgument = errors.New("invalid argument")
|
|
ErrNotFound = errors.New("not found")
|
|
ErrAlreadyExists = errors.New("already exists")
|
|
ErrFailedPrecondition = errors.New("failed precondition")
|
|
ErrUnavailable = errors.New("unavailable")
|
|
ErrNotSupported = errors.New("not supported") // represents not supported and unimplemented
|
|
)
|
|
|
|
func IsInvalidArgument(err error) bool {
|
|
return errors.Cause(err) == ErrInvalidArgument
|
|
}
|
|
|
|
// IsNotFound returns true if the error is due to a missing object
|
|
func IsNotFound(err error) bool {
|
|
return errors.Cause(err) == ErrNotFound
|
|
}
|
|
|
|
// IsAlreadyExists returns true if the error is due to an already existing
|
|
// metadata item
|
|
func IsAlreadyExists(err error) bool {
|
|
return errors.Cause(err) == ErrAlreadyExists
|
|
}
|
|
|
|
// IsFailedPrecondition returns true if an operation could not proceed to the
|
|
// lack of a particular condition.
|
|
func IsFailedPrecondition(err error) bool {
|
|
return errors.Cause(err) == ErrFailedPrecondition
|
|
}
|
|
|
|
func IsUnavailable(err error) bool {
|
|
return errors.Cause(err) == ErrUnavailable
|
|
}
|
|
|
|
func IsNotSupported(err error) bool {
|
|
return errors.Cause(err) == ErrNotSupported
|
|
}
|