joker1007/rukawa

View on GitHub

Showing 20 of 20 total issues

Class Job has 28 methods (exceeds 20 allowed). Consider refactoring.
Open

  class Job < AbstractJob
    include ActiveSupport::Callbacks
    define_callbacks :run,
      terminator: ->(_,result) { result == false },
      skip_after_callbacks_if_terminated: true,
Severity: Minor
Found in lib/rukawa/job.rb - About 3 hrs to fix

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

        def leveled_each
          visited = Set.new
          queue = []
          queue.push(*@jobs.select { |j| j.in_comings.empty? })
    
    
    Severity: Minor
    Found in lib/rukawa/dag.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 run has a Cognitive Complexity of 16 (exceeds 5 allowed). Consider refactoring.
    Open

          def run
            process = -> do
              if preview
                stdout.puts "Config:\n#{File.read(config)}"
                cmds = [embulk_bin, "preview", *embulk_bundle, config].compact
    Severity: Minor
    Found in lib/rukawa/builtins/embulk.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 execute_command has a Cognitive Complexity of 15 (exceeds 5 allowed). Consider refactoring.
    Open

          def execute_command(command, env, opts)
            log = "".dup
            result = Open3.popen3(env, *command, opts) do |stdin, out, err, wait_th|
              stdin.close
              until out.eof? && err.eof?
    Severity: Minor
    Found in lib/rukawa/builtins/shell.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 run has a Cognitive Complexity of 13 (exceeds 5 allowed). Consider refactoring.
    Open

        def run(wait_interval = 1)
          promise = Concurrent::Promise.new do
            futures = execute
            until futures.all?(&:complete?)
              yield self if block_given?
    Severity: Minor
    Found in lib/rukawa/job_net.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 [] has 28 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

          def self.[](job_class)
            raise "Please set Rukawa.config.status_store subclass of ActiveSupport::Cache::Store" unless Rukawa.config.status_store
            @wrapper_classes ||= {}
            return @wrapper_classes[job_class] if @wrapper_classes[job_class]
    
    
    Severity: Minor
    Found in lib/rukawa/wrapper/active_job.rb - About 1 hr to fix

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

                def run
                  @job_class.include(Hooks) unless @job_class.include?(Hooks)
                  @job_class.prepend(HooksForFailure) unless @job_class.include?(HooksForFailure)
                  job = @job_class.perform_later
      
      
      Severity: Minor
      Found in lib/rukawa/wrapper/active_job.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 attrs has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
      Open

          def attrs
            if rankdir || size || rotate || ranksep || nodesep || concentrate
              values = to_h.map { |k, v| "#{k} = #{v}" if k != :node && v }.compact
              "graph [#{values.join(",")}];\n"
            else
      Severity: Minor
      Found in lib/rukawa/configuration.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 attrs has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
      Open

          def attrs
            if shape || style
              values = to_h.map { |k, v| "#{k} = #{v}" if v }.compact
              "node [#{values.join(",")}];\n"
            else
      Severity: Minor
      Found in lib/rukawa/configuration.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 handle_parameters has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
      Open

              def handle_parameters(config:, embulk_bin: nil, embulk_bundle: nil, embulk_vm_options: nil, jvm_options: nil, stdout: nil, stderr: nil, env: nil, chdir: nil, preview: false)
                self.config = config
                self.embulk_bin = embulk_bin if embulk_bin
                self.embulk_bundle = embulk_bundle if embulk_bundle
                self.embulk_vm_options = embulk_vm_options if embulk_vm_options
      Severity: Minor
      Found in lib/rukawa/builtins/embulk.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 handle_error has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
      Open

          def handle_error(e)
            Rukawa.logger.error("Error #{self.class} by #{e}")
            if retry?(e)
              @retry_count += 1
              set_state(:waiting)
      Severity: Minor
      Found in lib/rukawa/job.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

      Consider simplifying this complex logical expression.
      Open

            if rankdir || size || rotate || ranksep || nodesep || concentrate
              values = to_h.map { |k, v| "#{k} = #{v}" if k != :node && v }.compact
              "graph [#{values.join(",")}];\n"
            else
              ""
      Severity: Major
      Found in lib/rukawa/configuration.rb - About 40 mins to fix

        Similar blocks of code found in 2 locations. Consider refactoring.
        Open

              def after_run(*args, **options, &block)
                options[:prepend] = true
                conditional = ActiveSupport::Callbacks::Conditionals::Value.new { |v|
                  v != false
                }
        Severity: Minor
        Found in lib/rukawa/job.rb and 1 other location - About 35 mins to fix
        lib/rukawa/job.rb on lines 61..68

        Duplicated Code

        Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

        Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

        When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

        Tuning

        This issue has a mass of 36.

        We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

        The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

        If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

        See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

        Refactorings

        Further Reading

        Similar blocks of code found in 2 locations. Consider refactoring.
        Open

              def after_fail(*args, **options, &block)
                options[:prepend] = true
                conditional = ActiveSupport::Callbacks::Conditionals::Value.new { |v|
                  v != false
                }
        Severity: Minor
        Found in lib/rukawa/job.rb and 1 other location - About 35 mins to fix
        lib/rukawa/job.rb on lines 52..59

        Duplicated Code

        Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

        Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

        When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

        Tuning

        This issue has a mass of 36.

        We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

        The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

        If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

        See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

        Refactorings

        Further Reading

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

            def formatted_elapsed_time_from(time = Time.now)
              elapsed = elapsed_time_from(time)
              return "N/A" unless elapsed
        
              hour = elapsed.to_i / 3600
        Severity: Minor
        Found in lib/rukawa/abstract_job.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 run has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
        Open

            def run(batch_mode = false, refresh_interval = DEFAULT_REFRESH_INTERVAL)
              displayed_at = Time.at(0)
              promise = @root_job_net.run do
                unless batch_mode
                  if Time.now - displayed_at >= refresh_interval
        Severity: Minor
        Found in lib/rukawa/runner.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 fetch_condition has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
        Open

              def fetch_condition
                opts = {if_modified_since: if_modified_since, if_unmodified_since: if_unmodified_since}.reject do |_, v|
                  v.nil?
                end
        
        
        Severity: Minor
        Found in lib/rukawa/builtins/waiter.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 run has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
        Open

              def run
                cmdenv = env || {}
                opts = chdir ? {chdir: chdir} : {}
        
                if defined?(Bundler)
        Severity: Minor
        Found in lib/rukawa/builtins/shell.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 _run has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
        Open

            def _run(job_net_name, *job_name)
              load_config
              set_logger
              set_concurrency
              load_job_definitions
        Severity: Minor
        Found in lib/rukawa/cli.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 skip? has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
        Open

            def skip?
              parent_skip = @parent_job_net ? @parent_job_net.skip? : false
              parent_skip || skip_rules.inject(false) do |cond, rule|
                cond || rule.is_a?(Symbol) ? method(rule).call : rule.call(self)
              end
        Severity: Minor
        Found in lib/rukawa/abstract_job.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