2021-08-09 05:00:35 -05:00
|
|
|
use clippy_utils::diagnostics::{span_lint_and_help, span_lint_and_sugg, span_lint_and_then};
|
2021-03-25 13:29:11 -05:00
|
|
|
use clippy_utils::source::{snippet, snippet_with_applicability};
|
|
|
|
use clippy_utils::ty::is_type_diagnostic_item;
|
|
|
|
use clippy_utils::{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-08-09 05:00:35 -05:00
|
|
|
use rustc_hir::{self, HirId, HirIdMap, HirIdSet, PatKind};
|
|
|
|
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;
|
|
|
|
use rustc_middle::mir::FakeReadCause;
|
2021-03-12 08:30:50 -06:00
|
|
|
use rustc_middle::ty;
|
|
|
|
use rustc_span::source_map::Span;
|
|
|
|
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()`
|
|
|
|
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);
|
2021-08-09 05:00:35 -05:00
|
|
|
|
2021-03-12 08:30:50 -06:00
|
|
|
then {
|
|
|
|
if let hir::PatKind::Ref(..) = closure_arg.pat.kind {
|
2021-08-09 05:00:35 -05:00
|
|
|
Some((search_snippet.replacen('&', "", 1), None))
|
|
|
|
} else if let PatKind::Binding(..) = strip_pat_refs(closure_arg.pat).kind {
|
|
|
|
let mut visitor = DerefDelegate {
|
|
|
|
cx,
|
|
|
|
set: HirIdSet::default(),
|
|
|
|
deref_suggs: HirIdMap::default(),
|
|
|
|
borrow_suggs: HirIdMap::default()
|
|
|
|
};
|
|
|
|
|
|
|
|
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);
|
|
|
|
});
|
|
|
|
|
|
|
|
let replacements = if visitor.set.is_empty() {
|
|
|
|
None
|
|
|
|
} else {
|
|
|
|
let mut deref_suggs = Vec::new();
|
|
|
|
let mut borrow_suggs = Vec::new();
|
|
|
|
for node in visitor.set {
|
|
|
|
let span = cx.tcx.hir().span(node);
|
|
|
|
if let Some(sugg) = visitor.deref_suggs.get(&node) {
|
|
|
|
deref_suggs.push((span, sugg.clone()));
|
|
|
|
}
|
|
|
|
if let Some(sugg) = visitor.borrow_suggs.get(&node) {
|
|
|
|
borrow_suggs.push((span, sugg.clone()));
|
|
|
|
}
|
2021-07-13 04:26:24 -05:00
|
|
|
}
|
2021-08-09 05:00:35 -05:00
|
|
|
Some((deref_suggs, borrow_suggs))
|
|
|
|
};
|
|
|
|
Some((search_snippet.to_string(), replacements))
|
2021-03-12 08:30:50 -06:00
|
|
|
} else {
|
|
|
|
None
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
None
|
|
|
|
}
|
|
|
|
};
|
|
|
|
// add note if not multi-line
|
2021-08-09 05:00:35 -05:00
|
|
|
let (closure_snippet, replacements) = any_search_snippet
|
|
|
|
.as_ref()
|
|
|
|
.map_or((&*search_snippet, None), |s| (&s.0, s.1.clone()));
|
|
|
|
let (span, help, sugg) = if is_some {
|
|
|
|
(
|
2021-04-08 10:50:13 -05:00
|
|
|
method_span.with_hi(expr.span.hi()),
|
|
|
|
"use `any()` instead",
|
2021-08-09 05:00:35 -05:00
|
|
|
format!("any({})", closure_snippet),
|
|
|
|
)
|
2021-04-08 10:50:13 -05:00
|
|
|
} else {
|
|
|
|
let iter = snippet(cx, search_recv.span, "..");
|
2021-08-09 05:00:35 -05:00
|
|
|
(
|
2021-04-08 10:50:13 -05:00
|
|
|
expr.span,
|
|
|
|
"use `!_.any()` instead",
|
2021-08-09 05:00:35 -05:00
|
|
|
format!("!{}.any({})", iter, closure_snippet),
|
|
|
|
)
|
|
|
|
};
|
|
|
|
|
|
|
|
span_lint_and_then(cx, SEARCH_IS_SOME, span, &msg, |db| {
|
|
|
|
if let Some((deref_suggs, borrow_suggs)) = replacements {
|
|
|
|
db.span_suggestion(span, help, sugg, Applicability::MaybeIncorrect);
|
|
|
|
|
|
|
|
if !deref_suggs.is_empty() {
|
|
|
|
db.multipart_suggestion("...and remove deref", deref_suggs, Applicability::MaybeIncorrect);
|
|
|
|
}
|
|
|
|
if !borrow_suggs.is_empty() {
|
|
|
|
db.multipart_suggestion("...and borrow variable", borrow_suggs, Applicability::MaybeIncorrect);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
db.span_suggestion(span, help, sugg, Applicability::MachineApplicable);
|
|
|
|
}
|
|
|
|
});
|
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
|
|
|
|
|
|
|
struct DerefDelegate<'a, 'tcx> {
|
|
|
|
cx: &'a LateContext<'tcx>,
|
|
|
|
set: HirIdSet,
|
|
|
|
deref_suggs: HirIdMap<String>,
|
|
|
|
borrow_suggs: HirIdMap<String>,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<'tcx> Delegate<'tcx> for DerefDelegate<'_, 'tcx> {
|
|
|
|
fn consume(&mut self, cmt: &PlaceWithHirId<'tcx>, _: HirId) {
|
|
|
|
if let PlaceBase::Local(id) = cmt.place.base {
|
|
|
|
let map = self.cx.tcx.hir();
|
|
|
|
if cmt.place.projections.is_empty() {
|
|
|
|
self.set.insert(cmt.hir_id);
|
|
|
|
} else {
|
|
|
|
let mut replacement_str = map.name(id).to_string();
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
self.set.insert(cmt.hir_id);
|
|
|
|
self.deref_suggs.insert(cmt.hir_id, replacement_str);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn borrow(&mut self, cmt: &PlaceWithHirId<'tcx>, _: HirId, _: ty::BorrowKind) {
|
|
|
|
if let PlaceBase::Local(id) = cmt.place.base {
|
|
|
|
let map = self.cx.tcx.hir();
|
|
|
|
if cmt.place.projections.is_empty() {
|
|
|
|
let replacement_str = format!("&{}", map.name(id).to_string());
|
|
|
|
self.set.insert(cmt.hir_id);
|
|
|
|
self.borrow_suggs.insert(cmt.hir_id, replacement_str);
|
|
|
|
} else {
|
|
|
|
let mut replacement_str = map.name(id).to_string();
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
self.set.insert(cmt.hir_id);
|
|
|
|
self.deref_suggs.insert(cmt.hir_id, replacement_str);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn mutate(&mut self, _: &PlaceWithHirId<'tcx>, _: HirId) {}
|
|
|
|
|
|
|
|
fn fake_read(&mut self, _: rustc_typeck::expr_use_visitor::Place<'tcx>, _: FakeReadCause, _: HirId) {}
|
|
|
|
}
|