hackedteam/vector-edk

View on GitHub
BaseTools/Source/Python/Ecc/CLexer.py

Summary

Maintainability
F
5 mos
Test Coverage

File CLexer.py has 2125 lines of code (exceeds 250 allowed). Consider refactoring.
Open

# $ANTLR 3.0.1 C.g 2010-02-23 09:58:53

from antlr3 import *
from antlr3.compat import set, frozenset
                        
Severity: Major
Found in BaseTools/Source/Python/Ecc/CLexer.py - About 5 days to fix

    CLexer has 116 functions (exceeds 20 allowed). Consider refactoring.
    Open

    class CLexer(Lexer):
    
        grammarFileName = "C.g"
    
        def __init__(self, input=None):
    Severity: Major
    Found in BaseTools/Source/Python/Ecc/CLexer.py - About 2 days to fix

      Function mTokens has a Cognitive Complexity of 106 (exceeds 5 allowed). Consider refactoring.
      Open

          def mTokens(self):
              # C.g:1:8: ( T25 | T26 | T27 | T28 | T29 | T30 | T31 | T32 | T33 | T34 | T35 | T36 | T37 | T38 | T39 | T40 | T41 | T42 | T43 | T44 | T45 | T46 | T47 | T48 | T49 | T50 | T51 | T52 | T53 | T54 | T55 | T56 | T57 | T58 | T59 | T60 | T61 | T62 | T63 | T64 | T65 | T66 | T67 | T68 | T69 | T70 | T71 | T72 | T73 | T74 | T75 | T76 | T77 | T78 | T79 | T80 | T81 | T82 | T83 | T84 | T85 | T86 | T87 | T88 | T89 | T90 | T91 | T92 | T93 | T94 | T95 | T96 | T97 | T98 | T99 | T100 | T101 | T102 | T103 | T104 | T105 | T106 | T107 | T108 | T109 | T110 | T111 | T112 | T113 | T114 | T115 | T116 | T117 | IDENTIFIER | CHARACTER_LITERAL | STRING_LITERAL | HEX_LITERAL | DECIMAL_LITERAL | OCTAL_LITERAL | FLOATING_POINT_LITERAL | WS | BS | UnicodeVocabulary | COMMENT | LINE_COMMENT | LINE_COMMAND )
              alt35 = 106
              alt35 = self.dfa35.predict(self.input)
              if alt35 == 1:
      Severity: Minor
      Found in BaseTools/Source/Python/Ecc/CLexer.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 mFLOATING_POINT_LITERAL has a Cognitive Complexity of 95 (exceeds 5 allowed). Consider refactoring.
      Open

          def mFLOATING_POINT_LITERAL(self, ):
      
              try:
                  self.type = FLOATING_POINT_LITERAL
      
      Severity: Minor
      Found in BaseTools/Source/Python/Ecc/CLexer.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 mIntegerTypeSuffix has a Cognitive Complexity of 39 (exceeds 5 allowed). Consider refactoring.
      Open

          def mIntegerTypeSuffix(self, ):
      
              try:
                  # C.g:616:2: ( ( 'u' | 'U' ) | ( 'l' | 'L' ) | ( 'u' | 'U' ) ( 'l' | 'L' ) | ( 'u' | 'U' ) ( 'l' | 'L' ) ( 'l' | 'L' ) )
                  alt13 = 4
      Severity: Minor
      Found in BaseTools/Source/Python/Ecc/CLexer.py - About 5 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 mOctalEscape has a Cognitive Complexity of 22 (exceeds 5 allowed). Consider refactoring.
      Open

          def mOctalEscape(self, ):
      
              try:
                  # C.g:643:5: ( '\\\\' ( '0' .. '3' ) ( '0' .. '7' ) ( '0' .. '7' ) | '\\\\' ( '0' .. '7' ) ( '0' .. '7' ) | '\\\\' ( '0' .. '7' ) )
                  alt29 = 3
      Severity: Minor
      Found in BaseTools/Source/Python/Ecc/CLexer.py - About 3 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 mSTRING_LITERAL has a Cognitive Complexity of 18 (exceeds 5 allowed). Consider refactoring.
      Open

          def mSTRING_LITERAL(self, ):
      
              try:
                  self.type = STRING_LITERAL
      
      Severity: Minor
      Found in BaseTools/Source/Python/Ecc/CLexer.py - About 2 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 mHEX_LITERAL has a Cognitive Complexity of 17 (exceeds 5 allowed). Consider refactoring.
      Open

          def mHEX_LITERAL(self, ):
      
              try:
                  self.type = HEX_LITERAL
      
      Severity: Minor
      Found in BaseTools/Source/Python/Ecc/CLexer.py - About 2 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 mExponent has a Cognitive Complexity of 17 (exceeds 5 allowed). Consider refactoring.
      Open

          def mExponent(self, ):
      
              try:
                  # C.g:630:10: ( ( 'e' | 'E' ) ( '+' | '-' )? ( '0' .. '9' )+ )
                  # C.g:630:12: ( 'e' | 'E' ) ( '+' | '-' )? ( '0' .. '9' )+
      Severity: Minor
      Found in BaseTools/Source/Python/Ecc/CLexer.py - About 2 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 mDECIMAL_LITERAL has a Cognitive Complexity of 17 (exceeds 5 allowed). Consider refactoring.
      Open

          def mDECIMAL_LITERAL(self, ):
      
              try:
                  self.type = DECIMAL_LITERAL
      
      Severity: Minor
      Found in BaseTools/Source/Python/Ecc/CLexer.py - About 2 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 mIDENTIFIER has a Cognitive Complexity of 16 (exceeds 5 allowed). Consider refactoring.
      Open

          def mIDENTIFIER(self, ):
      
              try:
                  self.type = IDENTIFIER
      
      Severity: Minor
      Found in BaseTools/Source/Python/Ecc/CLexer.py - About 2 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 mLINE_COMMENT has a Cognitive Complexity of 16 (exceeds 5 allowed). Consider refactoring.
      Open

          def mLINE_COMMENT(self, ):
      
              try:
                  self.type = LINE_COMMENT
      
      Severity: Minor
      Found in BaseTools/Source/Python/Ecc/CLexer.py - About 2 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 mLINE_COMMAND has a Cognitive Complexity of 16 (exceeds 5 allowed). Consider refactoring.
      Open

          def mLINE_COMMAND(self, ):
      
              try:
                  self.type = LINE_COMMAND
      
      Severity: Minor
      Found in BaseTools/Source/Python/Ecc/CLexer.py - About 2 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 mCHARACTER_LITERAL has a Cognitive Complexity of 14 (exceeds 5 allowed). Consider refactoring.
      Open

          def mCHARACTER_LITERAL(self, ):
      
              try:
                  self.type = CHARACTER_LITERAL
      
      Severity: Minor
      Found in BaseTools/Source/Python/Ecc/CLexer.py - About 1 hr 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 mCOMMENT has a Cognitive Complexity of 13 (exceeds 5 allowed). Consider refactoring.
      Open

          def mCOMMENT(self, ):
      
              try:
                  self.type = COMMENT
      
      Severity: Minor
      Found in BaseTools/Source/Python/Ecc/CLexer.py - About 1 hr 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 mEscapeSequence has a Cognitive Complexity of 13 (exceeds 5 allowed). Consider refactoring.
      Open

          def mEscapeSequence(self, ):
      
              try:
                  # C.g:637:5: ( '\\\\' ( 'b' | 't' | 'n' | 'f' | 'r' | '\\\"' | '\\'' | '\\\\' ) | OctalEscape )
                  alt28 = 2
      Severity: Minor
      Found in BaseTools/Source/Python/Ecc/CLexer.py - About 1 hr 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 mOCTAL_LITERAL has a Cognitive Complexity of 12 (exceeds 5 allowed). Consider refactoring.
      Open

          def mOCTAL_LITERAL(self, ):
      
              try:
                  self.type = OCTAL_LITERAL
      
      Severity: Minor
      Found in BaseTools/Source/Python/Ecc/CLexer.py - About 1 hr 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

      Consider simplifying this complex logical expression.
      Open

                      if self.input.LA(1) == u'"' or self.input.LA(1) == u'\'' or self.input.LA(1) == u'\\' or self.input.LA(1) == u'b' or self.input.LA(1) == u'f' or self.input.LA(1) == u'n' or self.input.LA(1) == u'r' or self.input.LA(1) == u't':
                          self.input.consume();
      
                      else:
                          mse = MismatchedSetException(None, self.input)
      Severity: Critical
      Found in BaseTools/Source/Python/Ecc/CLexer.py - About 1 hr to fix

        Consider simplifying this complex logical expression.
        Open

                        if (LA28_1 == u'"' or LA28_1 == u'\'' or LA28_1 == u'\\' or LA28_1 == u'b' or LA28_1 == u'f' or LA28_1 == u'n' or LA28_1 == u'r' or LA28_1 == u't') :
                            alt28 = 1
                        elif ((u'0' <= LA28_1 <= u'7')) :
                            alt28 = 2
                        else:
        Severity: Critical
        Found in BaseTools/Source/Python/Ecc/CLexer.py - About 1 hr to fix

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

          Severity: Major
          Found in BaseTools/Source/Python/Ecc/CLexer.py and 1 other location - About 5 mos to fix
          BaseTools/Source/Python/Eot/CLexer.py on lines 0..4945

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

          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