hackedteam/vector-edk

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

Summary

Maintainability
F
1 wk
Test Coverage

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

def ParseGuidComment(CommentsList, InfGuidItemObj):
    #
    # Get/Set Usage and HelpString
    #
    if CommentsList != None and len(CommentsList) != 0 :
Severity: Minor
Found in BaseTools/Source/Python/UPT/Object/Parser/InfGuidObject.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 SetGuid has a Cognitive Complexity of 58 (exceeds 5 allowed). Consider refactoring.
Open

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

                    if BlockFlag == 1 or BlockFlag == 2:
                        BlockFlag = 3
                    elif BlockFlag == -1:
                        BlockFlag = 4
                                                                              
Severity: Major
Found in BaseTools/Source/Python/UPT/Object/Parser/InfGuidObject.py - About 45 mins to fix

    Avoid deeply nested control flow statements.
    Open

                        if CommentItemUsage == CommentItemGuidType == DT.ITEM_UNDEFINED:
                            BlockFlag = 4
                        else:
                            BlockFlag = 3
                    if BlockFlag == -1:
    Severity: Major
    Found in BaseTools/Source/Python/UPT/Object/Parser/InfGuidObject.py - About 45 mins to fix

      Avoid deeply nested control flow statements.
      Open

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

        Avoid deeply nested control flow statements.
        Open

                            if BlockFlag == -1:
                                BlockFlag = 1
                            elif BlockFlag == 1:
                                BlockFlag = 2
                        else:
        Severity: Major
        Found in BaseTools/Source/Python/UPT/Object/Parser/InfGuidObject.py - About 45 mins to fix

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

                      if len(Item) == 2:
                          #
                          # Contained CName and Feature Flag Express
                          # <statements>           ::=  <CName> ["|" <FeatureFlagExpress>]
                          # For GUID entry. 
          Severity: Major
          Found in BaseTools/Source/Python/UPT/Object/Parser/InfGuidObject.py and 3 other locations - About 1 day to fix
          BaseTools/Source/Python/UPT/Object/Parser/InfPcdObject.py on lines 367..392
          BaseTools/Source/Python/UPT/Object/Parser/InfPpiObject.py on lines 253..278
          BaseTools/Source/Python/UPT/Object/Parser/InfSoucesObject.py on lines 44..66

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

          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 len(Item) >= 1 and len(Item) <= 2:
                          #
                          # Only GuildName contained
                          #
                          if not IsValidCVariableName(Item[0]):
          Severity: Major
          Found in BaseTools/Source/Python/UPT/Object/Parser/InfGuidObject.py and 1 other location - About 1 day to fix
          BaseTools/Source/Python/UPT/Object/Parser/InfPpiObject.py on lines 230..249

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

          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 InfGuidItem():
              def __init__(self):
                  self.Name = ''
                  self.FeatureFlagExp = ''
                  #
          Severity: Major
          Found in BaseTools/Source/Python/UPT/Object/Parser/InfGuidObject.py and 2 other locations - About 1 day to fix
          BaseTools/Source/Python/UPT/Object/Parser/InfPpiObject.py on lines 172..197
          BaseTools/Source/Python/UPT/Object/Parser/InfProtocolObject.py on lines 161..186

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

                      for Item in self.Guids:
                          if Item.GetName() == InfGuidItemObj.GetName():
                              ItemSupArchList = Item.GetSupArchList()
                              for ItemArch in ItemSupArchList:
                                  for GuidItemObjArch in __SupportArchList:
          Severity: Major
          Found in BaseTools/Source/Python/UPT/Object/Parser/InfGuidObject.py and 4 other locations - About 5 hrs to fix
          BaseTools/Source/Python/UPT/Object/Parser/InfBinaryObject.py on lines 252..262
          BaseTools/Source/Python/UPT/Object/Parser/InfPackagesObject.py on lines 158..168
          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 7 locations. Consider refactoring.
          Open

                      if self.Guids.has_key((InfGuidItemObj)):           
                          GuidList = self.Guids[InfGuidItemObj]                 
                          GuidList.append(InfGuidItemObj)
                          self.Guids[InfGuidItemObj] = GuidList
                      else:
          Severity: Major
          Found in BaseTools/Source/Python/UPT/Object/Parser/InfGuidObject.py and 6 other locations - About 4 hrs to fix
          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/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

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

                      if len(Item) != 1 and len(Item) != 2:
                          #
                          # Invalid format of GUID statement 
                          #
                          Logger.Error("InfParser", 
          Severity: Major
          Found in BaseTools/Source/Python/UPT/Object/Parser/InfGuidObject.py and 1 other location - About 3 hrs to fix
          BaseTools/Source/Python/UPT/Object/Parser/InfPpiObject.py on lines 279..288

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

          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):
          Severity: Major
          Found in BaseTools/Source/Python/UPT/Object/Parser/InfGuidObject.py and 5 other locations - About 1 hr to fix
          BaseTools/Source/Python/UPT/Object/Parser/InfBinaryObject.py on lines 466..472
          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/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