2021-08-18 09:51:34 -05:00
|
|
|
use clippy_utils::diagnostics::{span_lint_and_help, span_lint_and_sugg};
|
2021-03-25 13:29:11 -05:00
|
|
|
use clippy_utils::source::{snippet, snippet_with_applicability};
|
|
|
|
use clippy_utils::ty::is_type_diagnostic_item;
|
2021-08-18 09:51:34 -05:00
|
|
|
use clippy_utils::{get_parent_expr_for_hir, is_trait_method, strip_pat_refs};
|
2021-03-12 08:30:50 -06:00
|
|
|
use if_chain::if_chain;
|
|
|
|
use rustc_errors::Applicability;
|
|
|
|
use rustc_hir as hir;
|
2021-09-12 04:40:14 -05:00
|
|
|
use rustc_hir::{self, ExprKind, HirId, PatKind};
|
2021-08-09 05:00:35 -05:00
|
|
|
use rustc_infer::infer::TyCtxtInferExt;
|
2021-03-12 08:30:50 -06:00
|
|
|
use rustc_lint::LateContext;
|
2021-08-09 05:00:35 -05:00
|
|
|
use rustc_middle::hir::place::ProjectionKind;
|
2021-08-18 09:51:34 -05:00
|
|
|
use rustc_middle::mir::{FakeReadCause, Mutability};
|
2021-03-12 08:30:50 -06:00
|
|
|
use rustc_middle::ty;
|
2021-08-18 09:51:34 -05:00
|
|
|
use rustc_span::source_map::{BytePos, Span};
|
2021-03-12 08:30:50 -06:00
|
|
|
use rustc_span::symbol::sym;
|
2021-08-09 05:00:35 -05:00
|
|
|
use rustc_typeck::expr_use_visitor::{Delegate, ExprUseVisitor, PlaceBase, PlaceWithHirId};
|
2021-03-12 08:30:50 -06:00
|
|
|
|
|
|
|
use super::SEARCH_IS_SOME;
|
|
|
|
|
|
|
|
/// lint searching an Iterator followed by `is_some()`
|
2021-03-25 13:29:11 -05:00
|
|
|
/// or calling `find()` on a string followed by `is_some()` or `is_none()`
|
2021-04-08 10:50:13 -05:00
|
|
|
#[allow(clippy::too_many_arguments, clippy::too_many_lines)]
|
2021-03-12 08:30:50 -06:00
|
|
|
pub(super) fn check<'tcx>(
|
2021-04-08 10:50:13 -05:00
|
|
|
cx: &LateContext<'_>,
|
2021-03-12 08:30:50 -06:00
|
|
|
expr: &'tcx hir::Expr<'_>,
|
|
|
|
search_method: &str,
|
2021-04-08 10:50:13 -05:00
|
|
|
is_some: bool,
|
|
|
|
search_recv: &hir::Expr<'_>,
|
|
|
|
search_arg: &'tcx hir::Expr<'_>,
|
|
|
|
is_some_recv: &hir::Expr<'_>,
|
2021-03-12 08:30:50 -06:00
|
|
|
method_span: Span,
|
|
|
|
) {
|
2021-04-08 10:50:13 -05:00
|
|
|
let option_check_method = if is_some { "is_some" } else { "is_none" };
|
2021-03-12 08:30:50 -06:00
|
|
|
// lint if caller of search is an Iterator
|
2021-04-08 10:50:13 -05:00
|
|
|
if is_trait_method(cx, is_some_recv, sym::Iterator) {
|
2021-03-12 08:30:50 -06:00
|
|
|
let msg = format!(
|
2021-03-25 13:29:11 -05:00
|
|
|
"called `{}()` after searching an `Iterator` with `{}`",
|
|
|
|
option_check_method, search_method
|
2021-03-12 08:30:50 -06:00
|
|
|
);
|
2021-04-08 10:50:13 -05:00
|
|
|
let search_snippet = snippet(cx, search_arg.span, "..");
|
2021-03-12 08:30:50 -06:00
|
|
|
if search_snippet.lines().count() <= 1 {
|
|
|
|
// suggest `any(|x| ..)` instead of `any(|&x| ..)` for `find(|&x| ..).is_some()`
|
|
|
|
// suggest `any(|..| *..)` instead of `any(|..| **..)` for `find(|..| **..).is_some()`
|
2021-09-07 05:31:14 -05:00
|
|
|
let mut applicability = Applicability::MachineApplicable;
|
2021-03-12 08:30:50 -06:00
|
|
|
let any_search_snippet = if_chain! {
|
|
|
|
if search_method == "find";
|
2021-04-08 10:50:13 -05:00
|
|
|
if let hir::ExprKind::Closure(_, _, body_id, ..) = search_arg.kind;
|
2021-03-12 08:30:50 -06:00
|
|
|
let closure_body = cx.tcx.hir().body(body_id);
|
|
|
|
if let Some(closure_arg) = closure_body.params.get(0);
|
|
|
|
then {
|
|
|
|
if let hir::PatKind::Ref(..) = closure_arg.pat.kind {
|
2021-08-18 09:51:34 -05:00
|
|
|
Some(search_snippet.replacen('&', "", 1))
|
2021-08-09 05:00:35 -05:00
|
|
|
} else if let PatKind::Binding(..) = strip_pat_refs(closure_arg.pat).kind {
|
2021-08-19 04:50:05 -05:00
|
|
|
// `find()` provides a reference to the item, but `any` does not,
|
|
|
|
// so we should fix item usages for suggestion
|
2021-09-07 05:31:14 -05:00
|
|
|
if let Some(closure_sugg) = get_closure_suggestion(cx, search_arg, closure_body) {
|
|
|
|
applicability = closure_sugg.applicability;
|
|
|
|
Some(closure_sugg.suggestion)
|
|
|
|
} else {
|
|
|
|
Some(search_snippet.to_string())
|
|
|
|
}
|
2021-03-12 08:30:50 -06:00
|
|
|
} else {
|
|
|
|
None
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
None
|
|
|
|
}
|
|
|
|
};
|
|
|
|
// add note if not multi-line
|
2021-08-18 09:51:34 -05:00
|
|
|
if is_some {
|
|
|
|
span_lint_and_sugg(
|
|
|
|
cx,
|
|
|
|
SEARCH_IS_SOME,
|
2021-04-08 10:50:13 -05:00
|
|
|
method_span.with_hi(expr.span.hi()),
|
2021-08-18 09:51:34 -05:00
|
|
|
&msg,
|
2021-04-08 10:50:13 -05:00
|
|
|
"use `any()` instead",
|
2021-08-18 09:51:34 -05:00
|
|
|
format!(
|
|
|
|
"any({})",
|
|
|
|
any_search_snippet.as_ref().map_or(&*search_snippet, String::as_str)
|
|
|
|
),
|
2021-09-07 05:31:14 -05:00
|
|
|
applicability,
|
2021-08-18 09:51:34 -05:00
|
|
|
);
|
2021-04-08 10:50:13 -05:00
|
|
|
} else {
|
|
|
|
let iter = snippet(cx, search_recv.span, "..");
|
2021-08-18 09:51:34 -05:00
|
|
|
span_lint_and_sugg(
|
|
|
|
cx,
|
|
|
|
SEARCH_IS_SOME,
|
2021-04-08 10:50:13 -05:00
|
|
|
expr.span,
|
2021-08-18 09:51:34 -05:00
|
|
|
&msg,
|
2021-04-08 10:50:13 -05:00
|
|
|
"use `!_.any()` instead",
|
2021-08-18 09:51:34 -05:00
|
|
|
format!(
|
|
|
|
"!{}.any({})",
|
|
|
|
iter,
|
|
|
|
any_search_snippet.as_ref().map_or(&*search_snippet, String::as_str)
|
|
|
|
),
|
2021-09-07 05:31:14 -05:00
|
|
|
applicability,
|
2021-08-18 09:51:34 -05:00
|
|
|
);
|
|
|
|
}
|
2021-03-12 08:30:50 -06:00
|
|
|
} else {
|
2021-03-25 13:29:11 -05:00
|
|
|
let hint = format!(
|
|
|
|
"this is more succinctly expressed by calling `any()`{}",
|
|
|
|
if option_check_method == "is_none" {
|
|
|
|
" with negation"
|
|
|
|
} else {
|
|
|
|
""
|
|
|
|
}
|
|
|
|
);
|
|
|
|
span_lint_and_help(cx, SEARCH_IS_SOME, expr.span, &msg, None, &hint);
|
2021-03-12 08:30:50 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
// lint if `find()` is called by `String` or `&str`
|
|
|
|
else if search_method == "find" {
|
|
|
|
let is_string_or_str_slice = |e| {
|
|
|
|
let self_ty = cx.typeck_results().expr_ty(e).peel_refs();
|
2021-10-02 18:51:01 -05:00
|
|
|
if is_type_diagnostic_item(cx, self_ty, sym::String) {
|
2021-03-12 08:30:50 -06:00
|
|
|
true
|
|
|
|
} else {
|
|
|
|
*self_ty.kind() == ty::Str
|
|
|
|
}
|
|
|
|
};
|
|
|
|
if_chain! {
|
2021-04-08 10:50:13 -05:00
|
|
|
if is_string_or_str_slice(search_recv);
|
|
|
|
if is_string_or_str_slice(search_arg);
|
2021-03-12 08:30:50 -06:00
|
|
|
then {
|
2021-03-25 13:29:11 -05:00
|
|
|
let msg = format!("called `{}()` after calling `find()` on a string", option_check_method);
|
|
|
|
match option_check_method {
|
|
|
|
"is_some" => {
|
|
|
|
let mut applicability = Applicability::MachineApplicable;
|
2021-04-08 10:50:13 -05:00
|
|
|
let find_arg = snippet_with_applicability(cx, search_arg.span, "..", &mut applicability);
|
2021-03-25 13:29:11 -05:00
|
|
|
span_lint_and_sugg(
|
|
|
|
cx,
|
|
|
|
SEARCH_IS_SOME,
|
|
|
|
method_span.with_hi(expr.span.hi()),
|
|
|
|
&msg,
|
|
|
|
"use `contains()` instead",
|
|
|
|
format!("contains({})", find_arg),
|
|
|
|
applicability,
|
|
|
|
);
|
|
|
|
},
|
|
|
|
"is_none" => {
|
2021-04-08 10:50:13 -05:00
|
|
|
let string = snippet(cx, search_recv.span, "..");
|
2021-03-25 13:29:11 -05:00
|
|
|
let mut applicability = Applicability::MachineApplicable;
|
2021-04-08 10:50:13 -05:00
|
|
|
let find_arg = snippet_with_applicability(cx, search_arg.span, "..", &mut applicability);
|
2021-03-25 13:29:11 -05:00
|
|
|
span_lint_and_sugg(
|
|
|
|
cx,
|
|
|
|
SEARCH_IS_SOME,
|
|
|
|
expr.span,
|
|
|
|
&msg,
|
|
|
|
"use `!_.contains()` instead",
|
|
|
|
format!("!{}.contains({})", string, find_arg),
|
|
|
|
applicability,
|
|
|
|
);
|
|
|
|
},
|
|
|
|
_ => (),
|
|
|
|
}
|
2021-03-12 08:30:50 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2021-08-09 05:00:35 -05:00
|
|
|
|
2021-09-07 05:31:14 -05:00
|
|
|
struct ClosureSugg {
|
|
|
|
applicability: Applicability,
|
|
|
|
suggestion: String,
|
|
|
|
}
|
|
|
|
|
2021-08-19 04:50:05 -05:00
|
|
|
// Build suggestion gradually by handling closure arg specific usages,
|
|
|
|
// such as explicit deref and borrowing cases.
|
|
|
|
// Returns `None` if no such use cases have been triggered in closure body
|
2021-08-18 09:51:34 -05:00
|
|
|
fn get_closure_suggestion<'tcx>(
|
|
|
|
cx: &LateContext<'_>,
|
|
|
|
search_arg: &'tcx hir::Expr<'_>,
|
|
|
|
closure_body: &hir::Body<'_>,
|
2021-09-07 05:31:14 -05:00
|
|
|
) -> Option<ClosureSugg> {
|
2021-08-18 09:51:34 -05:00
|
|
|
let mut visitor = DerefDelegate {
|
|
|
|
cx,
|
|
|
|
closure_span: search_arg.span,
|
2021-09-07 04:18:27 -05:00
|
|
|
next_pos: search_arg.span.lo(),
|
2021-08-18 09:51:34 -05:00
|
|
|
suggestion_start: String::new(),
|
2021-09-07 04:06:50 -05:00
|
|
|
applicability: Applicability::MachineApplicable,
|
2021-08-18 09:51:34 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
let fn_def_id = cx.tcx.hir().local_def_id(search_arg.hir_id);
|
|
|
|
cx.tcx.infer_ctxt().enter(|infcx| {
|
|
|
|
ExprUseVisitor::new(&mut visitor, &infcx, fn_def_id, cx.param_env, cx.typeck_results())
|
|
|
|
.consume_body(closure_body);
|
|
|
|
});
|
|
|
|
|
|
|
|
if visitor.suggestion_start.is_empty() {
|
|
|
|
None
|
|
|
|
} else {
|
2021-09-07 05:31:14 -05:00
|
|
|
Some(ClosureSugg {
|
|
|
|
applicability: visitor.applicability,
|
|
|
|
suggestion: visitor.finish(),
|
|
|
|
})
|
2021-08-18 09:51:34 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-08-09 05:00:35 -05:00
|
|
|
struct DerefDelegate<'a, 'tcx> {
|
|
|
|
cx: &'a LateContext<'tcx>,
|
2021-08-18 09:51:34 -05:00
|
|
|
closure_span: Span,
|
2021-09-07 04:18:27 -05:00
|
|
|
next_pos: BytePos,
|
2021-08-18 09:51:34 -05:00
|
|
|
suggestion_start: String,
|
2021-09-07 04:06:50 -05:00
|
|
|
applicability: Applicability,
|
2021-08-09 05:00:35 -05:00
|
|
|
}
|
|
|
|
|
2021-09-07 04:59:53 -05:00
|
|
|
impl DerefDelegate<'_, 'tcx> {
|
|
|
|
pub fn finish(&mut self) -> String {
|
|
|
|
let end_span = Span::new(self.next_pos, self.closure_span.hi(), self.closure_span.ctxt());
|
|
|
|
let end_snip = snippet_with_applicability(self.cx, end_span, "..", &mut self.applicability);
|
|
|
|
format!("{}{}", self.suggestion_start, end_snip)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-08-09 05:00:35 -05:00
|
|
|
impl<'tcx> Delegate<'tcx> for DerefDelegate<'_, 'tcx> {
|
2021-08-18 09:51:34 -05:00
|
|
|
fn consume(&mut self, _: &PlaceWithHirId<'tcx>, _: HirId) {}
|
|
|
|
|
|
|
|
fn borrow(&mut self, cmt: &PlaceWithHirId<'tcx>, _: HirId, _: ty::BorrowKind) {
|
2021-08-09 05:00:35 -05:00
|
|
|
if let PlaceBase::Local(id) = cmt.place.base {
|
|
|
|
let map = self.cx.tcx.hir();
|
2021-08-18 09:51:34 -05:00
|
|
|
let ident_str = map.name(id).to_string();
|
|
|
|
let span = map.span(cmt.hir_id);
|
2021-09-07 04:18:27 -05:00
|
|
|
let start_span = Span::new(self.next_pos, span.lo(), span.ctxt());
|
2021-09-12 04:31:11 -05:00
|
|
|
let mut start_snip = snippet_with_applicability(self.cx, start_span, "..", &mut self.applicability);
|
2021-08-09 05:00:35 -05:00
|
|
|
|
2021-08-18 09:51:34 -05:00
|
|
|
if cmt.place.projections.is_empty() {
|
2021-08-19 04:50:05 -05:00
|
|
|
// handle item without any projection, that needs an explicit borrowing
|
|
|
|
// i.e.: suggest `&x` instead of `x`
|
2021-08-18 09:51:34 -05:00
|
|
|
self.suggestion_start.push_str(&format!("{}&{}", start_snip, ident_str));
|
|
|
|
} else {
|
2021-08-19 04:50:05 -05:00
|
|
|
// cases where a parent call is using the item
|
|
|
|
// i.e.: suggest `.contains(&x)` for `.find(|x| [1, 2, 3].contains(x)).is_none()`
|
2021-09-12 04:40:14 -05:00
|
|
|
if let Some(parent_expr) = get_parent_expr_for_hir(self.cx, cmt.hir_id) {
|
|
|
|
if let ExprKind::Call(..) | ExprKind::MethodCall(..) = parent_expr.kind {
|
|
|
|
let expr = self.cx.tcx.hir().expect_expr(cmt.hir_id);
|
|
|
|
let arg_ty_kind = self.cx.typeck_results().expr_ty(expr).kind();
|
2021-08-09 05:00:35 -05:00
|
|
|
|
2021-09-12 04:40:14 -05:00
|
|
|
// Note: this should always be true, as `find` only gives us a reference which are not mutable
|
|
|
|
if matches!(arg_ty_kind, ty::Ref(_, _, Mutability::Not)) {
|
|
|
|
let start_span = Span::new(self.next_pos, span.lo(), span.ctxt());
|
|
|
|
let start_snip =
|
|
|
|
snippet_with_applicability(self.cx, start_span, "..", &mut self.applicability);
|
|
|
|
|
|
|
|
self.suggestion_start.push_str(&format!("{}&{}", start_snip, ident_str));
|
|
|
|
self.next_pos = span.hi();
|
|
|
|
} else {
|
|
|
|
self.applicability = Applicability::Unspecified;
|
2021-08-09 05:00:35 -05:00
|
|
|
}
|
2021-09-12 04:40:14 -05:00
|
|
|
return;
|
2021-08-09 05:00:35 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-08-19 04:50:05 -05:00
|
|
|
// handle item projections by removing one explicit deref
|
|
|
|
// i.e.: suggest `*x` instead of `**x`
|
2021-08-18 09:51:34 -05:00
|
|
|
let mut replacement_str = ident_str;
|
2021-08-09 05:00:35 -05:00
|
|
|
|
2021-09-12 04:31:11 -05:00
|
|
|
// handle index projection first
|
|
|
|
let index_handled = cmt.place.projections.iter().any(|proj| match proj.kind {
|
|
|
|
// Index projection like `|x| foo[x]`
|
|
|
|
// the index is dropped so we can't get it to build the suggestion,
|
|
|
|
// so the span is set-up again to get more code, using `span.hi()` (i.e.: `foo[x]`)
|
|
|
|
// instead of `span.lo()` (i.e.: `foo`)
|
|
|
|
ProjectionKind::Index => {
|
|
|
|
let start_span = Span::new(self.next_pos, span.hi(), span.ctxt());
|
|
|
|
start_snip = snippet_with_applicability(self.cx, start_span, "..", &mut self.applicability);
|
|
|
|
replacement_str.clear();
|
|
|
|
true
|
|
|
|
},
|
|
|
|
_ => false,
|
|
|
|
});
|
|
|
|
|
|
|
|
// looking for projections other that need to be handled differently
|
|
|
|
let other_projections_handled = cmt.place.projections.iter().enumerate().any(|(i, proj)| {
|
|
|
|
match proj.kind {
|
|
|
|
// Field projection like `|v| v.foo`
|
|
|
|
ProjectionKind::Field(idx, variant) => match cmt.place.ty_before_projection(i).kind() {
|
|
|
|
ty::Adt(def, ..) => {
|
|
|
|
replacement_str = format!(
|
|
|
|
"{}.{}",
|
|
|
|
replacement_str,
|
|
|
|
def.variants[variant].fields[idx as usize].ident.name.as_str()
|
|
|
|
);
|
|
|
|
true
|
|
|
|
},
|
|
|
|
ty::Tuple(_) => {
|
|
|
|
replacement_str = format!("{}.{}", replacement_str, idx);
|
|
|
|
true
|
|
|
|
},
|
|
|
|
_ => false,
|
|
|
|
},
|
2021-09-12 04:40:14 -05:00
|
|
|
// handled previously
|
|
|
|
ProjectionKind::Index |
|
|
|
|
// note: unable to trigger `Subslice` kind in tests
|
|
|
|
ProjectionKind::Subslice => false,
|
2021-09-12 04:31:11 -05:00
|
|
|
ProjectionKind::Deref => {
|
|
|
|
// explicit deref for arrays should be avoided in the suggestion
|
|
|
|
// i.e.: `|sub| *sub[1..4].len() == 3` is not expected
|
|
|
|
match cmt.place.ty_before_projection(i).kind() {
|
|
|
|
// dereferencing an array (i.e.: `|sub| sub[1..4].len() == 3`)
|
2021-09-12 04:40:14 -05:00
|
|
|
ty::Ref(_, inner, _) => {
|
|
|
|
matches!(inner.kind(), ty::Ref(_, innermost, _) if innermost.is_array())
|
2021-09-12 04:31:11 -05:00
|
|
|
},
|
|
|
|
_ => false,
|
|
|
|
}
|
|
|
|
},
|
|
|
|
}
|
|
|
|
});
|
2021-08-09 05:00:35 -05:00
|
|
|
|
2021-09-12 04:31:11 -05:00
|
|
|
// handle `ProjectionKind::Deref` if no special case detected
|
|
|
|
if !index_handled && !other_projections_handled {
|
|
|
|
let last_deref = cmt
|
|
|
|
.place
|
|
|
|
.projections
|
|
|
|
.iter()
|
|
|
|
.rposition(|proj| proj.kind == ProjectionKind::Deref);
|
|
|
|
|
|
|
|
if let Some(pos) = last_deref {
|
|
|
|
let mut projections = cmt.place.projections.clone();
|
|
|
|
projections.truncate(pos);
|
|
|
|
|
|
|
|
for item in projections {
|
|
|
|
if item.kind == ProjectionKind::Deref {
|
|
|
|
replacement_str = format!("*{}", replacement_str);
|
|
|
|
}
|
2021-08-09 05:00:35 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2021-08-18 09:51:34 -05:00
|
|
|
|
|
|
|
self.suggestion_start
|
|
|
|
.push_str(&format!("{}{}", start_snip, replacement_str));
|
2021-08-09 05:00:35 -05:00
|
|
|
}
|
2021-09-07 04:18:27 -05:00
|
|
|
self.next_pos = span.hi();
|
2021-08-09 05:00:35 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn mutate(&mut self, _: &PlaceWithHirId<'tcx>, _: HirId) {}
|
|
|
|
|
|
|
|
fn fake_read(&mut self, _: rustc_typeck::expr_use_visitor::Place<'tcx>, _: FakeReadCause, _: HirId) {}
|
|
|
|
}
|