Hawatel/hawatel_ps

View on GitHub

Showing 18 of 25 total issues

Method search_by_condition has a Cognitive Complexity of 53 (exceeds 5 allowed). Consider refactoring.
Open

        def search_by_condition(args)
          refresh
          attr = args[:attr]
          oper  = args[:oper]
          value = args[:value]
Severity: Minor
Found in lib/hawatel_ps/linux/proc_table.rb - About 1 day 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 search_by_condition has a Cognitive Complexity of 26 (exceeds 5 allowed). Consider refactoring.
Open

        def search_by_condition(args)
          find_all

          attrs = args[:attr]
          oper  = args[:oper]
Severity: Minor
Found in lib/hawatel_ps/windows/proc_table.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 process_files has a Cognitive Complexity of 20 (exceeds 5 allowed). Consider refactoring.
Open

        def process_files(attrs, sockets)
          fd_dir  = "/proc/#{attrs[:pid]}/fd"
          files   = Array.new
          ports   = Array.new
          if File.readable?(fd_dir)
Severity: Minor
Found in lib/hawatel_ps/linux/proc_fetch.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 process_limits has a Cognitive Complexity of 15 (exceeds 5 allowed). Consider refactoring.
Open

        def process_limits(pid)
          limits_file = "/proc/#{pid}/limits"
          limits_list = Array.new
          if File.readable?(limits_file)
            File.foreach(limits_file).each do |line|
Severity: Minor
Found in lib/hawatel_ps/linux/proc_fetch.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 process_status has a Cognitive Complexity of 12 (exceeds 5 allowed). Consider refactoring.
Open

        def process_status(attrs)
          status_file = "/proc/#{attrs[:pid]}/status"
          File.foreach(status_file).each do |attr|
            if attr =~ /Name:/
              attrs[:name] = attr.split(' ')[1]
Severity: Minor
Found in lib/hawatel_ps/linux/proc_fetch.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 process_status has 32 lines of code (exceeds 25 allowed). Consider refactoring.
Open

        def process_status(attrs)
          status_file = "/proc/#{attrs[:pid]}/status"
          File.foreach(status_file).each do |attr|
            if attr =~ /Name:/
              attrs[:name] = attr.split(' ')[1]
Severity: Minor
Found in lib/hawatel_ps/linux/proc_fetch.rb - About 1 hr to fix

    Method search_by_name has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring.
    Open

            def search_by_name(process_name)
              if process_name =~ /^\/.*\/$/
                process_name.slice!(0)
                process_name = Regexp.new(/#{process_name.chop}/)
                find_all
    Severity: Minor
    Found in lib/hawatel_ps/windows/proc_table.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 process_limits has 27 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

            def process_limits(pid)
              limits_file = "/proc/#{pid}/limits"
              limits_list = Array.new
              if File.readable?(limits_file)
                File.foreach(limits_file).each do |line|
    Severity: Minor
    Found in lib/hawatel_ps/linux/proc_fetch.rb - About 1 hr to fix

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

              def search_by_name(process_name)
                refresh
                process_list = Array.new
                if process_name =~ /^\/.*\/$/
                  process_name.slice!(0)
      Severity: Minor
      Found in lib/hawatel_ps/linux/proc_table.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

      Avoid deeply nested control flow statements.
      Open

                    process_list << process if process[:"#{attr}"] <= value if process[:"#{attr}"]
      Severity: Major
      Found in lib/hawatel_ps/linux/proc_table.rb - About 45 mins to fix

        Avoid deeply nested control flow statements.
        Open

                      process_list << process if process[:"#{attrs}"] <= value
        Severity: Major
        Found in lib/hawatel_ps/windows/proc_table.rb - About 45 mins to fix

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

                  def prepare_wql(query, args = nil)
                    if args.nil?
                      return query
                    else
                      query += " WHERE "
          Severity: Minor
          Found in lib/hawatel_ps/windows/proc_fetch.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

          Avoid deeply nested control flow statements.
          Open

                        process_list << process if process[:"#{attr}"] >= value if process[:"#{attr}"]
          Severity: Major
          Found in lib/hawatel_ps/linux/proc_table.rb - About 45 mins to fix

            Avoid deeply nested control flow statements.
            Open

                        elsif oper == '=='
                          process_list << process if process[:"#{attrs}"] == value
                        elsif oper == '!='
                          process_list << process if process[:"#{attrs}"] != value
            Severity: Major
            Found in lib/hawatel_ps/windows/proc_table.rb - About 45 mins to fix

              Avoid deeply nested control flow statements.
              Open

                          elsif oper == '=='
                            process_list << process if process[:"#{attr}"] == value if process[:"#{attr}"]
                          elsif oper == '!='
                            process_list << process if process[:"#{attr}"] != value if process[:"#{attr}"]
              Severity: Major
              Found in lib/hawatel_ps/linux/proc_table.rb - About 45 mins to fix

                Method suspend has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
                Open

                      def suspend
                        process_status = status
                        if process_status != 'terminated' && process_status != 'stopped'
                          return status if Process.kill('STOP', @proc_attrs[:pid].to_i)
                        end
                Severity: Minor
                Found in lib/hawatel_ps/linux/proc_control.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 resume has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
                Open

                      def resume
                        process_status = status
                        if process_status  == 'stopped'
                          return status if Process.kill('CONT', @proc_attrs[:pid].to_i)
                        end
                Severity: Minor
                Found in lib/hawatel_ps/linux/proc_control.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

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

                      def terminate
                        process_status = status
                        if process_status != 'terminated'
                          return status if Process.kill('KILL', @proc_attrs[:pid])
                        end
                Severity: Minor
                Found in lib/hawatel_ps/linux/proc_control.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