-
-
Notifications
You must be signed in to change notification settings - Fork 83
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
236 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,135 @@ | ||
# frozen_string_literal: true | ||
|
||
module RuboCop | ||
module Cop | ||
module Performance | ||
# This cop identifies places where custom array summation | ||
# can be replaced by `sum` method. | ||
# | ||
# @example | ||
# # bad | ||
# [1, 2, 3].inject(:+) | ||
# [1, 2, 3].reduce(10, :+) | ||
# [1, 2, 3].reduce { |acc, elem| acc + elem } | ||
# | ||
# # good | ||
# [1, 2, 3].sum | ||
# [1, 2, 3].sum(10) | ||
# [1, 2, 3].sum | ||
# | ||
class Sum < Cop | ||
include RangeHelp | ||
|
||
MSG = 'Use `%<good_method>s` instead of `%<bad_method>s`.' | ||
|
||
def_node_matcher :sum_candidate?, <<~PATTERN | ||
(send _ ${:inject :reduce} $_init ? (sym :+)) | ||
PATTERN | ||
|
||
def_node_matcher :sum_with_block_candidate?, <<~PATTERN | ||
(block | ||
$(send _ {:inject :reduce} $_init ?) | ||
(args (arg $_acc) (arg $_elem)) | ||
$send) | ||
PATTERN | ||
|
||
def_node_matcher :acc_plus_elem?, <<~PATTERN | ||
(send (lvar %1) :+ (lvar %2)) | ||
PATTERN | ||
alias elem_plus_acc? acc_plus_elem? | ||
|
||
def on_send(node) | ||
sum_candidate?(node) do |method, init| | ||
range = sum_method_range(node) | ||
message = build_method_message(method, init) | ||
|
||
add_offense(node, location: range, message: message) | ||
end | ||
end | ||
|
||
def on_block(node) | ||
sum_with_block_candidate?(node) do |send, init, var_acc, var_elem, body| | ||
if acc_plus_elem?(body, var_acc, var_elem) || elem_plus_acc?(body, var_elem, var_acc) | ||
range = sum_block_range(send, node) | ||
message = build_block_message(send, init, var_acc, var_elem, body) | ||
|
||
add_offense(node, location: range, message: message) | ||
end | ||
end | ||
end | ||
|
||
def autocorrect(node) | ||
if (matches = sum_candidate?(node)) | ||
_, init = *matches | ||
range = sum_method_range(node) | ||
elsif (matches = sum_with_block_candidate?(node)) | ||
send, init, = matches | ||
range = sum_block_range(send, node) | ||
else | ||
return | ||
end | ||
|
||
unless init.empty? | ||
lambda do |corrector| | ||
replacement = build_good_method(init) | ||
corrector.replace(range, replacement) | ||
end | ||
end | ||
end | ||
|
||
private | ||
|
||
def sum_method_range(node) | ||
range_between(node.loc.selector.begin_pos, node.loc.end.end_pos) | ||
end | ||
|
||
def sum_block_range(send, node) | ||
range_between(send.loc.selector.begin_pos, node.loc.end.end_pos) | ||
end | ||
|
||
def build_method_message(method, init) | ||
good_method = build_good_method(init) | ||
bad_method = build_method_bad_method(init, method) | ||
format(MSG, good_method: good_method, bad_method: bad_method) | ||
end | ||
|
||
def build_block_message(send, init, var_acc, var_elem, body) | ||
good_method = build_good_method(init) | ||
bad_method = build_block_bad_method(send.method_name, init, var_acc, var_elem, body) | ||
format(MSG, good_method: good_method, bad_method: bad_method) | ||
end | ||
|
||
def build_good_method(init) | ||
good_method = 'sum' | ||
|
||
unless init.empty? | ||
init = init.first | ||
good_method += "(#{init.source})" if init.source.to_i != 0 | ||
end | ||
good_method | ||
end | ||
|
||
def build_method_bad_method(init, method) | ||
bad_method = "#{method}(" | ||
unless init.empty? | ||
init = init.first | ||
bad_method += "#{init.source}, " | ||
end | ||
bad_method += ':+)' | ||
bad_method | ||
end | ||
|
||
def build_block_bad_method(method, init, var_acc, var_elem, body) | ||
bad_method = method.to_s | ||
|
||
unless init.empty? | ||
init = init.first | ||
bad_method += "(#{init.source})" | ||
end | ||
bad_method += " { |#{var_acc}, #{var_elem}| #{body.source} }" | ||
bad_method | ||
end | ||
end | ||
end | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
# frozen_string_literal: true | ||
|
||
RSpec.describe RuboCop::Cop::Performance::Sum do | ||
subject(:cop) { described_class.new } | ||
|
||
%i[inject reduce].each do |method| | ||
it "registers an offense and corrects when using `array.#{method}(10, :+)`" do | ||
source = "array.#{method}(10, :+)" | ||
inspect_source(source) | ||
|
||
expect(cop.offenses.size).to eq(1) | ||
expect(cop.highlights).to eq(["#{method}(10, :+)"]) | ||
|
||
new_source = autocorrect_source(source) | ||
expect(new_source).to eq('array.sum(10)') | ||
end | ||
|
||
it "registers an offense and corrects when using `array.#{method}(10) { |acc, elem| acc + elem }`" do | ||
source = "array.#{method}(10) { |acc, elem| acc + elem }" | ||
inspect_source(source) | ||
|
||
expect(cop.offenses.size).to eq(1) | ||
expect(cop.highlights).to eq(["#{method}(10) { |acc, elem| acc + elem }"]) | ||
|
||
new_source = autocorrect_source(source) | ||
expect(new_source).to eq('array.sum(10)') | ||
end | ||
|
||
it "registers an offense and corrects when using `array.#{method}(10) { |acc, elem| elem + acc }`" do | ||
source = "array.#{method}(10) { |acc, elem| elem + acc }" | ||
inspect_source(source) | ||
|
||
expect(cop.offenses.size).to eq(1) | ||
expect(cop.highlights).to eq(["#{method}(10) { |acc, elem| elem + acc }"]) | ||
|
||
new_source = autocorrect_source(source) | ||
expect(new_source).to eq('array.sum(10)') | ||
end | ||
|
||
it 'does not autocorrect when initial value is not provided' do | ||
source = "array.#{method}(:+)" | ||
inspect_source(source) | ||
|
||
expect(cop.offenses.size).to eq(1) | ||
expect(cop.highlights).to eq(["#{method}(:+)"]) | ||
|
||
new_source = autocorrect_source(source) | ||
expect(new_source).to eq(source) | ||
end | ||
|
||
it 'does not register an offense when block does not implement summation' do | ||
source = "array.#{method} { |acc, elem| elem * 2 }" | ||
inspect_source(source) | ||
expect(cop.offenses.size).to eq(0) | ||
end | ||
|
||
it 'does not register an offense when using `sum`' do | ||
expect_no_offenses(<<~RUBY) | ||
array.sum | ||
RUBY | ||
end | ||
end | ||
end |