rust/clippy_lints/src/needless_bool.rs

293 lines
11 KiB
Rust
Raw Normal View History

//! Checks for needless boolean results of if-else expressions
//!
//! This lint is **warn** by default
2018-05-30 03:15:50 -05:00
use crate::utils::sugg::Sugg;
2019-09-24 16:55:05 -05:00
use crate::utils::{higher, parent_node_is_if_expr, span_lint, span_lint_and_sugg};
2020-02-29 21:23:33 -06:00
use rustc_ast::ast::LitKind;
use rustc_errors::Applicability;
2020-02-21 02:39:38 -06:00
use rustc_hir::{BinOpKind, Block, Expr, ExprKind, StmtKind};
2020-01-12 00:08:41 -06:00
use rustc_lint::{LateContext, LateLintPass};
2020-01-11 05:37:08 -06:00
use rustc_session::{declare_lint_pass, declare_tool_lint};
use rustc_span::source_map::Spanned;
2018-03-28 08:24:26 -05:00
declare_clippy_lint! {
/// **What it does:** Checks for expressions of the form `if c { true } else {
/// false }`
/// (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
2019-06-12 13:07:10 -05:00
/// 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.
///
/// **Example:**
/// ```rust,ignore
/// if x {
/// false
/// } else {
/// true
/// }
/// ```
2019-08-20 09:55:17 -05:00
/// Could be written as
/// ```rust,ignore
/// !x
/// ```
2018-11-27 14:49:09 -06:00
pub NEEDLESS_BOOL,
complexity,
2019-01-30 19:15:29 -06:00
"if-statements with plain booleans in the then- and else-clause, e.g., `if p { true } else { false }`"
}
2018-03-28 08:24:26 -05:00
declare_clippy_lint! {
/// **What it does:** Checks for expressions of the form `x == true`,
/// `x != true` and order comparisons such as `x < true` (or vice versa) and
/// suggest using the variable directly.
///
/// **Why is this bad?** Unnecessary code.
///
/// **Known problems:** None.
///
/// **Example:**
/// ```rust,ignore
/// if x == true {} // could be `if x { }`
/// ```
pub BOOL_COMPARISON,
2018-03-29 06:41:53 -05:00
complexity,
2019-01-30 19:15:29 -06:00
"comparing a variable to a boolean, e.g., `if x == true` or `if x != true`"
}
2019-04-08 15:43:55 -05:00
declare_lint_pass!(NeedlessBool => [NEEDLESS_BOOL]);
impl<'a, 'tcx> LateLintPass<'a, 'tcx> for NeedlessBool {
2019-12-27 01:12:26 -06:00
fn check_expr(&mut self, cx: &LateContext<'a, 'tcx>, e: &'tcx Expr<'_>) {
2020-02-21 02:39:38 -06:00
use self::Expression::{Bool, RetBool};
2019-05-10 21:23:26 -05:00
if let Some((ref pred, ref then_block, Some(ref else_expr))) = higher::if_block(&e) {
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);
let mut snip = if not { !snip } else { snip };
2016-07-03 18:17:31 -05:00
if ret {
snip = snip.make_return();
}
2016-07-03 18:17:31 -05:00
if parent_node_is_if_expr(&e, &cx) {
snip = snip.blockify()
}
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",
snip.to_string(),
applicability,
2017-08-09 02:30:56 -05:00
);
};
2019-09-27 10:16:06 -05:00
if let ExprKind::Block(ref then_block, _) = then_block.kind {
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 {
2020-01-06 00:30:43 -06:00
panic!("IfExpr `then` node is not an `ExprKind::Block`");
}
}
}
}
2019-04-08 15:43:55 -05:00
declare_lint_pass!(BoolComparison => [BOOL_COMPARISON]);
impl<'a, 'tcx> LateLintPass<'a, 'tcx> for BoolComparison {
2019-12-27 01:12:26 -06:00
fn check_expr(&mut self, cx: &LateContext<'a, 'tcx>, e: &'tcx Expr<'_>) {
2019-08-19 11:30:32 -05:00
if e.span.from_expansion() {
return;
}
2019-09-27 10:16:06 -05:00
if let ExprKind::Binary(Spanned { node, .. }, ..) = e.kind {
let ignore_case = None::<(fn(_) -> _, &str)>;
let ignore_no_literal = None::<(fn(_, _) -> _, &str)>;
match node {
BinOpKind::Eq => {
let true_case = Some((|h| h, "equality checks against true are unnecessary"));
let false_case = Some((
|h: Sugg<'_>| !h,
"equality checks against false can be replaced by a negation",
));
check_comparison(cx, e, true_case, false_case, true_case, false_case, ignore_no_literal)
},
BinOpKind::Ne => {
let true_case = Some((
|h: Sugg<'_>| !h,
"inequality checks against true can be replaced by a negation",
));
let false_case = Some((|h| h, "inequality checks against false are unnecessary"));
check_comparison(cx, e, true_case, false_case, true_case, false_case, ignore_no_literal)
},
BinOpKind::Lt => check_comparison(
cx,
e,
ignore_case,
Some((|h| h, "greater than checks against false are unnecessary")),
Some((
|h: Sugg<'_>| !h,
"less than comparison against true can be replaced by a negation",
)),
ignore_case,
Some((
|l: Sugg<'_>, r: Sugg<'_>| (!l).bit_and(&r),
"order comparisons between booleans can be simplified",
)),
),
BinOpKind::Gt => check_comparison(
cx,
e,
Some((
|h: Sugg<'_>| !h,
"less than comparison against true can be replaced by a negation",
)),
ignore_case,
ignore_case,
Some((|h| h, "greater than checks against false are unnecessary")),
Some((
|l: Sugg<'_>, r: Sugg<'_>| l.bit_and(&(!r)),
"order comparisons between booleans can be simplified",
)),
),
_ => (),
}
}
}
}
fn check_comparison<'a, 'tcx>(
cx: &LateContext<'a, 'tcx>,
2019-12-27 01:12:26 -06:00
e: &'tcx Expr<'_>,
left_true: Option<(impl FnOnce(Sugg<'a>) -> Sugg<'a>, &str)>,
left_false: Option<(impl FnOnce(Sugg<'a>) -> Sugg<'a>, &str)>,
right_true: Option<(impl FnOnce(Sugg<'a>) -> Sugg<'a>, &str)>,
right_false: Option<(impl FnOnce(Sugg<'a>) -> Sugg<'a>, &str)>,
no_literal: Option<(impl FnOnce(Sugg<'a>, Sugg<'a>) -> Sugg<'a>, &str)>,
) {
2020-02-21 02:39:38 -06:00
use self::Expression::{Bool, Other};
2019-09-27 10:16:06 -05:00
if let ExprKind::Binary(_, ref left_side, ref right_side) = e.kind {
let (l_ty, r_ty) = (cx.tables.expr_ty(left_side), cx.tables.expr_ty(right_side));
if l_ty.is_bool() && r_ty.is_bool() {
let mut applicability = Applicability::MachineApplicable;
match (fetch_bool_expr(left_side), fetch_bool_expr(right_side)) {
(Bool(true), Other) => left_true.map_or((), |(h, m)| {
suggest_bool_comparison(cx, e, right_side, applicability, m, h)
}),
(Other, Bool(true)) => right_true.map_or((), |(h, m)| {
suggest_bool_comparison(cx, e, left_side, applicability, m, h)
}),
(Bool(false), Other) => left_false.map_or((), |(h, m)| {
suggest_bool_comparison(cx, e, right_side, applicability, m, h)
}),
(Other, Bool(false)) => right_false.map_or((), |(h, m)| {
suggest_bool_comparison(cx, e, left_side, applicability, m, h)
}),
(Other, Other) => no_literal.map_or((), |(h, m)| {
let left_side = Sugg::hir_with_applicability(cx, left_side, "..", &mut applicability);
let right_side = Sugg::hir_with_applicability(cx, right_side, "..", &mut applicability);
span_lint_and_sugg(
cx,
BOOL_COMPARISON,
e.span,
m,
"try simplifying it as shown",
h(left_side, right_side).to_string(),
applicability,
)
}),
_ => (),
}
}
}
}
fn suggest_bool_comparison<'a, 'tcx>(
cx: &LateContext<'a, 'tcx>,
2019-12-27 01:12:26 -06:00
e: &'tcx Expr<'_>,
expr: &Expr<'_>,
mut applicability: Applicability,
message: &str,
conv_hint: impl FnOnce(Sugg<'a>) -> Sugg<'a>,
) {
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,
}
2019-12-27 01:12:26 -06:00
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) => {
2019-09-27 10:16:06 -05:00
if let StmtKind::Semi(ref e) = e.kind {
if let ExprKind::Ret(_) = e.kind {
2018-11-27 14:14:15 -06:00
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
}
}
2019-12-27 01:12:26 -06:00
fn fetch_bool_expr(expr: &Expr<'_>) -> Expression {
2019-09-27 10:16:06 -05:00
match expr.kind {
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,
}
}