2015-05-01 22:35:49 +00:00
//! Checks for needless boolean results of if-else expressions
//!
2015-05-04 05:17:15 +00:00
//! This lint is **warn** by default
2015-05-01 22:35:49 +00:00
use rustc ::lint ::* ;
2015-09-03 14:42:17 +00:00
use rustc_front ::hir ::* ;
2016-02-12 17:35:44 +00:00
use syntax ::ast ::LitKind ;
2016-02-09 19:10:22 +00:00
use syntax ::codemap ::Spanned ;
2016-02-09 19:44:42 +00:00
use utils ::{ span_lint , span_lint_and_then , snippet } ;
2015-05-01 22:35:49 +00:00
2016-02-05 23:41:54 +00:00
/// **What it does:** This lint checks for expressions of the form `if c { true } else { false }` (or vice versa) and suggest using the condition directly.
2015-12-11 00:22:27 +00:00
///
/// **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.
///
/// **Example:** `if x { false } else { true }`
2015-05-01 22:35:49 +00:00
declare_lint! {
pub NEEDLESS_BOOL ,
Warn ,
2015-08-13 08:32:35 +00:00
" if-statements with plain booleans in the then- and else-clause, e.g. \
` if p { true } else { false } ` "
2015-05-01 22:35:49 +00:00
}
2016-02-09 19:10:22 +00:00
/// **What it does:** This lint checks for expressions of the form `x == true` (or vice versa) and suggest using the variable directly.
///
/// **Why is this bad?** Unnecessary code.
///
/// **Known problems:** None.
///
/// **Example:** `if x == true { }` could be `if x { }`
declare_lint! {
pub BOOL_COMPARISON ,
Warn ,
" comparing a variable to a boolean, e.g. \
` if x = = true ` "
}
2015-05-01 22:35:49 +00:00
#[ derive(Copy,Clone) ]
pub struct NeedlessBool ;
impl LintPass for NeedlessBool {
fn get_lints ( & self ) -> LintArray {
lint_array! ( NEEDLESS_BOOL )
}
2015-09-19 02:53:04 +00:00
}
2015-08-11 18:22:20 +00:00
2015-09-19 02:53:04 +00:00
impl LateLintPass for NeedlessBool {
fn check_expr ( & mut self , cx : & LateContext , e : & Expr ) {
2015-08-13 07:44:03 +00:00
if let ExprIf ( ref pred , ref then_block , Some ( ref else_expr ) ) = e . node {
2015-08-11 18:22:20 +00:00
match ( fetch_bool_block ( then_block ) , fetch_bool_expr ( else_expr ) ) {
2015-08-13 07:44:03 +00:00
( Some ( true ) , Some ( true ) ) = > {
2016-01-04 04:26:12 +00:00
span_lint ( cx ,
NEEDLESS_BOOL ,
e . span ,
2015-11-17 05:22:57 +00:00
" this if-then-else expression will always return true " ) ;
}
2015-08-13 07:44:03 +00:00
( Some ( false ) , Some ( false ) ) = > {
2016-01-04 04:26:12 +00:00
span_lint ( cx ,
NEEDLESS_BOOL ,
e . span ,
2015-11-17 05:22:57 +00:00
" this if-then-else expression will always return false " ) ;
}
2015-08-13 07:44:03 +00:00
( Some ( true ) , Some ( false ) ) = > {
let pred_snip = snippet ( cx , pred . span , " .. " ) ;
2016-01-04 04:26:12 +00:00
let hint = if pred_snip = = " .. " {
" its predicate " . into ( )
} else {
2015-08-13 07:44:03 +00:00
format! ( " ` {} ` " , pred_snip )
} ;
2016-01-04 04:26:12 +00:00
span_lint ( cx ,
NEEDLESS_BOOL ,
e . span ,
& format! ( " you can reduce this if-then-else expression to just {} " , hint ) ) ;
2015-11-17 04:39:42 +00:00
}
2015-08-13 07:44:03 +00:00
( Some ( false ) , Some ( true ) ) = > {
let pred_snip = snippet ( cx , pred . span , " .. " ) ;
2016-01-04 04:26:12 +00:00
let hint = if pred_snip = = " .. " {
" `!` and its predicate " . into ( )
} else {
2015-08-13 07:44:03 +00:00
format! ( " `! {} ` " , pred_snip )
} ;
2016-01-04 04:26:12 +00:00
span_lint ( cx ,
NEEDLESS_BOOL ,
e . span ,
& format! ( " you can reduce this if-then-else expression to just {} " , hint ) ) ;
2015-11-17 04:39:42 +00:00
}
2016-01-04 04:26:12 +00:00
_ = > ( ) ,
2015-08-11 18:22:20 +00:00
}
}
2015-05-01 22:35:49 +00:00
}
}
2016-02-09 19:10:22 +00:00
#[ derive(Copy,Clone) ]
pub struct BoolComparison ;
impl LintPass for BoolComparison {
fn get_lints ( & self ) -> LintArray {
lint_array! ( BOOL_COMPARISON )
}
}
impl LateLintPass for BoolComparison {
fn check_expr ( & mut self , cx : & LateContext , e : & Expr ) {
if let ExprBinary ( Spanned { node : BiEq , .. } , ref left_side , ref right_side ) = e . node {
match ( fetch_bool_expr ( left_side ) , fetch_bool_expr ( right_side ) ) {
( Some ( true ) , None ) = > {
2016-02-10 04:50:23 +00:00
let hint = snippet ( cx , right_side . span , " .. " ) . into_owned ( ) ;
2016-02-09 19:44:42 +00:00
span_lint_and_then ( cx ,
BOOL_COMPARISON ,
e . span ,
2016-02-09 20:44:07 +00:00
" equality checks against true are unnecesary " ,
2016-02-09 19:44:42 +00:00
| db | {
2016-02-09 20:44:07 +00:00
db . span_suggestion ( e . span , " try simplifying it as shown: " , hint ) ;
2016-02-09 19:44:42 +00:00
} ) ;
2016-02-09 19:10:22 +00:00
}
( None , Some ( true ) ) = > {
2016-02-10 04:50:23 +00:00
let hint = snippet ( cx , left_side . span , " .. " ) . into_owned ( ) ;
2016-02-09 19:44:42 +00:00
span_lint_and_then ( cx ,
BOOL_COMPARISON ,
e . span ,
2016-02-09 20:44:07 +00:00
" equality checks against true are unnecesary " ,
2016-02-09 19:44:42 +00:00
| db | {
2016-02-09 20:44:07 +00:00
db . span_suggestion ( e . span , " try simplifying it as shown: " , hint ) ;
2016-02-09 19:44:42 +00:00
} ) ;
2016-02-09 19:10:22 +00:00
}
( Some ( false ) , None ) = > {
2016-02-09 20:44:07 +00:00
let hint = format! ( " ! {} " , snippet ( cx , right_side . span , " .. " ) ) ;
2016-02-09 19:44:42 +00:00
span_lint_and_then ( cx ,
BOOL_COMPARISON ,
e . span ,
2016-02-09 20:44:07 +00:00
" equality checks against false can be replaced by a negation " ,
2016-02-09 19:44:42 +00:00
| db | {
2016-02-09 20:44:07 +00:00
db . span_suggestion ( e . span , " try simplifying it as shown: " , hint ) ;
2016-02-09 19:44:42 +00:00
} ) ;
2016-02-09 19:10:22 +00:00
}
( None , Some ( false ) ) = > {
2016-02-09 20:44:07 +00:00
let hint = format! ( " ! {} " , snippet ( cx , left_side . span , " .. " ) ) ;
2016-02-09 19:44:42 +00:00
span_lint_and_then ( cx ,
BOOL_COMPARISON ,
e . span ,
2016-02-09 20:44:07 +00:00
" equality checks against false can be replaced by a negation " ,
2016-02-09 19:44:42 +00:00
| db | {
2016-02-09 20:44:07 +00:00
db . span_suggestion ( e . span , " try simplifying it as shown: " , hint ) ;
2016-02-09 19:44:42 +00:00
} ) ;
2016-02-09 19:10:22 +00:00
}
_ = > ( ) ,
}
}
}
}
2015-05-01 22:35:49 +00:00
fn fetch_bool_block ( block : & Block ) -> Option < bool > {
2015-08-11 18:22:20 +00:00
if block . stmts . is_empty ( ) {
2015-08-25 12:41:35 +00:00
block . expr . as_ref ( ) . and_then ( | e | fetch_bool_expr ( e ) )
2016-01-04 04:26:12 +00:00
} else {
None
}
2015-05-01 22:35:49 +00:00
}
2015-08-11 18:22:20 +00:00
2015-05-01 22:35:49 +00:00
fn fetch_bool_expr ( expr : & Expr ) -> Option < bool > {
2015-08-21 18:44:48 +00:00
match expr . node {
ExprBlock ( ref block ) = > fetch_bool_block ( block ) ,
2016-01-04 04:26:12 +00:00
ExprLit ( ref lit_ptr ) = > {
2016-02-12 17:35:44 +00:00
if let LitKind ::Bool ( value ) = lit_ptr . node {
2016-01-04 04:26:12 +00:00
Some ( value )
} else {
None
}
}
_ = > None ,
2015-08-11 18:22:20 +00:00
}
2015-05-01 22:35:49 +00:00
}