2015-05-29 14:07:34 +00:00
|
|
|
//! Checks for if expressions that contain only an if expression.
|
|
|
|
//!
|
|
|
|
//! For example, the lint would catch:
|
|
|
|
//!
|
|
|
|
//! ```
|
|
|
|
//! if x {
|
|
|
|
//! if y {
|
|
|
|
//! println!("Hello world");
|
|
|
|
//! }
|
|
|
|
//! }
|
|
|
|
//! ```
|
|
|
|
//!
|
|
|
|
//! This lint is **warn** by default
|
|
|
|
|
|
|
|
use rustc::lint::*;
|
2016-02-20 20:03:45 +00:00
|
|
|
use std::borrow::Cow;
|
2015-09-06 08:53:55 +00:00
|
|
|
use syntax::codemap::Spanned;
|
2016-06-21 21:17:18 +00:00
|
|
|
use syntax::ast;
|
2015-08-16 06:54:43 +00:00
|
|
|
|
2016-01-13 17:32:55 +00:00
|
|
|
use utils::{in_macro, snippet, snippet_block, span_lint_and_then};
|
2015-05-29 14:07:34 +00:00
|
|
|
|
2016-01-13 17:32:55 +00:00
|
|
|
/// **What it does:** This lint checks for nested `if`-statements which can be collapsed by
|
2016-01-29 21:42:19 +00:00
|
|
|
/// `&&`-combining their conditions and for `else { if .. }` expressions that can be collapsed to
|
2016-02-05 23:41:54 +00:00
|
|
|
/// `else if ..`.
|
2015-12-11 00:22:27 +00:00
|
|
|
///
|
|
|
|
/// **Why is this bad?** Each `if`-statement adds one level of nesting, which makes code look more complex than it really is.
|
|
|
|
///
|
|
|
|
/// **Known problems:** None
|
|
|
|
///
|
|
|
|
/// **Example:** `if x { if y { .. } }`
|
2015-05-29 14:07:34 +00:00
|
|
|
declare_lint! {
|
|
|
|
pub COLLAPSIBLE_IF,
|
|
|
|
Warn,
|
2015-08-13 08:32:35 +00:00
|
|
|
"two nested `if`-expressions can be collapsed into one, e.g. `if x { if y { foo() } }` \
|
2016-01-13 17:32:55 +00:00
|
|
|
can be written as `if x && y { foo() }` and an `else { if .. } expression can be collapsed to \
|
|
|
|
`else if`"
|
2015-05-29 14:07:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Copy,Clone)]
|
|
|
|
pub struct CollapsibleIf;
|
|
|
|
|
|
|
|
impl LintPass for CollapsibleIf {
|
|
|
|
fn get_lints(&self) -> LintArray {
|
|
|
|
lint_array!(COLLAPSIBLE_IF)
|
|
|
|
}
|
2015-09-19 02:53:04 +00:00
|
|
|
}
|
2015-08-11 18:22:20 +00:00
|
|
|
|
2016-06-21 21:17:18 +00:00
|
|
|
impl EarlyLintPass for CollapsibleIf {
|
|
|
|
fn check_expr(&mut self, cx: &EarlyContext, expr: &ast::Expr) {
|
2015-09-17 05:27:18 +00:00
|
|
|
if !in_macro(cx, expr.span) {
|
|
|
|
check_if(cx, expr)
|
|
|
|
}
|
2015-08-11 18:22:20 +00:00
|
|
|
}
|
2015-06-01 13:09:17 +00:00
|
|
|
}
|
|
|
|
|
2016-06-21 21:53:45 +00:00
|
|
|
fn check_if(cx: &EarlyContext, expr: &ast::Expr) {
|
|
|
|
match expr.node {
|
|
|
|
ast::ExprKind::If(ref check, ref then, ref else_) => {
|
|
|
|
if let Some(ref else_) = *else_ {
|
|
|
|
check_collapsible_maybe_if_let(cx, else_);
|
|
|
|
} else {
|
|
|
|
check_collapsible_no_if_let(cx, expr, check, then);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
ast::ExprKind::IfLet(_, _, _, Some(ref else_)) => {
|
|
|
|
check_collapsible_maybe_if_let(cx, else_);
|
|
|
|
}
|
|
|
|
_ => (),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn check_collapsible_maybe_if_let(cx: &EarlyContext, else_: &ast::Expr) {
|
|
|
|
if_let_chain! {[
|
|
|
|
let ast::ExprKind::Block(ref block) = else_.node,
|
|
|
|
block.stmts.is_empty(),
|
|
|
|
let Some(ref else_) = block.expr,
|
|
|
|
], {
|
|
|
|
match else_.node {
|
|
|
|
ast::ExprKind::If(..) | ast::ExprKind::IfLet(..) => {
|
2016-02-01 10:28:39 +00:00
|
|
|
span_lint_and_then(cx,
|
|
|
|
COLLAPSIBLE_IF,
|
|
|
|
block.span,
|
|
|
|
"this `else { if .. }` block can be collapsed", |db| {
|
2016-02-15 16:43:16 +00:00
|
|
|
db.span_suggestion(block.span, "try", snippet_block(cx, else_.span, "..").into_owned());
|
2016-02-01 10:28:39 +00:00
|
|
|
});
|
2015-08-11 18:22:20 +00:00
|
|
|
}
|
2016-06-21 21:53:45 +00:00
|
|
|
_ => (),
|
2016-01-04 04:26:12 +00:00
|
|
|
}
|
2016-06-21 21:53:45 +00:00
|
|
|
}}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn check_collapsible_no_if_let(
|
|
|
|
cx: &EarlyContext,
|
|
|
|
expr: &ast::Expr,
|
|
|
|
check: &ast::Expr,
|
|
|
|
then: &ast::Block,
|
|
|
|
) {
|
|
|
|
if_let_chain! {[
|
|
|
|
let Some(inner) = single_stmt_of_block(then),
|
|
|
|
let ast::ExprKind::If(ref check_inner, ref content, None) = inner.node,
|
|
|
|
], {
|
|
|
|
if expr.span.expn_id != inner.span.expn_id {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
span_lint_and_then(cx, COLLAPSIBLE_IF, expr.span, "this if statement can be collapsed", |db| {
|
|
|
|
db.span_suggestion(expr.span,
|
|
|
|
"try",
|
|
|
|
format!("if {} && {} {}",
|
|
|
|
check_to_string(cx, check),
|
|
|
|
check_to_string(cx, check_inner),
|
|
|
|
snippet_block(cx, content.span, "..")));
|
|
|
|
});
|
|
|
|
}}
|
2015-05-29 14:07:34 +00:00
|
|
|
}
|
|
|
|
|
2016-06-21 21:17:18 +00:00
|
|
|
fn requires_brackets(e: &ast::Expr) -> bool {
|
2015-05-29 14:07:34 +00:00
|
|
|
match e.node {
|
2016-06-21 21:17:18 +00:00
|
|
|
ast::ExprKind::Binary(Spanned { node: n, .. }, _, _) if n == ast::BinOpKind::Eq => false,
|
2016-01-04 04:26:12 +00:00
|
|
|
_ => true,
|
2015-05-29 14:07:34 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-06-21 21:17:18 +00:00
|
|
|
fn check_to_string(cx: &EarlyContext, e: &ast::Expr) -> Cow<'static, str> {
|
2015-05-29 14:07:34 +00:00
|
|
|
if requires_brackets(e) {
|
2016-02-20 20:03:45 +00:00
|
|
|
format!("({})", snippet(cx, e.span, "..")).into()
|
2015-05-29 14:07:34 +00:00
|
|
|
} else {
|
2016-02-20 20:03:45 +00:00
|
|
|
snippet(cx, e.span, "..")
|
2015-05-29 14:07:34 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-06-21 21:17:18 +00:00
|
|
|
fn single_stmt_of_block(block: &ast::Block) -> Option<&ast::Expr> {
|
2015-06-01 13:09:17 +00:00
|
|
|
if block.stmts.len() == 1 && block.expr.is_none() {
|
2016-06-21 21:17:18 +00:00
|
|
|
if let ast::StmtKind::Expr(ref expr, _) = block.stmts[0].node {
|
2015-06-01 13:09:17 +00:00
|
|
|
single_stmt_of_expr(expr)
|
2016-01-04 04:26:12 +00:00
|
|
|
} else {
|
|
|
|
None
|
|
|
|
}
|
2016-01-13 17:32:55 +00:00
|
|
|
} else if block.stmts.is_empty() {
|
|
|
|
if let Some(ref p) = block.expr {
|
|
|
|
Some(p)
|
2016-01-04 04:26:12 +00:00
|
|
|
} else {
|
|
|
|
None
|
|
|
|
}
|
2016-01-13 17:32:55 +00:00
|
|
|
} else {
|
|
|
|
None
|
2015-05-29 14:07:34 +00:00
|
|
|
}
|
2015-06-01 13:09:17 +00:00
|
|
|
}
|
|
|
|
|
2016-06-21 21:17:18 +00:00
|
|
|
fn single_stmt_of_expr(expr: &ast::Expr) -> Option<&ast::Expr> {
|
|
|
|
if let ast::ExprKind::Block(ref block) = expr.node {
|
2015-06-01 13:09:17 +00:00
|
|
|
single_stmt_of_block(block)
|
2016-01-04 04:26:12 +00:00
|
|
|
} else {
|
|
|
|
Some(expr)
|
|
|
|
}
|
2015-05-29 14:07:34 +00:00
|
|
|
}
|