kaspernj/thread_queues

View on GitHub

Showing 8 of 8 total issues

Method read has a Cognitive Complexity of 19 (exceeds 5 allowed). Consider refactoring.
Open

  def read(length = nil, outbuf = nil)
    return read_all if length == nil

    content = nil

Severity: Minor
Found in lib/thread_queues/string_buffer.rb - About 2 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 gets has a Cognitive Complexity of 17 (exceeds 5 allowed). Consider refactoring.
Open

  def gets(sep = "\n", limit = nil)
    if limit == nil && !sep.is_a?(String)
      limit = sep
      sep = "\n"
    end
Severity: Minor
Found in lib/thread_queues/string_buffer.rb - About 2 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 read has 29 lines of code (exceeds 25 allowed). Consider refactoring.
Open

  def read(length = nil, outbuf = nil)
    return read_all if length == nil

    content = nil

Severity: Minor
Found in lib/thread_queues/string_buffer.rb - About 1 hr to fix

    Method pop has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
    Open

      def pop
        loop do
          @mutex.synchronize do
            raise EOFError, "Queue is empty and closed" if @que.empty? && @closed
    
    
    Severity: Minor
    Found in lib/thread_queues/blocking_queue.rb - About 45 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 push has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
    Open

      def push(obj)
        loop do
          @mutex.synchronize do
            raise EOFError, "Cannot write to closed queue" if @closed
    
    
    Severity: Minor
    Found in lib/thread_queues/blocking_queue.rb - About 45 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 pop has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
    Open

      def pop
        loop do
          @mutex.synchronize do
            raise EOFError, "Queue is empty and closed" if @que.empty? && @closed
    
    
    Severity: Minor
    Found in lib/thread_queues/buffered_queue.rb - About 45 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 push has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
    Open

      def push(obj)
        loop do
          @mutex.synchronize do
            raise EOFError, "Cannot write to closed queue" if @closed
    
    
    Severity: Minor
    Found in lib/thread_queues/buffered_queue.rb - About 35 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 each_chunk has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
    Open

      def each_chunk
        begin
          loop do
            begin
              content = @queue.pop.to_s
    Severity: Minor
    Found in lib/thread_queues/string_buffer.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

    Severity
    Category
    Status
    Source
    Language