-
Notifications
You must be signed in to change notification settings - Fork 277
/
errors.go
93 lines (79 loc) · 2.88 KB
/
errors.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
// Copyright 2020-2023 Buf Technologies, Inc.
//
// 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 storage
import (
"errors"
"fmt"
"strings"
"github.com/bufbuild/buf/private/pkg/normalpath"
)
var (
// ErrClosed is the error returned if a bucket or object is already closed.
ErrClosed = errors.New("already closed")
// ErrSetExternalPathUnsupported is the error returned if a bucket does not support SetExternalPath.
ErrSetExternalPathUnsupported = errors.New("setting the external path is unsupported for this bucket")
// errNotExist is the error returned if a path does not exist.
errNotExist = errors.New("does not exist")
)
// NewErrNotExist returns a new error for a path not existing.
func NewErrNotExist(path string) error {
return normalpath.NewError(path, errNotExist)
}
// IsNotExist returns true for a error that is for a path not existing.
func IsNotExist(err error) bool {
return errors.Is(err, errNotExist)
}
// NewErrExistsMultipleLocations returns a new error if a path exists in multiple locations.
func NewErrExistsMultipleLocations(path string, externalPaths ...string) error {
return &errorExistsMultipleLocations{
Path: path,
ExternalPaths: externalPaths,
}
}
// IsExistsMultipleLocations returns true if the error is for a path existing in multiple locations.
func IsExistsMultipleLocations(err error) bool {
if err == nil {
return false
}
asErr := &errorExistsMultipleLocations{}
return errors.As(err, &asErr)
}
// IsWriteLimitReached returns true if the error is of writes exceeding the limit of the bucket.
func IsWriteLimitReached(err error) bool {
if err == nil {
return false
}
asErr := &errWriteLimitReached{}
return errors.As(err, &asErr)
}
// errorExistsMultipleLocations is the error returned if a path exists in multiple locations.
type errorExistsMultipleLocations struct {
Path string
ExternalPaths []string
}
// Error implements error.
func (e *errorExistsMultipleLocations) Error() string {
return e.Path + " exists in multiple locations: " + strings.Join(e.ExternalPaths, " ")
}
// errWriteLimitReached is the error returned if the write limit is reached.
//
// See [LimitWriteBucket].
type errWriteLimitReached struct {
Limit int64
ExceedingBy int64
}
// Error implements error.
func (e *errWriteLimitReached) Error() string {
return fmt.Sprintf("write limit reached: limit: %d, exceeding by: %d", e.Limit, e.ExceedingBy)
}