]> git.lizzy.rs Git - rust.git/blob - clippy_lints/src/comparison_chain.rs
Fix lint registration
[rust.git] / clippy_lints / src / comparison_chain.rs
1 use clippy_utils::diagnostics::span_lint_and_help;
2 use clippy_utils::ty::implements_trait;
3 use clippy_utils::{get_trait_def_id, if_sequence, in_constant, is_else_clause, paths, SpanlessEq};
4 use rustc_hir::{BinOpKind, Expr, ExprKind};
5 use rustc_lint::{LateContext, LateLintPass};
6 use rustc_session::{declare_lint_pass, declare_tool_lint};
7
8 declare_clippy_lint! {
9     /// ### What it does
10     /// Checks comparison chains written with `if` that can be
11     /// rewritten with `match` and `cmp`.
12     ///
13     /// ### Why is this bad?
14     /// `if` is not guaranteed to be exhaustive and conditionals can get
15     /// repetitive
16     ///
17     /// ### Known problems
18     /// The match statement may be slower due to the compiler
19     /// not inlining the call to cmp. See issue [#5354](https://github.com/rust-lang/rust-clippy/issues/5354)
20     ///
21     /// ### Example
22     /// ```rust,ignore
23     /// # fn a() {}
24     /// # fn b() {}
25     /// # fn c() {}
26     /// fn f(x: u8, y: u8) {
27     ///     if x > y {
28     ///         a()
29     ///     } else if x < y {
30     ///         b()
31     ///     } else {
32     ///         c()
33     ///     }
34     /// }
35     /// ```
36     ///
37     /// Could be written:
38     ///
39     /// ```rust,ignore
40     /// use std::cmp::Ordering;
41     /// # fn a() {}
42     /// # fn b() {}
43     /// # fn c() {}
44     /// fn f(x: u8, y: u8) {
45     ///      match x.cmp(&y) {
46     ///          Ordering::Greater => a(),
47     ///          Ordering::Less => b(),
48     ///          Ordering::Equal => c()
49     ///      }
50     /// }
51     /// ```
52     #[clippy::version = "1.40.0"]
53     pub COMPARISON_CHAIN,
54     style,
55     "`if`s that can be rewritten with `match` and `cmp`"
56 }
57
58 declare_lint_pass!(ComparisonChain => [COMPARISON_CHAIN]);
59
60 impl<'tcx> LateLintPass<'tcx> for ComparisonChain {
61     fn check_expr(&mut self, cx: &LateContext<'tcx>, expr: &'tcx Expr<'_>) {
62         if expr.span.from_expansion() {
63             return;
64         }
65
66         // We only care about the top-most `if` in the chain
67         if is_else_clause(cx.tcx, expr) {
68             return;
69         }
70
71         if in_constant(cx, expr.hir_id) {
72             return;
73         }
74
75         // Check that there exists at least one explicit else condition
76         let (conds, _) = if_sequence(expr);
77         if conds.len() < 2 {
78             return;
79         }
80
81         for cond in conds.windows(2) {
82             if let (&ExprKind::Binary(ref kind1, lhs1, rhs1), &ExprKind::Binary(ref kind2, lhs2, rhs2)) =
83                 (&cond[0].kind, &cond[1].kind)
84             {
85                 if !kind_is_cmp(kind1.node) || !kind_is_cmp(kind2.node) {
86                     return;
87                 }
88
89                 // Check that both sets of operands are equal
90                 let mut spanless_eq = SpanlessEq::new(cx);
91                 let same_fixed_operands = spanless_eq.eq_expr(lhs1, lhs2) && spanless_eq.eq_expr(rhs1, rhs2);
92                 let same_transposed_operands = spanless_eq.eq_expr(lhs1, rhs2) && spanless_eq.eq_expr(rhs1, lhs2);
93
94                 if !same_fixed_operands && !same_transposed_operands {
95                     return;
96                 }
97
98                 // Check that if the operation is the same, either it's not `==` or the operands are transposed
99                 if kind1.node == kind2.node {
100                     if kind1.node == BinOpKind::Eq {
101                         return;
102                     }
103                     if !same_transposed_operands {
104                         return;
105                     }
106                 }
107
108                 // Check that the type being compared implements `core::cmp::Ord`
109                 let ty = cx.typeck_results().expr_ty(lhs1);
110                 let is_ord = get_trait_def_id(cx, &paths::ORD).map_or(false, |id| implements_trait(cx, ty, id, &[]));
111
112                 if !is_ord {
113                     return;
114                 }
115             } else {
116                 // We only care about comparison chains
117                 return;
118             }
119         }
120         span_lint_and_help(
121             cx,
122             COMPARISON_CHAIN,
123             expr.span,
124             "`if` chain can be rewritten with `match`",
125             None,
126             "consider rewriting the `if` chain to use `cmp` and `match`",
127         );
128     }
129 }
130
131 fn kind_is_cmp(kind: BinOpKind) -> bool {
132     matches!(kind, BinOpKind::Lt | BinOpKind::Gt | BinOpKind::Eq)
133 }