CORE-POS/IS4C

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

Summary

Maintainability
F
3 days
Test Coverage

File JsonSerializer.cs has 633 lines of code (exceeds 250 allowed). Consider refactoring.
Open

using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Globalization;
using System.IO;

    Class JsonSerializer has 25 methods (exceeds 20 allowed). Consider refactoring.
    Open

        public class JsonSerializer
        {
            internal TypeNameHandling _typeNameHandling;
            internal FormatterAssemblyStyle _typeNameAssemblyFormat;
            internal PreserveReferencesHandling _preserveReferencesHandling;

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

              private static void ApplySerializerSettings(JsonSerializer serializer, JsonSerializerSettings settings)
              {
                  if (!CollectionUtils.IsNullOrEmpty(settings.Converters))
                  {
                      // insert settings converters at the beginning so they take precedence

        Method SerializeInternal has 66 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

                internal virtual void SerializeInternal(JsonWriter jsonWriter, object value, Type objectType)
                {
                    ValidationUtils.ArgumentNotNull(jsonWriter, "jsonWriter");
        
                    // set serialization options onto writer

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

                  private void SetupReader(JsonReader reader, out CultureInfo previousCulture, out DateTimeZoneHandling? previousDateTimeZoneHandling, out DateParseHandling? previousDateParseHandling, out FloatParseHandling? previousFloatParseHandling, out int? previousMaxDepth, out string previousDateFormatString)
                  {
                      if (_culture != null && !_culture.Equals(reader.Culture))
                      {
                          previousCulture = reader.Culture;

            Method ApplySerializerSettings has a Cognitive Complexity of 30 (exceeds 20 allowed). Consider refactoring.
            Open

                    private static void ApplySerializerSettings(JsonSerializer serializer, JsonSerializerSettings settings)
                    {
                        if (!CollectionUtils.IsNullOrEmpty(settings.Converters))
                        {
                            // insert settings converters at the beginning so they take precedence

            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 ResetReader has 7 arguments (exceeds 4 allowed). Consider refactoring.
            Open

                    private void ResetReader(JsonReader reader, CultureInfo previousCulture, DateTimeZoneHandling? previousDateTimeZoneHandling, DateParseHandling? previousDateParseHandling, FloatParseHandling? previousFloatParseHandling, int? previousMaxDepth, string previousDateFormatString)

              Method SetupReader has 7 arguments (exceeds 4 allowed). Consider refactoring.
              Open

                      private void SetupReader(JsonReader reader, out CultureInfo previousCulture, out DateTimeZoneHandling? previousDateTimeZoneHandling, out DateParseHandling? previousDateParseHandling, out FloatParseHandling? previousFloatParseHandling, out int? previousMaxDepth, out string previousDateFormatString)

                Method SerializeInternal has a Cognitive Complexity of 23 (exceeds 20 allowed). Consider refactoring.
                Open

                        internal virtual void SerializeInternal(JsonWriter jsonWriter, object value, Type objectType)
                        {
                            ValidationUtils.ArgumentNotNull(jsonWriter, "jsonWriter");
                
                            // set serialization options onto writer

                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 SetupReader has a Cognitive Complexity of 21 (exceeds 20 allowed). Consider refactoring.
                Open

                        private void SetupReader(JsonReader reader, out CultureInfo previousCulture, out DateTimeZoneHandling? previousDateTimeZoneHandling, out DateParseHandling? previousDateParseHandling, out FloatParseHandling? previousFloatParseHandling, out int? previousMaxDepth, out string previousDateFormatString)
                        {
                            if (_culture != null && !_culture.Equals(reader.Culture))
                            {
                                previousCulture = reader.Culture;

                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

                There are no issues that match your filters.

                Category
                Status