rust-clippy/clippy_lints/src/no_effect.rs

189 lines
6.3 KiB
Rust
Raw Normal View History

2015-10-28 16:50:00 +00:00
use rustc::lint::{LateContext, LateLintPass, LintArray, LintPass};
use rustc::hir::def::Def;
2018-07-12 07:30:57 +00:00
use rustc::hir::{BinOpKind, BlockCheckMode, Expr, ExprKind, Stmt, StmtKind, UnsafeSource};
2018-05-30 08:15:50 +00:00
use crate::utils::{has_drop, in_macro, snippet_opt, span_lint, span_lint_and_sugg};
use std::ops::Deref;
2015-10-28 16:50:00 +00:00
/// **What it does:** Checks for statements which have no effect.
2015-12-14 21:16:56 +00:00
///
/// **Why is this bad?** Similar to dead code, these statements are actually
/// executed. However, as they have no effect, all they do is make the code less
/// readable.
2015-12-14 21:16:56 +00:00
///
/// **Known problems:** None.
///
2016-07-15 22:25:44 +00:00
/// **Example:**
/// ```rust
/// 0;
/// ```
2018-03-28 13:24:26 +00:00
declare_clippy_lint! {
2015-10-28 16:50:00 +00:00
pub NO_EFFECT,
2018-03-28 13:24:26 +00:00
complexity,
2015-10-28 16:50:00 +00:00
"statements with no effect"
}
/// **What it does:** Checks for expression statements that can be reduced to a
/// sub-expression.
///
/// **Why is this bad?** Expressions by themselves often have no side-effects.
/// Having such expressions reduces readability.
///
/// **Known problems:** None.
///
2016-07-15 22:25:44 +00:00
/// **Example:**
/// ```rust
/// compute_array()[0];
/// ```
2018-03-28 13:24:26 +00:00
declare_clippy_lint! {
pub UNNECESSARY_OPERATION,
2018-03-28 13:24:26 +00:00
complexity,
"outer expressions with no effect"
}
2015-10-28 16:50:00 +00:00
fn has_no_effect(cx: &LateContext, expr: &Expr) -> bool {
if in_macro(expr.span) {
2015-10-28 16:50:00 +00:00
return false;
}
match expr.node {
2018-07-12 07:30:57 +00:00
ExprKind::Lit(..) | ExprKind::Closure(.., _) => true,
ExprKind::Path(..) => !has_drop(cx, expr),
ExprKind::Index(ref a, ref b) | ExprKind::Binary(_, ref a, ref b) => {
2017-09-05 09:33:04 +00:00
has_no_effect(cx, a) && has_no_effect(cx, b)
},
2018-07-12 07:30:57 +00:00
ExprKind::Array(ref v) | ExprKind::Tup(ref v) => v.iter().all(|val| has_no_effect(cx, val)),
ExprKind::Repeat(ref inner, _) |
ExprKind::Cast(ref inner, _) |
ExprKind::Type(ref inner, _) |
ExprKind::Unary(_, ref inner) |
ExprKind::Field(ref inner, _) |
ExprKind::AddrOf(_, ref inner) |
ExprKind::Box(ref inner) => has_no_effect(cx, inner),
ExprKind::Struct(_, ref fields, ref base) => {
!has_drop(cx, expr) && fields.iter().all(|field| has_no_effect(cx, &field.expr)) && match *base {
2017-09-05 09:33:04 +00:00
Some(ref base) => has_no_effect(cx, base),
None => true,
}
2016-12-20 17:21:30 +00:00
},
2018-07-12 07:30:57 +00:00
ExprKind::Call(ref callee, ref args) => if let ExprKind::Path(ref qpath) = callee.node {
2017-09-05 09:33:04 +00:00
let def = cx.tables.qpath_def(qpath, callee.hir_id);
match def {
Def::Struct(..) | Def::Variant(..) | Def::StructCtor(..) | Def::VariantCtor(..) => {
!has_drop(cx, expr) && args.iter().all(|arg| has_no_effect(cx, arg))
2017-09-05 09:33:04 +00:00
},
_ => false,
2015-10-28 16:50:00 +00:00
}
2017-09-05 09:33:04 +00:00
} else {
false
2016-12-20 17:21:30 +00:00
},
2018-07-12 07:30:57 +00:00
ExprKind::Block(ref block, _) => {
2017-09-05 09:33:04 +00:00
block.stmts.is_empty() && if let Some(ref expr) = block.expr {
has_no_effect(cx, expr)
} else {
false
}
2016-12-20 17:21:30 +00:00
},
2015-10-28 16:50:00 +00:00
_ => false,
}
}
#[derive(Copy, Clone)]
2016-06-10 14:17:20 +00:00
pub struct Pass;
2015-10-28 16:50:00 +00:00
2016-06-10 14:17:20 +00:00
impl LintPass for Pass {
2015-10-28 16:50:00 +00:00
fn get_lints(&self) -> LintArray {
lint_array!(NO_EFFECT, UNNECESSARY_OPERATION)
2015-10-28 16:50:00 +00:00
}
}
impl<'a, 'tcx> LateLintPass<'a, 'tcx> for Pass {
fn check_stmt(&mut self, cx: &LateContext<'a, 'tcx>, stmt: &'tcx Stmt) {
2015-10-28 16:50:00 +00:00
if let StmtSemi(ref expr, _) = stmt.node {
if has_no_effect(cx, expr) {
2016-01-04 04:26:12 +00:00
span_lint(cx, NO_EFFECT, stmt.span, "statement with no effect");
} else if let Some(reduced) = reduce_expression(cx, expr) {
let mut snippet = String::new();
for e in reduced {
if in_macro(e.span) {
return;
}
if let Some(snip) = snippet_opt(cx, e.span) {
snippet.push_str(&snip);
snippet.push(';');
} else {
return;
}
}
2017-08-09 07:30:56 +00:00
span_lint_and_sugg(
cx,
UNNECESSARY_OPERATION,
stmt.span,
"statement can be reduced",
"replace it with",
snippet,
);
}
}
}
}
fn reduce_expression<'a>(cx: &LateContext, expr: &'a Expr) -> Option<Vec<&'a Expr>> {
if in_macro(expr.span) {
return None;
}
match expr.node {
2018-07-12 07:30:57 +00:00
ExprKind::Index(ref a, ref b) => Some(vec![&**a, &**b]),
ExprKind::Binary(ref binop, ref a, ref b) if binop.node != BiAnd && binop.node != BiOr => {
Some(vec![&**a, &**b])
},
2018-07-12 07:30:57 +00:00
ExprKind::Array(ref v) | ExprKind::Tup(ref v) => Some(v.iter().collect()),
ExprKind::Repeat(ref inner, _) |
ExprKind::Cast(ref inner, _) |
ExprKind::Type(ref inner, _) |
ExprKind::Unary(_, ref inner) |
ExprKind::Field(ref inner, _) |
ExprKind::AddrOf(_, ref inner) |
ExprKind::Box(ref inner) => reduce_expression(cx, inner).or_else(|| Some(vec![inner])),
ExprKind::Struct(_, ref fields, ref base) => if has_drop(cx, expr) {
2017-11-04 19:55:56 +00:00
None
} else {
Some(
fields
.iter()
.map(|f| &f.expr)
.chain(base)
.map(Deref::deref)
.collect(),
)
},
2018-07-12 07:30:57 +00:00
ExprKind::Call(ref callee, ref args) => if let ExprKind::Path(ref qpath) = callee.node {
2017-09-05 09:33:04 +00:00
let def = cx.tables.qpath_def(qpath, callee.hir_id);
match def {
2017-11-04 19:55:56 +00:00
Def::Struct(..) | Def::Variant(..) | Def::StructCtor(..) | Def::VariantCtor(..)
if !has_drop(cx, expr) =>
{
2017-09-05 09:33:04 +00:00
Some(args.iter().collect())
},
_ => None,
}
2017-09-05 09:33:04 +00:00
} else {
None
2016-12-20 17:21:30 +00:00
},
2018-07-12 07:30:57 +00:00
ExprKind::Block(ref block, _) => {
if block.stmts.is_empty() {
block.expr.as_ref().and_then(|e| {
match block.rules {
BlockCheckMode::UnsafeBlock(UnsafeSource::UserProvided) => None,
BlockCheckMode::DefaultBlock => Some(vec![&**e]),
// in case of compiler-inserted signaling blocks
_ => reduce_expression(cx, e),
}
})
} else {
None
2015-10-28 16:50:00 +00:00
}
2016-12-20 17:21:30 +00:00
},
_ => None,
2015-10-28 16:50:00 +00:00
}
}