rust/clippy_lints/src/mut_reference.rs

98 lines
3.5 KiB
Rust
Raw Normal View History

2018-10-06 11:18:06 -05:00
// Copyright 2014-2018 The Rust Project Developers. See the COPYRIGHT
// file at the top-level directory of this distribution.
//
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
// option. This file may not be copied, modified, or distributed
// except according to those terms.
use crate::rustc::lint::{LateContext, LateLintPass, LintArray, LintPass};
use crate::rustc::{declare_tool_lint, lint_array};
use crate::rustc::ty::{self, Ty};
use crate::rustc::ty::subst::Subst;
use crate::rustc::hir::*;
2018-05-30 03:15:50 -05:00
use crate::utils::span_lint;
2015-09-29 06:11:19 -05: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 17:25:44 -05:00
/// ```rust
/// my_vec.push(&mut value)
/// ```
2018-03-28 08:24:26 -05:00
declare_clippy_lint! {
2015-09-29 06:11:19 -05:00
pub UNNECESSARY_MUT_PASSED,
2018-03-28 08:24:26 -05:00
style,
"an argument passed as a mutable reference although the callee only demands an \
2015-09-29 06:11:19 -05:00
immutable reference"
}
2017-08-09 02:30:56 -05:00
#[derive(Copy, Clone)]
2015-09-29 06:11:19 -05: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 {
2018-07-12 02:30:57 -05:00
ExprKind::Call(ref fn_expr, ref arguments) => if let ExprKind::Path(ref path) = fn_expr.node {
2017-09-05 04:33:04 -05:00
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 11:21:30 -06:00
},
2018-07-12 02:30:57 -05:00
ExprKind::MethodCall(ref path, _, ref arguments) => {
2017-08-15 04:10:49 -05: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 16:28:01 -05:00
let method_type = cx.tcx.type_of(def_id).subst(cx.tcx, substs);
2018-06-28 08:46:58 -05:00
check_arguments(cx, arguments, method_type, &path.ident.as_str())
2016-12-20 11:21:30 -06:00
},
2016-04-14 13:14:03 -05:00
_ => (),
2015-09-29 06:11:19 -05:00
}
}
}
fn check_arguments<'a, 'tcx>(cx: &LateContext<'a, 'tcx>, arguments: &[Expr], type_definition: Ty<'tcx>, name: &str) {
match type_definition.sty {
ty::FnDef(..) | ty::FnPtr(_) => {
let parameters = type_definition.fn_sig(cx.tcx).skip_binder().inputs();
for (argument, parameter) in arguments.iter().zip(parameters.iter()) {
match parameter.sty {
ty::Ref(
2017-09-05 04:33:04 -05:00
_,
2018-05-11 01:37:48 -05:00
_,
MutImmutable,
2017-09-05 04:33:04 -05:00
) |
ty::RawPtr(ty::TypeAndMut {
2017-09-05 04:33:04 -05:00
mutbl: MutImmutable,
..
2018-07-12 02:30:57 -05:00
}) => if let ExprKind::AddrOf(MutMutable, _) = argument.node {
2017-09-05 04:33:04 -05:00
span_lint(
cx,
UNNECESSARY_MUT_PASSED,
argument.span,
&format!("The function/method `{}` doesn't need a mutable reference", name),
);
2016-12-20 11:21:30 -06:00
},
2016-04-14 13:14:03 -05:00
_ => (),
}
}
2016-12-20 11:21:30 -06:00
},
_ => (),
}
}