2021-03-25 13:29:11 -05:00
|
|
|
use clippy_utils::diagnostics::span_lint_and_then;
|
2018-12-29 09:04:45 -06:00
|
|
|
use rustc_errors::Applicability;
|
2020-01-06 10:39:50 -06:00
|
|
|
use rustc_hir::{BindingAnnotation, Mutability, Node, Pat, PatKind};
|
2020-01-12 00:08:41 -06:00
|
|
|
use rustc_lint::{LateContext, LateLintPass};
|
2020-01-11 05:37:08 -06:00
|
|
|
use rustc_session::{declare_lint_pass, declare_tool_lint};
|
2017-06-24 05:04:56 -05:00
|
|
|
|
2018-03-28 08:24:26 -05:00
|
|
|
declare_clippy_lint! {
|
2021-07-29 05:16:06 -05:00
|
|
|
/// ### What it does
|
2022-10-01 16:54:22 -05:00
|
|
|
/// Checks for bindings that needlessly destructure a reference and borrow the inner
|
2021-03-12 08:30:50 -06:00
|
|
|
/// value with `&ref`.
|
2019-03-05 10:50:33 -06:00
|
|
|
///
|
2021-07-29 05:16:06 -05:00
|
|
|
/// ### Why is this bad?
|
|
|
|
/// This pattern has no effect in almost all cases.
|
2019-03-05 10:50:33 -06:00
|
|
|
///
|
2021-07-29 05:16:06 -05:00
|
|
|
/// ### Example
|
2019-03-05 10:50:33 -06:00
|
|
|
/// ```rust
|
|
|
|
/// let mut v = Vec::<String>::new();
|
2022-06-16 10:39:06 -05:00
|
|
|
/// v.iter_mut().filter(|&ref a| a.is_empty());
|
2022-10-01 16:54:22 -05:00
|
|
|
///
|
|
|
|
/// if let &[ref first, ref second] = v.as_slice() {}
|
2019-03-05 10:50:33 -06:00
|
|
|
/// ```
|
2021-03-12 08:30:50 -06:00
|
|
|
///
|
2022-06-16 10:39:06 -05:00
|
|
|
/// Use instead:
|
2021-03-12 08:30:50 -06:00
|
|
|
/// ```rust
|
|
|
|
/// let mut v = Vec::<String>::new();
|
2022-06-16 10:39:06 -05:00
|
|
|
/// v.iter_mut().filter(|a| a.is_empty());
|
2022-10-01 16:54:22 -05:00
|
|
|
///
|
|
|
|
/// if let [first, second] = v.as_slice() {}
|
2021-03-12 08:30:50 -06:00
|
|
|
/// ```
|
2021-12-06 05:33:31 -06:00
|
|
|
#[clippy::version = "pre 1.29.0"]
|
2017-06-24 05:04:56 -05:00
|
|
|
pub NEEDLESS_BORROWED_REFERENCE,
|
2018-03-28 08:24:26 -05:00
|
|
|
complexity,
|
2021-03-12 08:30:50 -06:00
|
|
|
"destructuring a reference and borrowing the inner value"
|
2017-06-24 05:04:56 -05:00
|
|
|
}
|
|
|
|
|
2019-04-08 15:43:55 -05:00
|
|
|
declare_lint_pass!(NeedlessBorrowedRef => [NEEDLESS_BORROWED_REFERENCE]);
|
2017-06-24 05:04:56 -05:00
|
|
|
|
2020-06-25 15:41:36 -05:00
|
|
|
impl<'tcx> LateLintPass<'tcx> for NeedlessBorrowedRef {
|
2022-11-15 12:24:18 -06:00
|
|
|
fn check_pat(&mut self, cx: &LateContext<'tcx>, ref_pat: &'tcx Pat<'_>) {
|
|
|
|
if ref_pat.span.from_expansion() {
|
2017-06-24 05:04:56 -05:00
|
|
|
// OK, simple enough, lints doesn't check in macro.
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2022-10-01 16:54:22 -05:00
|
|
|
// Do not lint patterns that are part of an OR `|` pattern, the binding mode must match in all arms
|
2022-11-15 12:24:18 -06:00
|
|
|
for (_, node) in cx.tcx.hir().parent_iter(ref_pat.hir_id) {
|
2022-10-01 16:54:22 -05:00
|
|
|
let Node::Pat(pat) = node else { break };
|
|
|
|
|
|
|
|
if matches!(pat.kind, PatKind::Or(_)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Only lint immutable refs, because `&mut ref T` may be useful.
|
2022-11-15 12:24:18 -06:00
|
|
|
let PatKind::Ref(pat, Mutability::Not) = ref_pat.kind else { return };
|
2017-07-01 05:01:39 -05:00
|
|
|
|
2022-11-15 12:24:18 -06:00
|
|
|
match pat.kind {
|
2017-07-01 09:56:19 -05:00
|
|
|
// Check sub_pat got a `ref` keyword (excluding `ref mut`).
|
2022-10-01 16:54:22 -05:00
|
|
|
PatKind::Binding(BindingAnnotation::REF, _, ident, None) => {
|
|
|
|
span_lint_and_then(
|
|
|
|
cx,
|
|
|
|
NEEDLESS_BORROWED_REFERENCE,
|
2022-11-15 12:24:18 -06:00
|
|
|
ref_pat.span,
|
2022-10-01 16:54:22 -05:00
|
|
|
"this pattern takes a reference on something that is being dereferenced",
|
|
|
|
|diag| {
|
|
|
|
// `&ref ident`
|
|
|
|
// ^^^^^
|
2022-11-15 12:24:18 -06:00
|
|
|
let span = ref_pat.span.until(ident.span);
|
2022-10-01 16:54:22 -05:00
|
|
|
diag.span_suggestion_verbose(
|
|
|
|
span,
|
|
|
|
"try removing the `&ref` part",
|
|
|
|
String::new(),
|
|
|
|
Applicability::MachineApplicable,
|
|
|
|
);
|
|
|
|
},
|
|
|
|
);
|
|
|
|
},
|
|
|
|
// Slices where each element is `ref`: `&[ref a, ref b, ..., ref z]`
|
|
|
|
PatKind::Slice(
|
|
|
|
before,
|
|
|
|
None
|
|
|
|
| Some(Pat {
|
|
|
|
kind: PatKind::Wild, ..
|
|
|
|
}),
|
|
|
|
after,
|
|
|
|
) => {
|
2022-11-15 12:24:18 -06:00
|
|
|
check_subpatterns(
|
|
|
|
cx,
|
|
|
|
"dereferencing a slice pattern where every element takes a reference",
|
|
|
|
ref_pat,
|
|
|
|
pat,
|
|
|
|
itertools::chain(before, after),
|
|
|
|
);
|
|
|
|
},
|
|
|
|
PatKind::Tuple(subpatterns, _) | PatKind::TupleStruct(_, subpatterns, _) => {
|
|
|
|
check_subpatterns(
|
|
|
|
cx,
|
|
|
|
"dereferencing a tuple pattern where every element takes a reference",
|
|
|
|
ref_pat,
|
|
|
|
pat,
|
|
|
|
subpatterns,
|
|
|
|
);
|
|
|
|
},
|
|
|
|
PatKind::Struct(_, fields, _) => {
|
|
|
|
check_subpatterns(
|
|
|
|
cx,
|
|
|
|
"dereferencing a struct pattern where every field's pattern takes a reference",
|
|
|
|
ref_pat,
|
|
|
|
pat,
|
|
|
|
fields.iter().map(|field| field.pat),
|
|
|
|
);
|
|
|
|
},
|
|
|
|
_ => {},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2022-10-01 16:54:22 -05:00
|
|
|
|
2022-11-15 12:24:18 -06:00
|
|
|
fn check_subpatterns<'tcx>(
|
|
|
|
cx: &LateContext<'tcx>,
|
|
|
|
message: &str,
|
|
|
|
ref_pat: &Pat<'_>,
|
|
|
|
pat: &Pat<'_>,
|
|
|
|
subpatterns: impl IntoIterator<Item = &'tcx Pat<'tcx>>,
|
|
|
|
) {
|
|
|
|
let mut suggestions = Vec::new();
|
2022-10-01 16:54:22 -05:00
|
|
|
|
2022-11-15 12:24:18 -06:00
|
|
|
for subpattern in subpatterns {
|
|
|
|
match subpattern.kind {
|
|
|
|
PatKind::Binding(BindingAnnotation::REF, _, ident, None) => {
|
|
|
|
// `ref ident`
|
|
|
|
// ^^^^
|
|
|
|
let span = subpattern.span.until(ident.span);
|
|
|
|
suggestions.push((span, String::new()));
|
2022-10-01 16:54:22 -05:00
|
|
|
},
|
2022-11-15 12:24:18 -06:00
|
|
|
PatKind::Wild => {},
|
|
|
|
_ => return,
|
2017-10-23 14:18:02 -05:00
|
|
|
}
|
2017-06-24 05:04:56 -05:00
|
|
|
}
|
2022-11-15 12:24:18 -06:00
|
|
|
|
|
|
|
if !suggestions.is_empty() {
|
|
|
|
span_lint_and_then(cx, NEEDLESS_BORROWED_REFERENCE, ref_pat.span, message, |diag| {
|
|
|
|
// `&pat`
|
|
|
|
// ^
|
|
|
|
let span = ref_pat.span.until(pat.span);
|
|
|
|
suggestions.push((span, String::new()));
|
|
|
|
|
|
|
|
diag.multipart_suggestion(
|
|
|
|
"try removing the `&` and `ref` parts",
|
|
|
|
suggestions,
|
|
|
|
Applicability::MachineApplicable,
|
|
|
|
);
|
|
|
|
});
|
|
|
|
}
|
2017-06-24 05:04:56 -05:00
|
|
|
}
|