@@ -51,14 +51,14 @@ func isBlob(req *http.Request) bool {
51
51
// BlobHandler represents a minimal blob storage backend, capable of serving
52
52
// blob contents.
53
53
type BlobHandler interface {
54
- // Get gets the blob contents, or errNotFound if the blob wasn't found.
54
+ // Get gets the blob contents, or ErrNotFound if the blob wasn't found.
55
55
Get (ctx context.Context , repo string , h v1.Hash ) (io.ReadCloser , error )
56
56
}
57
57
58
58
// BlobStatHandler is an extension interface representing a blob storage
59
59
// backend that can serve metadata about blobs.
60
60
type BlobStatHandler interface {
61
- // Stat returns the size of the blob, or errNotFound if the blob wasn't
61
+ // Stat returns the size of the blob, or ErrNotFound if the blob wasn't
62
62
// found, or redirectError if the blob can be found elsewhere.
63
63
Stat (ctx context.Context , repo string , h v1.Hash ) (int64 , error )
64
64
}
@@ -103,8 +103,8 @@ func (r *bytesCloser) Close() error {
103
103
104
104
func (e redirectError ) Error () string { return fmt .Sprintf ("redirecting (%d): %s" , e .Code , e .Location ) }
105
105
106
- // errNotFound represents an error locating the blob.
107
- var errNotFound = errors .New ("not found" )
106
+ // ErrNotFound represents an error locating the blob.
107
+ var ErrNotFound = errors .New ("not found" )
108
108
109
109
type memHandler struct {
110
110
m map [string ][]byte
@@ -119,7 +119,7 @@ func (m *memHandler) Stat(_ context.Context, _ string, h v1.Hash) (int64, error)
119
119
120
120
b , found := m .m [h .String ()]
121
121
if ! found {
122
- return 0 , errNotFound
122
+ return 0 , ErrNotFound
123
123
}
124
124
return int64 (len (b )), nil
125
125
}
@@ -130,7 +130,7 @@ func (m *memHandler) Get(_ context.Context, _ string, h v1.Hash) (io.ReadCloser,
130
130
131
131
b , found := m .m [h .String ()]
132
132
if ! found {
133
- return nil , errNotFound
133
+ return nil , ErrNotFound
134
134
}
135
135
return & bytesCloser {bytes .NewReader (b )}, nil
136
136
}
@@ -153,7 +153,7 @@ func (m *memHandler) Delete(_ context.Context, _ string, h v1.Hash) error {
153
153
defer m .lock .Unlock ()
154
154
155
155
if _ , found := m .m [h .String ()]; ! found {
156
- return errNotFound
156
+ return ErrNotFound
157
157
}
158
158
159
159
delete (m .m , h .String ())
@@ -206,7 +206,7 @@ func (b *blobs) handle(resp http.ResponseWriter, req *http.Request) *regError {
206
206
var size int64
207
207
if bsh , ok := b .blobHandler .(BlobStatHandler ); ok {
208
208
size , err = bsh .Stat (req .Context (), repo , h )
209
- if errors .Is (err , errNotFound ) {
209
+ if errors .Is (err , ErrNotFound ) {
210
210
return regErrBlobUnknown
211
211
} else if err != nil {
212
212
var rerr redirectError
@@ -218,7 +218,7 @@ func (b *blobs) handle(resp http.ResponseWriter, req *http.Request) *regError {
218
218
}
219
219
} else {
220
220
rc , err := b .blobHandler .Get (req .Context (), repo , h )
221
- if errors .Is (err , errNotFound ) {
221
+ if errors .Is (err , ErrNotFound ) {
222
222
return regErrBlobUnknown
223
223
} else if err != nil {
224
224
var rerr redirectError
@@ -254,7 +254,7 @@ func (b *blobs) handle(resp http.ResponseWriter, req *http.Request) *regError {
254
254
var r io.Reader
255
255
if bsh , ok := b .blobHandler .(BlobStatHandler ); ok {
256
256
size , err = bsh .Stat (req .Context (), repo , h )
257
- if errors .Is (err , errNotFound ) {
257
+ if errors .Is (err , ErrNotFound ) {
258
258
return regErrBlobUnknown
259
259
} else if err != nil {
260
260
var rerr redirectError
@@ -266,7 +266,7 @@ func (b *blobs) handle(resp http.ResponseWriter, req *http.Request) *regError {
266
266
}
267
267
268
268
rc , err := b .blobHandler .Get (req .Context (), repo , h )
269
- if errors .Is (err , errNotFound ) {
269
+ if errors .Is (err , ErrNotFound ) {
270
270
return regErrBlobUnknown
271
271
} else if err != nil {
272
272
var rerr redirectError
@@ -283,7 +283,7 @@ func (b *blobs) handle(resp http.ResponseWriter, req *http.Request) *regError {
283
283
284
284
} else {
285
285
tmp , err := b .blobHandler .Get (req .Context (), repo , h )
286
- if errors .Is (err , errNotFound ) {
286
+ if errors .Is (err , ErrNotFound ) {
287
287
return regErrBlobUnknown
288
288
} else if err != nil {
289
289
var rerr redirectError
0 commit comments