hackedteam/vector-edk

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

Summary

Maintainability
F
1 wk
Test Coverage

Function SetProtocol has a Cognitive Complexity of 62 (exceeds 5 allowed). Consider refactoring.
Open

    def SetProtocol(self, ProtocolContent, Arch = None,):
        __SupArchList = []
        for ArchItem in Arch:
            #
            # Validate Arch
Severity: Minor
Found in BaseTools/Source/Python/UPT/Object/Parser/InfProtocolObject.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

Function ParseProtocolComment has a Cognitive Complexity of 46 (exceeds 5 allowed). Consider refactoring.
Open

def ParseProtocolComment(CommentsList, InfProtocolItemObj):
    CommentInsList = []
    PreUsage = None
    PreNotify = None
    PreHelpText = ''
Severity: Minor
Found in BaseTools/Source/Python/UPT/Object/Parser/InfProtocolObject.py - About 7 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

Avoid deeply nested control flow statements.
Open

                        for ProtocolItemObjArch in __SupArchList:
                            if ItemArch == ProtocolItemObjArch:
                                #
                                # ST.ERR_INF_PARSER_ITEM_DUPLICATE
                                #
Severity: Major
Found in BaseTools/Source/Python/UPT/Object/Parser/InfProtocolObject.py - About 45 mins to fix

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

        for CommentItem in CommentsList:
            Count = Count + 1
            CommentItemUsage, \
            CommentItemNotify, \
            CommentItemString, \
    Severity: Major
    Found in BaseTools/Source/Python/UPT/Object/Parser/InfProtocolObject.py and 1 other location - About 5 days to fix
    BaseTools/Source/Python/UPT/Object/Parser/InfPpiObject.py on lines 36..137

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

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

    class InfProtocolItem():
        def __init__(self):
            self.Name = ''
            self.FeatureFlagExp = ''
            self.SupArchList = []
    BaseTools/Source/Python/UPT/Object/Parser/InfGuidObject.py on lines 72..100
    BaseTools/Source/Python/UPT/Object/Parser/InfPpiObject.py on lines 172..197

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

    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

    class InfProtocolItemCommentContent():
        def __init__(self):
            #
            # ## SOMETIMES_CONSUMES ## HelpString 
            #
    BaseTools/Source/Python/UPT/Object/Parser/InfPpiObject.py on lines 143..170

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

    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.Protocols:
                    if Item.GetName() == InfProtocolItemObj.GetName():
                        ItemSupArchList = Item.GetSupArchList()
                        for ItemArch in ItemSupArchList:
                            for ProtocolItemObjArch 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/InfPackagesObject.py on lines 158..168
    BaseTools/Source/Python/UPT/Object/Parser/InfPpiObject.py on lines 314..324

    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

                if CommentsList != None and len(CommentsList) != 0:
                    InfProtocolItemObj = ParseProtocolComment(CommentsList, InfProtocolItemObj)
                else:
                    CommentItemIns = InfProtocolItemCommentContent()
                    CommentItemIns.SetUsageItem(DT.ITEM_UNDEFINED)
    BaseTools/Source/Python/UPT/Object/Parser/InfPpiObject.py on lines 293..299

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

    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.Protocols.has_key((InfProtocolItemObj)):           
                    ProcotolList = self.Protocols[InfProtocolItemObj]
                    ProcotolList.append(InfProtocolItemObj)
                    self.Protocols[InfProtocolItemObj] = ProcotolList
                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/InfPackagesObject.py on lines 174..181
    BaseTools/Source/Python/UPT/Object/Parser/InfPpiObject.py on lines 330..337
    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/InfPackagesObject.py on lines 74..80
    BaseTools/Source/Python/UPT/Object/Parser/InfPpiObject.py on lines 212..218
    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