CORE-POS/IS4C

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

Summary

Maintainability
F
1 wk
Test Coverage

File JValue.cs has 733 lines of code (exceeds 250 allowed). Consider refactoring.
Open

using System;
using System.Collections.Generic;
using Newtonsoft.Json.Utilities;
using System.Globalization;
#if !(NET35 || NET20 || PORTABLE40)

    Class JValue has 41 methods (exceeds 20 allowed). Consider refactoring.
    Open

        public class JValue : JToken, IEquatable<JValue>, IFormattable, IComparable, IComparable<JValue>
    #if !(NETFX_CORE || PORTABLE)
            , IConvertible
    #endif
        {

      Method Operation has 132 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

              private static bool Operation(ExpressionType operation, object objA, object objB, out object result)
              {
                  if (objA is string || objB is string)
                  {
                      if (operation == ExpressionType.Add || operation == ExpressionType.AddAssign)

        Method Compare has a Cognitive Complexity of 47 (exceeds 20 allowed). Consider refactoring.
        Open

                internal static int Compare(JTokenType valueType, object objA, object objB)
                {
                    if (objA == null && objB == null)
                        return 0;
                    if (objA != null && objB == null)

        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 Compare has 99 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

                internal static int Compare(JTokenType valueType, object objA, object objB)
                {
                    if (objA == null && objB == null)
                        return 0;
                    if (objA != null && objB == null)

          Consider simplifying this complex logical expression.
          Open

                          else if (objA is int || objA is uint || objA is long || objA is short || objA is ushort || objA is sbyte || objA is byte ||
                                   objB is int || objB is uint || objB is long || objB is short || objB is ushort || objB is sbyte || objB is byte)
                          {
                              if (objA == null || objB == null)
                              {

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

                    private static bool Operation(ExpressionType operation, object objA, object objB, out object result)
                    {
                        if (objA is string || objB is string)
                        {
                            if (operation == ExpressionType.Add || operation == ExpressionType.AddAssign)

            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 WriteTo has 67 lines of code (exceeds 25 allowed). Consider refactoring.
            Open

                    public override void WriteTo(JsonWriter writer, params JsonConverter[] converters)
                    {
                        if (converters != null && converters.Length > 0 && _value != null)
                        {
                            JsonConverter matchingConverter = JsonSerializer.GetMatchingConverter(converters, _value.GetType());

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

                          public override bool TryBinaryOperation(JValue instance, BinaryOperationBinder binder, object arg, out object result)
                          {
                              object compareValue = (arg is JValue) ? ((JValue)arg).Value : arg;
              
                              switch (binder.Operation)

                Method GetValueType has 38 lines of code (exceeds 25 allowed). Consider refactoring.
                Open

                        private static JTokenType GetValueType(JTokenType? current, object value)
                        {
                            if (value == null)
                                return JTokenType.Null;
                #if !(NETFX_CORE || PORTABLE40 || PORTABLE)

                  Consider simplifying this complex logical expression.
                  Open

                              else if (value is long || value is int || value is short || value is sbyte
                                       || value is ulong || value is uint || value is ushort || value is byte)
                                  return JTokenType.Integer;
                              else if (value is Enum)
                                  return JTokenType.Integer;

                    Avoid too many return statements within this method.
                    Open

                                            return -CompareBigInteger((BigInteger)objB, objA);

                      Avoid too many return statements within this method.
                      Open

                                      return JTokenType.Boolean;

                        Avoid too many return statements within this method.
                        Open

                                        return JTokenType.Float;

                          Avoid too many return statements within this method.
                          Open

                                                  return Convert.ToInt64(objA, CultureInfo.InvariantCulture).CompareTo(Convert.ToInt64(objB, CultureInfo.InvariantCulture));

                            Avoid too many return statements within this method.
                            Open

                                                    return date1.CompareTo(date2);

                              Avoid too many return statements within this method.
                              Open

                                                      return true;

                                Avoid too many return statements within this method.
                                Open

                                                return JTokenType.Integer;

                                  Avoid too many return statements within this method.
                                  Open

                                                  return JTokenType.Bytes;

                                    Avoid too many return statements within this method.
                                    Open

                                                    return JTokenType.Guid;

                                      Avoid too many return statements within this method.
                                      Open

                                                      return JTokenType.Integer;

                                        Avoid too many return statements within this method.
                                        Open

                                                    return false;

                                          Avoid too many return statements within this method.
                                          Open

                                                          return JTokenType.Date;

                                            Avoid too many return statements within this method.
                                            Open

                                                                    return CompareFloat(objA, objB);

                                              Avoid too many return statements within this method.
                                              Open

                                                              return JTokenType.Date;

                                                Avoid too many return statements within this method.
                                                Open

                                                                return JTokenType.TimeSpan;

                                                  Avoid too many return statements within this method.
                                                  Open

                                                                          return Convert.ToDecimal(objA, CultureInfo.InvariantCulture).CompareTo(Convert.ToDecimal(objB, CultureInfo.InvariantCulture));

                                                    Avoid too many return statements within this method.
                                                    Open

                                                                            return date1.CompareTo(date2);

                                                      Avoid too many return statements within this method.
                                                      Open

                                                                      return JTokenType.Uri;

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

                                                                        {
                                                                            if (objA == null || objB == null)
                                                                            {
                                                                                result = null;
                                                                                return true;
                                                        pos/is4c-nf/scale-drivers/drivers/NewMagellan/Newtonsoft.Json/Linq/JValue.cs on lines 420..449
                                                        pos/is4c-nf/scale-drivers/drivers/NewMagellan/Newtonsoft.Json/Linq/JValue.cs on lines 483..512

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

                                                        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

                                                                        {
                                                                            if (objA == null || objB == null)
                                                                            {
                                                                                result = null;
                                                                                return true;
                                                        pos/is4c-nf/scale-drivers/drivers/NewMagellan/Newtonsoft.Json/Linq/JValue.cs on lines 451..480
                                                        pos/is4c-nf/scale-drivers/drivers/NewMagellan/Newtonsoft.Json/Linq/JValue.cs on lines 483..512

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

                                                        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

                                                                        {
                                                                            if (objA == null || objB == null)
                                                                            {
                                                                                result = null;
                                                                                return true;
                                                        pos/is4c-nf/scale-drivers/drivers/NewMagellan/Newtonsoft.Json/Linq/JValue.cs on lines 420..449
                                                        pos/is4c-nf/scale-drivers/drivers/NewMagellan/Newtonsoft.Json/Linq/JValue.cs on lines 451..480

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

                                                        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

                                                                        case JTokenType.Guid:
                                                                            if (!(objB is Guid))
                                                                                throw new ArgumentException("Object must be of type Guid.");
                                                        
                                                                            Guid guid1 = (Guid)objA;
                                                        pos/is4c-nf/scale-drivers/drivers/NewMagellan/Newtonsoft.Json/Linq/JValue.cs on lines 346..353

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

                                                        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

                                                                        case JTokenType.TimeSpan:
                                                                            if (!(objB is TimeSpan))
                                                                                throw new ArgumentException("Object must be of type TimeSpan.");
                                                        
                                                                            TimeSpan ts1 = (TimeSpan)objA;
                                                        pos/is4c-nf/scale-drivers/drivers/NewMagellan/Newtonsoft.Json/Linq/JValue.cs on lines 330..337

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

                                                        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

                                                                        case JTokenType.Integer:
                                                        #if !(NET20 || NET35 || PORTABLE40 || PORTABLE)
                                                                            if (_value is BigInteger)
                                                                                writer.WriteValue((BigInteger)_value);
                                                                            else
                                                        pos/is4c-nf/scale-drivers/drivers/NewMagellan/Newtonsoft.Json/Linq/JValue.cs on lines 702..709

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

                                                        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

                                                                        case JTokenType.Date:
                                                        #if !NET20
                                                                            if (_value is DateTimeOffset)
                                                                                writer.WriteValue((DateTimeOffset)_value);
                                                                            else
                                                        pos/is4c-nf/scale-drivers/drivers/NewMagellan/Newtonsoft.Json/Linq/JValue.cs on lines 678..685

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

                                                        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