CORE-POS/IS4C

View on GitHub
pos/is4c-nf/scale-drivers/drivers/NewMagellan/Newtonsoft.Json/JsonTextReader.cs

Summary

Maintainability
F
1 wk
Test Coverage

File JsonTextReader.cs has 1344 lines of code (exceeds 250 allowed). Consider refactoring.
Open

using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Runtime.CompilerServices;
using System.Text;

    Method ReadStringIntoBuffer has a Cognitive Complexity of 85 (exceeds 20 allowed). Consider refactoring.
    Open

            private void ReadStringIntoBuffer(char quote)
            {
                int charPos = _charPos;
                int initialPosition = _charPos;
                int lastWritePosition = _charPos;

    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

    Method ParseNumber has a Cognitive Complexity of 68 (exceeds 20 allowed). Consider refactoring.
    Open

            private void ParseNumber()
            {
                ShiftBufferIfNeeded();
    
                char firstChar = _chars[_charPos];

    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

    Class JsonTextReader has 47 methods (exceeds 20 allowed). Consider refactoring.
    Open

        public class JsonTextReader : JsonReader, IJsonLineInfo
        {
            private const char UnicodeReplacementChar = '\uFFFD';
            private const int MaximumJavascriptIntegerCharacterLength = 380;
    
    

      Method ReadStringIntoBuffer has 151 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

              private void ReadStringIntoBuffer(char quote)
              {
                  int charPos = _charPos;
                  int initialPosition = _charPos;
                  int lastWritePosition = _charPos;

        Method ParseNumber has 149 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

                private void ParseNumber()
                {
                    ShiftBufferIfNeeded();
        
                    char firstChar = _chars[_charPos];

          Method ParseValue has 105 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

                  private bool ParseValue()
                  {
                      while (true)
                      {
                          char currentChar = _chars[_charPos];

            Method ParseValue has a Cognitive Complexity of 40 (exceeds 20 allowed). Consider refactoring.
            Open

                    private bool ParseValue()
                    {
                        while (true)
                        {
                            char currentChar = _chars[_charPos];

            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

            Method ParseComment has a Cognitive Complexity of 38 (exceeds 20 allowed). Consider refactoring.
            Open

                    private void ParseComment()
                    {
                        // should have already parsed / character before reaching this method
                        _charPos++;
            
            

            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

            Method ParseComment has 73 lines of code (exceeds 25 allowed). Consider refactoring.
            Open

                    private void ParseComment()
                    {
                        // should have already parsed / character before reaching this method
                        _charPos++;
            
            

              Method ParseConstructor has 69 lines of code (exceeds 25 allowed). Consider refactoring.
              Open

                      private void ParseConstructor()
                      {
                          if (MatchValueWithTrailingSeparator("new"))
                          {
                              EatWhitespace(false);

                Method ParseConstructor has a Cognitive Complexity of 35 (exceeds 20 allowed). Consider refactoring.
                Open

                        private void ParseConstructor()
                        {
                            if (MatchValueWithTrailingSeparator("new"))
                            {
                                EatWhitespace(false);

                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

                Method ReadNumberIntoBuffer has 63 lines of code (exceeds 25 allowed). Consider refactoring.
                Open

                        private void ReadNumberIntoBuffer()
                        {
                            int charPos = _charPos;
                
                            while (true)

                  Method ParsePostValue has 62 lines of code (exceeds 25 allowed). Consider refactoring.
                  Open

                          private bool ParsePostValue()
                          {
                              while (true)
                              {
                                  char currentChar = _chars[_charPos];

                    Method ParseString has 49 lines of code (exceeds 25 allowed). Consider refactoring.
                    Open

                            private void ParseString(char quote)
                            {
                                _charPos++;
                    
                                ShiftBufferIfNeeded();

                      Method ParseObject has 47 lines of code (exceeds 25 allowed). Consider refactoring.
                      Open

                              private bool ParseObject()
                              {
                                  while (true)
                                  {
                                      char currentChar = _chars[_charPos];

                        Method ReadInternal has 40 lines of code (exceeds 25 allowed). Consider refactoring.
                        Open

                                internal override bool ReadInternal()
                                {
                                    while (true)
                                    {
                                        switch (_currentState)

                          Method EatWhitespace has 40 lines of code (exceeds 25 allowed). Consider refactoring.
                          Open

                                  private bool EatWhitespace(bool oneOrMore)
                                  {
                                      bool finished = false;
                                      bool ateWhitespace = false;
                                      while (!finished)

                            Method ReadData has 40 lines of code (exceeds 25 allowed). Consider refactoring.
                            Open

                                    private int ReadData(bool append, int charsRequired)
                                    {
                                        if (_isEndOfFile)
                                            return 0;
                            
                            

                              Method ParseProperty has 40 lines of code (exceeds 25 allowed). Consider refactoring.
                              Open

                                      private bool ParseProperty()
                                      {
                                          char firstChar = _chars[_charPos];
                                          char quoteChar;
                              
                              

                                Method ParseUnquotedProperty has 31 lines of code (exceeds 25 allowed). Consider refactoring.
                                Open

                                        private void ParseUnquotedProperty()
                                        {
                                            int initialPosition = _charPos;
                                
                                            // parse unquoted property name until whitespace or colon

                                  Method IsSeparator has 28 lines of code (exceeds 25 allowed). Consider refactoring.
                                  Open

                                          private bool IsSeparator(char c)
                                          {
                                              switch (c)
                                              {
                                                  case '}':

                                    Avoid deeply nested control flow statements.
                                    Open

                                                                    if (!singlelineComment)
                                                                        throw JsonReaderException.Create(this, "Unexpected end while parsing comment.");

                                      Avoid deeply nested control flow statements.
                                      Open

                                                                      if (_chars[_charPos] == '/')
                                                                      {
                                                                          _stringReference = new StringReference(_chars, initialPosition, _charPos - initialPosition - 1);
                                      
                                                                          _charPos++;

                                        Avoid deeply nested control flow statements.
                                        Open

                                                                    if (ReadData(true) == 0)
                                                                        throw JsonReaderException.Create(this, "Unexpected end while parsing constructor.");

                                          Consider simplifying this complex logical expression.
                                          Open

                                                                  if (char.IsWhiteSpace(currentChar)
                                                                      || currentChar == ','
                                                                      || currentChar == '}'
                                                                      || currentChar == ']'
                                                                      || currentChar == ')'

                                            Method BlockCopyChars has 5 arguments (exceeds 4 allowed). Consider refactoring.
                                            Open

                                                    private static void BlockCopyChars(char[] src, int srcOffset, char[] dst, int dstOffset, int count)

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

                                                                      {
                                                                          double d;
                                                                          if (double.TryParse(number, NumberStyles.Float | NumberStyles.AllowThousands, CultureInfo.InvariantCulture, out d))
                                                                              numberValue = d;
                                                                          else
                                              pos/is4c-nf/scale-drivers/drivers/NewMagellan/Newtonsoft.Json/JsonTextReader.cs on lines 1325..1331

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

                                              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

                                                                      {
                                                                          decimal d;
                                                                          if (decimal.TryParse(number, NumberStyles.Number | NumberStyles.AllowExponent, CultureInfo.InvariantCulture, out d))
                                                                              numberValue = d;
                                                                          else
                                              pos/is4c-nf/scale-drivers/drivers/NewMagellan/Newtonsoft.Json/JsonTextReader.cs on lines 1333..1339

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

                                              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

                                                      private void ParseNumberNegativeInfinity()
                                                      {
                                                          if (MatchValueWithTrailingSeparator(JsonConvert.NegativeInfinity))
                                                          {
                                                              if (_floatParseHandling == FloatParseHandling.Decimal)
                                              pos/is4c-nf/scale-drivers/drivers/NewMagellan/Newtonsoft.Json/JsonTextReader.cs on lines 1584..1597
                                              pos/is4c-nf/scale-drivers/drivers/NewMagellan/Newtonsoft.Json/JsonTextReader.cs on lines 1599..1612

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

                                              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

                                                      private void ParseNumberPositiveInfinity()
                                                      {
                                                          if (MatchValueWithTrailingSeparator(JsonConvert.PositiveInfinity))
                                                          {
                                                              if (_floatParseHandling == FloatParseHandling.Decimal)
                                              pos/is4c-nf/scale-drivers/drivers/NewMagellan/Newtonsoft.Json/JsonTextReader.cs on lines 1569..1582
                                              pos/is4c-nf/scale-drivers/drivers/NewMagellan/Newtonsoft.Json/JsonTextReader.cs on lines 1599..1612

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

                                              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

                                                      private void ParseNumberNaN()
                                                      {
                                                          if (MatchValueWithTrailingSeparator(JsonConvert.NaN))
                                                          {
                                                              if (_floatParseHandling == FloatParseHandling.Decimal)
                                              pos/is4c-nf/scale-drivers/drivers/NewMagellan/Newtonsoft.Json/JsonTextReader.cs on lines 1569..1582
                                              pos/is4c-nf/scale-drivers/drivers/NewMagellan/Newtonsoft.Json/JsonTextReader.cs on lines 1584..1597

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

                                              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