2018-10-06 11:18:06 -05:00
|
|
|
// Copyright 2014-2018 The Rust Project Developers. See the COPYRIGHT
|
|
|
|
// file at the top-level directory of this distribution.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
|
|
|
|
2018-11-27 14:14:15 -06:00
|
|
|
use crate::rustc::hir::intravisit::{walk_expr, NestedVisitorMap, Visitor};
|
|
|
|
use crate::rustc::hir::*;
|
2018-09-15 02:21:58 -05:00
|
|
|
use crate::rustc::lint::{LateContext, LateLintPass, LintArray, LintPass};
|
|
|
|
use crate::rustc::{declare_tool_lint, lint_array};
|
2018-05-30 03:15:50 -05:00
|
|
|
use crate::utils::*;
|
2018-11-27 14:14:15 -06:00
|
|
|
use matches::matches;
|
2015-11-19 23:22:52 -06:00
|
|
|
|
2016-08-06 02:55:04 -05:00
|
|
|
/// **What it does:** Checks for `if` conditions that use blocks to contain an
|
|
|
|
/// expression.
|
2015-12-14 06:31:28 -06:00
|
|
|
///
|
2016-08-06 02:55:04 -05:00
|
|
|
/// **Why is this bad?** It isn't really Rust style, same as using parentheses
|
|
|
|
/// to contain expressions.
|
2015-12-14 06:31:28 -06:00
|
|
|
///
|
2016-08-06 02:55:04 -05:00
|
|
|
/// **Known problems:** None.
|
2015-12-14 06:31:28 -06:00
|
|
|
///
|
2016-07-15 17:25:44 -05:00
|
|
|
/// **Example:**
|
|
|
|
/// ```rust
|
|
|
|
/// if { true } ..
|
|
|
|
/// ```
|
2018-03-28 08:24:26 -05:00
|
|
|
declare_clippy_lint! {
|
2016-08-06 03:18:36 -05:00
|
|
|
pub BLOCK_IN_IF_CONDITION_EXPR,
|
2018-03-28 08:24:26 -05:00
|
|
|
style,
|
2017-03-17 02:30:29 -05:00
|
|
|
"braces that can be eliminated in conditions, e.g. `if { true } ...`"
|
2015-11-19 23:22:52 -06:00
|
|
|
}
|
|
|
|
|
2016-08-06 02:55:04 -05:00
|
|
|
/// **What it does:** Checks for `if` conditions that use blocks containing
|
|
|
|
/// statements, or conditions that use closures with blocks.
|
2015-12-14 06:31:28 -06:00
|
|
|
///
|
|
|
|
/// **Why is this bad?** Using blocks in the condition makes it hard to read.
|
|
|
|
///
|
2016-08-06 02:55:04 -05:00
|
|
|
/// **Known problems:** None.
|
2015-12-14 06:31:28 -06:00
|
|
|
///
|
2016-07-15 17:25:44 -05:00
|
|
|
/// **Example:**
|
|
|
|
/// ```rust
|
|
|
|
/// if { let x = somefunc(); x } ..
|
|
|
|
/// // or
|
|
|
|
/// if somefunc(|x| { x == 47 }) ..
|
|
|
|
/// ```
|
2018-03-28 08:24:26 -05:00
|
|
|
declare_clippy_lint! {
|
2016-08-06 03:18:36 -05:00
|
|
|
pub BLOCK_IN_IF_CONDITION_STMT,
|
2018-03-28 08:24:26 -05:00
|
|
|
style,
|
2016-08-06 03:18:36 -05:00
|
|
|
"complex blocks in conditions, e.g. `if { let x = true; x } ...`"
|
2015-11-19 23:22:52 -06:00
|
|
|
}
|
|
|
|
|
2017-08-09 02:30:56 -05:00
|
|
|
#[derive(Copy, Clone)]
|
2015-11-19 23:22:52 -06:00
|
|
|
pub struct BlockInIfCondition;
|
|
|
|
|
|
|
|
impl LintPass for BlockInIfCondition {
|
|
|
|
fn get_lints(&self) -> LintArray {
|
|
|
|
lint_array!(BLOCK_IN_IF_CONDITION_EXPR, BLOCK_IN_IF_CONDITION_STMT)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-12-06 04:32:21 -06:00
|
|
|
struct ExVisitor<'a, 'tcx: 'a> {
|
|
|
|
found_block: Option<&'tcx Expr>,
|
|
|
|
cx: &'a LateContext<'a, 'tcx>,
|
2015-11-19 23:22:52 -06:00
|
|
|
}
|
|
|
|
|
2016-12-06 04:32:21 -06:00
|
|
|
impl<'a, 'tcx: 'a> Visitor<'tcx> for ExVisitor<'a, 'tcx> {
|
|
|
|
fn visit_expr(&mut self, expr: &'tcx Expr) {
|
2018-07-12 02:30:57 -05:00
|
|
|
if let ExprKind::Closure(_, _, eid, _, _) = expr.node {
|
2018-12-07 18:56:03 -06:00
|
|
|
let body = self.cx.tcx.hir().body(eid);
|
2017-01-04 17:48:34 -06:00
|
|
|
let ex = &body.value;
|
2018-12-06 04:07:10 -06:00
|
|
|
if matches!(ex.node, ExprKind::Block(_, _)) && !in_macro(body.value.span) {
|
2017-01-04 17:48:34 -06:00
|
|
|
self.found_block = Some(ex);
|
2015-11-19 23:22:52 -06:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
walk_expr(self, expr);
|
|
|
|
}
|
2016-12-06 04:32:21 -06:00
|
|
|
fn nested_visit_map<'this>(&'this mut self) -> NestedVisitorMap<'this, 'tcx> {
|
2017-05-12 05:02:42 -05:00
|
|
|
NestedVisitorMap::None
|
2016-12-06 04:32:21 -06:00
|
|
|
}
|
2015-11-19 23:22:52 -06:00
|
|
|
}
|
|
|
|
|
2017-10-20 07:41:24 -05:00
|
|
|
const BRACED_EXPR_MESSAGE: &str = "omit braces around single expression condition";
|
|
|
|
const COMPLEX_BLOCK_MESSAGE: &str = "in an 'if' condition, avoid complex blocks or closures with blocks; \
|
2017-11-04 14:55:56 -05:00
|
|
|
instead, move the block or closure higher and bind it with a 'let'";
|
2015-11-19 23:22:52 -06:00
|
|
|
|
2016-12-07 06:13:40 -06:00
|
|
|
impl<'a, 'tcx> LateLintPass<'a, 'tcx> for BlockInIfCondition {
|
|
|
|
fn check_expr(&mut self, cx: &LateContext<'a, 'tcx>, expr: &'tcx Expr) {
|
2018-07-12 02:30:57 -05:00
|
|
|
if let ExprKind::If(ref check, ref then, _) = expr.node {
|
|
|
|
if let ExprKind::Block(ref block, _) = check.node {
|
2015-12-22 19:12:08 -06:00
|
|
|
if block.rules == DefaultBlock {
|
|
|
|
if block.stmts.is_empty() {
|
|
|
|
if let Some(ref ex) = block.expr {
|
|
|
|
// don't dig into the expression here, just suggest that they remove
|
|
|
|
// the block
|
2017-03-31 17:14:04 -05:00
|
|
|
if in_macro(expr.span) || differing_macro_contexts(expr.span, ex.span) {
|
2016-01-02 10:11:48 -06:00
|
|
|
return;
|
|
|
|
}
|
2017-08-09 02:30:56 -05:00
|
|
|
span_help_and_lint(
|
|
|
|
cx,
|
|
|
|
BLOCK_IN_IF_CONDITION_EXPR,
|
|
|
|
check.span,
|
|
|
|
BRACED_EXPR_MESSAGE,
|
2017-11-04 14:55:56 -05:00
|
|
|
&format!(
|
|
|
|
"try\nif {} {} ... ",
|
|
|
|
snippet_block(cx, ex.span, ".."),
|
|
|
|
snippet_block(cx, then.span, "..")
|
|
|
|
),
|
2017-08-09 02:30:56 -05:00
|
|
|
);
|
2015-12-22 19:12:08 -06:00
|
|
|
}
|
|
|
|
} else {
|
2018-11-27 14:14:15 -06:00
|
|
|
let span = block.expr.as_ref().map_or_else(|| block.stmts[0].span, |e| e.span);
|
2017-03-31 17:14:04 -05:00
|
|
|
if in_macro(span) || differing_macro_contexts(expr.span, span) {
|
2016-01-02 10:11:48 -06:00
|
|
|
return;
|
|
|
|
}
|
2015-12-22 19:12:08 -06:00
|
|
|
// move block higher
|
2017-08-09 02:30:56 -05:00
|
|
|
span_help_and_lint(
|
|
|
|
cx,
|
|
|
|
BLOCK_IN_IF_CONDITION_STMT,
|
|
|
|
check.span,
|
|
|
|
COMPLEX_BLOCK_MESSAGE,
|
2017-11-04 14:55:56 -05:00
|
|
|
&format!(
|
|
|
|
"try\nlet res = {};\nif res {} ... ",
|
|
|
|
snippet_block(cx, block.span, ".."),
|
|
|
|
snippet_block(cx, then.span, "..")
|
|
|
|
),
|
2017-08-09 02:30:56 -05:00
|
|
|
);
|
2015-11-19 23:22:52 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
2018-11-27 14:14:15 -06:00
|
|
|
let mut visitor = ExVisitor { found_block: None, cx };
|
2015-11-19 23:22:52 -06:00
|
|
|
walk_expr(&mut visitor, check);
|
2016-08-01 09:59:14 -05:00
|
|
|
if let Some(block) = visitor.found_block {
|
2016-11-18 06:40:15 -06:00
|
|
|
span_lint(cx, BLOCK_IN_IF_CONDITION_STMT, block.span, COMPLEX_BLOCK_MESSAGE);
|
2015-11-19 23:22:52 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|