hackedteam/vector-edk

View on GitHub
AppPkg/Applications/Python/Python-2.7.2/Parser/asdl_c.py

Summary

Maintainability
F
5 days
Test Coverage

File asdl_c.py has 1043 lines of code (exceeds 250 allowed). Consider refactoring.
Open

#! /usr/bin/env python
"""Generate C code from an ASDL description."""

# TO DO
# handle fields that have a type but no name
Severity: Major
Found in AppPkg/Applications/Python/Python-2.7.2/Parser/asdl_c.py - About 2 days to fix

    Function reflow_lines has a Cognitive Complexity of 16 (exceeds 5 allowed). Consider refactoring.
    Open

    def reflow_lines(s, depth):
        """Reflow the line s indented depth tabs.
    
        Return a sequence of lines where no line extends beyond MAX_COL
        when properly indented.  The first line is properly indented based
    Severity: Minor
    Found in AppPkg/Applications/Python/Python-2.7.2/Parser/asdl_c.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 get_args has a Cognitive Complexity of 15 (exceeds 5 allowed). Consider refactoring.
    Open

        def get_args(self, fields):
            """Return list of C argument into, one for each field.
    
            Argument info is 3-tuple of a C type, variable name, and flag
            that is true if type can be NULL.
    Severity: Minor
    Found in AppPkg/Applications/Python/Python-2.7.2/Parser/asdl_c.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 visitField has a Cognitive Complexity of 12 (exceeds 5 allowed). Consider refactoring.
    Open

        def visitField(self, field, name, sum=None, prod=None, depth=0):
            ctype = get_c_type(field.type)
            self.emit("if (PyObject_HasAttrString(obj, \"%s\")) {" % field.name, depth)
            self.emit("int res;", depth+1)
            if field.seq:
    Severity: Minor
    Found in AppPkg/Applications/Python/Python-2.7.2/Parser/asdl_c.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 emit_function has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
    Open

        def emit_function(self, name, ctype, args, attrs, union=True):
            def emit(s, depth=0, reflow=True):
                self.emit(s, depth, reflow)
            argstr = ", ".join(["%s %s" % (atype, aname)
                                for atype, aname, opt in args + attrs])
    Severity: Minor
    Found in AppPkg/Applications/Python/Python-2.7.2/Parser/asdl_c.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_sequence has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
    Open

    def find_sequence(fields, doing_specialization):
        """Return True if any field uses a sequence."""
        for f in fields:
            if f.seq:
                if not doing_specialization:
    Severity: Minor
    Found in AppPkg/Applications/Python/Python-2.7.2/Parser/asdl_c.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 emit_function has 5 arguments (exceeds 4 allowed). Consider refactoring.
    Open

        def emit_function(self, name, ctype, args, attrs, union=True):
    Severity: Minor
    Found in AppPkg/Applications/Python/Python-2.7.2/Parser/asdl_c.py - About 35 mins to fix

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

          def visitField(self, field, name, sum=None, prod=None, depth=0):
      Severity: Minor
      Found in AppPkg/Applications/Python/Python-2.7.2/Parser/asdl_c.py - About 35 mins to fix

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

            def emit_function(self, name, ctype, args, attrs, union=True):
        Severity: Minor
        Found in AppPkg/Applications/Python/Python-2.7.2/Parser/asdl_c.py - About 35 mins to fix

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

              def visitFieldDeclaration(self, field, name, sum=None, prod=None, depth=0):
          Severity: Minor
          Found in AppPkg/Applications/Python/Python-2.7.2/Parser/asdl_c.py - About 35 mins to fix

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

                def visitSum(self, sum, name):
                    self.emit("static PyTypeObject *%s_type;" % name, 0)
                    if sum.attributes:
                        self.emit("static char *%s_attributes[] = {" % name, 0)
                        for a in sum.attributes:
            Severity: Minor
            Found in AppPkg/Applications/Python/Python-2.7.2/Parser/asdl_c.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 complexSum has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
            Open

                def complexSum(self, sum, name):
                    self.funcHeader(name)
                    for a in sum.attributes:
                        self.visitAttributeDeclaration(a, name, sum=sum)
                    self.emit("", 0)
            Severity: Minor
            Found in AppPkg/Applications/Python/Python-2.7.2/Parser/asdl_c.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

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

                    if prod.fields:
                        self.emit("static char *%s_fields[]={" % name,0)
                        for f in prod.fields:
                            self.emit('"%s",' % f.name, 1)
                        self.emit("};", 0)
            Severity: Major
            Found in AppPkg/Applications/Python/Python-2.7.2/Parser/asdl_c.py and 1 other location - About 2 hrs to fix
            AppPkg/Applications/Python/Python-2.7.2/Parser/asdl_c.py on lines 564..568

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

            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

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

                    if sum.attributes:
                        self.emit("static char *%s_attributes[] = {" % name, 0)
                        for a in sum.attributes:
                            self.emit('"%s",' % a.name, 1)
                        self.emit("};", 0)
            Severity: Major
            Found in AppPkg/Applications/Python/Python-2.7.2/Parser/asdl_c.py and 1 other location - About 2 hrs to fix
            AppPkg/Applications/Python/Python-2.7.2/Parser/asdl_c.py on lines 556..560

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

            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

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

                    for i in range(len(sum.types)):
                        type = sum.types[i]
                        enum.append("%s_kind=%d" % (type.name, i + 1))
            Severity: Major
            Found in AppPkg/Applications/Python/Python-2.7.2/Parser/asdl_c.py and 1 other location - About 2 hrs to fix
            AppPkg/Applications/Python/Python-2.7.2/Parser/asdl_c.py on lines 116..118

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

            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

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

                    for i in range(len(sum.types)):
                        type = sum.types[i]
                        enum.append("%s=%d" % (type.name, i + 1))
            Severity: Major
            Found in AppPkg/Applications/Python/Python-2.7.2/Parser/asdl_c.py and 1 other location - About 2 hrs to fix
            AppPkg/Applications/Python/Python-2.7.2/Parser/asdl_c.py on lines 156..158

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

            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

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

                def sum_with_constructors(self, sum, name, depth):
                    ctype = get_c_type(name)
                    s = "typedef struct _%(name)s *%(ctype)s;" % locals()
                    self.emit(s, depth)
                    self.emit("", depth)
            Severity: Major
            Found in AppPkg/Applications/Python/Python-2.7.2/Parser/asdl_c.py and 1 other location - About 2 hrs to fix
            AppPkg/Applications/Python/Python-2.7.2/Parser/asdl_c.py on lines 131..135

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

            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

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

                def visitProduct(self, product, name, depth):
                    ctype = get_c_type(name)
                    s = "typedef struct _%(name)s *%(ctype)s;" % locals()
                    self.emit(s, depth)
                    self.emit("", depth)
            Severity: Major
            Found in AppPkg/Applications/Python/Python-2.7.2/Parser/asdl_c.py and 1 other location - About 2 hrs to fix
            AppPkg/Applications/Python/Python-2.7.2/Parser/asdl_c.py on lines 125..129

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

            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