fotonauts/fwissr

View on GitHub

Showing 7 of 7 total issues

Method parse_args! has 38 lines of code (exceeds 25 allowed). Consider refactoring.
Open

    def parse_args!(argv)
      args = {
        :inspect  => false,
        :json     => false,
        :dump     => false,
Severity: Minor
Found in lib/fwissr.rb - About 1 hr to fix

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

        def find_home
          ['HOME', 'USERPROFILE'].each do |homekey|
            return ENV[homekey] if ENV[homekey]
          end
    
    
    Severity: Minor
    Found in lib/fwissr.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 initialize has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
    Open

        def initialize(uri)
          raise "URI is missing: #{uri}" if (uri.nil? || uri == '')
    
          @uri = uri
          @collections = { }
    Severity: Minor
    Found in lib/fwissr/source/mongodb.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 merge_conf_file! has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
    Open

      def merge_conf_file!(result, conf_file_path)
        # parse conf file
        conf = Fwissr.parse_conf_file(conf_file_path)
        if conf
          conf_file_name = ::File.basename(conf_file_path, ::File.extname(conf_file_path))
    Severity: Minor
    Found in lib/fwissr/source/file.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_conf has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
    Open

      def fetch_conf
        result = { }
        result_part = result
    
        unless TOP_LEVEL_COLLECTIONS.include?(@collection_name) || @options['top_level']
    Severity: Minor
    Found in lib/fwissr/source/mongodb.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 ensure_refresh_thread has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
    Open

        def ensure_refresh_thread
          # check refresh thread state
          if ((@refresh_period > 0) && self.have_refreshable_source?) && (!@refresh_thread || !@refresh_thread.alive?)
            # (re)start refresh thread
            @refresh_thread = Thread.new do
    Severity: Minor
    Found in lib/fwissr/registry.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 fetch_conf has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
    Open

      def fetch_conf
        result = { }
    
        conf_files = if ::File.directory?(@path)
          Dir[@path + "/*.{json,yml,yaml}"].sort
    Severity: Minor
    Found in lib/fwissr/source/file.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