ainame/mediakit

View on GitHub

Showing 7 of 9 total issues

Method create_item has a Cognitive Complexity of 17 (exceeds 5 allowed). Consider refactoring.
Open

        def create_item(line)
          match = line.match(PATTERN)
          if match
            decode = match[:decode] != '.'
            encode = match[:encode] != '.'
Severity: Minor
Found in lib/mediakit/initializers/ffmpeg.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 create_item has 32 lines of code (exceeds 25 allowed). Consider refactoring.
Open

        def create_item(line)
          match = line.match(PATTERN)
          if match
            decode = match[:decode] != '.'
            encode = match[:encode] != '.'
Severity: Minor
Found in lib/mediakit/initializers/ffmpeg.rb - About 1 hr to fix

    Method create_item has 28 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

            def create_item(line)
              match =  line.match(PATTERN)
              if match
                attributes = {
                  name: match[:name],
    Severity: Minor
    Found in lib/mediakit/initializers/ffmpeg.rb - About 1 hr to fix

      Method create_item has 28 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

              def create_item(line)
                match =  line.match(PATTERN)
                if match
                  attributes = {
                    name: match[:name],
      Severity: Minor
      Found in lib/mediakit/initializers/ffmpeg.rb - About 1 hr to fix

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

              def setup_watchers(stdout, stderr)
                @timer = @timeout ? TimeoutTimer.new(@timeout, Thread.current) : nil
                @out_watcher = IOWatcher.new(stdout) { |data| @timer.update if @timer; logger.info(data); }
                @err_watcher = IOWatcher.new(stderr) { |data| @timer.update if @timer; logger.info(data); }
                @loop = Coolio::Loop.new
        Severity: Minor
        Found in lib/mediakit/process/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 add_option has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
        Open

              def add_option(option)
                return if option.nil?
                case option
                when GlobalOption
                  raise(ArgumentError, 'you can give only a GlobalOption.') if @global
        Severity: Minor
        Found in lib/mediakit/ffmpeg/options.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 teardown_watchers has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
        Open

              def teardown_watchers
                @loop.watchers.each { |w| w.detach  if w.attached? }
                @loop.stop if @loop.has_active_watchers?
              rescue RuntimeError => e
                logger.warn(e.message)
        Severity: Minor
        Found in lib/mediakit/process/runner.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