rust/clippy_lints/src/let_if_seq.rs

202 lines
6.5 KiB
Rust
Raw Normal View History

2016-03-30 12:53:43 -05:00
use rustc::lint::*;
use rustc::hir;
use rustc::hir::BindingAnnotation;
2017-09-12 07:26:40 -05:00
use rustc::hir::def::Def;
use syntax::ast;
2016-03-30 12:53:43 -05:00
use utils::{snippet, span_lint_and_then};
/// **What it does:** Checks for variable declarations immediately followed by a
2016-03-30 12:53:43 -05:00
/// conditional affectation.
///
/// **Why is this bad?** This is not idiomatic Rust.
///
/// **Known problems:** None.
///
/// **Example:**
/// ```rust,ignore
/// let foo;
///
/// if bar() {
/// foo = 42;
/// } else {
/// foo = 0;
/// }
///
/// let mut baz = None;
///
/// if bar() {
/// baz = Some(42);
/// }
/// ```
///
/// should be written
///
/// ```rust,ignore
/// let foo = if bar() {
2016-11-24 03:09:09 -06:00
/// 42
2016-03-30 12:53:43 -05:00
/// } else {
2016-11-24 03:09:09 -06:00
/// 0
2016-03-30 12:53:43 -05:00
/// };
///
/// let baz = if bar() {
2016-11-24 03:09:09 -06:00
/// Some(42)
2016-03-30 12:53:43 -05:00
/// } else {
/// None
/// };
/// ```
declare_lint! {
pub USELESS_LET_IF_SEQ,
Warn,
"unidiomatic `let mut` declaration followed by initialization in `if`"
2016-03-30 12:53:43 -05:00
}
2017-08-09 02:30:56 -05:00
#[derive(Copy, Clone)]
2016-03-30 12:53:43 -05:00
pub struct LetIfSeq;
impl LintPass for LetIfSeq {
fn get_lints(&self) -> LintArray {
lint_array!(USELESS_LET_IF_SEQ)
}
}
impl<'a, 'tcx> LateLintPass<'a, 'tcx> for LetIfSeq {
fn check_block(&mut self, cx: &LateContext<'a, 'tcx>, block: &'tcx hir::Block) {
2016-03-30 12:53:43 -05:00
let mut it = block.stmts.iter().peekable();
2016-08-01 09:59:14 -05:00
while let Some(stmt) = it.next() {
if_chain! {
if let Some(expr) = it.peek();
if let hir::StmtDecl(ref decl, _) = stmt.node;
if let hir::DeclLocal(ref decl) = decl.node;
if let hir::PatKind::Binding(mode, canonical_id, ref name, None) = decl.pat.node;
if let hir::StmtExpr(ref if_, _) = expr.node;
if let hir::ExprIf(ref cond, ref then, ref else_) = if_.node;
if !used_in_expr(cx, canonical_id, cond);
if let hir::ExprBlock(ref then) = then.node;
if let Some(value) = check_assign(cx, canonical_id, &*then);
if !used_in_expr(cx, canonical_id, value);
then {
let span = stmt.span.to(if_.span);
2017-11-04 14:55:56 -05:00
let (default_multi_stmts, default) = if let Some(ref else_) = *else_ {
if let hir::ExprBlock(ref else_) = else_.node {
if let Some(default) = check_assign(cx, canonical_id, else_) {
(else_.stmts.len() > 1, default)
} else if let Some(ref default) = decl.init {
(true, &**default)
} else {
continue;
}
2016-03-30 12:53:43 -05:00
} else {
continue;
}
} else if let Some(ref default) = decl.init {
(false, &**default)
2016-03-30 12:53:43 -05:00
} else {
continue;
};
2017-11-04 14:55:56 -05:00
let mutability = match mode {
BindingAnnotation::RefMut | BindingAnnotation::Mutable => "<mut> ",
_ => "",
};
2017-11-04 14:55:56 -05:00
// FIXME: this should not suggest `mut` if we can detect that the variable is not
// use mutably after the `if`
2017-11-04 14:55:56 -05:00
let sug = format!(
"let {mut}{name} = if {cond} {{{then} {value} }} else {{{else} {default} }};",
mut=mutability,
name=name.node,
cond=snippet(cx, cond.span, "_"),
then=if then.stmts.len() > 1 { " ..;" } else { "" },
else=if default_multi_stmts { " ..;" } else { "" },
value=snippet(cx, value.span, "<value>"),
default=snippet(cx, default.span, "<default>"),
);
span_lint_and_then(cx,
USELESS_LET_IF_SEQ,
span,
"`if _ { .. } else { .. }` is an expression",
|db| {
db.span_suggestion(span,
"it is more idiomatic to write",
sug);
if !mutability.is_empty() {
db.note("you might not need `mut` at all");
}
});
}
}
2016-03-30 12:53:43 -05:00
}
}
}
struct UsedVisitor<'a, 'tcx: 'a> {
cx: &'a LateContext<'a, 'tcx>,
2017-09-12 07:26:40 -05:00
id: ast::NodeId,
2016-03-30 12:53:43 -05:00
used: bool,
}
impl<'a, 'tcx> hir::intravisit::Visitor<'tcx> for UsedVisitor<'a, 'tcx> {
fn visit_expr(&mut self, expr: &'tcx hir::Expr) {
if_chain! {
if let hir::ExprPath(ref qpath) = expr.node;
if let Def::Local(local_id) = self.cx.tables.qpath_def(qpath, expr.hir_id);
if self.id == local_id;
then {
self.used = true;
return;
}
}
2016-03-30 12:53:43 -05:00
hir::intravisit::walk_expr(self, expr);
}
fn nested_visit_map<'this>(&'this mut self) -> hir::intravisit::NestedVisitorMap<'this, 'tcx> {
hir::intravisit::NestedVisitorMap::None
}
2016-03-30 12:53:43 -05:00
}
fn check_assign<'a, 'tcx>(
cx: &LateContext<'a, 'tcx>,
2017-09-12 07:26:40 -05:00
decl: ast::NodeId,
2017-08-09 02:30:56 -05:00
block: &'tcx hir::Block,
) -> Option<&'tcx hir::Expr> {
if_chain! {
if block.expr.is_none();
if let Some(expr) = block.stmts.iter().last();
if let hir::StmtSemi(ref expr, _) = expr.node;
if let hir::ExprAssign(ref var, ref value) = expr.node;
if let hir::ExprPath(ref qpath) = var.node;
if let Def::Local(local_id) = cx.tables.qpath_def(qpath, var.hir_id);
if decl == local_id;
then {
let mut v = UsedVisitor {
cx: cx,
id: decl,
used: false,
};
2017-11-04 14:55:56 -05:00
for s in block.stmts.iter().take(block.stmts.len()-1) {
hir::intravisit::walk_stmt(&mut v, s);
2017-11-04 14:55:56 -05:00
if v.used {
return None;
}
}
2017-11-04 14:55:56 -05:00
return Some(value);
2016-03-30 12:53:43 -05:00
}
}
2016-03-30 12:53:43 -05:00
None
}
2017-09-12 07:26:40 -05:00
fn used_in_expr<'a, 'tcx: 'a>(cx: &LateContext<'a, 'tcx>, id: ast::NodeId, expr: &'tcx hir::Expr) -> bool {
let mut v = UsedVisitor {
cx: cx,
id: id,
used: false,
};
hir::intravisit::walk_expr(&mut v, expr);
v.used
}