torvalds/linux

View on GitHub
scripts/spdxcheck.py

Summary

Maintainability
F
3 days
Test Coverage

Function read_spdxdata has a Cognitive Complexity of 45 (exceeds 5 allowed). Consider refactoring.
Open

def read_spdxdata(repo):

    # The subdirectories of LICENSES in the kernel source
    # Note: exceptions needs to be parsed as last directory.
    license_dirs = [ "preferred", "dual", "deprecated", "exceptions" ]
Severity: Minor
Found in scripts/spdxcheck.py - About 6 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

File spdxcheck.py has 363 lines of code (exceeds 250 allowed). Consider refactoring.
Open

#!/usr/bin/env python3
# SPDX-License-Identifier: GPL-2.0
# Copyright Thomas Gleixner <tglx@linutronix.de>

from argparse import ArgumentParser
Severity: Minor
Found in scripts/spdxcheck.py - About 4 hrs to fix

    Function parse_lines has a Cognitive Complexity of 22 (exceeds 5 allowed). Consider refactoring.
    Open

        def parse_lines(self, fd, maxlines, fname):
            self.checked += 1
            self.curline = 0
            fail = 1
            try:
    Severity: Minor
    Found in scripts/spdxcheck.py - 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

    Function validate has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
    Open

        def validate(self, tok):
            id = tok.value.upper()
            if tok.type == 'ID':
                if not id in self.spdx.licenses:
                    raise ParserException(tok, 'Invalid License ID')
    Severity: Minor
    Found in scripts/spdxcheck.py - About 55 mins 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

    Avoid deeply nested control flow statements.
    Open

                        if lid in spdx.licenses:
                            raise SPDXException(el, 'Duplicate License Identifier: %s' %lid)
                        else:
                            spdx.licenses.append(lid)
    
    
    Severity: Major
    Found in scripts/spdxcheck.py - About 45 mins to fix

      Avoid deeply nested control flow statements.
      Open

                          if exception:
                              if not len(spdx.exceptions[exception]):
                                  raise SPDXException(el, 'Exception %s is missing SPDX-Licenses' %exception)
                              spdx.exception_files += 1
                          else:
      Severity: Major
      Found in scripts/spdxcheck.py - About 45 mins to fix

        Avoid deeply nested control flow statements.
        Open

                            if not di.missing:
                                dirsok += 1
        
        
        Severity: Major
        Found in scripts/spdxcheck.py - About 45 mins to fix

          Avoid deeply nested control flow statements.
          Open

                              for lic in l.split(':')[1].upper().strip().replace(' ', '').replace('\t', '').split(','):
                                  if not lic in spdx.licenses:
                                      raise SPDXException(None, 'Exception %s missing license %s' %(exception, lic))
                                  spdx.exceptions[exception].append(lic)
          
          
          Severity: Major
          Found in scripts/spdxcheck.py - About 45 mins to fix

            Avoid deeply nested control flow statements.
            Open

                                if os.path.isfile(p):
                                    parser.parse_lines(open(p, 'rb'), args.maxlines, p)
                                elif os.path.isdir(p):
                                    scan_git_subtree(repo.head.reference.commit.tree, p,
                                                     args.depth)
            Severity: Major
            Found in scripts/spdxcheck.py - About 45 mins to fix

              Avoid deeply nested control flow statements.
              Open

                                  for f in sorted(di.files):
                                      sys.stderr.write('    %s\n' %f)
              
              
              Severity: Major
              Found in scripts/spdxcheck.py - About 45 mins to fix

                Avoid deeply nested control flow statements.
                Open

                                    if di.missing:
                                        valid = di.total - di.missing
                                        pc = int(100 * valid / di.total)
                                        sys.stderr.write('    %-80s: %5d of %5d  %3d%%\n' %(f, valid, di.total, pc))
                
                
                Severity: Major
                Found in scripts/spdxcheck.py - About 45 mins to fix

                  Function read_exclude_file has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
                  Open

                  def read_exclude_file(fname):
                      rules = []
                      if not fname:
                          return rules
                      with open(fname) as fd:
                  Severity: Minor
                  Found in scripts/spdxcheck.py - About 25 mins 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

                  Identical blocks of code found in 2 locations. Consider refactoring.
                  Open

                      except Exception as ex:
                          sys.stderr.write('FAIL: %s\n' %ex)
                          sys.stderr.write('%s\n' %traceback.format_exc())
                          sys.exit(1)
                  Severity: Major
                  Found in scripts/spdxcheck.py and 1 other location - About 2 hrs to fix
                  scripts/spdxcheck.py on lines 376..447

                  Duplicated Code

                  Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                  Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                  When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                  Tuning

                  This issue has a mass of 53.

                  We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                  The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                  If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                  See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                  Refactorings

                  Further Reading

                  Identical blocks of code found in 2 locations. Consider refactoring.
                  Open

                      try:
                          if len(args.path) and args.path[0] == '-':
                              stdin = os.fdopen(sys.stdin.fileno(), 'rb')
                              parser.parse_lines(stdin, args.maxlines, '-')
                          else:
                  Severity: Major
                  Found in scripts/spdxcheck.py and 1 other location - About 2 hrs to fix
                  scripts/spdxcheck.py on lines 362..365

                  Duplicated Code

                  Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                  Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                  When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                  Tuning

                  This issue has a mass of 53.

                  We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                  The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                  If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                  See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                  Refactorings

                  Further Reading

                  There are no issues that match your filters.

                  Category
                  Status