2017-06-26 07:42:24 -05:00
|
|
|
//! Checks for useless borrowed references.
|
2017-06-24 05:04:56 -05:00
|
|
|
//!
|
|
|
|
//! This lint is **warn** by default
|
|
|
|
|
|
|
|
use rustc::lint::*;
|
2017-07-01 11:51:20 -05:00
|
|
|
use rustc::hir::{MutImmutable, Pat, PatKind, BindByRef};
|
2017-06-24 05:04:56 -05:00
|
|
|
use rustc::ty;
|
2017-07-01 05:01:39 -05:00
|
|
|
use utils::{span_lint_and_then, in_macro, snippet};
|
2017-06-24 05:04:56 -05:00
|
|
|
|
2017-06-26 07:42:24 -05:00
|
|
|
/// **What it does:** Checks for useless borrowed references.
|
2017-06-24 05:04:56 -05:00
|
|
|
///
|
2017-07-01 11:51:20 -05:00
|
|
|
/// **Why is this bad?** It is mostly useless and make the code look more complex than it
|
2017-06-29 09:07:43 -05:00
|
|
|
/// actually is.
|
2017-06-24 05:04:56 -05:00
|
|
|
///
|
2017-07-01 11:51:20 -05:00
|
|
|
/// **Known problems:** It seems that the `&ref` pattern is sometimes useful.
|
|
|
|
/// For instance in the following snippet:
|
|
|
|
/// ```rust
|
|
|
|
/// enum Animal {
|
|
|
|
/// Cat(u64),
|
|
|
|
/// Dog(u64),
|
|
|
|
/// }
|
|
|
|
///
|
|
|
|
/// fn foo(a: &Animal, b: &Animal) {
|
|
|
|
/// match (a, b) {
|
|
|
|
/// (&Animal::Cat(v), k) | (k, &Animal::Cat(v)) => (), // lifetime mismatch error
|
|
|
|
/// (&Animal::Dog(ref c), &Animal::Dog(_)) => ()
|
|
|
|
/// }
|
|
|
|
/// }
|
|
|
|
/// ```
|
|
|
|
/// There is a lifetime mismatch error for `k` (indeed a and b have distinct lifetime).
|
|
|
|
/// This can be fixed by using the `&ref` pattern.
|
|
|
|
/// However, the code can also be fixed by much cleaner ways
|
2017-06-24 05:04:56 -05:00
|
|
|
///
|
|
|
|
/// **Example:**
|
|
|
|
/// ```rust
|
|
|
|
/// let mut v = Vec::<String>::new();
|
|
|
|
/// let _ = v.iter_mut().filter(|&ref a| a.is_empty());
|
|
|
|
/// ```
|
2017-08-09 02:30:56 -05:00
|
|
|
/// This clojure takes a reference on something that has been matched as a
|
|
|
|
/// reference and
|
2017-06-29 09:07:43 -05:00
|
|
|
/// de-referenced.
|
2017-06-26 07:42:24 -05:00
|
|
|
/// As such, it could just be |a| a.is_empty()
|
2017-06-24 05:04:56 -05:00
|
|
|
declare_lint! {
|
|
|
|
pub NEEDLESS_BORROWED_REFERENCE,
|
|
|
|
Warn,
|
|
|
|
"taking a needless borrowed reference"
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Copy, Clone)]
|
|
|
|
pub struct NeedlessBorrowedRef;
|
|
|
|
|
|
|
|
impl LintPass for NeedlessBorrowedRef {
|
|
|
|
fn get_lints(&self) -> LintArray {
|
|
|
|
lint_array!(NEEDLESS_BORROWED_REFERENCE)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<'a, 'tcx> LateLintPass<'a, 'tcx> for NeedlessBorrowedRef {
|
|
|
|
fn check_pat(&mut self, cx: &LateContext<'a, 'tcx>, pat: &'tcx Pat) {
|
|
|
|
if in_macro(pat.span) {
|
|
|
|
// OK, simple enough, lints doesn't check in macro.
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if_let_chain! {[
|
|
|
|
// Pat is a pattern whose node
|
2017-06-29 06:45:54 -05:00
|
|
|
// is a binding which "involves" an immutable reference...
|
2017-08-01 02:11:05 -05:00
|
|
|
let PatKind::Binding(BindingAnnotation::Ref, ..) = pat.node,
|
2017-06-24 05:04:56 -05:00
|
|
|
// Pattern's type is a reference. Get the type and mutability of referenced value (tam: TypeAndMut).
|
|
|
|
let ty::TyRef(_, ref tam) = cx.tables.pat_ty(pat).sty,
|
2017-06-29 06:45:54 -05:00
|
|
|
// Only lint immutable refs, because `&mut ref T` may be useful.
|
2017-07-01 05:01:39 -05:00
|
|
|
let PatKind::Ref(ref sub_pat, MutImmutable) = pat.node,
|
|
|
|
|
2017-07-01 09:56:19 -05:00
|
|
|
// Check sub_pat got a `ref` keyword (excluding `ref mut`).
|
|
|
|
let PatKind::Binding(BindByRef(MutImmutable), _, spanned_name, ..) = sub_pat.node,
|
2017-06-24 05:04:56 -05:00
|
|
|
], {
|
2017-07-01 05:01:39 -05:00
|
|
|
span_lint_and_then(cx, NEEDLESS_BORROWED_REFERENCE, pat.span,
|
|
|
|
"this pattern takes a reference on something that is being de-referenced",
|
|
|
|
|db| {
|
2017-07-01 09:56:19 -05:00
|
|
|
let hint = snippet(cx, spanned_name.span, "..").into_owned();
|
2017-07-01 05:01:39 -05:00
|
|
|
db.span_suggestion(pat.span, "try removing the `&ref` part and just keep", hint);
|
|
|
|
});
|
2017-06-24 05:04:56 -05:00
|
|
|
}}
|
|
|
|
}
|
|
|
|
}
|
2017-07-01 11:51:20 -05:00
|
|
|
|