rust-clippy/clippy_lints/src/mut_reference.rs

89 lines
3 KiB
Rust
Raw Normal View History

2015-09-29 11:11:19 +00:00
use rustc::lint::*;
use rustc::ty::{self, Ty};
2017-06-04 21:28:01 +00:00
use rustc::ty::subst::Subst;
use rustc::hir::*;
2016-02-24 16:38:57 +00:00
use utils::span_lint;
2015-09-29 11:11:19 +00:00
/// **What it does:** Detects giving a mutable reference to a function that only
/// requires an immutable reference.
///
/// **Why is this bad?** The immutable reference rules out all other references
/// to the value. Also the code misleads about the intent of the call site.
///
/// **Known problems:** None.
///
/// **Example:**
2016-07-15 22:25:44 +00:00
/// ```rust
/// my_vec.push(&mut value)
/// ```
2015-09-29 11:11:19 +00:00
declare_lint! {
pub UNNECESSARY_MUT_PASSED,
Warn,
"an argument passed as a mutable reference although the callee only demands an \
2015-09-29 11:11:19 +00:00
immutable reference"
}
2017-08-09 07:30:56 +00:00
#[derive(Copy, Clone)]
2015-09-29 11:11:19 +00:00
pub struct UnnecessaryMutPassed;
impl LintPass for UnnecessaryMutPassed {
fn get_lints(&self) -> LintArray {
lint_array!(UNNECESSARY_MUT_PASSED)
}
}
impl<'a, 'tcx> LateLintPass<'a, 'tcx> for UnnecessaryMutPassed {
fn check_expr(&mut self, cx: &LateContext<'a, 'tcx>, e: &'tcx Expr) {
match e.node {
2017-09-05 09:33:04 +00:00
ExprCall(ref fn_expr, ref arguments) => if let ExprPath(ref path) = fn_expr.node {
check_arguments(
cx,
arguments,
cx.tables.expr_ty(fn_expr),
&print::to_string(print::NO_ANN, |s| s.print_qpath(path, false)),
);
2016-12-20 17:21:30 +00:00
},
ExprMethodCall(ref path, _, ref arguments) => {
2017-08-15 09:10:49 +00:00
let def_id = cx.tables.type_dependent_defs()[e.hir_id].def_id();
let substs = cx.tables.node_substs(e.hir_id);
2017-06-04 21:28:01 +00:00
let method_type = cx.tcx.type_of(def_id).subst(cx.tcx, substs);
check_arguments(cx, arguments, method_type, &path.name.as_str())
2016-12-20 17:21:30 +00:00
},
2016-04-14 18:14:03 +00:00
_ => (),
2015-09-29 11:11:19 +00:00
}
}
}
fn check_arguments<'a, 'tcx>(cx: &LateContext<'a, 'tcx>, arguments: &[Expr], type_definition: Ty<'tcx>, name: &str) {
match type_definition.sty {
2017-06-29 14:07:43 +00:00
ty::TyFnDef(..) | ty::TyFnPtr(_) => {
let parameters = type_definition.fn_sig(cx.tcx).skip_binder().inputs();
for (argument, parameter) in arguments.iter().zip(parameters.iter()) {
match parameter.sty {
2017-09-05 09:33:04 +00:00
ty::TyRef(
_,
ty::TypeAndMut {
mutbl: MutImmutable,
..
},
) |
ty::TyRawPtr(ty::TypeAndMut {
mutbl: MutImmutable,
..
}) => if let ExprAddrOf(MutMutable, _) = argument.node {
span_lint(
cx,
UNNECESSARY_MUT_PASSED,
argument.span,
&format!("The function/method `{}` doesn't need a mutable reference", name),
);
2016-12-20 17:21:30 +00:00
},
2016-04-14 18:14:03 +00:00
_ => (),
}
}
2016-12-20 17:21:30 +00:00
},
_ => (),
}
}