hackedteam/vector-edk

View on GitHub
vector-uefi/fd/efi/StdLib/lib/python.27/imputil.py

Summary

Maintainability
F
1 mo
Test Coverage

File imputil.py has 370 lines of code (exceeds 250 allowed). Consider refactoring.
Open

"""
Import utilities

Exported classes:
    ImportManager   Manage the import process
Severity: Minor
Found in vector-uefi/fd/efi/StdLib/lib/python.27/imputil.py - About 4 hrs to fix

    Function _import_hook has a Cognitive Complexity of 17 (exceeds 5 allowed). Consider refactoring.
    Open

        def _import_hook(self, fqname, globals=None, locals=None, fromlist=None):
            """Python calls this hook to locate and import a module."""
    
            parts = fqname.split('.')
    
    Severity: Minor
    Found in vector-uefi/fd/efi/StdLib/lib/python.27/imputil.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 _os_bootstrap has a Cognitive Complexity of 13 (exceeds 5 allowed). Consider refactoring.
    Open

    def _os_bootstrap():
        "Set up 'os' module replacement functions for use during import bootstrap."
    
        names = sys.builtin_module_names
    
    Severity: Minor
    Found in vector-uefi/fd/efi/StdLib/lib/python.27/imputil.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 _process_result has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
    Open

        def _process_result(self, result, fqname):
            ispkg, code, values = result
            # did get_code() return an actual module? (rather than a code object)
            is_module = isinstance(code, _ModuleType)
    
    Severity: Minor
    Found in vector-uefi/fd/efi/StdLib/lib/python.27/imputil.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 py_suffix_importer has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
    Open

    def py_suffix_importer(filename, finfo, fqname):
        file = filename[:-3] + _suffix
        t_py = long(finfo[8])
        t_pyc = _timestamp(file)
    
    Severity: Minor
    Found in vector-uefi/fd/efi/StdLib/lib/python.27/imputil.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_fromlist has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
    Open

        def _import_fromlist(self, package, fromlist):
            'Import any sub-modules in the "from" list.'
    
            # if '*' is present in the fromlist, then look for the '__all__'
            # variable to find additional items (modules) to import.
    Severity: Minor
    Found in vector-uefi/fd/efi/StdLib/lib/python.27/imputil.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_pathname has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
    Open

        def _import_pathname(self, pathname, fqname):
            if _os_path_isdir(pathname):
                result = self._import_pathname(_os_path_join(pathname, '__init__'),
                                               fqname)
                if result:
    Severity: Minor
    Found in vector-uefi/fd/efi/StdLib/lib/python.27/imputil.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 getattr(top_module, parts[1])
    Severity: Major
    Found in vector-uefi/fd/efi/StdLib/lib/python.27/imputil.py - About 30 mins to fix

      Avoid too many return statements within this function.
      Open

                      return top_module
      Severity: Major
      Found in vector-uefi/fd/efi/StdLib/lib/python.27/imputil.py - About 30 mins to fix

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

            def _import_top_module(self, name):
                # scan sys.path looking for a location in the filesystem that contains
                # the module, or an Importer object that can import the module.
                for item in sys.path:
                    if isinstance(item, _StringType):
        Severity: Minor
        Found in vector-uefi/fd/efi/StdLib/lib/python.27/imputil.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

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

            def __init__(self, fs_imp=None):
                # we're definitely going to be importing something in the future,
                # so let's just load the OS-related facilities.
                if not _os_stat:
                    _os_bootstrap()
        Severity: Minor
        Found in vector-uefi/fd/efi/StdLib/lib/python.27/imputil.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 vector-uefi/fd/efi/StdLib/lib/python.27/imputil.py and 1 other location - About 3 wks to fix
        AppPkg/Applications/Python/Python-2.7.2/Lib/imputil.py on lines 0..625

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

        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