rust-clippy/clippy_lints/src/blocks_in_if_conditions.rs

166 lines
6.5 KiB
Rust
Raw Normal View History

use clippy_utils::diagnostics::{span_lint, span_lint_and_sugg};
2021-08-08 14:49:13 +00:00
use clippy_utils::higher;
use clippy_utils::source::snippet_block_with_applicability;
use clippy_utils::ty::implements_trait;
use clippy_utils::{differing_macro_contexts, get_parent_expr};
use if_chain::if_chain;
use rustc_errors::Applicability;
2020-01-09 07:13:22 +00:00
use rustc_hir::intravisit::{walk_expr, NestedVisitorMap, Visitor};
2020-02-21 08:39:38 +00:00
use rustc_hir::{BlockCheckMode, Expr, ExprKind};
2020-01-12 06:08:41 +00:00
use rustc_lint::{LateContext, LateLintPass, LintContext};
use rustc_middle::hir::map::Map;
use rustc_middle::lint::in_external_macro;
2020-01-11 11:37:08 +00:00
use rustc_session::{declare_lint_pass, declare_tool_lint};
use rustc_span::sym;
2015-11-20 05:22:52 +00:00
2018-03-28 13:24:26 +00:00
declare_clippy_lint! {
/// ### What it does
/// Checks for `if` conditions that use blocks containing an
/// expression, statements or conditions that use closures with blocks.
///
/// ### Why is this bad?
/// Style, using blocks in the condition makes it hard to read.
///
/// ### Examples
/// ```rust
/// // Bad
2019-03-05 22:23:50 +00:00
/// if { true } { /* ... */ }
///
/// // Good
/// if true { /* ... */ }
/// ```
///
/// // or
///
/// ```rust
/// # fn somefunc() -> bool { true };
/// // Bad
/// if { let x = somefunc(); x } { /* ... */ }
///
/// // Good
/// let res = { let x = somefunc(); x };
/// if res { /* ... */ }
/// ```
Added `clippy::version` attribute to all normal lints So, some context for this, well, more a story. I'm not used to scripting, I've never really scripted anything, even if it's a valuable skill. I just never really needed it. Now, `@flip1995` correctly suggested using a script for this in `rust-clippy#7813`... And I decided to write a script using nushell because why not? This was a mistake... I spend way more time on this than I would like to admit. It has definitely been more than 4 hours. It shouldn't take that long, but me being new to scripting and nushell just wasn't a good mixture... Anyway, here is the script that creates another script which adds the versions. Fun... Just execute this on the `gh-pages` branch and the resulting `replacer.sh` in `clippy_lints` and it should all work. ```nu mv v0.0.212 rust-1.00.0; mv beta rust-1.57.0; mv master rust-1.58.0; let paths = (open ./rust-1.58.0/lints.json | select id id_span | flatten | select id path); let versions = ( ls | where name =~ "rust-" | select name | format {name}/lints.json | each { open $it | select id | insert version $it | str substring "5,11" version} | group-by id | rotate counter-clockwise id version | update version {get version | first 1} | flatten | select id version); $paths | each { |row| let version = ($versions | where id == ($row.id) | format {version}) let idu = ($row.id | str upcase) $"sed -i '0,/($idu),/{s/pub ($idu),/#[clippy::version = "($version)"]\n pub ($idu),/}' ($row.path)" } | str collect ";" | str find-replace --all '1.00.0' 'pre 1.29.0' | save "replacer.sh"; ``` And this still has some problems, but at this point I just want to be done -.-
2021-10-21 19:06:26 +00:00
#[clippy::version = "1.45.0"]
pub BLOCKS_IN_IF_CONDITIONS,
2018-03-28 13:24:26 +00:00
style,
"useless or complex blocks that can be eliminated in conditions"
2015-11-20 05:22:52 +00:00
}
declare_lint_pass!(BlocksInIfConditions => [BLOCKS_IN_IF_CONDITIONS]);
2015-11-20 05:22:52 +00:00
struct ExVisitor<'a, 'tcx> {
2019-12-27 07:12:26 +00:00
found_block: Option<&'tcx Expr<'tcx>>,
cx: &'a LateContext<'tcx>,
2015-11-20 05:22:52 +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 {
// do not lint if the closure is called using an iterator (see #1141)
if_chain! {
if let Some(parent) = get_parent_expr(self.cx, expr);
if let ExprKind::MethodCall(_, _, [self_arg, ..], _) = &parent.kind;
let caller = self.cx.typeck_results().expr_ty(self_arg);
if let Some(iter_id) = self.cx.tcx.get_diagnostic_item(sym::Iterator);
if implements_trait(self.cx, caller, iter_id, &[]);
then {
return;
}
}
let body = self.cx.tcx.hir().body(eid);
let ex = &body.value;
if let ExprKind::Block(block, _) = ex.kind {
if !body.value.span.from_expansion() && !block.stmts.is_empty() {
self.found_block = Some(ex);
return;
}
2015-11-20 05:22:52 +00:00
}
}
walk_expr(self, expr);
}
fn nested_visit_map(&mut self) -> NestedVisitorMap<Self::Map> {
NestedVisitorMap::None
}
2015-11-20 05:22:52 +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
impl<'tcx> LateLintPass<'tcx> for BlocksInIfConditions {
fn check_expr(&mut self, cx: &LateContext<'tcx>, expr: &'tcx Expr<'_>) {
if in_external_macro(cx.sess(), expr.span) {
return;
}
2021-08-08 14:49:13 +00:00
if let Some(higher::If { cond, .. }) = higher::If::hir(expr) {
if let ExprKind::Block(block, _) = &cond.kind {
2020-01-06 16:39:50 +00:00
if block.rules == BlockCheckMode::DefaultBlock {
if block.stmts.is_empty() {
if let Some(ex) = &block.expr {
// 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) {
return;
}
let mut applicability = Applicability::MachineApplicable;
span_lint_and_sugg(
2017-08-09 07:30:56 +00:00
cx,
BLOCKS_IN_IF_CONDITIONS,
cond.span,
2017-08-09 07:30:56 +00:00
BRACED_EXPR_MESSAGE,
"try",
format!(
"{}",
snippet_block_with_applicability(
cx,
ex.span,
"..",
Some(expr.span),
&mut applicability
)
2017-11-04 19:55:56 +00:00
),
applicability,
2017-08-09 07:30:56 +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) {
return;
}
// move block higher
let mut applicability = Applicability::MachineApplicable;
span_lint_and_sugg(
2017-08-09 07:30:56 +00:00
cx,
BLOCKS_IN_IF_CONDITIONS,
expr.span.with_hi(cond.span.hi()),
2017-08-09 07:30:56 +00:00
COMPLEX_BLOCK_MESSAGE,
"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
),
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 };
walk_expr(&mut visitor, cond);
2016-08-01 14:59:14 +00:00
if let Some(block) = visitor.found_block {
span_lint(cx, BLOCKS_IN_IF_CONDITIONS, block.span, COMPLEX_BLOCK_MESSAGE);
2015-11-20 05:22:52 +00:00
}
}
}
}
}