rust/clippy_lints/src/drop_ref.rs

59 lines
2.0 KiB
Rust
Raw Normal View History

use rustc::lint::*;
use rustc::ty;
use rustc::hir::*;
2016-04-14 11:13:15 -05:00
use utils::{match_def_path, paths, span_note_and_lint};
/// **What it does:** Checks for calls to `std::mem::drop` with a reference
/// instead of an owned value.
///
/// **Why is this bad?** Calling `drop` on a reference will only drop the
/// reference itself, which is a no-op. It will not call the `drop` method (from
/// the `Drop` trait implementation) on the underlying referenced value, which
/// is likely what was intended.
///
/// **Known problems:** None.
///
/// **Example:**
/// ```rust
/// let mut lock_guard = mutex.lock();
/// std::mem::drop(&lock_guard) // Should have been drop(lock_guard), mutex still locked
/// operation_that_requires_mutex_to_be_unlocked();
/// ```
declare_lint! {
pub DROP_REF,
Warn,
"calls to `std::mem::drop` with a reference instead of an owned value"
}
#[allow(missing_copy_implementations)]
2016-06-10 09:17:20 -05:00
pub struct Pass;
2016-06-10 09:17:20 -05:00
impl LintPass for Pass {
fn get_lints(&self) -> LintArray {
lint_array!(DROP_REF)
}
}
impl<'a, 'tcx> LateLintPass<'a, 'tcx> for Pass {
fn check_expr(&mut self, cx: &LateContext<'a, 'tcx>, expr: &'tcx Expr) {
if_let_chain!{[
let ExprCall(ref path, ref args) = expr.node,
let ExprPath(ref qpath) = path.node,
match_def_path(cx, cx.tcx.tables().qpath_def(qpath, path.id).def_id(), &paths::DROP),
args.len() == 1,
], {
let arg = &args[0];
let arg_ty = cx.tcx.tables().expr_ty(arg);
if let ty::TyRef(..) = arg_ty.sty {
span_note_and_lint(cx,
DROP_REF,
expr.span,
"call to `std::mem::drop` with a reference argument. \
Dropping a reference does nothing",
arg.span,
&format!("argument has type {}", arg_ty.sty));
}
}}
}
}