rust/clippy_lints/src/let_if_seq.rs

206 lines
7.1 KiB
Rust
Raw Normal View History

2019-09-18 12:29:04 -05:00
use crate::utils::{higher, qpath_res, snippet, span_lint_and_then};
2018-11-27 14:14:15 -06:00
use if_chain::if_chain;
use rustc_errors::Applicability;
2020-01-06 10:39:50 -06:00
use rustc_hir as hir;
use rustc_hir::def::Res;
2020-01-09 01:13:22 -06:00
use rustc_hir::intravisit;
2020-01-06 10:39:50 -06:00
use rustc_hir::BindingAnnotation;
2020-01-12 00:08:41 -06:00
use rustc_lint::{LateContext, LateLintPass};
use rustc_middle::hir::map::Map;
2020-01-11 05:37:08 -06:00
use rustc_session::{declare_lint_pass, declare_tool_lint};
2016-03-30 12:53:43 -05:00
2018-03-28 08:24:26 -05:00
declare_clippy_lint! {
/// **What it does:** Checks for variable declarations immediately followed by a
/// conditional affectation.
///
/// **Why is this bad?** This is not idiomatic Rust.
///
/// **Known problems:** None.
///
/// **Example:**
/// ```rust,ignore
/// let foo;
///
/// if bar() {
/// foo = 42;
/// } else {
/// foo = 0;
/// }
///
/// let mut baz = None;
///
/// if bar() {
/// baz = Some(42);
/// }
/// ```
///
/// should be written
///
/// ```rust,ignore
/// let foo = if bar() {
/// 42
/// } else {
/// 0
/// };
///
/// let baz = if bar() {
/// Some(42)
/// } else {
/// None
/// };
/// ```
2016-03-30 12:53:43 -05:00
pub USELESS_LET_IF_SEQ,
2018-03-28 08:24:26 -05:00
style,
"unidiomatic `let mut` declaration followed by initialization in `if`"
2016-03-30 12:53:43 -05:00
}
2019-04-08 15:43:55 -05:00
declare_lint_pass!(LetIfSeq => [USELESS_LET_IF_SEQ]);
2016-03-30 12:53:43 -05:00
impl<'a, 'tcx> LateLintPass<'a, 'tcx> for LetIfSeq {
2019-12-27 01:12:26 -06:00
fn check_block(&mut self, cx: &LateContext<'a, 'tcx>, block: &'tcx hir::Block<'_>) {
2016-03-30 12:53:43 -05:00
let mut it = block.stmts.iter().peekable();
2016-08-01 09:59:14 -05:00
while let Some(stmt) = it.next() {
if_chain! {
if let Some(expr) = it.peek();
2019-09-27 10:16:06 -05:00
if let hir::StmtKind::Local(ref local) = stmt.kind;
if let hir::PatKind::Binding(mode, canonical_id, ident, None) = local.pat.kind;
if let hir::StmtKind::Expr(ref if_) = expr.kind;
2019-05-10 21:34:47 -05:00
if let Some((ref cond, ref then, ref else_)) = higher::if_block(&if_);
if !used_in_expr(cx, canonical_id, cond);
2019-09-27 10:16:06 -05:00
if let hir::ExprKind::Block(ref then, _) = then.kind;
if let Some(value) = check_assign(cx, canonical_id, &*then);
if !used_in_expr(cx, canonical_id, value);
then {
let span = stmt.span.to(if_.span);
2017-11-04 14:55:56 -05:00
let has_interior_mutability = !cx.tables.node_type(canonical_id).is_freeze(
cx.tcx,
cx.param_env,
span
);
if has_interior_mutability { return; }
let (default_multi_stmts, default) = if let Some(ref else_) = *else_ {
2019-09-27 10:16:06 -05:00
if let hir::ExprKind::Block(ref else_, _) = else_.kind {
if let Some(default) = check_assign(cx, canonical_id, else_) {
(else_.stmts.len() > 1, default)
} else if let Some(ref default) = local.init {
(true, &**default)
} else {
continue;
}
2016-03-30 12:53:43 -05:00
} else {
continue;
}
} else if let Some(ref default) = local.init {
(false, &**default)
2016-03-30 12:53:43 -05:00
} else {
continue;
};
2017-11-04 14:55:56 -05:00
let mutability = match mode {
BindingAnnotation::RefMut | BindingAnnotation::Mutable => "<mut> ",
_ => "",
};
2017-11-04 14:55:56 -05:00
// FIXME: this should not suggest `mut` if we can detect that the variable is not
// use mutably after the `if`
2017-11-04 14:55:56 -05:00
let sug = format!(
"let {mut}{name} = if {cond} {{{then} {value} }} else {{{else} {default} }};",
mut=mutability,
2018-06-28 08:46:58 -05:00
name=ident.name,
cond=snippet(cx, cond.span, "_"),
then=if then.stmts.len() > 1 { " ..;" } else { "" },
else=if default_multi_stmts { " ..;" } else { "" },
value=snippet(cx, value.span, "<value>"),
default=snippet(cx, default.span, "<default>"),
);
span_lint_and_then(cx,
USELESS_LET_IF_SEQ,
span,
"`if _ { .. } else { .. }` is an expression",
|diag| {
diag.span_suggestion(
2018-09-18 10:07:54 -05:00
span,
"it is more idiomatic to write",
sug,
Applicability::HasPlaceholders,
2018-09-18 10:07:54 -05:00
);
if !mutability.is_empty() {
diag.note("you might not need `mut` at all");
}
});
}
}
2016-03-30 12:53:43 -05:00
}
}
}
struct UsedVisitor<'a, 'tcx> {
2016-03-30 12:53:43 -05:00
cx: &'a LateContext<'a, 'tcx>,
2019-03-07 14:51:05 -06:00
id: hir::HirId,
2016-03-30 12:53:43 -05:00
used: bool,
}
2020-01-06 10:39:50 -06:00
impl<'a, 'tcx> intravisit::Visitor<'tcx> for UsedVisitor<'a, 'tcx> {
2020-01-09 01:13:22 -06:00
type Map = Map<'tcx>;
2019-12-27 01:12:26 -06:00
fn visit_expr(&mut self, expr: &'tcx hir::Expr<'_>) {
if_chain! {
2019-09-27 10:16:06 -05:00
if let hir::ExprKind::Path(ref qpath) = expr.kind;
2019-09-18 12:29:04 -05:00
if let Res::Local(local_id) = qpath_res(self.cx, qpath, expr.hir_id);
if self.id == local_id;
then {
self.used = true;
return;
}
}
2020-01-06 10:39:50 -06:00
intravisit::walk_expr(self, expr);
2016-03-30 12:53:43 -05:00
}
fn nested_visit_map(&mut self) -> intravisit::NestedVisitorMap<Self::Map> {
2020-01-06 10:39:50 -06:00
intravisit::NestedVisitorMap::None
}
2016-03-30 12:53:43 -05:00
}
fn check_assign<'a, 'tcx>(
cx: &LateContext<'a, 'tcx>,
2019-03-07 14:51:05 -06:00
decl: hir::HirId,
2019-12-27 01:12:26 -06:00
block: &'tcx hir::Block<'_>,
) -> Option<&'tcx hir::Expr<'tcx>> {
if_chain! {
if block.expr.is_none();
if let Some(expr) = block.stmts.iter().last();
2019-09-27 10:16:06 -05:00
if let hir::StmtKind::Semi(ref expr) = expr.kind;
if let hir::ExprKind::Assign(ref var, ref value, _) = expr.kind;
2019-09-27 10:16:06 -05:00
if let hir::ExprKind::Path(ref qpath) = var.kind;
2019-09-18 12:29:04 -05:00
if let Res::Local(local_id) = qpath_res(cx, qpath, var.hir_id);
if decl == local_id;
then {
let mut v = UsedVisitor {
cx,
id: decl,
used: false,
};
2017-11-04 14:55:56 -05:00
for s in block.stmts.iter().take(block.stmts.len()-1) {
2020-01-06 10:39:50 -06:00
intravisit::walk_stmt(&mut v, s);
2017-11-04 14:55:56 -05:00
if v.used {
return None;
}
}
2017-11-04 14:55:56 -05:00
return Some(value);
2016-03-30 12:53:43 -05:00
}
}
2016-03-30 12:53:43 -05:00
None
}
2019-12-27 01:12:26 -06:00
fn used_in_expr<'a, 'tcx>(cx: &LateContext<'a, 'tcx>, id: hir::HirId, expr: &'tcx hir::Expr<'_>) -> bool {
2018-11-27 14:14:15 -06:00
let mut v = UsedVisitor { cx, id, used: false };
2020-01-06 10:39:50 -06:00
intravisit::walk_expr(&mut v, expr);
v.used
}