rust/clippy_lints/src/minmax.rs

115 lines
3.8 KiB
Rust
Raw Normal View History

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.
2018-05-30 03:15:50 -05:00
use crate::consts::{constant_simple, Constant};
2018-06-19 00:37:09 -05:00
use crate::utils::{match_def_path, opt_def_id, paths, span_lint};
use crate::rustc::hir::*;
use crate::rustc::lint::{LateContext, LateLintPass, LintArray, LintPass};
use crate::rustc::{declare_tool_lint, lint_array};
2018-06-19 00:37:09 -05:00
use std::cmp::Ordering;
2015-09-05 05:46:34 -05:00
/// **What it does:** Checks for expressions where `std::cmp::min` and `max` are
/// used to clamp values, but switched so that the result is constant.
///
/// **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
///
/// **Example:**
/// ```rust
/// min(0, max(100, x))
/// ```
/// It 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`.
2018-03-28 08:24:26 -05:00
declare_clippy_lint! {
pub MIN_MAX,
2018-03-28 08:24:26 -05:00
correctness,
"`min(_, max(_, _))` (or vice versa) with bounds clamping the result to a constant"
}
2015-09-05 05:46:34 -05:00
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<'a, 'tcx> LateLintPass<'a, 'tcx> for MinMaxPass {
fn check_expr(&mut self, cx: &LateContext<'a, 'tcx>, expr: &'tcx Expr) {
if let Some((outer_max, outer_c, oe)) = min_max(cx, expr) {
2018-06-16 11:33:11 -05:00
if let Some((inner_max, inner_c, ie)) = min_max(cx, oe) {
2016-01-03 22:26:12 -06:00
if outer_max == inner_max {
return;
}
2018-06-16 11:33:11 -05:00
match (
outer_max,
2018-06-19 00:37:09 -05:00
Constant::partial_cmp(cx.tcx, &cx.tables.expr_ty(ie).sty, &outer_c, &inner_c),
2018-06-16 11:33:11 -05:00
) {
2017-09-05 04:33:04 -05:00
(_, None) | (MinMax::Max, Some(Ordering::Less)) | (MinMax::Min, Some(Ordering::Greater)) => (),
2015-09-05 05:46:34 -05:00
_ => {
2018-06-16 11:33:11 -05:00
span_lint(
cx,
MIN_MAX,
expr.span,
"this min/max combination leads to constant result",
);
2016-12-20 11:21:30 -06:00
},
2015-09-05 05:46:34 -05:00
}
}
}
}
}
#[derive(PartialEq, Eq, Debug)]
enum MinMax {
Min,
Max,
}
2018-07-23 06:01:12 -05:00
fn min_max<'a>(cx: &LateContext<'_, '_>, expr: &'a Expr) -> Option<(MinMax, Constant, &'a Expr)> {
2018-07-12 02:30:57 -05:00
if let ExprKind::Call(ref path, ref args) = expr.node {
if let ExprKind::Path(ref qpath) = path.node {
2017-09-12 07:26:40 -05:00
opt_def_id(cx.tables.qpath_def(qpath, path.hir_id)).and_then(|def_id| {
if match_def_path(cx.tcx, def_id, &paths::CMP_MIN) {
fetch_const(cx, args, MinMax::Min)
} else if match_def_path(cx.tcx, def_id, &paths::CMP_MAX) {
fetch_const(cx, args, MinMax::Max)
} else {
None
}
})
2016-01-03 22:26:12 -06:00
} else {
None
}
} else {
None
}
}
2015-09-05 05:46:34 -05:00
2018-07-23 06:01:12 -05:00
fn fetch_const<'a>(cx: &LateContext<'_, '_>, args: &'a [Expr], m: MinMax) -> Option<(MinMax, Constant, &'a Expr)> {
2016-01-03 22:26:12 -06:00
if args.len() != 2 {
return None;
}
2018-05-13 06:16:31 -05:00
if let Some(c) = constant_simple(cx, cx.tables, &args[0]) {
if constant_simple(cx, cx.tables, &args[1]).is_none() {
2016-01-03 22:26:12 -06:00
// 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
}
2018-05-13 06:16:31 -05:00
} else if let Some(c) = constant_simple(cx, cx.tables, &args[1]) {
2016-06-21 16:53:24 -05:00
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
}
}