docker/docker

View on GitHub
daemon/containerd/image.go

Summary

Maintainability
F
3 days
Test Coverage

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

func (i *ImageService) resolveAllReferences(ctx context.Context, refOrID string) (*containerdimages.Image, []containerdimages.Image, error) {
    parsed, err := reference.ParseAnyReference(refOrID)
    if err != nil {
        return nil, nil, errdefs.InvalidParameter(err)
    }
Severity: Minor
Found in daemon/containerd/image.go - About 1 day 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.resolveImage has a Cognitive Complexity of 40 (exceeds 20 allowed). Consider refactoring.
Open

func (i *ImageService) resolveImage(ctx context.Context, refOrID string) (containerdimages.Image, error) {
    parsed, err := reference.ParseAnyReference(refOrID)
    if err != nil {
        return containerdimages.Image{}, errdefs.InvalidParameter(err)
    }
Severity: Minor
Found in daemon/containerd/image.go - About 3 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.resolveAllReferences has 103 lines of code (exceeds 50 allowed). Consider refactoring.
Open

func (i *ImageService) resolveAllReferences(ctx context.Context, refOrID string) (*containerdimages.Image, []containerdimages.Image, error) {
    parsed, err := reference.ParseAnyReference(refOrID)
    if err != nil {
        return nil, nil, errdefs.InvalidParameter(err)
    }
Severity: Major
Found in daemon/containerd/image.go - About 3 hrs to fix

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

    func (i *ImageService) GetImage(ctx context.Context, refOrID string, options backend.GetImageOpts) (*image.Image, error) {
        desc, err := i.resolveImage(ctx, refOrID)
        if err != nil {
            return nil, err
        }
    Severity: Minor
    Found in daemon/containerd/image.go - About 2 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.GetImage has 66 lines of code (exceeds 50 allowed). Consider refactoring.
    Open

    func (i *ImageService) GetImage(ctx context.Context, refOrID string, options backend.GetImageOpts) (*image.Image, error) {
        desc, err := i.resolveImage(ctx, refOrID)
        if err != nil {
            return nil, err
        }
    Severity: Minor
    Found in daemon/containerd/image.go - About 1 hr to fix

      Method ImageService.resolveImage has 65 lines of code (exceeds 50 allowed). Consider refactoring.
      Open

      func (i *ImageService) resolveImage(ctx context.Context, refOrID string) (containerdimages.Image, error) {
          parsed, err := reference.ParseAnyReference(refOrID)
          if err != nil {
              return containerdimages.Image{}, errdefs.InvalidParameter(err)
          }
      Severity: Minor
      Found in daemon/containerd/image.go - About 1 hr to fix

        Method ImageService.resolveImage has 14 return statements (exceeds 4 allowed).
        Open

        func (i *ImageService) resolveImage(ctx context.Context, refOrID string) (containerdimages.Image, error) {
            parsed, err := reference.ParseAnyReference(refOrID)
            if err != nil {
                return containerdimages.Image{}, errdefs.InvalidParameter(err)
            }
        Severity: Major
        Found in daemon/containerd/image.go - About 1 hr to fix

          Method ImageService.resolveAllReferences has 14 return statements (exceeds 4 allowed).
          Open

          func (i *ImageService) resolveAllReferences(ctx context.Context, refOrID string) (*containerdimages.Image, []containerdimages.Image, error) {
              parsed, err := reference.ParseAnyReference(refOrID)
              if err != nil {
                  return nil, nil, errdefs.InvalidParameter(err)
              }
          Severity: Major
          Found in daemon/containerd/image.go - About 1 hr to fix

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

            func (i *ImageService) GetImageManifest(ctx context.Context, refOrID string, options backend.GetImageOpts) (*ocispec.Descriptor, error) {
                platform := matchAllWithPreference(platforms.Default())
                if options.Platform != nil {
                    platform = platforms.Only(*options.Platform)
                }
            Severity: Minor
            Found in daemon/containerd/image.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.GetImageManifest has 11 return statements (exceeds 4 allowed).
            Open

            func (i *ImageService) GetImageManifest(ctx context.Context, refOrID string, options backend.GetImageOpts) (*ocispec.Descriptor, error) {
                platform := matchAllWithPreference(platforms.Default())
                if options.Platform != nil {
                    platform = platforms.Only(*options.Platform)
                }
            Severity: Major
            Found in daemon/containerd/image.go - About 1 hr to fix

              Method ImageService.presentImages has 9 return statements (exceeds 4 allowed).
              Open

              func (i *ImageService) presentImages(ctx context.Context, desc containerdimages.Image, refOrID string, platform platforms.MatchComparer) ([]imagespec.DockerOCIImage, error) {
                  var presentImages []imagespec.DockerOCIImage
                  err := i.walkImageManifests(ctx, desc, func(img *ImageManifest) error {
                      conf, err := img.Config(ctx)
                      if err != nil {
              Severity: Major
              Found in daemon/containerd/image.go - About 55 mins to fix

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

                func (i *ImageService) GetImage(ctx context.Context, refOrID string, options backend.GetImageOpts) (*image.Image, error) {
                    desc, err := i.resolveImage(ctx, refOrID)
                    if err != nil {
                        return nil, err
                    }
                Severity: Major
                Found in daemon/containerd/image.go - About 35 mins to fix

                  There are no issues that match your filters.

                  Category
                  Status