2015-05-29 14:07:34 +00:00
|
|
|
//! 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
|
2015-05-29 14:07:34 +00:00
|
|
|
//! if x {
|
|
|
|
//! if y {
|
|
|
|
//! println!("Hello world");
|
|
|
|
//! }
|
|
|
|
//! }
|
|
|
|
//! ```
|
|
|
|
//!
|
|
|
|
//! This lint is **warn** by default
|
|
|
|
|
2018-11-27 20:14:15 +00:00
|
|
|
use if_chain::if_chain;
|
2018-12-29 15:04:45 +00:00
|
|
|
use rustc::lint::{EarlyContext, EarlyLintPass, LintArray, LintPass};
|
|
|
|
use rustc::{declare_tool_lint, lint_array};
|
|
|
|
use syntax::ast;
|
2015-08-16 06:54:43 +00:00
|
|
|
|
2018-11-27 20:14:15 +00:00
|
|
|
use crate::utils::sugg::Sugg;
|
|
|
|
use crate::utils::{in_macro, snippet_block, snippet_block_with_applicability, span_lint_and_sugg, span_lint_and_then};
|
2018-12-29 15:04:45 +00:00
|
|
|
use rustc_errors::Applicability;
|
2015-05-29 14:07:34 +00:00
|
|
|
|
2018-03-28 13:24:26 +00:00
|
|
|
declare_clippy_lint! {
|
2019-03-05 16:50:33 +00:00
|
|
|
/// **What it does:** Checks for nested `if` statements which can be collapsed
|
|
|
|
/// 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.
|
|
|
|
///
|
|
|
|
/// **Example:**
|
|
|
|
/// ```rust,ignore
|
|
|
|
/// if x {
|
|
|
|
/// if y {
|
|
|
|
/// …
|
|
|
|
/// }
|
|
|
|
/// }
|
|
|
|
///
|
|
|
|
/// // or
|
|
|
|
///
|
|
|
|
/// if x {
|
|
|
|
/// …
|
|
|
|
/// } else {
|
|
|
|
/// if y {
|
|
|
|
/// …
|
|
|
|
/// }
|
|
|
|
/// }
|
|
|
|
/// ```
|
|
|
|
///
|
|
|
|
/// Should be written:
|
|
|
|
///
|
|
|
|
/// ```rust.ignore
|
|
|
|
/// if x && y {
|
|
|
|
/// …
|
|
|
|
/// }
|
|
|
|
///
|
|
|
|
/// // or
|
|
|
|
///
|
|
|
|
/// if x {
|
|
|
|
/// …
|
|
|
|
/// } else if y {
|
|
|
|
/// …
|
|
|
|
/// }
|
|
|
|
/// ```
|
2015-05-29 14:07:34 +00:00
|
|
|
pub COLLAPSIBLE_IF,
|
2018-03-28 13:24:26 +00:00
|
|
|
style,
|
2019-01-31 01:15:29 +00:00
|
|
|
"`if`s that can be collapsed (e.g., `if x { if y { ... } }` and `else { if x { ... } }`)"
|
2015-05-29 14:07:34 +00:00
|
|
|
}
|
|
|
|
|
2017-08-09 07:30:56 +00:00
|
|
|
#[derive(Copy, Clone)]
|
2015-05-29 14:07:34 +00:00
|
|
|
pub struct CollapsibleIf;
|
|
|
|
|
|
|
|
impl LintPass for CollapsibleIf {
|
|
|
|
fn get_lints(&self) -> LintArray {
|
|
|
|
lint_array!(COLLAPSIBLE_IF)
|
|
|
|
}
|
2019-01-26 19:40:55 +00:00
|
|
|
|
|
|
|
fn name(&self) -> &'static str {
|
|
|
|
"CollapsibleIf"
|
|
|
|
}
|
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 {
|
2018-07-23 11:01:12 +00:00
|
|
|
fn check_expr(&mut self, cx: &EarlyContext<'_>, expr: &ast::Expr) {
|
2017-03-31 22:14:04 +00:00
|
|
|
if !in_macro(expr.span) {
|
2015-09-17 05:27:18 +00:00
|
|
|
check_if(cx, expr)
|
|
|
|
}
|
2015-08-11 18:22:20 +00:00
|
|
|
}
|
2015-06-01 13:09:17 +00:00
|
|
|
}
|
|
|
|
|
2018-07-23 11:01:12 +00:00
|
|
|
fn check_if(cx: &EarlyContext<'_>, expr: &ast::Expr) {
|
2016-06-21 21:53:45 +00:00
|
|
|
match expr.node {
|
2018-11-27 20:14:15 +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
|
|
|
},
|
2016-06-21 21:53:45 +00:00
|
|
|
ast::ExprKind::IfLet(_, _, _, Some(ref else_)) => {
|
|
|
|
check_collapsible_maybe_if_let(cx, else_);
|
2016-12-20 17:21:30 +00:00
|
|
|
},
|
2016-06-21 21:53:45 +00:00
|
|
|
_ => (),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-10-16 20:20:27 +00:00
|
|
|
fn block_starts_with_comment(cx: &EarlyContext<'_>, expr: &ast::Block) -> bool {
|
2018-10-18 16:57:16 +00:00
|
|
|
// We trim all opening braces and whitespaces and then check if the next string is a comment.
|
2018-11-27 20:14:15 +00:00
|
|
|
let trimmed_block_text = snippet_block(cx, expr.span, "..")
|
2018-12-14 11:35:44 +00:00
|
|
|
.trim_start_matches(|c: char| c.is_whitespace() || c == '{')
|
2018-11-27 20:14:15 +00:00
|
|
|
.to_owned();
|
2018-10-18 16:57:16 +00:00
|
|
|
trimmed_block_text.starts_with("//") || trimmed_block_text.starts_with("/*")
|
2018-10-16 20:20:27 +00:00
|
|
|
}
|
|
|
|
|
2018-07-23 11:01:12 +00:00
|
|
|
fn check_collapsible_maybe_if_let(cx: &EarlyContext<'_>, else_: &ast::Expr) {
|
2017-10-23 19:18:02 +00:00
|
|
|
if_chain! {
|
2018-05-17 09:21:15 +00:00
|
|
|
if let ast::ExprKind::Block(ref block, _) = else_.node;
|
2018-10-16 20:20:27 +00:00
|
|
|
if !block_starts_with_comment(cx, block);
|
2017-10-23 19:18:02 +00:00
|
|
|
if let Some(else_) = expr_block(block);
|
|
|
|
if !in_macro(else_.span);
|
|
|
|
then {
|
|
|
|
match else_.node {
|
|
|
|
ast::ExprKind::If(..) | ast::ExprKind::IfLet(..) => {
|
2018-11-27 14:13:57 +00:00
|
|
|
let mut applicability = Applicability::MachineApplicable;
|
2018-11-20 13:06:29 +00:00
|
|
|
span_lint_and_sugg(
|
|
|
|
cx,
|
|
|
|
COLLAPSIBLE_IF,
|
|
|
|
block.span,
|
|
|
|
"this `else { if .. }` block can be collapsed",
|
|
|
|
"try",
|
2018-11-27 14:13:57 +00:00
|
|
|
snippet_block_with_applicability(cx, else_.span, "..", &mut applicability).into_owned(),
|
|
|
|
applicability,
|
2018-11-20 13:06:29 +00:00
|
|
|
);
|
2017-10-23 19:18:02 +00:00
|
|
|
}
|
|
|
|
_ => (),
|
2015-08-11 18:22:20 +00:00
|
|
|
}
|
2016-01-04 04:26:12 +00:00
|
|
|
}
|
2017-10-23 19:18:02 +00:00
|
|
|
}
|
2016-06-21 21:53:45 +00:00
|
|
|
}
|
|
|
|
|
2018-07-23 11:01:12 +00:00
|
|
|
fn check_collapsible_no_if_let(cx: &EarlyContext<'_>, expr: &ast::Expr, check: &ast::Expr, then: &ast::Block) {
|
2017-10-23 19:18:02 +00:00
|
|
|
if_chain! {
|
2018-10-16 20:20:27 +00:00
|
|
|
if !block_starts_with_comment(cx, then);
|
2017-10-23 19:18:02 +00:00
|
|
|
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, "..");
|
2019-01-27 12:33:56 +00:00
|
|
|
db.span_suggestion(
|
2018-09-18 15:07:54 +00:00
|
|
|
expr.span,
|
|
|
|
"try",
|
|
|
|
format!(
|
|
|
|
"if {} {}",
|
|
|
|
lhs.and(&rhs),
|
|
|
|
snippet_block(cx, content.span, ".."),
|
|
|
|
),
|
2018-09-18 17:01:17 +00:00
|
|
|
Applicability::MachineApplicable, // snippet
|
2018-09-18 15:07:54 +00:00
|
|
|
);
|
2017-10-23 19:18:02 +00:00
|
|
|
});
|
2016-06-21 21:53:45 +00:00
|
|
|
}
|
2017-10-23 19:18:02 +00:00
|
|
|
}
|
2015-05-29 14:07:34 +00:00
|
|
|
}
|
|
|
|
|
2016-12-21 09:00:13 +00:00
|
|
|
/// If the block contains only one expression, return it.
|
2016-07-01 15:41:57 +00:00
|
|
|
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),
|
2016-07-01 15:41:57 +00:00
|
|
|
_ => None,
|
2016-01-04 04:26:12 +00:00
|
|
|
}
|
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
|
|
|
}
|