pbrisbin/tee-io

View on GitHub
sdk/ruby/lib/tee_io/process.rb

Summary

Maintainability
A
1 hr
Test Coverage

Assignment Branch Condition size for run is too high. [20.74/20]
Open

    def run(&block)
      pid, stdin, out, err = POSIX::Spawn.popen4(*command)

      stdin.close
      stdout_thread = Thread.new { block.call(:stdout, out) }
Severity: Minor
Found in sdk/ruby/lib/tee_io/process.rb by rubocop

This cop checks that the ABC size of methods is not higher than the configured maximum. The ABC size is based on assignments, branches (method calls), and conditions. See http://c2.com/cgi/wiki?AbcMetric

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

    def run(&block)
      pid, stdin, out, err = POSIX::Spawn.popen4(*command)

      stdin.close
      stdout_thread = Thread.new { block.call(:stdout, out) }
Severity: Minor
Found in sdk/ruby/lib/tee_io/process.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

Do not suppress exceptions.
Open

        rescue Errno::ESRCH
Severity: Minor
Found in sdk/ruby/lib/tee_io/process.rb by rubocop

This cop checks for rescue blocks with no body.

Example:

# bad

def some_method
  do_something
rescue
  # do nothing
end

Example:

# bad

begin
  do_something
rescue
  # do nothing
end

Example:

# good

def some_method
  do_something
rescue
  handle_exception
end

Example:

# good

begin
  do_something
rescue
  handle_exception
end

Useless assignment to variable - ex.
Open

    rescue Exception => ex
Severity: Minor
Found in sdk/ruby/lib/tee_io/process.rb by rubocop

This cop checks for every useless assignment to local variable in every scope. The basic idea for this cop was from the warning of ruby -cw:

assigned but unused variable - foo

Currently this cop has advanced logic that detects unreferenced reassignments and properly handles varied cases such as branch, loop, rescue, ensure, etc.

Example:

# bad

def some_method
  some_var = 1
  do_something
end

Example:

# good

def some_method
  some_var = 1
  do_something(some_var)
end

Avoid rescuing the Exception class. Perhaps you meant to rescue StandardError?
Open

    rescue Exception => ex
      if pid
        begin
          ::Process.kill("KILL", pid)
          ::Process.waitpid2(pid)
Severity: Minor
Found in sdk/ruby/lib/tee_io/process.rb by rubocop

This cop checks for rescue blocks targeting the Exception class.

Example:

# bad

begin
  do_something
rescue Exception
  handle_exception
end

Example:

# good

begin
  do_something
rescue ArgumentError
  handle_exception
end

There are no issues that match your filters.

Category
Status