hackedteam/vector-edk

View on GitHub

Showing 9,525 of 13,510 total issues

Avoid deeply nested control flow statements.
Open

                                if (self.synpred70()) :
                                    alt33 = 1
Severity: Major
Found in BaseTools/Source/Python/Eot/CParser.py - About 45 mins to fix

    Avoid deeply nested control flow statements.
    Open

                                    if alt68 == 1:
                                        # C.g:0:0: IDENTIFIER
                                        self.match(self.input, IDENTIFIER, self.FOLLOW_IDENTIFIER_in_constant1680)
                                        if self.failed:
                                            return 
    Severity: Major
    Found in BaseTools/Source/Python/Eot/CParser.py - About 45 mins to fix

      Avoid deeply nested control flow statements.
      Open

                                      if (self.synpred67()) :
                                          alt31 = 1
      
      Severity: Major
      Found in BaseTools/Source/Python/Eot/CParser.py - About 45 mins to fix

        Avoid deeply nested control flow statements.
        Open

                                        if (self.synpred67()) :
                                            alt31 = 1
        
        Severity: Major
        Found in BaseTools/Source/Python/Eot/CParser.py - About 45 mins to fix

          Avoid deeply nested control flow statements.
          Open

                                          if (self.synpred70()) :
                                              alt33 = 1
          
          Severity: Major
          Found in BaseTools/Source/Python/Eot/CParser.py - About 45 mins to fix

            Avoid deeply nested control flow statements.
            Open

                                            if (self.synpred70()) :
                                                alt33 = 1
            
            Severity: Major
            Found in BaseTools/Source/Python/Eot/CParser.py - About 45 mins to fix

              Avoid deeply nested control flow statements.
              Open

                                              if (self.synpred70()) :
                                                  alt33 = 1
              
              Severity: Major
              Found in BaseTools/Source/Python/Eot/CParser.py - About 45 mins to fix

                Avoid deeply nested control flow statements.
                Open

                                                if (self.synpred70()) :
                                                    alt33 = 1
                
                Severity: Major
                Found in BaseTools/Source/Python/Eot/CParser.py - About 45 mins to fix

                  Avoid deeply nested control flow statements.
                  Open

                                                  if (self.synpred70()) :
                                                      alt33 = 1
                  
                  Severity: Major
                  Found in BaseTools/Source/Python/Eot/CParser.py - About 45 mins to fix

                    Avoid deeply nested control flow statements.
                    Open

                                                    if (self.synpred67()) :
                                                        alt31 = 1
                    
                    Severity: Major
                    Found in BaseTools/Source/Python/Eot/CParser.py - About 45 mins to fix

                      Avoid deeply nested control flow statements.
                      Open

                                                      if (self.synpred67()) :
                                                          alt31 = 1
                      
                      Severity: Major
                      Found in BaseTools/Source/Python/Eot/CParser.py - About 45 mins to fix

                        Avoid deeply nested control flow statements.
                        Open

                                                        if (self.synpred67()) :
                                                            alt31 = 1
                        
                        Severity: Major
                        Found in BaseTools/Source/Python/Eot/CParser.py - About 45 mins to fix

                          Avoid deeply nested control flow statements.
                          Open

                                                          if (self.synpred70()) :
                                                              alt33 = 1
                          
                          Severity: Major
                          Found in BaseTools/Source/Python/Eot/CParser.py - About 45 mins to fix

                            Avoid deeply nested control flow statements.
                            Open

                                                            if (self.synpred70()) :
                                                                alt33 = 1
                            
                            Severity: Major
                            Found in BaseTools/Source/Python/Eot/CParser.py - About 45 mins to fix

                              Function ParseOption has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
                              Open

                                  def ParseOption(self):
                                      (Options, Target) = self.EotOptionParser()
                              
                                      # Set log level
                                      self.SetLogLevel(Options)
                              Severity: Minor
                              Found in BaseTools/Source/Python/Eot/Eot.py - About 45 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 SearchPpi has 6 arguments (exceeds 4 allowed). Consider refactoring.
                              Open

                              def SearchPpi(SqlCommand, Table, SourceFileID, SourceFileFullPath, ItemMode, PpiMode = 1):
                              Severity: Minor
                              Found in BaseTools/Source/Python/Eot/Parser.py - About 45 mins to fix

                                Avoid deeply nested control flow statements.
                                Open

                                                    if len(NewVariableValueList) > 1:
                                                        NewVariableValue = NewVariableValueList[1].strip()
                                                        if NewVariableValue.startswith('&'):
                                                            Db.Insert(-1, '', '', SourceFileID, SourceFileFullPath, ItemName, ItemType, ItemMode, NewVariableValue[1:], GuidMacro, GuidValue, BelongsToFunction, 0)
                                                            continue
                                Severity: Major
                                Found in BaseTools/Source/Python/Eot/Parser.py - About 45 mins to fix

                                  Avoid deeply nested control flow statements.
                                  Open

                                                      if GuidName != '':
                                                          Db.Insert(-1, '', '', SourceFileID, SourceFileFullPath, ItemName, ItemType, ItemMode, GuidName, GuidMacro, GuidValue, BelongsToFunction, 0)
                                                          IsFound = True
                                                          break
                                  
                                  Severity: Major
                                  Found in BaseTools/Source/Python/Eot/Parser.py - About 45 mins to fix

                                    Function SearchProtocols has 6 arguments (exceeds 4 allowed). Consider refactoring.
                                    Open

                                    def SearchProtocols(SqlCommand, Table, SourceFileID, SourceFileFullPath, ItemMode, ProtocolMode):
                                    Severity: Minor
                                    Found in BaseTools/Source/Python/Eot/Parser.py - About 45 mins to fix

                                      Function docother has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
                                      Open

                                          def docother(self, object, name=None, mod=None, parent=None, maxlen=None, doc=None):
                                              """Produce text documentation for a data object."""
                                              repr = self.repr(object)
                                              if maxlen:
                                                  line = (name and name + ' = ' or '') + repr
                                      Severity: Minor
                                      Found in AppPkg/Applications/Python/PyMod-2.7.2/Lib/pydoc.py - About 45 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

                                      Severity
                                      Category
                                      Status
                                      Source
                                      Language