hackedteam/vector-edk

View on GitHub
BaseTools/Source/Python/GenFds/Region.py

Summary

Maintainability
F
6 days
Test Coverage

Function AddToBuffer has a Cognitive Complexity of 135 (exceeds 5 allowed). Consider refactoring.
Open

    def AddToBuffer(self, Buffer, BaseAddress, BlockSizeList, ErasePolarity, ImageBinDict, vtfDict = None, MacroDict = {}):
        Size = self.Size
        GenFdsGlobalVariable.InfLogger('\nGenerate Region at Offset 0x%X' % self.Offset)
        GenFdsGlobalVariable.InfLogger("   Region Size = 0x%X" %Size)
        GenFdsGlobalVariable.SharpCounter = 0
Severity: Minor
Found in BaseTools/Source/Python/GenFds/Region.py - About 2 days 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 BlockInfoOfRegion has a Cognitive Complexity of 40 (exceeds 5 allowed). Consider refactoring.
Open

    def BlockInfoOfRegion(self, BlockSizeList, FvObj):
        Start = 0
        End = 0
        RemindingSize = self.Size
        ExpectedList = []
Severity: Minor
Found in BaseTools/Source/Python/GenFds/Region.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

Function AddToBuffer has 7 arguments (exceeds 4 allowed). Consider refactoring.
Open

    def AddToBuffer(self, Buffer, BaseAddress, BlockSizeList, ErasePolarity, ImageBinDict, vtfDict = None, MacroDict = {}):
Severity: Major
Found in BaseTools/Source/Python/GenFds/Region.py - About 50 mins to fix

    Avoid deeply nested control flow statements.
    Open

                            if self.FvAddress % FvAlignValue != 0:
                                EdkLogger.error("GenFds", GENFDS_ERROR,
                                                "FV (%s) is NOT %s Aligned!" % (FvObj.UiFvName, FvObj.FvAlignment))
                            FvBuffer = StringIO.StringIO('')
    Severity: Major
    Found in BaseTools/Source/Python/GenFds/Region.py - About 45 mins to fix

      Avoid deeply nested control flow statements.
      Open

                              if FvBuffer.len > Size:
                                  FvBuffer.close()
                                  EdkLogger.error("GenFds", GENFDS_ERROR,
                                                  "Size of FV (%s) is larger than Region Size 0x%X specified." % (RegionData, Size))
                              #
      Severity: Major
      Found in BaseTools/Source/Python/GenFds/Region.py - About 45 mins to fix

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

                        if RegionData.endswith(".cap"):
                            RegionData = GenFdsGlobalVariable.MacroExtend(RegionData, MacroDict)
                            GenFdsGlobalVariable.InfLogger('   Region CAPSULE Image Name = .cap : %s'%RegionData)
                            if RegionData[1] != ':' :
                                RegionData = os.path.join (GenFdsGlobalVariable.WorkSpaceDir, RegionData)
        Severity: Major
        Found in BaseTools/Source/Python/GenFds/Region.py and 1 other location - About 5 hrs to fix
        BaseTools/Source/Python/GenFds/Region.py on lines 70..78

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

        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 RegionData.endswith(".fv"):
                            RegionData = GenFdsGlobalVariable.MacroExtend(RegionData, MacroDict)
                            GenFdsGlobalVariable.InfLogger('   Region FV File Name = .fv : %s'%RegionData)
                            if RegionData[1] != ':' :
                                RegionData = os.path.join (GenFdsGlobalVariable.WorkSpaceDir, RegionData)
        Severity: Major
        Found in BaseTools/Source/Python/GenFds/Region.py and 1 other location - About 5 hrs to fix
        BaseTools/Source/Python/GenFds/Region.py on lines 149..157

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

        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 4 locations. Consider refactoring.
        Open

                    if Size > 0:
                        if (ErasePolarity == '1') :
                            PadData = 0xFF
                        else :
                            PadData = 0
        Severity: Major
        Found in BaseTools/Source/Python/GenFds/Region.py and 3 other locations - About 2 hrs to fix
        BaseTools/Source/Python/GenFds/Region.py on lines 136..142
        BaseTools/Source/Python/GenFds/Region.py on lines 195..201
        BaseTools/Source/Python/GenFds/Region.py on lines 226..232

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

        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 4 locations. Consider refactoring.
        Open

                    if Size > 0:
                        if (ErasePolarity == '1') :
                            PadData = 0xFF
                        else :
                            PadData = 0
        Severity: Major
        Found in BaseTools/Source/Python/GenFds/Region.py and 3 other locations - About 2 hrs to fix
        BaseTools/Source/Python/GenFds/Region.py on lines 136..142
        BaseTools/Source/Python/GenFds/Region.py on lines 226..232
        BaseTools/Source/Python/GenFds/Region.py on lines 249..255

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

        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 4 locations. Consider refactoring.
        Open

                    if Size > 0:
                        if (ErasePolarity == '1') :
                            PadData = 0xFF
                        else :
                            PadData = 0
        Severity: Major
        Found in BaseTools/Source/Python/GenFds/Region.py and 3 other locations - About 2 hrs to fix
        BaseTools/Source/Python/GenFds/Region.py on lines 136..142
        BaseTools/Source/Python/GenFds/Region.py on lines 195..201
        BaseTools/Source/Python/GenFds/Region.py on lines 249..255

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

        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 4 locations. Consider refactoring.
        Open

                    if Size > 0:
                        if (ErasePolarity == '1') :
                            PadData = 0xFF
                        else :
                            PadData = 0
        Severity: Major
        Found in BaseTools/Source/Python/GenFds/Region.py and 3 other locations - About 2 hrs to fix
        BaseTools/Source/Python/GenFds/Region.py on lines 195..201
        BaseTools/Source/Python/GenFds/Region.py on lines 226..232
        BaseTools/Source/Python/GenFds/Region.py on lines 249..255

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

        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