2019-04-22 21:35:39 +00:00
|
|
|
/*
|
|
|
|
Copyright 2019 The Ceph-CSI 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 rbd
|
|
|
|
|
2020-07-19 12:21:03 +00:00
|
|
|
// ErrImageNotFound is returned when image name is not found in the cluster on the given pool.
|
2019-04-22 21:35:39 +00:00
|
|
|
type ErrImageNotFound struct {
|
|
|
|
imageName string
|
|
|
|
err error
|
|
|
|
}
|
|
|
|
|
2020-07-02 08:31:10 +00:00
|
|
|
// Error returns a user presentable string of the error.
|
2019-04-22 21:35:39 +00:00
|
|
|
func (e ErrImageNotFound) Error() string {
|
|
|
|
return e.err.Error()
|
|
|
|
}
|
|
|
|
|
2020-06-30 06:43:24 +00:00
|
|
|
// Unwrap returns the encapsulated error of ErrImageNotFound.
|
|
|
|
func (e ErrImageNotFound) Unwrap() error {
|
|
|
|
return e.err
|
|
|
|
}
|
|
|
|
|
2019-04-22 21:35:39 +00:00
|
|
|
// ErrSnapNotFound is returned when snap name passed is not found in the list of snapshots for the
|
2020-07-19 12:21:03 +00:00
|
|
|
// given image.
|
2019-04-22 21:35:39 +00:00
|
|
|
type ErrSnapNotFound struct {
|
|
|
|
snapName string
|
|
|
|
err error
|
|
|
|
}
|
|
|
|
|
2020-07-02 08:31:10 +00:00
|
|
|
// Error returns a user presentable string of the error.
|
2019-04-22 21:35:39 +00:00
|
|
|
func (e ErrSnapNotFound) Error() string {
|
|
|
|
return e.err.Error()
|
|
|
|
}
|
|
|
|
|
2020-06-30 06:43:24 +00:00
|
|
|
// Unwrap returns the encapsulated error of ErrSnapNotFound.
|
|
|
|
func (e ErrSnapNotFound) Unwrap() error {
|
|
|
|
return e.err
|
|
|
|
}
|
|
|
|
|
2019-04-22 21:35:39 +00:00
|
|
|
// ErrVolNameConflict is generated when a requested CSI volume name already exists on RBD but with
|
2020-07-19 12:21:03 +00:00
|
|
|
// different properties, and hence is in conflict with the passed in CSI volume name.
|
2019-04-22 21:35:39 +00:00
|
|
|
type ErrVolNameConflict struct {
|
|
|
|
requestName string
|
|
|
|
err error
|
|
|
|
}
|
|
|
|
|
2020-07-02 08:31:10 +00:00
|
|
|
// Error returns a user presentable string of the error.
|
2019-04-22 21:35:39 +00:00
|
|
|
func (e ErrVolNameConflict) Error() string {
|
|
|
|
return e.err.Error()
|
|
|
|
}
|
2019-05-31 18:09:24 +00:00
|
|
|
|
2020-06-30 06:43:24 +00:00
|
|
|
// Unwrap returns the encapsulated error of ErrVolNameConflict.
|
|
|
|
func (e ErrVolNameConflict) Unwrap() error {
|
|
|
|
return e.err
|
|
|
|
}
|
|
|
|
|
2019-05-31 18:09:24 +00:00
|
|
|
// ErrInvalidVolID is returned when a CSI passed VolumeID does not conform to any known volume ID
|
2020-07-19 12:21:03 +00:00
|
|
|
// formats.
|
2019-05-31 18:09:24 +00:00
|
|
|
type ErrInvalidVolID struct {
|
|
|
|
err error
|
|
|
|
}
|
|
|
|
|
2020-07-02 08:31:10 +00:00
|
|
|
// Error returns a user presentable string of the error.
|
2019-05-31 18:09:24 +00:00
|
|
|
func (e ErrInvalidVolID) Error() string {
|
|
|
|
return e.err.Error()
|
|
|
|
}
|
2019-08-03 22:11:28 +00:00
|
|
|
|
2020-06-30 06:43:24 +00:00
|
|
|
// Unwrap returns the encapsulated error of ErrInvalidVolID.
|
|
|
|
func (e ErrInvalidVolID) Unwrap() error {
|
|
|
|
return e.err
|
|
|
|
}
|
|
|
|
|
2020-07-19 12:21:03 +00:00
|
|
|
// ErrMissingStash is returned when the image metadata stash file is not found.
|
2019-08-03 22:11:28 +00:00
|
|
|
type ErrMissingStash struct {
|
|
|
|
err error
|
|
|
|
}
|
|
|
|
|
2020-07-02 08:31:10 +00:00
|
|
|
// Error returns a user presentable string of the error.
|
2019-08-03 22:11:28 +00:00
|
|
|
func (e ErrMissingStash) Error() string {
|
|
|
|
return e.err.Error()
|
|
|
|
}
|
2020-06-24 07:43:24 +00:00
|
|
|
|
2020-06-30 06:43:24 +00:00
|
|
|
// Unwrap returns the encapsulated error of ErrMissingStash.
|
|
|
|
func (e ErrMissingStash) Unwrap() error {
|
|
|
|
return e.err
|
|
|
|
}
|
|
|
|
|
2020-07-19 12:21:03 +00:00
|
|
|
// ErrFlattenInProgress is returned when flatten is inprogess for an image.
|
2020-06-24 07:43:24 +00:00
|
|
|
type ErrFlattenInProgress struct {
|
|
|
|
err error
|
|
|
|
}
|
|
|
|
|
2020-07-02 08:31:10 +00:00
|
|
|
// Error returns a user presentable string of the error.
|
2020-06-24 07:43:24 +00:00
|
|
|
func (e ErrFlattenInProgress) Error() string {
|
|
|
|
return e.err.Error()
|
|
|
|
}
|
2020-06-30 06:43:24 +00:00
|
|
|
|
|
|
|
// Unwrap returns the encapsulated error of ErrFlattenInProgress.
|
|
|
|
func (e ErrFlattenInProgress) Unwrap() error {
|
|
|
|
return e.err
|
|
|
|
}
|