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.
|
|
|
|
|
2015-05-01 17:35:49 -05:00
|
|
|
//! Checks for needless boolean results of if-else expressions
|
|
|
|
//!
|
2015-05-04 00:17:15 -05:00
|
|
|
//! This lint is **warn** by default
|
2015-05-01 17:35:49 -05:00
|
|
|
|
2018-11-20 07:06:29 -06:00
|
|
|
use crate::rustc::hir::*;
|
2018-09-15 02:21:58 -05:00
|
|
|
use crate::rustc::lint::{LateContext, LateLintPass, LintArray, LintPass};
|
|
|
|
use crate::rustc::{declare_tool_lint, lint_array};
|
2018-11-20 07:06:29 -06:00
|
|
|
use crate::rustc_errors::Applicability;
|
2018-09-15 02:21:58 -05:00
|
|
|
use crate::syntax::ast::LitKind;
|
|
|
|
use crate::syntax::source_map::Spanned;
|
2018-05-30 03:15:50 -05:00
|
|
|
use crate::utils::sugg::Sugg;
|
2018-11-30 07:21:11 -06:00
|
|
|
use crate::utils::{in_macro, span_lint, span_lint_and_sugg};
|
2015-05-01 17:35:49 -05:00
|
|
|
|
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.
|
2015-12-10 18:22:27 -06:00
|
|
|
///
|
|
|
|
/// **Why is this bad?** Redundant code.
|
|
|
|
///
|
2016-08-06 02:55:04 -05:00
|
|
|
/// **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.
|
2015-12-10 18:22:27 -06:00
|
|
|
///
|
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 }`"
|
2015-05-01 17:35:49 -05:00
|
|
|
}
|
|
|
|
|
2018-11-30 07:21:11 -06:00
|
|
|
/// **What it does:** Checks for expressions of the form `x == true` and
|
|
|
|
/// `x != true` (or vice versa) and suggest using the variable directly.
|
2016-02-09 13:10:22 -06:00
|
|
|
///
|
|
|
|
/// **Why is this bad?** Unnecessary code.
|
|
|
|
///
|
|
|
|
/// **Known problems:** None.
|
|
|
|
///
|
2016-08-06 02:55:04 -05:00
|
|
|
/// **Example:**
|
|
|
|
/// ```rust
|
2018-11-27 14:14:15 -06:00
|
|
|
/// if x == true {} // could be `if x { }`
|
2016-08-06 02:55:04 -05:00
|
|
|
/// ```
|
2018-03-28 08:24:26 -05:00
|
|
|
declare_clippy_lint! {
|
2016-02-09 13:10:22 -06:00
|
|
|
pub BOOL_COMPARISON,
|
2018-03-29 06:41:53 -05:00
|
|
|
complexity,
|
2018-11-30 07:21:11 -06:00
|
|
|
"comparing a variable to a boolean, e.g. `if x == true` or `if x != true`"
|
2016-02-09 13:10:22 -06:00
|
|
|
}
|
|
|
|
|
2017-08-09 02:30:56 -05:00
|
|
|
#[derive(Copy, Clone)]
|
2015-05-01 17:35:49 -05:00
|
|
|
pub struct NeedlessBool;
|
|
|
|
|
|
|
|
impl LintPass for NeedlessBool {
|
|
|
|
fn get_lints(&self) -> LintArray {
|
|
|
|
lint_array!(NEEDLESS_BOOL)
|
|
|
|
}
|
2015-09-18 21:53:04 -05:00
|
|
|
}
|
2015-08-11 13:22:20 -05:00
|
|
|
|
2016-12-07 06:13:40 -06:00
|
|
|
impl<'a, 'tcx> LateLintPass<'a, 'tcx> for NeedlessBool {
|
|
|
|
fn check_expr(&mut self, cx: &LateContext<'a, 'tcx>, e: &'tcx Expr) {
|
2016-03-14 10:41:41 -05:00
|
|
|
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| {
|
2018-11-27 08:13:57 -06:00
|
|
|
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,
|
2018-11-27 08:13:57 -06:00
|
|
|
applicability,
|
2017-08-09 02:30:56 -05:00
|
|
|
);
|
2016-03-14 10:41:41 -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),
|
|
|
|
_ => (),
|
|
|
|
}
|
2017-03-31 16:46:08 -05:00
|
|
|
} else {
|
2018-07-12 02:30:57 -05:00
|
|
|
panic!("IfExpr 'then' node is not an ExprKind::Block");
|
2017-03-31 16:46:08 -05:00
|
|
|
}
|
2015-08-11 13:22:20 -05:00
|
|
|
}
|
2015-05-01 17:35:49 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-08-09 02:30:56 -05:00
|
|
|
#[derive(Copy, Clone)]
|
2016-02-09 13:10:22 -06:00
|
|
|
pub struct BoolComparison;
|
|
|
|
|
|
|
|
impl LintPass for BoolComparison {
|
|
|
|
fn get_lints(&self) -> LintArray {
|
|
|
|
lint_array!(BOOL_COMPARISON)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-12-07 06:13:40 -06:00
|
|
|
impl<'a, 'tcx> LateLintPass<'a, 'tcx> for BoolComparison {
|
|
|
|
fn check_expr(&mut self, cx: &LateContext<'a, 'tcx>, e: &'tcx Expr) {
|
2018-10-29 16:23:45 -05:00
|
|
|
if in_macro(e.span) {
|
|
|
|
return;
|
|
|
|
}
|
2018-11-02 06:12:14 -05:00
|
|
|
|
2018-11-30 07:21:11 -06:00
|
|
|
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,
|
|
|
|
),
|
2018-10-29 16:23:45 -05:00
|
|
|
_ => (),
|
2016-02-09 13:10:22 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-11-30 07:21:11 -06:00
|
|
|
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,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2016-03-14 10:41:41 -05:00
|
|
|
enum Expression {
|
|
|
|
Bool(bool),
|
|
|
|
RetBool(bool),
|
|
|
|
Other,
|
|
|
|
}
|
|
|
|
|
|
|
|
fn fetch_bool_block(block: &Block) -> Expression {
|
|
|
|
match (&*block.stmts, block.expr.as_ref()) {
|
2016-06-10 12:47:10 -05:00
|
|
|
(&[], 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
|
|
|
|
}
|
2016-03-14 10:41:41 -05:00
|
|
|
} else {
|
|
|
|
Expression::Other
|
|
|
|
}
|
2016-12-20 11:21:30 -06:00
|
|
|
},
|
2016-03-14 10:41:41 -05:00
|
|
|
_ => Expression::Other,
|
2016-01-03 22:26:12 -06:00
|
|
|
}
|
2015-05-01 17:35:49 -05:00
|
|
|
}
|
2015-08-11 13:22:20 -05:00
|
|
|
|
2016-03-14 10:41:41 -05: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
|
|
|
},
|
2016-03-14 10:41:41 -05:00
|
|
|
_ => Expression::Other,
|
2015-08-11 13:22:20 -05:00
|
|
|
}
|
2015-05-01 17:35:49 -05:00
|
|
|
}
|