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-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-01-11 05:37:08 -06:00
|
|
|
use rustc::lint::{LateContext, LateLintPass};
|
2018-12-29 09:04:45 -06:00
|
|
|
use rustc_errors::Applicability;
|
2020-01-06 10:39:50 -06:00
|
|
|
use rustc_hir::*;
|
2020-01-11 05:37:08 -06:00
|
|
|
use rustc_session::{declare_lint_pass, declare_tool_lint};
|
2020-01-04 04:00:00 -06:00
|
|
|
use rustc_span::source_map::Spanned;
|
2018-12-29 09:04:45 -06:00
|
|
|
use syntax::ast::LitKind;
|
2015-05-01 17:35:49 -05:00
|
|
|
|
2018-03-28 08:24:26 -05:00
|
|
|
declare_clippy_lint! {
|
2019-03-05 10:50:33 -06:00
|
|
|
/// **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*
|
2019-03-05 10:50:33 -06:00
|
|
|
/// have some value. Even then, the documentation can be rewritten to match the
|
|
|
|
/// shorter code.
|
|
|
|
///
|
|
|
|
/// **Example:**
|
2019-08-02 01:13:54 -05:00
|
|
|
/// ```rust,ignore
|
2019-03-05 10:50:33 -06:00
|
|
|
/// 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 }`"
|
2015-05-01 17:35:49 -05:00
|
|
|
}
|
|
|
|
|
2018-03-28 08:24:26 -05:00
|
|
|
declare_clippy_lint! {
|
2019-03-05 10:50:33 -06:00
|
|
|
/// **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:**
|
2019-08-02 01:13:54 -05:00
|
|
|
/// ```rust,ignore
|
2019-03-05 10:50:33 -06:00
|
|
|
/// if x == true {} // could be `if x { }`
|
|
|
|
/// ```
|
2016-02-09 13:10:22 -06:00
|
|
|
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`"
|
2016-02-09 13:10:22 -06:00
|
|
|
}
|
|
|
|
|
2019-04-08 15:43:55 -05:00
|
|
|
declare_lint_pass!(NeedlessBool => [NEEDLESS_BOOL]);
|
2015-08-11 13:22:20 -05:00
|
|
|
|
2016-12-07 06:13:40 -06:00
|
|
|
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<'_>) {
|
2016-03-14 10:41:41 -05:00
|
|
|
use self::Expression::*;
|
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| {
|
2018-11-27 08:13:57 -06:00
|
|
|
let mut applicability = Applicability::MachineApplicable;
|
|
|
|
let snip = Sugg::hir_with_applicability(cx, pred, "<predicate>", &mut applicability);
|
2019-01-22 05:33:47 -06:00
|
|
|
let mut snip = if not { !snip } else { snip };
|
2016-07-03 18:17:31 -05:00
|
|
|
|
2019-01-22 05:33:47 -06:00
|
|
|
if ret {
|
|
|
|
snip = snip.make_return();
|
|
|
|
}
|
2016-07-03 18:17:31 -05:00
|
|
|
|
2019-01-20 09:15:00 -06:00
|
|
|
if parent_node_is_if_expr(&e, &cx) {
|
2019-01-22 05:33:47 -06:00
|
|
|
snip = snip.blockify()
|
2019-01-20 09:15:00 -06:00
|
|
|
}
|
|
|
|
|
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",
|
2019-01-22 05:33:47 -06:00
|
|
|
snip.to_string(),
|
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
|
|
|
};
|
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),
|
|
|
|
_ => (),
|
|
|
|
}
|
2017-03-31 16:46:08 -05:00
|
|
|
} else {
|
2020-01-06 00:30:43 -06: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
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-04-08 15:43:55 -05:00
|
|
|
declare_lint_pass!(BoolComparison => [BOOL_COMPARISON]);
|
2016-02-09 13:10:22 -06:00
|
|
|
|
2016-12-07 06:13:40 -06:00
|
|
|
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() {
|
2018-10-29 16:23:45 -05:00
|
|
|
return;
|
|
|
|
}
|
2018-11-02 06:12:14 -05:00
|
|
|
|
2019-09-27 10:16:06 -05:00
|
|
|
if let ExprKind::Binary(Spanned { node, .. }, ..) = e.kind {
|
2018-12-06 18:50:16 -06:00
|
|
|
let ignore_case = None::<(fn(_) -> _, &str)>;
|
|
|
|
let ignore_no_literal = None::<(fn(_, _) -> _, &str)>;
|
2018-11-30 07:21:11 -06:00
|
|
|
match node {
|
2018-12-06 18:50:16 -06:00
|
|
|
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(
|
2018-11-30 07:21:11 -06:00
|
|
|
cx,
|
|
|
|
e,
|
2018-12-06 18:50:16 -06:00
|
|
|
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((
|
2018-12-17 12:32:24 -06:00
|
|
|
|l: Sugg<'_>, r: Sugg<'_>| (!l).bit_and(&r),
|
2018-12-06 18:50:16 -06:00
|
|
|
"order comparisons between booleans can be simplified",
|
|
|
|
)),
|
2018-11-30 07:21:11 -06:00
|
|
|
),
|
2018-12-06 18:50:16 -06:00
|
|
|
BinOpKind::Gt => check_comparison(
|
2018-11-30 07:21:11 -06:00
|
|
|
cx,
|
|
|
|
e,
|
2018-12-06 18:50:16 -06:00
|
|
|
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((
|
2018-12-17 12:32:24 -06:00
|
|
|
|l: Sugg<'_>, r: Sugg<'_>| l.bit_and(&(!r)),
|
2018-12-06 18:50:16 -06:00
|
|
|
"order comparisons between booleans can be simplified",
|
|
|
|
)),
|
2018-11-30 07:21:11 -06:00
|
|
|
),
|
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>,
|
2019-12-27 01:12:26 -06:00
|
|
|
e: &'tcx Expr<'_>,
|
2018-12-06 18:50:16 -06:00
|
|
|
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)>,
|
2018-11-30 07:21:11 -06:00
|
|
|
) {
|
|
|
|
use self::Expression::*;
|
|
|
|
|
2019-09-27 10:16:06 -05:00
|
|
|
if let ExprKind::Binary(_, ref left_side, ref right_side) = e.kind {
|
2019-02-25 14:48:20 -06:00
|
|
|
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)| {
|
2018-12-06 18:50:16 -06:00
|
|
|
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,
|
|
|
|
)
|
2019-02-25 14:48:20 -06:00
|
|
|
}),
|
|
|
|
_ => (),
|
|
|
|
}
|
2018-11-30 07:21:11 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn suggest_bool_comparison<'a, 'tcx>(
|
|
|
|
cx: &LateContext<'a, 'tcx>,
|
2019-12-27 01:12:26 -06:00
|
|
|
e: &'tcx Expr<'_>,
|
|
|
|
expr: &Expr<'_>,
|
2018-11-30 07:21:11 -06:00
|
|
|
mut applicability: Applicability,
|
|
|
|
message: &str,
|
2018-12-06 18:50:16 -06:00
|
|
|
conv_hint: impl FnOnce(Sugg<'a>) -> Sugg<'a>,
|
2018-11-30 07:21:11 -06:00
|
|
|
) {
|
|
|
|
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,
|
|
|
|
}
|
|
|
|
|
2019-12-27 01:12:26 -06:00
|
|
|
fn fetch_bool_block(block: &Block<'_>) -> Expression {
|
2016-03-14 10:41:41 -05:00
|
|
|
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) => {
|
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
|
|
|
|
}
|
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
|
|
|
|
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
|
|
|
},
|
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
|
|
|
}
|