hackedteam/vector-edk

View on GitHub
BaseTools/Source/Python/UPT/Object/Parser/InfPackagesObject.py

Summary

Maintainability
F
4 days
Test Coverage

Function SetPackages has a Cognitive Complexity of 58 (exceeds 5 allowed). Consider refactoring.
Open

    def SetPackages(self, PackageData, Arch = None):
        IsValidFileFlag = False
        SupArchList     = []
        for ArchItem in Arch:
            #
Severity: Minor
Found in BaseTools/Source/Python/UPT/Object/Parser/InfPackagesObject.py - About 1 day 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 PackageItemObjArch in SupArchList:
                            if ItemArch == PackageItemObjArch:
                                #
                                # ST.ERR_INF_PARSER_ITEM_DUPLICATE
                                #
Severity: Major
Found in BaseTools/Source/Python/UPT/Object/Parser/InfPackagesObject.py - About 45 mins to fix

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

    class InfPackageItem():
        def __init__(self, 
                     PackageName = '',
                     FeatureFlagExp = '',
                     HelpString = ''):
    BaseTools/Source/Python/UPT/Object/Parser/InfUserExtensionObject.py on lines 26..54

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

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

                for Item in self.Packages:
                    if Item.GetPackageName() == PackageItemObj.GetPackageName():
                        ItemSupArchList = Item.GetSupArchList()
                        for ItemArch in ItemSupArchList:
                            for PackageItemObjArch in SupArchList:
    BaseTools/Source/Python/UPT/Object/Parser/InfBinaryObject.py on lines 252..262
    BaseTools/Source/Python/UPT/Object/Parser/InfGuidObject.py on lines 321..332
    BaseTools/Source/Python/UPT/Object/Parser/InfPpiObject.py on lines 314..324
    BaseTools/Source/Python/UPT/Object/Parser/InfProtocolObject.py on lines 283..293

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

    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

                    elif IsValidPath(PackageItem[0], GlobalData.gINF_MODULE_DIR):
                        IsValidFileFlag = True           
                    elif IsValidPath(PackageItem[0], GlobalData.gWORKSPACE):
                        IsValidFileFlag = True
                    else:
    BaseTools/Source/Python/UPT/Object/Parser/InfSoucesObject.py on lines 119..128

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

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

                if self.Packages.has_key((PackageItemObj)):   
                    PackageList = self.Packages[PackageItemObj]
                    PackageList.append(PackageItemObj)
                    self.Packages[PackageItemObj] = PackageList
                else:
    BaseTools/Source/Python/UPT/Object/Parser/InfGuidObject.py on lines 338..345
    BaseTools/Source/Python/UPT/Object/Parser/InfLibraryClassesObject.py on lines 240..247
    BaseTools/Source/Python/UPT/Object/Parser/InfMisc.py on lines 116..124
    BaseTools/Source/Python/UPT/Object/Parser/InfPpiObject.py on lines 330..337
    BaseTools/Source/Python/UPT/Object/Parser/InfProtocolObject.py on lines 299..306
    BaseTools/Source/Python/UPT/Object/Parser/InfSoucesObject.py on lines 227..234

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

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

            for ArchItem in Arch:
                #
                # Validate Arch
                #            
                if (ArchItem == '' or ArchItem == None):
    BaseTools/Source/Python/UPT/Object/Parser/InfBinaryObject.py on lines 466..472
    BaseTools/Source/Python/UPT/Object/Parser/InfGuidObject.py on lines 232..239
    BaseTools/Source/Python/UPT/Object/Parser/InfPpiObject.py on lines 212..218
    BaseTools/Source/Python/UPT/Object/Parser/InfProtocolObject.py on lines 202..208
    BaseTools/Source/Python/UPT/Object/Parser/InfSoucesObject.py on lines 210..216

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

    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