2015-11-19 23:22:52 -06:00
|
|
|
use rustc::lint::{LateLintPass, LateContext, LintArray, LintPass};
|
2016-04-07 10:46:48 -05:00
|
|
|
use rustc::hir::*;
|
|
|
|
use rustc::hir::intravisit::{Visitor, walk_expr};
|
2015-11-19 23:22:52 -06:00
|
|
|
use utils::*;
|
|
|
|
|
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 } ..
|
|
|
|
/// ```
|
2015-11-19 23:22:52 -06:00
|
|
|
declare_lint! {
|
|
|
|
pub BLOCK_IN_IF_CONDITION_EXPR, Warn,
|
|
|
|
"braces can be eliminated in conditions that are expressions, e.g `if { true } ...`"
|
|
|
|
}
|
|
|
|
|
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 }) ..
|
|
|
|
/// ```
|
2015-11-19 23:22:52 -06:00
|
|
|
declare_lint! {
|
|
|
|
pub BLOCK_IN_IF_CONDITION_STMT, Warn,
|
|
|
|
"avoid complex blocks in conditions, instead move the block higher and bind it \
|
|
|
|
with 'let'; e.g: `if { let x = true; x } ...`"
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Copy,Clone)]
|
|
|
|
pub struct BlockInIfCondition;
|
|
|
|
|
|
|
|
impl LintPass for BlockInIfCondition {
|
|
|
|
fn get_lints(&self) -> LintArray {
|
|
|
|
lint_array!(BLOCK_IN_IF_CONDITION_EXPR, BLOCK_IN_IF_CONDITION_STMT)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
struct ExVisitor<'v> {
|
2016-01-03 22:26:12 -06:00
|
|
|
found_block: Option<&'v Expr>,
|
2015-11-19 23:22:52 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
impl<'v> Visitor<'v> for ExVisitor<'v> {
|
|
|
|
fn visit_expr(&mut self, expr: &'v Expr) {
|
2016-04-25 15:31:49 -05:00
|
|
|
if let ExprClosure(_, _, ref block, _) = expr.node {
|
2015-11-19 23:22:52 -06:00
|
|
|
let complex = {
|
2016-02-29 02:45:36 -06:00
|
|
|
if block.stmts.is_empty() {
|
2015-11-19 23:22:52 -06:00
|
|
|
if let Some(ref ex) = block.expr {
|
2016-06-05 13:46:42 -05:00
|
|
|
matches!(ex.node, ExprBlock(_))
|
2015-11-19 23:22:52 -06:00
|
|
|
} else {
|
|
|
|
false
|
|
|
|
}
|
2016-02-29 02:45:36 -06:00
|
|
|
} else {
|
|
|
|
true
|
2015-11-19 23:22:52 -06:00
|
|
|
}
|
|
|
|
};
|
|
|
|
if complex {
|
2016-04-26 10:05:39 -05:00
|
|
|
self.found_block = Some(expr);
|
2015-11-19 23:22:52 -06:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
walk_expr(self, expr);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-01-03 22:26:12 -06:00
|
|
|
const BRACED_EXPR_MESSAGE: &'static str = "omit braces around single expression condition";
|
|
|
|
const COMPLEX_BLOCK_MESSAGE: &'static 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-19 23:22:52 -06:00
|
|
|
|
|
|
|
impl LateLintPass for BlockInIfCondition {
|
|
|
|
fn check_expr(&mut self, cx: &LateContext, expr: &Expr) {
|
|
|
|
if let ExprIf(ref check, ref then, _) = expr.node {
|
|
|
|
if let ExprBlock(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
|
2016-01-08 09:51:12 -06:00
|
|
|
if in_macro(cx, expr.span) || differing_macro_contexts(expr.span, ex.span) {
|
2016-01-02 10:11:48 -06:00
|
|
|
return;
|
|
|
|
}
|
2016-01-03 22:26:12 -06:00
|
|
|
span_help_and_lint(cx,
|
|
|
|
BLOCK_IN_IF_CONDITION_EXPR,
|
|
|
|
check.span,
|
|
|
|
BRACED_EXPR_MESSAGE,
|
|
|
|
&format!("try\nif {} {} ... ",
|
|
|
|
snippet_block(cx, ex.span, ".."),
|
|
|
|
snippet_block(cx, then.span, "..")));
|
2015-12-22 19:12:08 -06:00
|
|
|
}
|
|
|
|
} else {
|
2016-02-29 05:19:32 -06:00
|
|
|
let span = block.expr.as_ref().map_or_else(|| block.stmts[0].span, |e| e.span);
|
2016-01-31 16:25:10 -06:00
|
|
|
if in_macro(cx, 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
|
2016-01-03 22:26:12 -06:00
|
|
|
span_help_and_lint(cx,
|
|
|
|
BLOCK_IN_IF_CONDITION_STMT,
|
|
|
|
check.span,
|
|
|
|
COMPLEX_BLOCK_MESSAGE,
|
|
|
|
&format!("try\nlet res = {};\nif res {} ... ",
|
|
|
|
snippet_block(cx, block.span, ".."),
|
|
|
|
snippet_block(cx, then.span, "..")));
|
2015-11-19 23:22:52 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
let mut visitor = ExVisitor { found_block: None };
|
|
|
|
walk_expr(&mut visitor, check);
|
2016-08-01 09:59:14 -05:00
|
|
|
if let Some(block) = visitor.found_block {
|
2016-01-03 22:26:12 -06:00
|
|
|
span_help_and_lint(cx, BLOCK_IN_IF_CONDITION_STMT, block.span, COMPLEX_BLOCK_MESSAGE, "");
|
2015-11-19 23:22:52 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|