scooterw/ffi-ogr

View on GitHub
lib/ffi-ogr/data_source.rb

Summary

Maintainability
B
5 hrs
Test Coverage

Method copy_with_transform has a Cognitive Complexity of 23 (exceeds 5 allowed). Consider refactoring.
Open

    def copy_with_transform(driver_name, output_path, spatial_ref=nil, driver_options=nil)
      writer = OGR::Writer.new driver_name
      writer.set_output(output_path)
      out = writer.ptr

Severity: Minor
Found in lib/ffi-ogr/data_source.rb - About 3 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 copy_with_transform has 53 lines of code (exceeds 25 allowed). Consider refactoring.
Open

    def copy_with_transform(driver_name, output_path, spatial_ref=nil, driver_options=nil)
      writer = OGR::Writer.new driver_name
      writer.set_output(output_path)
      out = writer.ptr

Severity: Major
Found in lib/ffi-ogr/data_source.rb - About 2 hrs to fix

    Method to_format has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
    Open

        def to_format(format, output_path, options={})
          raise RuntimeError.new("Output path not specified.") if output_path.nil?
    
          spatial_ref = options.delete :spatial_ref
    
    
    Severity: Minor
    Found in lib/ffi-ogr/data_source.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