hackedteam/vector-edk

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

Summary

Maintainability
F
1 mo
Test Coverage

File pytree.py has 706 lines of code (exceeds 250 allowed). Consider refactoring.
Open

# Copyright 2006 Google, Inc. All Rights Reserved.
# Licensed to PSF under a Contributor Agreement.

"""
Python parse tree definitions.
Severity: Major
Found in vector-uefi/fd/efi/StdLib/lib/python.27/lib2to3/pytree.py - About 1 day to fix

    Function generate_matches has a Cognitive Complexity of 26 (exceeds 5 allowed). Consider refactoring.
    Open

        def generate_matches(self, nodes):
            """
            Generator yielding matches for a sequence of nodes.
    
            Args:
    Severity: Minor
    Found in vector-uefi/fd/efi/StdLib/lib/python.27/lib2to3/pytree.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 _iterative_matches has a Cognitive Complexity of 25 (exceeds 5 allowed). Consider refactoring.
    Open

        def _iterative_matches(self, nodes):
            """Helper to iteratively yield the matches."""
            nodelen = len(nodes)
            if 0 >= self.min:
                yield 0, {}
    Severity: Minor
    Found in vector-uefi/fd/efi/StdLib/lib/python.27/lib2to3/pytree.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 _submatch has a Cognitive Complexity of 14 (exceeds 5 allowed). Consider refactoring.
    Open

        def _submatch(self, node, results=None):
            """
            Match the pattern's content to the node's children.
    
            This assumes the node type matches and self.content is not None.
    Severity: Minor
    Found in vector-uefi/fd/efi/StdLib/lib/python.27/lib2to3/pytree.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 generate_matches has a Cognitive Complexity of 13 (exceeds 5 allowed). Consider refactoring.
    Open

    def generate_matches(patterns, nodes):
        """
        Generator yielding matches for a sequence of patterns and nodes.
    
        Args:
    Severity: Minor
    Found in vector-uefi/fd/efi/StdLib/lib/python.27/lib2to3/pytree.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 _recursive_matches has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring.
    Open

        def _recursive_matches(self, nodes, count):
            """Helper to recursively yield the matches."""
            assert self.content is not None
            if count >= self.min:
                yield 0, {}
    Severity: Minor
    Found in vector-uefi/fd/efi/StdLib/lib/python.27/lib2to3/pytree.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 match_seq has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
    Open

        def match_seq(self, nodes, results=None):
            """Does this pattern exactly match a sequence of nodes?"""
            for c, r in self.generate_matches(nodes):
                if c == len(nodes):
                    if results is not None:
    Severity: Minor
    Found in vector-uefi/fd/efi/StdLib/lib/python.27/lib2to3/pytree.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 has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
    Open

        def replace(self, new):
            """Replace this node with a new one in the parent."""
            assert self.parent is not None, str(self)
            assert new is not None
            if not isinstance(new, list):
    Severity: Minor
    Found in vector-uefi/fd/efi/StdLib/lib/python.27/lib2to3/pytree.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 match has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
    Open

        def match(self, node, results=None):
            """
            Does this pattern exactly match a node?
    
            Returns True if it matches, False if not.
    Severity: Minor
    Found in vector-uefi/fd/efi/StdLib/lib/python.27/lib2to3/pytree.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 optimize has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
    Open

        def optimize(self):
            """Optimize certain stacked wildcard patterns."""
            subpattern = None
            if (self.content is not None and
                len(self.content) == 1 and len(self.content[0]) == 1):
    Severity: Minor
    Found in vector-uefi/fd/efi/StdLib/lib/python.27/lib2to3/pytree.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

                            for c1, r1 in generate_matches(alt, nodes[c0:]):
                                if c1 > 0:
                                    r = {}
                                    r.update(r0)
                                    r.update(r1)
    Severity: Major
    Found in vector-uefi/fd/efi/StdLib/lib/python.27/lib2to3/pytree.py - About 45 mins to fix

      Function __init__ has 5 arguments (exceeds 4 allowed). Consider refactoring.
      Open

          def __init__(self,type, children,
      Severity: Minor
      Found in vector-uefi/fd/efi/StdLib/lib/python.27/lib2to3/pytree.py - About 35 mins to fix

        Function __init__ has 5 arguments (exceeds 4 allowed). Consider refactoring.
        Open

            def __init__(self, type, value,
        Severity: Minor
        Found in vector-uefi/fd/efi/StdLib/lib/python.27/lib2to3/pytree.py - About 35 mins to fix

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

              def prev_sibling(self):
                  """
                  The node immediately preceding the invocant in their parent's children
                  list. If the invocant does not have a previous sibling, it is None.
                  """
          Severity: Minor
          Found in vector-uefi/fd/efi/StdLib/lib/python.27/lib2to3/pytree.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

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

              def next_sibling(self):
                  """
                  The node immediately following the invocant in their parent's children
                  list. If the invocant does not have a next sibling, it is None
                  """
          Severity: Minor
          Found in vector-uefi/fd/efi/StdLib/lib/python.27/lib2to3/pytree.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

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

              def __init__(self, type=None, content=None, name=None):
                  """
                  Initializer.  Takes optional type, content, and name.
          
                  The type, if given, must be a symbol type (>= 256).  If the
          Severity: Minor
          Found in vector-uefi/fd/efi/StdLib/lib/python.27/lib2to3/pytree.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 True
          Severity: Major
          Found in vector-uefi/fd/efi/StdLib/lib/python.27/lib2to3/pytree.py - About 30 mins to fix

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

                def remove(self):
                    """
                    Remove the node from the tree. Returns the position of the node in its
                    parent's children before it was removed.
                    """
            Severity: Minor
            Found in vector-uefi/fd/efi/StdLib/lib/python.27/lib2to3/pytree.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 _bare_name_matches has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
            Open

                def _bare_name_matches(self, nodes):
                    """Special optimized matcher for bare_name."""
                    count = 0
                    r = {}
                    done = False
            Severity: Minor
            Found in vector-uefi/fd/efi/StdLib/lib/python.27/lib2to3/pytree.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 type_repr has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
            Open

            def type_repr(type_num):
                global _type_reprs
                if not _type_reprs:
                    from .pygram import python_symbols
                    # printing tokens is possible but not as useful
            Severity: Minor
            Found in vector-uefi/fd/efi/StdLib/lib/python.27/lib2to3/pytree.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 generate_matches has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
            Open

                def generate_matches(self, nodes):
                    if self.content is None:
                        # Return a match if there is an empty sequence
                        if len(nodes) == 0:
                            yield 0, {}
            Severity: Minor
            Found in vector-uefi/fd/efi/StdLib/lib/python.27/lib2to3/pytree.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/lib2to3/pytree.py and 1 other location - About 1 mo to fix
            AppPkg/Applications/Python/Python-2.7.2/Lib/lib2to3/pytree.py on lines 0..887

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

            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