Muriel-Salvan/ruby-serial

View on GitHub
lib/ruby-serial/versions/1/deserializer.rb

Summary

Maintainability
D
1 day
Test Coverage

Method get_original_rec has a Cognitive Complexity of 45 (exceeds 5 allowed). Consider refactoring.
Open

          def get_original_rec(decoded_obj, container_to_fill = nil)
            if decoded_obj.is_a?(Array)
              if container_to_fill.nil?
                return decoded_obj.map { |serialized_item| get_original_rec(serialized_item) }
              else
Severity: Minor
Found in lib/ruby-serial/versions/1/deserializer.rb - About 6 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

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

          def get_original_rec(decoded_obj, container_to_fill = nil)
            if decoded_obj.is_a?(Array)
              if container_to_fill.nil?
                return decoded_obj.map { |serialized_item| get_original_rec(serialized_item) }
              else
Severity: Minor
Found in lib/ruby-serial/versions/1/deserializer.rb - About 1 hr to fix

    Avoid deeply nested control flow statements.
    Open

                      new_obj = ((container_to_fill.nil?) ? eval(decoded_obj[OBJECT_CLASSNAME_REFERENCE]).allocate : container_to_fill)
    Severity: Major
    Found in lib/ruby-serial/versions/1/deserializer.rb - About 45 mins to fix

      Avoid deeply nested control flow statements.
      Open

                        hash_obj = ((container_to_fill.nil?) ? {} : container_to_fill)
      Severity: Major
      Found in lib/ruby-serial/versions/1/deserializer.rb - About 45 mins to fix

        Avoid deeply nested control flow statements.
        Open

                          return (exclude_end ? (get_original_rec(serialized_first)...get_original_rec(serialized_last)) : (get_original_rec(serialized_first)..get_original_rec(serialized_last)))
        Severity: Major
        Found in lib/ruby-serial/versions/1/deserializer.rb - About 45 mins to fix

          Avoid deeply nested control flow statements.
          Open

                            new_obj.rubyserial_onload if new_obj.respond_to?(:rubyserial_onload)
          Severity: Major
          Found in lib/ruby-serial/versions/1/deserializer.rb - About 45 mins to fix

            Avoid too many return statements within this method.
            Open

                            return @decoded_shared_objs[obj_id]
            Severity: Major
            Found in lib/ruby-serial/versions/1/deserializer.rb - About 30 mins to fix

              Avoid too many return statements within this method.
              Open

                            return container_to_fill
              Severity: Major
              Found in lib/ruby-serial/versions/1/deserializer.rb - About 30 mins to fix

                Avoid too many return statements within this method.
                Open

                                  return hash_obj
                Severity: Major
                Found in lib/ruby-serial/versions/1/deserializer.rb - About 30 mins to fix

                  Avoid too many return statements within this method.
                  Open

                                    return (exclude_end ? (get_original_rec(serialized_first)...get_original_rec(serialized_last)) : (get_original_rec(serialized_first)..get_original_rec(serialized_last)))
                  Severity: Major
                  Found in lib/ruby-serial/versions/1/deserializer.rb - About 30 mins to fix

                    Avoid too many return statements within this method.
                    Open

                                      return new_obj
                    Severity: Major
                    Found in lib/ruby-serial/versions/1/deserializer.rb - About 30 mins to fix

                      Avoid too many return statements within this method.
                      Open

                                    return decoded_obj
                      Severity: Major
                      Found in lib/ruby-serial/versions/1/deserializer.rb - About 30 mins to fix

                        There are no issues that match your filters.

                        Category
                        Status