rust/clippy_lints/src/needless_bool.rs

254 lines
8.3 KiB
Rust
Raw Normal View History

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.
//! Checks for needless boolean results of if-else expressions
//!
//! This lint is **warn** by default
use crate::rustc::hir::*;
use crate::rustc::lint::{LateContext, LateLintPass, LintArray, LintPass};
use crate::rustc::{declare_tool_lint, lint_array};
use crate::rustc_errors::Applicability;
use crate::syntax::ast::LitKind;
use crate::syntax::source_map::Spanned;
2018-05-30 03:15:50 -05:00
use crate::utils::sugg::Sugg;
use crate::utils::{in_macro, span_lint, span_lint_and_sugg};
2017-08-09 02:30:56 -05:00
/// **What it does:** Checks for expressions of the form `if c { true } else {
/// false }`
2016-07-15 17:25:44 -05:00
/// (or vice versa) and suggest using the condition directly.
///
/// **Why is this bad?** Redundant code.
///
/// **Known problems:** Maybe false positives: Sometimes, the two branches are
/// painstakingly documented (which we of course do not detect), so they *may*
/// have some value. Even then, the documentation can be rewritten to match the
/// shorter code.
///
2016-07-15 17:25:44 -05:00
/// **Example:**
/// ```rust
2018-11-27 14:14:15 -06:00
/// if x {
/// false
/// } else {
/// true
/// }
2016-07-15 17:25:44 -05:00
/// ```
2018-03-28 08:24:26 -05:00
declare_clippy_lint! {
2018-11-27 14:49:09 -06:00
pub NEEDLESS_BOOL,
complexity,
"if-statements with plain booleans in the then- and else-clause, e.g. `if p { true } else { false }`"
}
/// **What it does:** Checks for expressions of the form `x == true` and
/// `x != true` (or vice versa) and suggest using the variable directly.
///
/// **Why is this bad?** Unnecessary code.
///
/// **Known problems:** None.
///
/// **Example:**
/// ```rust
2018-11-27 14:14:15 -06:00
/// if x == true {} // could be `if x { }`
/// ```
2018-03-28 08:24:26 -05:00
declare_clippy_lint! {
pub BOOL_COMPARISON,
2018-03-29 06:41:53 -05:00
complexity,
"comparing a variable to a boolean, e.g. `if x == true` or `if x != true`"
}
2017-08-09 02:30:56 -05:00
#[derive(Copy, Clone)]
pub struct NeedlessBool;
impl LintPass for NeedlessBool {
fn get_lints(&self) -> LintArray {
lint_array!(NEEDLESS_BOOL)
}
}
impl<'a, 'tcx> LateLintPass<'a, 'tcx> for NeedlessBool {
fn check_expr(&mut self, cx: &LateContext<'a, 'tcx>, e: &'tcx Expr) {
use self::Expression::*;
2018-07-12 02:30:57 -05:00
if let ExprKind::If(ref pred, ref then_block, Some(ref else_expr)) = e.node {
2016-07-03 18:17:31 -05:00
let reduce = |ret, not| {
let mut applicability = Applicability::MachineApplicable;
let snip = Sugg::hir_with_applicability(cx, pred, "<predicate>", &mut applicability);
2016-12-20 11:21:30 -06:00
let snip = if not { !snip } else { snip };
2016-07-03 18:17:31 -05:00
let hint = if ret {
2016-07-06 08:36:42 -05:00
format!("return {}", snip)
2016-07-03 18:17:31 -05:00
} else {
snip.to_string()
};
2017-08-09 02:30:56 -05:00
span_lint_and_sugg(
cx,
NEEDLESS_BOOL,
e.span,
"this if-then-else expression returns a bool literal",
"you can reduce it to",
hint,
applicability,
2017-08-09 02:30:56 -05:00
);
};
2018-07-12 02:30:57 -05:00
if let ExprKind::Block(ref then_block, _) = then_block.node {
2017-04-12 04:06:32 -05:00
match (fetch_bool_block(then_block), fetch_bool_expr(else_expr)) {
2017-09-05 04:33:04 -05:00
(RetBool(true), RetBool(true)) | (Bool(true), Bool(true)) => {
2017-08-09 02:30:56 -05:00
span_lint(
cx,
NEEDLESS_BOOL,
e.span,
"this if-then-else expression will always return true",
);
2017-04-12 04:06:32 -05:00
},
2017-09-05 04:33:04 -05:00
(RetBool(false), RetBool(false)) | (Bool(false), Bool(false)) => {
2017-08-09 02:30:56 -05:00
span_lint(
cx,
NEEDLESS_BOOL,
e.span,
"this if-then-else expression will always return false",
);
2017-04-12 04:06:32 -05:00
},
(RetBool(true), RetBool(false)) => reduce(true, false),
(Bool(true), Bool(false)) => reduce(false, false),
(RetBool(false), RetBool(true)) => reduce(true, true),
(Bool(false), Bool(true)) => reduce(false, true),
_ => (),
}
} else {
2018-07-12 02:30:57 -05:00
panic!("IfExpr 'then' node is not an ExprKind::Block");
}
}
}
}
2017-08-09 02:30:56 -05:00
#[derive(Copy, Clone)]
pub struct BoolComparison;
impl LintPass for BoolComparison {
fn get_lints(&self) -> LintArray {
lint_array!(BOOL_COMPARISON)
}
}
impl<'a, 'tcx> LateLintPass<'a, 'tcx> for BoolComparison {
fn check_expr(&mut self, cx: &LateContext<'a, 'tcx>, e: &'tcx Expr) {
if in_macro(e.span) {
return;
}
if let ExprKind::Binary(Spanned { node, .. }, ..) = e.node {
match node {
BinOpKind::Eq => check_comparison(
cx,
e,
"equality checks against true are unnecessary",
"equality checks against false can be replaced by a negation",
|h| h,
|h| !h,
),
BinOpKind::Ne => check_comparison(
cx,
e,
"inequality checks against true can be replaced by a negation",
"inequality checks against false are unnecessary",
|h| !h,
|h| h,
),
_ => (),
}
}
}
}
fn check_comparison<'a, 'tcx>(
cx: &LateContext<'a, 'tcx>,
e: &'tcx Expr,
true_message: &str,
false_message: &str,
true_hint: impl FnOnce(Sugg<'_>) -> Sugg<'_>,
false_hint: impl FnOnce(Sugg<'_>) -> Sugg<'_>,
) {
use self::Expression::*;
if let ExprKind::Binary(_, ref left_side, ref right_side) = e.node {
let applicability = Applicability::MachineApplicable;
match (fetch_bool_expr(left_side), fetch_bool_expr(right_side)) {
(Bool(true), Other) => suggest_bool_comparison(cx, e, right_side, applicability, true_message, true_hint),
(Other, Bool(true)) => suggest_bool_comparison(cx, e, left_side, applicability, true_message, true_hint),
(Bool(false), Other) => {
suggest_bool_comparison(cx, e, right_side, applicability, false_message, false_hint)
},
(Other, Bool(false)) => suggest_bool_comparison(cx, e, left_side, applicability, false_message, false_hint),
_ => (),
}
}
}
fn suggest_bool_comparison<'a, 'tcx>(
cx: &LateContext<'a, 'tcx>,
e: &'tcx Expr,
expr: &Expr,
mut applicability: Applicability,
message: &str,
conv_hint: impl FnOnce(Sugg<'_>) -> Sugg<'_>,
) {
let hint = Sugg::hir_with_applicability(cx, expr, "..", &mut applicability);
span_lint_and_sugg(
cx,
BOOL_COMPARISON,
e.span,
message,
"try simplifying it as shown",
conv_hint(hint).to_string(),
applicability,
);
}
enum Expression {
Bool(bool),
RetBool(bool),
Other,
}
fn fetch_bool_block(block: &Block) -> Expression {
match (&*block.stmts, block.expr.as_ref()) {
(&[], Some(e)) => fetch_bool_expr(&**e),
2018-11-27 14:14:15 -06:00
(&[ref e], None) => {
if let StmtKind::Semi(ref e, _) = e.node {
if let ExprKind::Ret(_) = e.node {
fetch_bool_expr(&**e)
} else {
Expression::Other
}
} else {
Expression::Other
}
2016-12-20 11:21:30 -06:00
},
_ => Expression::Other,
2016-01-03 22:26:12 -06:00
}
}
fn fetch_bool_expr(expr: &Expr) -> Expression {
2015-08-21 13:44:48 -05:00
match expr.node {
2018-07-12 02:30:57 -05:00
ExprKind::Block(ref block, _) => fetch_bool_block(block),
2018-11-27 14:14:15 -06:00
ExprKind::Lit(ref lit_ptr) => {
if let LitKind::Bool(value) = lit_ptr.node {
Expression::Bool(value)
} else {
Expression::Other
}
2016-12-20 11:21:30 -06:00
},
2018-07-12 02:30:57 -05:00
ExprKind::Ret(Some(ref expr)) => match fetch_bool_expr(expr) {
2017-09-05 04:33:04 -05:00
Expression::Bool(value) => Expression::RetBool(value),
_ => Expression::Other,
2016-12-20 11:21:30 -06:00
},
_ => Expression::Other,
}
}