2018-05-30 08:15:50 +00:00
|
|
|
use crate::utils::*;
|
2018-11-27 20:14:15 +00:00
|
|
|
use matches::matches;
|
2020-01-09 07:13:22 +00:00
|
|
|
use rustc::hir::map::Map;
|
2020-01-12 06:08:41 +00:00
|
|
|
use rustc::lint::in_external_macro;
|
2020-02-04 15:08:15 +00:00
|
|
|
use rustc_errors::Applicability;
|
2020-01-09 07:13:22 +00:00
|
|
|
use rustc_hir::intravisit::{walk_expr, NestedVisitorMap, Visitor};
|
2020-01-06 16:39:50 +00:00
|
|
|
use rustc_hir::*;
|
2020-01-12 06:08:41 +00:00
|
|
|
use rustc_lint::{LateContext, LateLintPass, LintContext};
|
2020-01-11 11:37:08 +00:00
|
|
|
use rustc_session::{declare_lint_pass, declare_tool_lint};
|
2015-11-20 05:22:52 +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 `if` conditions that use blocks to contain an
|
|
|
|
/// expression.
|
|
|
|
///
|
|
|
|
/// **Why is this bad?** It isn't really Rust style, same as using parentheses
|
|
|
|
/// to contain expressions.
|
|
|
|
///
|
|
|
|
/// **Known problems:** None.
|
|
|
|
///
|
|
|
|
/// **Example:**
|
|
|
|
/// ```rust
|
2019-03-05 22:23:50 +00:00
|
|
|
/// if { true } { /* ... */ }
|
2019-03-05 16:50:33 +00:00
|
|
|
/// ```
|
2016-08-06 08:18:36 +00:00
|
|
|
pub BLOCK_IN_IF_CONDITION_EXPR,
|
2018-03-28 13:24:26 +00:00
|
|
|
style,
|
2019-01-31 01:15:29 +00:00
|
|
|
"braces that can be eliminated in conditions, e.g., `if { true } ...`"
|
2015-11-20 05:22:52 +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 `if` conditions that use blocks containing
|
|
|
|
/// statements, or conditions that use closures with blocks.
|
|
|
|
///
|
|
|
|
/// **Why is this bad?** Using blocks in the condition makes it hard to read.
|
|
|
|
///
|
|
|
|
/// **Known problems:** None.
|
|
|
|
///
|
|
|
|
/// **Example:**
|
2019-03-05 22:23:50 +00:00
|
|
|
/// ```ignore
|
|
|
|
/// if { let x = somefunc(); x } {}
|
2019-03-05 16:50:33 +00:00
|
|
|
/// // or
|
2019-03-05 22:23:50 +00:00
|
|
|
/// if somefunc(|x| { x == 47 }) {}
|
2019-03-05 16:50:33 +00:00
|
|
|
/// ```
|
2016-08-06 08:18:36 +00:00
|
|
|
pub BLOCK_IN_IF_CONDITION_STMT,
|
2018-03-28 13:24:26 +00:00
|
|
|
style,
|
2019-01-31 01:15:29 +00:00
|
|
|
"complex blocks in conditions, e.g., `if { let x = true; x } ...`"
|
2015-11-20 05:22:52 +00:00
|
|
|
}
|
|
|
|
|
2019-04-08 20:43:55 +00:00
|
|
|
declare_lint_pass!(BlockInIfCondition => [BLOCK_IN_IF_CONDITION_EXPR, BLOCK_IN_IF_CONDITION_STMT]);
|
2015-11-20 05:22:52 +00:00
|
|
|
|
2019-06-19 18:36:23 +00:00
|
|
|
struct ExVisitor<'a, 'tcx> {
|
2019-12-27 07:12:26 +00:00
|
|
|
found_block: Option<&'tcx Expr<'tcx>>,
|
2016-12-06 10:32:21 +00:00
|
|
|
cx: &'a LateContext<'a, 'tcx>,
|
2015-11-20 05:22:52 +00:00
|
|
|
}
|
|
|
|
|
2019-06-19 18:36:23 +00:00
|
|
|
impl<'a, 'tcx> Visitor<'tcx> for ExVisitor<'a, 'tcx> {
|
2020-01-09 07:13:22 +00:00
|
|
|
type Map = Map<'tcx>;
|
|
|
|
|
2019-12-27 07:12:26 +00:00
|
|
|
fn visit_expr(&mut self, expr: &'tcx Expr<'tcx>) {
|
2019-09-27 15:16:06 +00:00
|
|
|
if let ExprKind::Closure(_, _, eid, _, _) = expr.kind {
|
2018-12-08 00:56:03 +00:00
|
|
|
let body = self.cx.tcx.hir().body(eid);
|
2017-01-04 23:48:34 +00:00
|
|
|
let ex = &body.value;
|
2019-09-27 15:16:06 +00:00
|
|
|
if matches!(ex.kind, ExprKind::Block(_, _)) && !body.value.span.from_expansion() {
|
2017-01-04 23:48:34 +00:00
|
|
|
self.found_block = Some(ex);
|
2015-11-20 05:22:52 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
walk_expr(self, expr);
|
|
|
|
}
|
2020-01-09 07:13:22 +00:00
|
|
|
fn nested_visit_map(&mut self) -> NestedVisitorMap<'_, Self::Map> {
|
2017-05-12 10:02:42 +00:00
|
|
|
NestedVisitorMap::None
|
2016-12-06 10:32:21 +00:00
|
|
|
}
|
2015-11-20 05:22:52 +00:00
|
|
|
}
|
|
|
|
|
2017-10-20 12:41:24 +00:00
|
|
|
const BRACED_EXPR_MESSAGE: &str = "omit braces around single expression condition";
|
2020-01-06 06:30:43 +00:00
|
|
|
const COMPLEX_BLOCK_MESSAGE: &str = "in an `if` condition, avoid complex blocks or closures with blocks; \
|
|
|
|
instead, move the block or closure higher and bind it with a `let`";
|
2015-11-20 05:22:52 +00:00
|
|
|
|
2016-12-07 12:13:40 +00:00
|
|
|
impl<'a, 'tcx> LateLintPass<'a, 'tcx> for BlockInIfCondition {
|
2019-12-27 07:12:26 +00:00
|
|
|
fn check_expr(&mut self, cx: &LateContext<'a, 'tcx>, expr: &'tcx Expr<'_>) {
|
2019-08-27 07:43:03 +00:00
|
|
|
if in_external_macro(cx.sess(), expr.span) {
|
|
|
|
return;
|
|
|
|
}
|
2020-02-04 15:08:15 +00:00
|
|
|
if let Some((cond, _, _)) = higher::if_block(&expr) {
|
|
|
|
if let ExprKind::Block(block, _) = &cond.kind {
|
2020-01-06 16:39:50 +00:00
|
|
|
if block.rules == BlockCheckMode::DefaultBlock {
|
2015-12-23 01:12:08 +00:00
|
|
|
if block.stmts.is_empty() {
|
2018-12-29 16:32:09 +00:00
|
|
|
if let Some(ex) = &block.expr {
|
2015-12-23 01:12:08 +00:00
|
|
|
// don't dig into the expression here, just suggest that they remove
|
|
|
|
// the block
|
2019-08-19 16:30:32 +00:00
|
|
|
if expr.span.from_expansion() || differing_macro_contexts(expr.span, ex.span) {
|
2016-01-02 16:11:48 +00:00
|
|
|
return;
|
|
|
|
}
|
2020-02-04 15:08:15 +00:00
|
|
|
let mut applicability = Applicability::MachineApplicable;
|
|
|
|
span_lint_and_sugg(
|
2017-08-09 07:30:56 +00:00
|
|
|
cx,
|
|
|
|
BLOCK_IN_IF_CONDITION_EXPR,
|
2020-02-04 15:08:15 +00:00
|
|
|
cond.span,
|
2017-08-09 07:30:56 +00:00
|
|
|
BRACED_EXPR_MESSAGE,
|
2020-02-04 15:08:15 +00:00
|
|
|
"try",
|
|
|
|
format!(
|
|
|
|
"{}",
|
|
|
|
snippet_block_with_applicability(
|
|
|
|
cx,
|
|
|
|
ex.span,
|
|
|
|
"..",
|
|
|
|
Some(expr.span),
|
|
|
|
&mut applicability
|
|
|
|
)
|
2017-11-04 19:55:56 +00:00
|
|
|
),
|
2020-02-04 15:08:15 +00:00
|
|
|
applicability,
|
2017-08-09 07:30:56 +00:00
|
|
|
);
|
2015-12-23 01:12:08 +00:00
|
|
|
}
|
|
|
|
} else {
|
2018-11-27 20:14:15 +00:00
|
|
|
let span = block.expr.as_ref().map_or_else(|| block.stmts[0].span, |e| e.span);
|
2019-08-19 16:30:32 +00:00
|
|
|
if span.from_expansion() || differing_macro_contexts(expr.span, span) {
|
2016-01-02 16:11:48 +00:00
|
|
|
return;
|
|
|
|
}
|
2015-12-23 01:12:08 +00:00
|
|
|
// move block higher
|
2020-02-04 15:08:15 +00:00
|
|
|
let mut applicability = Applicability::MachineApplicable;
|
|
|
|
span_lint_and_sugg(
|
2017-08-09 07:30:56 +00:00
|
|
|
cx,
|
|
|
|
BLOCK_IN_IF_CONDITION_STMT,
|
2020-02-04 15:08:15 +00:00
|
|
|
expr.span.with_hi(cond.span.hi()),
|
2017-08-09 07:30:56 +00:00
|
|
|
COMPLEX_BLOCK_MESSAGE,
|
2020-02-04 15:08:15 +00:00
|
|
|
"try",
|
|
|
|
format!(
|
|
|
|
"let res = {}; if res",
|
|
|
|
snippet_block_with_applicability(
|
|
|
|
cx,
|
|
|
|
block.span,
|
|
|
|
"..",
|
|
|
|
Some(expr.span),
|
|
|
|
&mut applicability
|
|
|
|
),
|
2017-11-04 19:55:56 +00:00
|
|
|
),
|
2020-02-04 15:08:15 +00:00
|
|
|
applicability,
|
2017-08-09 07:30:56 +00:00
|
|
|
);
|
2015-11-20 05:22:52 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
2018-11-27 20:14:15 +00:00
|
|
|
let mut visitor = ExVisitor { found_block: None, cx };
|
2020-02-04 15:08:15 +00:00
|
|
|
walk_expr(&mut visitor, cond);
|
2016-08-01 14:59:14 +00:00
|
|
|
if let Some(block) = visitor.found_block {
|
2016-11-18 12:40:15 +00:00
|
|
|
span_lint(cx, BLOCK_IN_IF_CONDITION_STMT, block.span, COMPLEX_BLOCK_MESSAGE);
|
2015-11-20 05:22:52 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|