Sha256: d5d32846d481754b7f17ba2cc3b576112c596bae8de3a65b067b9b90f73612c8

Contents?: true

Size: 1.32 KB

Versions: 4

Compression:

Stored size: 1.32 KB

Contents

require File.join( File.dirname( File.expand_path(__FILE__)), 'smell_detector')
require File.join(File.dirname(File.dirname(File.expand_path(__FILE__))), 'smell_warning')

module Reek
  module Smells

    #
    # A Long Method is any method that has a large number of lines.
    #
    # Currently +LongMethod+ reports any method with more than
    # 5 statements.
    #
    class LongMethod < SmellDetector
      SUBCLASS_TOO_MANY_STATEMENTS = 'TooManyStatements'

      # The name of the config field that sets the maximum number of
      # statements permitted in any method.
      MAX_ALLOWED_STATEMENTS_KEY = 'max_statements'

      DEFAULT_MAX_STATEMENTS = 5

      def self.default_config
        super.adopt(
          MAX_ALLOWED_STATEMENTS_KEY => DEFAULT_MAX_STATEMENTS,
          EXCLUDE_KEY => ['initialize']
        )
      end

      def initialize(source, config = LongMethod.default_config)
        super(source, config)
      end

      #
      # Checks the length of the given +method+.
      # Remembers any smells found.
      #
      def examine_context(method)
        num = method.num_statements
        return false if num <= value(MAX_ALLOWED_STATEMENTS_KEY, method, DEFAULT_MAX_STATEMENTS)
        found(method, "has approx #{num} statements", SUBCLASS_TOO_MANY_STATEMENTS, {'statement_count' => num})
      end
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
reek-1.2.7.3 lib/reek/smells/long_method.rb
reek-1.2.7.2 lib/reek/smells/long_method.rb
reek-1.2.7.1 lib/reek/smells/long_method.rb
reek-1.2.7 lib/reek/smells/long_method.rb