rust/clippy_lints/src/minmax.rs

95 lines
2.8 KiB
Rust
Raw Normal View History

2016-02-24 10:38:57 -06:00
use consts::{Constant, constant_simple};
use rustc::lint::*;
use rustc::hir::*;
2016-02-03 08:39:22 -06:00
use std::cmp::{PartialOrd, Ordering};
2016-02-24 10:38:57 -06:00
use syntax::ptr::P;
use utils::{match_def_path, paths, span_lint};
2015-09-05 05:46:34 -05:00
2016-07-15 17:25:44 -05:00
/// **What it does:** This lint checks for expressions where `std::cmp::min` and `max` are used to
/// clamp values, but switched so that the result is constant.
///
2016-07-15 17:25:44 -05:00
/// **Why is this bad?** This is in all probability not the intended outcome. At the least it hurts
/// readability of the code.
///
/// **Known problems:** None
///
2016-07-15 17:25:44 -05:00
/// **Example:** `min(0, max(100, x))` will always be equal to `0`. Probably the author meant to
/// clamp the value between 0 and 100, but has erroneously swapped `min` and `max`.
declare_lint! {
pub MIN_MAX, Warn,
"`min(_, max(_, _))` (or vice versa) with bounds clamping the result to a constant"
}
2015-09-05 05:46:34 -05:00
#[allow(missing_copy_implementations)]
pub struct MinMaxPass;
impl LintPass for MinMaxPass {
fn get_lints(&self) -> LintArray {
2015-11-16 23:22:57 -06:00
lint_array!(MIN_MAX)
2015-09-05 05:46:34 -05:00
}
}
2015-09-05 05:46:34 -05:00
impl LateLintPass for MinMaxPass {
fn check_expr(&mut self, cx: &LateContext, expr: &Expr) {
if let Some((outer_max, outer_c, oe)) = min_max(cx, expr) {
if let Some((inner_max, inner_c, _)) = min_max(cx, oe) {
2016-01-03 22:26:12 -06:00
if outer_max == inner_max {
return;
}
2015-09-05 05:46:34 -05:00
match (outer_max, outer_c.partial_cmp(&inner_c)) {
2016-04-14 13:14:03 -05:00
(_, None) |
(MinMax::Max, Some(Ordering::Less)) |
(MinMax::Min, Some(Ordering::Greater)) => (),
2015-09-05 05:46:34 -05:00
_ => {
2016-01-03 22:26:12 -06:00
span_lint(cx, MIN_MAX, expr.span, "this min/max combination leads to constant result");
}
2015-09-05 05:46:34 -05:00
}
}
}
}
}
#[derive(PartialEq, Eq, Debug)]
enum MinMax {
Min,
Max,
}
fn min_max<'a>(cx: &LateContext, expr: &'a Expr) -> Option<(MinMax, Constant, &'a Expr)> {
if let ExprCall(ref path, ref args) = expr.node {
if let ExprPath(None, _) = path.node {
let def_id = cx.tcx.expect_def(path.id).def_id();
if match_def_path(cx, def_id, &paths::CMP_MIN) {
2016-02-24 10:38:57 -06:00
fetch_const(args, MinMax::Min)
} else if match_def_path(cx, def_id, &paths::CMP_MAX) {
2016-02-24 10:38:57 -06:00
fetch_const(args, MinMax::Max)
2015-09-05 05:46:34 -05:00
} else {
None
2015-09-05 05:46:34 -05:00
}
2016-01-03 22:26:12 -06:00
} else {
None
}
} else {
None
}
}
2015-09-05 05:46:34 -05:00
2016-01-03 22:26:12 -06:00
fn fetch_const(args: &[P<Expr>], m: MinMax) -> Option<(MinMax, Constant, &Expr)> {
if args.len() != 2 {
return None;
}
if let Some(c) = constant_simple(&args[0]) {
2016-01-03 22:26:12 -06:00
if let None = constant_simple(&args[1]) {
// otherwise ignore
2015-09-05 05:46:34 -05:00
Some((m, c, &args[1]))
2016-01-03 22:26:12 -06:00
} else {
None
}
2016-06-21 16:53:24 -05:00
} else if let Some(c) = constant_simple(&args[1]) {
Some((m, c, &args[0]))
2015-09-05 05:46:34 -05:00
} else {
2016-06-21 16:53:24 -05:00
None
2015-09-05 05:46:34 -05:00
}
}