hackedteam/vector-edk

View on GitHub
AppPkg/Applications/Python/Python-2.7.2/Lib/modulefinder.py

Summary

Maintainability
F
2 mos
Test Coverage

File modulefinder.py has 561 lines of code (exceeds 250 allowed). Consider refactoring.
Open

"""Find modules used by a script, using introspection."""
# This module should be kept compatible with Python 2.2, see PEP 291.

from __future__ import generators
import dis
Severity: Major
Found in AppPkg/Applications/Python/Python-2.7.2/Lib/modulefinder.py - About 1 day to fix

    Function scan_code has a Cognitive Complexity of 47 (exceeds 5 allowed). Consider refactoring.
    Open

        def scan_code(self, co, m):
            code = co.co_code
            if sys.version_info >= (2, 5):
                scanner = self.scan_opcodes_25
            else:
    Severity: Minor
    Found in AppPkg/Applications/Python/Python-2.7.2/Lib/modulefinder.py - About 7 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 test has a Cognitive Complexity of 27 (exceeds 5 allowed). Consider refactoring.
    Open

    def test():
        # Parse command line
        import getopt
        try:
            opts, args = getopt.getopt(sys.argv[1:], "dmp:qx:")
    Severity: Minor
    Found in AppPkg/Applications/Python/Python-2.7.2/Lib/modulefinder.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

    ModuleFinder has 26 functions (exceeds 20 allowed). Consider refactoring.
    Open

    class ModuleFinder:
    
        def __init__(self, path=None, debug=0, excludes=[], replace_paths=[]):
            if path is None:
                path = sys.path
    Severity: Minor
    Found in AppPkg/Applications/Python/Python-2.7.2/Lib/modulefinder.py - About 3 hrs to fix

      Function find_all_submodules has a Cognitive Complexity of 18 (exceeds 5 allowed). Consider refactoring.
      Open

          def find_all_submodules(self, m):
              if not m.__path__:
                  return
              modules = {}
              # 'suffixes' used to be a list hardcoded to [".py", ".pyc", ".pyo"].
      Severity: Minor
      Found in AppPkg/Applications/Python/Python-2.7.2/Lib/modulefinder.py - 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

      Function ensure_fromlist has a Cognitive Complexity of 14 (exceeds 5 allowed). Consider refactoring.
      Open

          def ensure_fromlist(self, m, fromlist, recursive=0):
              self.msg(4, "ensure_fromlist", m, fromlist, recursive)
              for sub in fromlist:
                  if sub == "*":
                      if not recursive:
      Severity: Minor
      Found in AppPkg/Applications/Python/Python-2.7.2/Lib/modulefinder.py - 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

      Function any_missing_maybe has a Cognitive Complexity of 14 (exceeds 5 allowed). Consider refactoring.
      Open

          def any_missing_maybe(self):
              """Return two lists, one with modules that are certainly missing
              and one with modules that *may* be missing. The latter names could
              either be submodules *or* just global names in the package.
      
      Severity: Minor
      Found in AppPkg/Applications/Python/Python-2.7.2/Lib/modulefinder.py - 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

      Function scan_opcodes_25 has a Cognitive Complexity of 13 (exceeds 5 allowed). Consider refactoring.
      Open

          def scan_opcodes_25(self, co,
                           unpack = struct.unpack):
              # Scan the code, and yield 'interesting' opcode combinations
              # Python 2.5 version (has absolute and relative imports)
              code = co.co_code
      Severity: Minor
      Found in AppPkg/Applications/Python/Python-2.7.2/Lib/modulefinder.py - 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

      Function _safe_import_hook has a Cognitive Complexity of 12 (exceeds 5 allowed). Consider refactoring.
      Open

          def _safe_import_hook(self, name, caller, fromlist, level=-1):
              # wrapper for self.import_hook() that won't raise ImportError
              if name in self.badmodules:
                  self._add_badmodule(name, caller)
                  return
      Severity: Minor
      Found in AppPkg/Applications/Python/Python-2.7.2/Lib/modulefinder.py - 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

      Function determine_parent has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring.
      Open

          def determine_parent(self, caller, level=-1):
              self.msgin(4, "determine_parent", caller, level)
              if not caller or level == 0:
                  self.msgout(4, "determine_parent -> None")
                  return None
      Severity: Minor
      Found in AppPkg/Applications/Python/Python-2.7.2/Lib/modulefinder.py - 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

      Function report has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring.
      Open

          def report(self):
              """Print a report to stdout, listing the found modules with their
              paths, as well as modules that are missing, or seem to be missing.
              """
              print
      Severity: Minor
      Found in AppPkg/Applications/Python/Python-2.7.2/Lib/modulefinder.py - 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

      Function replace_paths_in_code has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring.
      Open

          def replace_paths_in_code(self, co):
              new_filename = original_filename = os.path.normpath(co.co_filename)
              for f, r in self.replace_paths:
                  if original_filename.startswith(f):
                      new_filename = r + original_filename[len(f):]
      Severity: Minor
      Found in AppPkg/Applications/Python/Python-2.7.2/Lib/modulefinder.py - 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

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

          def load_module(self, fqname, fp, pathname, file_info):
              suffix, mode, type = file_info
              self.msgin(2, "load_module", fqname, fp and "fp", pathname)
              if type == imp.PKG_DIRECTORY:
                  m = self.load_package(fqname, pathname)
      Severity: Minor
      Found in AppPkg/Applications/Python/Python-2.7.2/Lib/modulefinder.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

      Function find_head_package has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
      Open

          def find_head_package(self, parent, name):
              self.msgin(4, "find_head_package", parent, name)
              if '.' in name:
                  i = name.find('.')
                  head = name[:i]
      Severity: Minor
      Found in AppPkg/Applications/Python/Python-2.7.2/Lib/modulefinder.py - About 45 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 mm.__code__ is None:
                                  m.starimports[name] = 1
                          else:
      Severity: Major
      Found in AppPkg/Applications/Python/Python-2.7.2/Lib/modulefinder.py - About 45 mins to fix

        Function scan_opcodes has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
        Open

            def scan_opcodes(self, co,
                             unpack = struct.unpack):
                # Scan the code, and yield 'interesting' opcode combinations
                # Version for Python 2.4 and older
                code = co.co_code
        Severity: Minor
        Found in AppPkg/Applications/Python/Python-2.7.2/Lib/modulefinder.py - About 45 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

        Function import_module has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
        Open

            def import_module(self, partname, fqname, parent):
                self.msgin(3, "import_module", partname, fqname, parent)
                try:
                    m = self.modules[fqname]
                except KeyError:
        Severity: Minor
        Found in AppPkg/Applications/Python/Python-2.7.2/Lib/modulefinder.py - About 35 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 too many return statements within this function.
        Open

                return m
        Severity: Major
        Found in AppPkg/Applications/Python/Python-2.7.2/Lib/modulefinder.py - About 30 mins to fix

          Avoid too many return statements within this function.
          Open

                  return None
          Severity: Major
          Found in AppPkg/Applications/Python/Python-2.7.2/Lib/modulefinder.py - About 30 mins to fix

            Avoid too many return statements within this function.
            Open

                        return parent
            Severity: Major
            Found in AppPkg/Applications/Python/Python-2.7.2/Lib/modulefinder.py - About 30 mins to fix

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

                  def find_module(self, name, path, parent=None):
                      if parent is not None:
                          # assert path is not None
                          fullname = parent.__name__+'.'+name
                      else:
              Severity: Minor
              Found in AppPkg/Applications/Python/Python-2.7.2/Lib/modulefinder.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

              Severity: Major
              Found in AppPkg/Applications/Python/Python-2.7.2/Lib/modulefinder.py and 1 other location - About 1 mo to fix
              vector-uefi/fd/efi/StdLib/lib/python.27/modulefinder.py on lines 0..671

              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 5021.

              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