dotcloud/docker

View on GitHub
daemon/containerd/image_prune.go

Summary

Maintainability
C
1 day
Test Coverage

Method ImageService.pruneUnused has a Cognitive Complexity of 47 (exceeds 20 allowed). Consider refactoring.
Open

func (i *ImageService) pruneUnused(ctx context.Context, filterFunc imageFilterFunc, danglingOnly bool) (*image.PruneReport, error) {
    report := image.PruneReport{}

    allImages, err := i.images.List(ctx)
    if err != nil {
Severity: Minor
Found in daemon/containerd/image_prune.go - About 4 hrs to fix

Cognitive Complexity

Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

A method's cognitive complexity is based on a few simple rules:

  • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
  • Code is considered more complex for each "break in the linear flow of the code"
  • Code is considered more complex when "flow breaking structures are nested"

Further reading

Method ImageService.pruneUnused has 101 lines of code (exceeds 50 allowed). Consider refactoring.
Open

func (i *ImageService) pruneUnused(ctx context.Context, filterFunc imageFilterFunc, danglingOnly bool) (*image.PruneReport, error) {
    report := image.PruneReport{}

    allImages, err := i.images.List(ctx)
    if err != nil {
Severity: Major
Found in daemon/containerd/image_prune.go - About 3 hrs to fix

    Method ImageService.unleaseSnapshotsFromDeletedConfigs has a Cognitive Complexity of 29 (exceeds 20 allowed). Consider refactoring.
    Open

    func (i *ImageService) unleaseSnapshotsFromDeletedConfigs(ctx context.Context, possiblyDeletedConfigs map[digest.Digest]struct{}) error {
        all, err := i.images.List(ctx)
        if err != nil {
            return errors.Wrap(err, "failed to list images during snapshot lease removal")
        }
    Severity: Minor
    Found in daemon/containerd/image_prune.go - About 1 hr to fix

    Cognitive Complexity

    Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

    A method's cognitive complexity is based on a few simple rules:

    • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
    • Code is considered more complex for each "break in the linear flow of the code"
    • Code is considered more complex when "flow breaking structures are nested"

    Further reading

    Method ImageService.unleaseSnapshotsFromDeletedConfigs has 6 return statements (exceeds 4 allowed).
    Open

    func (i *ImageService) unleaseSnapshotsFromDeletedConfigs(ctx context.Context, possiblyDeletedConfigs map[digest.Digest]struct{}) error {
        all, err := i.images.List(ctx)
        if err != nil {
            return errors.Wrap(err, "failed to list images during snapshot lease removal")
        }
    Severity: Major
    Found in daemon/containerd/image_prune.go - About 40 mins to fix

      Method ImageService.pruneUnused has 6 return statements (exceeds 4 allowed).
      Open

      func (i *ImageService) pruneUnused(ctx context.Context, filterFunc imageFilterFunc, danglingOnly bool) (*image.PruneReport, error) {
          report := image.PruneReport{}
      
          allImages, err := i.images.List(ctx)
          if err != nil {
      Severity: Major
      Found in daemon/containerd/image_prune.go - About 40 mins to fix

        Method ImageService.ImagesPrune has 5 return statements (exceeds 4 allowed).
        Open

        func (i *ImageService) ImagesPrune(ctx context.Context, fltrs filters.Args) (*image.PruneReport, error) {
            if !i.pruneRunning.CompareAndSwap(false, true) {
                return nil, errPruneRunning
            }
            defer i.pruneRunning.Store(false)
        Severity: Major
        Found in daemon/containerd/image_prune.go - About 35 mins to fix

          There are no issues that match your filters.

          Category
          Status