Class: RuboCop::Cop::Style::SelectByRegexp
- Extended by:
- AutoCorrector
- Includes:
- RangeHelp
- Defined in:
- lib/rubocop/cop/style/select_by_regexp.rb
Overview
This cop looks for places where an subset of an Enumerable (array, range, set, etc.; see note below) is calculated based on a ‘Regexp` match, and suggests `grep` or `grep_v` instead.
NOTE: Hashes do not behave as you may expect with ‘grep`, which means that `hash.grep` is not equivalent to `hash.select`. Although RuboCop is limited by static analysis, this cop attempts to avoid registering an offense when the receiver is a hash (hash literal, `Hash.new`, `Hash#[]`, or `to_h`/`to_hash`).
NOTE: ‘grep` and `grep_v` were optimized when used without a block in Ruby 3.0, but may be slower in previous versions. See bugs.ruby-lang.org/issues/17030
Constant Summary collapse
- MSG =
'Prefer `%<replacement>s` to `%<original_method>s` with a regexp match.'
- RESTRICT_ON_SEND =
%i[select find_all reject].freeze
- REPLACEMENTS =
{ select: 'grep', find_all: 'grep', reject: 'grep_v' }.freeze
- REGEXP_METHODS =
%i[match? =~].to_set.freeze
Instance Attribute Summary
Attributes inherited from Base
Instance Method Summary collapse
- #calls_lvar?(node, name) ⇒ Object
-
#creates_hash?(node) ⇒ Object
Returns true if a node appears to return a hash.
- #on_send(node) ⇒ Object
- #regexp_match?(node) ⇒ Object
Methods included from AutoCorrector
Methods inherited from Base
#add_global_offense, #add_offense, autocorrect_incompatible_with, badge, callbacks_needed, #callbacks_needed, #config_to_allow_offenses, #config_to_allow_offenses=, #cop_config, #cop_name, cop_name, department, documentation_url, exclude_from_registry, #excluded_file?, #external_dependency_checksum, inherited, #initialize, joining_forces, lint?, match?, #message, #offenses, #on_investigation_end, #on_new_investigation, #on_other_file, #parse, #ready, #relevant_file?, support_autocorrect?, support_multiple_source?, #target_rails_version, #target_ruby_version
Methods included from ExcludeLimit
Methods included from AutocorrectLogic
#autocorrect?, #autocorrect_enabled?, #autocorrect_requested?, #correctable?, #disable_uncorrectable?, #safe_autocorrect?
Methods included from IgnoredNode
#ignore_node, #ignored_node?, #part_of_ignored_node?
Methods included from Util
Constructor Details
This class inherits a constructor from RuboCop::Cop::Base
Instance Method Details
#calls_lvar?(node, name) ⇒ Object
73 74 75 76 77 78 79 |
# File 'lib/rubocop/cop/style/select_by_regexp.rb', line 73 def_node_matcher :calls_lvar?, <<~PATTERN { (send (lvar %1) ...) (send ... (lvar %1)) (match-with-lvasgn regexp (lvar %1)) } PATTERN |
#creates_hash?(node) ⇒ Object
Returns true if a node appears to return a hash
64 65 66 67 68 69 70 |
# File 'lib/rubocop/cop/style/select_by_regexp.rb', line 64 def_node_matcher :creates_hash?, <<~PATTERN { (send (const _ :Hash) {:new :[]} ...) (block (send (const _ :Hash) :new ...) ...) (send _ { :to_h :to_hash } ...) } PATTERN |
#on_send(node) ⇒ Object
81 82 83 84 85 86 87 88 89 |
# File 'lib/rubocop/cop/style/select_by_regexp.rb', line 81 def on_send(node) return unless (block_node = node.block_node) return if block_node.body.begin_type? return if receiver_allowed?(block_node.receiver) return unless (regexp_method_send_node = extract_send_node(block_node)) regexp = find_regexp(regexp_method_send_node) register_offense(node, block_node, regexp) end |
#regexp_match?(node) ⇒ Object
55 56 57 58 59 60 |
# File 'lib/rubocop/cop/style/select_by_regexp.rb', line 55 def_node_matcher :regexp_match?, <<~PATTERN { (block send (args (arg $_)) ${(send _ %REGEXP_METHODS _) match-with-lvasgn}) (numblock send $1 ${(send _ %REGEXP_METHODS _) match-with-lvasgn}) } PATTERN |