rust-clippy/clippy_lints/src/collapsible_if.rs

159 lines
4.2 KiB
Rust
Raw Normal View History

//! Checks for if expressions that contain only an if expression.
//!
//! For example, the lint would catch:
//!
2016-12-21 09:00:13 +00:00
//! ```rust,ignore
//! if x {
//! if y {
//! println!("Hello world");
//! }
//! }
//! ```
//!
//! This lint is **warn** by default
use rustc::lint::*;
2018-07-19 07:53:23 +00:00
use rustc::{declare_lint, lint_array};
2018-07-19 08:00:54 +00:00
use if_chain::if_chain;
use syntax::ast;
2018-05-30 08:15:50 +00:00
use crate::utils::{in_macro, snippet_block, span_lint_and_sugg, span_lint_and_then};
use crate::utils::sugg::Sugg;
/// **What it does:** Checks for nested `if` statements which can be collapsed
2017-08-09 07:30:56 +00:00
/// by `&&`-combining their conditions and for `else { if ... }` expressions
/// that
/// can be collapsed to `else if ...`.
///
/// **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.
///
2016-07-15 22:25:44 +00:00
/// **Example:**
2016-12-21 09:00:13 +00:00
/// ```rust,ignore
2016-07-15 22:25:44 +00:00
/// if x {
/// if y {
/// …
/// }
/// }
///
/// // or
///
/// if x {
/// …
/// } else {
/// if y {
/// …
/// }
/// }
/// ```
///
/// Should be written:
///
2016-12-21 09:00:13 +00:00
/// ```rust.ignore
2016-07-15 22:25:44 +00:00
/// if x && y {
/// …
/// }
///
/// // or
///
/// if x {
/// …
/// } else if y {
/// …
/// }
/// ```
2018-03-28 13:24:26 +00:00
declare_clippy_lint! {
pub COLLAPSIBLE_IF,
2018-03-28 13:24:26 +00:00
style,
2016-07-17 11:29:34 +00:00
"`if`s that can be collapsed (e.g. `if x { if y { ... } }` and `else { if x { ... } }`)"
}
2017-08-09 07:30:56 +00:00
#[derive(Copy, Clone)]
pub struct CollapsibleIf;
impl LintPass for CollapsibleIf {
fn get_lints(&self) -> LintArray {
lint_array!(COLLAPSIBLE_IF)
}
}
impl EarlyLintPass for CollapsibleIf {
fn check_expr(&mut self, cx: &EarlyContext, expr: &ast::Expr) {
if !in_macro(expr.span) {
2015-09-17 05:27:18 +00:00
check_if(cx, expr)
}
}
}
fn check_if(cx: &EarlyContext, expr: &ast::Expr) {
match expr.node {
2017-09-05 09:33:04 +00:00
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);
2016-12-20 17:21:30 +00:00
},
ast::ExprKind::IfLet(_, _, _, Some(ref else_)) => {
check_collapsible_maybe_if_let(cx, else_);
2016-12-20 17:21:30 +00:00
},
_ => (),
}
}
fn check_collapsible_maybe_if_let(cx: &EarlyContext, else_: &ast::Expr) {
if_chain! {
2018-05-17 09:21:15 +00:00
if let ast::ExprKind::Block(ref block, _) = else_.node;
if let Some(else_) = expr_block(block);
if !in_macro(else_.span);
then {
match else_.node {
ast::ExprKind::If(..) | ast::ExprKind::IfLet(..) => {
span_lint_and_sugg(cx,
COLLAPSIBLE_IF,
block.span,
"this `else { if .. }` block can be collapsed",
"try",
snippet_block(cx, else_.span, "..").into_owned());
}
_ => (),
}
2016-01-04 04:26:12 +00:00
}
}
}
2016-12-20 17:21:30 +00:00
fn check_collapsible_no_if_let(cx: &EarlyContext, expr: &ast::Expr, check: &ast::Expr, then: &ast::Block) {
if_chain! {
if let Some(inner) = expr_block(then);
if let ast::ExprKind::If(ref check_inner, ref content, None) = inner.node;
then {
if expr.span.ctxt() != inner.span.ctxt() {
return;
}
span_lint_and_then(cx, COLLAPSIBLE_IF, expr.span, "this if statement can be collapsed", |db| {
let lhs = Sugg::ast(cx, check, "..");
let rhs = Sugg::ast(cx, check_inner, "..");
db.span_suggestion(expr.span,
"try",
format!("if {} {}",
2017-11-03 08:56:17 +00:00
lhs.and(&rhs),
snippet_block(cx, content.span, "..")));
});
}
}
}
2016-12-21 09:00:13 +00:00
/// If the block contains only one expression, return it.
fn expr_block(block: &ast::Block) -> Option<&ast::Expr> {
let mut it = block.stmts.iter();
if let (Some(stmt), None) = (it.next(), it.next()) {
match stmt.node {
2017-09-05 09:33:04 +00:00
ast::StmtKind::Expr(ref expr) | ast::StmtKind::Semi(ref expr) => Some(expr),
_ => None,
2016-01-04 04:26:12 +00:00
}
} else {
None
}
}