rubyjedi/soap4r

View on GitHub
lib/soap/generator.rb

Summary

Maintainability
B
5 hrs
Test Coverage

Class Generator has 21 methods (exceeds 20 allowed). Consider refactoring.
Open

class Generator
  include SOAP
  include XSD::CodeGen::GenSupport

  class FormatEncodeError < Error; end
Severity: Minor
Found in lib/soap/generator.rb - About 2 hrs to fix

    Method encode_data has 30 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

      def encode_data(ns, obj, parent)
        if obj.respond_to?(:to_xmlpart)
          formatted = trim_eol(obj.to_xmlpart)
          formatted = trim_indent(formatted)
          formatted = formatted.gsub(/^/, @indent).sub(/\n+\z/, '')
    Severity: Minor
    Found in lib/soap/generator.rb - About 1 hr to fix

      Method encode_data has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
      Open

        def encode_data(ns, obj, parent)
          if obj.respond_to?(:to_xmlpart)
            formatted = trim_eol(obj.to_xmlpart)
            formatted = trim_indent(formatted)
            formatted = formatted.gsub(/^/, @indent).sub(/\n+\z/, '')
      Severity: Minor
      Found in lib/soap/generator.rb - 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

      Method get_encoded has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
      Open

        def get_encoded(str)
          if @use_numeric_character_reference and !XSD::Charset.is_us_ascii(str)
            str.gsub!(@encode_char_regexp) { |c| EncodeMap[c] }
            str.unpack("U*").collect { |c|
              if c == 0x9 or c == 0xa or c == 0xd or (c >= 0x20 and c <= 0x7f)
      Severity: Minor
      Found in lib/soap/generator.rb - About 55 mins 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 initialize has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
      Open

        def initialize(opt = {})
          @reftarget = nil
          @handlers = {}
          @charset = opt[:charset] || XSD::Charset.xml_encoding_label
          @default_encodingstyle = opt[:default_encodingstyle] || EncodingNamespace
      Severity: Minor
      Found in lib/soap/generator.rb - About 25 mins 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

      There are no issues that match your filters.

      Category
      Status