diff --git a/.golangci.yml b/.golangci.yml index 35a903a81..5931556d9 100644 --- a/.golangci.yml +++ b/.golangci.yml @@ -10,6 +10,7 @@ linters: - unused - misspell - bodyclose + - prealloc disable: - errcheck diff --git a/errors.go b/errors.go index 8e0b788d6..4fbfc8528 100644 --- a/errors.go +++ b/errors.go @@ -90,7 +90,7 @@ func (ErrManifestUnverified) Error() string { type ErrManifestVerification []error func (errs ErrManifestVerification) Error() string { - var parts []string + parts := make([]string, 0, len(errs)) for _, err := range errs { parts = append(parts, err.Error()) } diff --git a/registry/handlers/app.go b/registry/handlers/app.go index 7ea9f4351..bd3a60d7b 100644 --- a/registry/handlers/app.go +++ b/registry/handlers/app.go @@ -441,6 +441,7 @@ func (app *App) register(routeName string, dispatch dispatchFunc) { // configureEvents prepares the event sink for action. func (app *App) configureEvents(configuration *configuration.Configuration) { // Configure all of the endpoint sinks. + // nolint:prealloc var sinks []events.Sink for _, endpoint := range configuration.Notifications.Endpoints { if endpoint.Disabled { diff --git a/registry/proxy/proxytagservice_test.go b/registry/proxy/proxytagservice_test.go index 61e158527..e31a44ebd 100644 --- a/registry/proxy/proxytagservice_test.go +++ b/registry/proxy/proxytagservice_test.go @@ -49,7 +49,7 @@ func (m *mockTagStore) All(ctx context.Context) ([]string, error) { m.Lock() defer m.Unlock() - var tags []string + tags := make([]string, 0, len(m.mapping)) for tag := range m.mapping { tags = append(tags, tag) } diff --git a/registry/storage/driver/azure/azure.go b/registry/storage/driver/azure/azure.go index c2cf92777..3e3c05ceb 100644 --- a/registry/storage/driver/azure/azure.go +++ b/registry/storage/driver/azure/azure.go @@ -416,7 +416,7 @@ func directDescendants(blobs []string, prefix string) []string { } } - var keys []string + keys := make([]string, 0, len(out)) for k := range out { keys = append(keys, k) } diff --git a/registry/storage/driver/inmemory/mfs.go b/registry/storage/driver/inmemory/mfs.go index da0c2abbd..7eaa3c572 100644 --- a/registry/storage/driver/inmemory/mfs.go +++ b/registry/storage/driver/inmemory/mfs.go @@ -1,6 +1,7 @@ package inmemory import ( + "errors" "fmt" "io" "path" @@ -97,8 +98,13 @@ func (d *dir) list(p string) ([]string, error) { return nil, errIsNotDir } - var children []string - for _, child := range n.(*dir).children { + dir, ok := n.(*dir) + if !ok { + return nil, errors.New("not a directory") + } + + children := make([]string, 0, len(dir.children)) + for _, child := range dir.children { children = append(children, child.path()) } diff --git a/registry/storage/driver/s3-aws/s3.go b/registry/storage/driver/s3-aws/s3.go index 46ee8a181..ff0f46b30 100644 --- a/registry/storage/driver/s3-aws/s3.go +++ b/registry/storage/driver/s3-aws/s3.go @@ -1456,7 +1456,7 @@ func (w *writer) Commit() error { } w.committed = true - var completedUploadedParts completedParts + completedUploadedParts := make(completedParts, 0, len(w.parts)) for _, part := range w.parts { completedUploadedParts = append(completedUploadedParts, &s3.CompletedPart{ ETag: part.ETag, diff --git a/registry/storage/driver/s3-aws/s3_test.go b/registry/storage/driver/s3-aws/s3_test.go index 9f39975bf..8d2018042 100644 --- a/registry/storage/driver/s3-aws/s3_test.go +++ b/registry/storage/driver/s3-aws/s3_test.go @@ -500,6 +500,7 @@ func TestWalk(t *testing.T) { } // create file structure matching fileset above + // nolint:prealloc var created []string for _, p := range fileset { err := drvr.PutContent(context.Background(), p, []byte("content "+p)) diff --git a/registry/storage/tagstore.go b/registry/storage/tagstore.go index bf6541f93..268c21cc2 100644 --- a/registry/storage/tagstore.go +++ b/registry/storage/tagstore.go @@ -24,25 +24,24 @@ type tagStore struct { // All returns all tags func (ts *tagStore) All(ctx context.Context) ([]string, error) { - var tags []string - pathSpec, err := pathFor(manifestTagPathSpec{ name: ts.repository.Named().Name(), }) if err != nil { - return tags, err + return nil, err } entries, err := ts.blobStore.driver.List(ctx, pathSpec) if err != nil { switch err := err.(type) { case storagedriver.PathNotFoundError: - return tags, distribution.ErrRepositoryUnknown{Name: ts.repository.Named().Name()} + return nil, distribution.ErrRepositoryUnknown{Name: ts.repository.Named().Name()} default: - return tags, err + return nil, err } } + tags := make([]string, 0, len(entries)) for _, entry := range entries { _, filename := path.Split(entry) tags = append(tags, filename) diff --git a/testutil/manifests.go b/testutil/manifests.go index 9501aacea..96af5703b 100644 --- a/testutil/manifests.go +++ b/testutil/manifests.go @@ -14,7 +14,7 @@ import ( func MakeManifestList(blobstatter distribution.BlobStatter, manifestDigests []digest.Digest) (*manifestlist.DeserializedManifestList, error) { ctx := context.Background() - var manifestDescriptors []manifestlist.ManifestDescriptor + manifestDescriptors := make([]manifestlist.ManifestDescriptor, 0, len(manifestDigests)) for _, manifestDigest := range manifestDigests { descriptor, err := blobstatter.Stat(ctx, manifestDigest) if err != nil {