]> git.lizzy.rs Git - rust.git/blob - src/tools/clippy/clippy_lints/src/manual_unwrap_or.rs
Replace `&mut DiagnosticBuilder`, in signatures, with `&mut Diagnostic`.
[rust.git] / src / tools / clippy / clippy_lints / src / manual_unwrap_or.rs
1 use clippy_utils::consts::constant_simple;
2 use clippy_utils::diagnostics::span_lint_and_sugg;
3 use clippy_utils::source::{indent_of, reindent_multiline, snippet_opt};
4 use clippy_utils::ty::is_type_diagnostic_item;
5 use clippy_utils::usage::contains_return_break_continue_macro;
6 use clippy_utils::{in_constant, is_lang_ctor, path_to_local_id, sugg};
7 use if_chain::if_chain;
8 use rustc_errors::Applicability;
9 use rustc_hir::LangItem::{OptionNone, OptionSome, ResultErr, ResultOk};
10 use rustc_hir::{Arm, Expr, ExprKind, PatKind};
11 use rustc_lint::LintContext;
12 use rustc_lint::{LateContext, LateLintPass};
13 use rustc_middle::lint::in_external_macro;
14 use rustc_session::{declare_lint_pass, declare_tool_lint};
15 use rustc_span::sym;
16
17 declare_clippy_lint! {
18     /// ### What it does
19     /// Finds patterns that reimplement `Option::unwrap_or` or `Result::unwrap_or`.
20     ///
21     /// ### Why is this bad?
22     /// Concise code helps focusing on behavior instead of boilerplate.
23     ///
24     /// ### Example
25     /// ```rust
26     /// let foo: Option<i32> = None;
27     /// match foo {
28     ///     Some(v) => v,
29     ///     None => 1,
30     /// };
31     /// ```
32     ///
33     /// Use instead:
34     /// ```rust
35     /// let foo: Option<i32> = None;
36     /// foo.unwrap_or(1);
37     /// ```
38     #[clippy::version = "1.49.0"]
39     pub MANUAL_UNWRAP_OR,
40     complexity,
41     "finds patterns that can be encoded more concisely with `Option::unwrap_or` or `Result::unwrap_or`"
42 }
43
44 declare_lint_pass!(ManualUnwrapOr => [MANUAL_UNWRAP_OR]);
45
46 impl<'tcx> LateLintPass<'tcx> for ManualUnwrapOr {
47     fn check_expr(&mut self, cx: &LateContext<'tcx>, expr: &'tcx Expr<'tcx>) {
48         if in_external_macro(cx.sess(), expr.span) || in_constant(cx, expr.hir_id) {
49             return;
50         }
51         lint_manual_unwrap_or(cx, expr);
52     }
53 }
54
55 fn lint_manual_unwrap_or<'tcx>(cx: &LateContext<'tcx>, expr: &'tcx Expr<'tcx>) {
56     fn applicable_or_arm<'a>(cx: &LateContext<'_>, arms: &'a [Arm<'a>]) -> Option<&'a Arm<'a>> {
57         if_chain! {
58             if arms.len() == 2;
59             if arms.iter().all(|arm| arm.guard.is_none());
60             if let Some((idx, or_arm)) = arms.iter().enumerate().find(|(_, arm)| {
61                 match arm.pat.kind {
62                     PatKind::Path(ref qpath) => is_lang_ctor(cx, qpath, OptionNone),
63                     PatKind::TupleStruct(ref qpath, [pat], _) =>
64                         matches!(pat.kind, PatKind::Wild) && is_lang_ctor(cx, qpath, ResultErr),
65                     _ => false,
66                 }
67             });
68             let unwrap_arm = &arms[1 - idx];
69             if let PatKind::TupleStruct(ref qpath, [unwrap_pat], _) = unwrap_arm.pat.kind;
70             if is_lang_ctor(cx, qpath, OptionSome) || is_lang_ctor(cx, qpath, ResultOk);
71             if let PatKind::Binding(_, binding_hir_id, ..) = unwrap_pat.kind;
72             if path_to_local_id(unwrap_arm.body, binding_hir_id);
73             if cx.typeck_results().expr_adjustments(unwrap_arm.body).is_empty();
74             if !contains_return_break_continue_macro(or_arm.body);
75             then {
76                 Some(or_arm)
77             } else {
78                 None
79             }
80         }
81     }
82
83     if_chain! {
84         if let ExprKind::Match(scrutinee, match_arms, _) = expr.kind;
85         let ty = cx.typeck_results().expr_ty(scrutinee);
86         if let Some(ty_name) = if is_type_diagnostic_item(cx, ty, sym::Option) {
87             Some("Option")
88         } else if is_type_diagnostic_item(cx, ty, sym::Result) {
89             Some("Result")
90         } else {
91             None
92         };
93         if let Some(or_arm) = applicable_or_arm(cx, match_arms);
94         if let Some(or_body_snippet) = snippet_opt(cx, or_arm.body.span);
95         if let Some(indent) = indent_of(cx, expr.span);
96         if constant_simple(cx, cx.typeck_results(), or_arm.body).is_some();
97         then {
98             let reindented_or_body =
99                 reindent_multiline(or_body_snippet.into(), true, Some(indent));
100
101             let suggestion = if scrutinee.span.from_expansion() {
102                     // we don't want parentheses around macro, e.g. `(some_macro!()).unwrap_or(0)`
103                     sugg::Sugg::hir_with_macro_callsite(cx, scrutinee, "..")
104                 }
105                 else {
106                     sugg::Sugg::hir(cx, scrutinee, "..").maybe_par()
107                 };
108
109             span_lint_and_sugg(
110                 cx,
111                 MANUAL_UNWRAP_OR, expr.span,
112                 &format!("this pattern reimplements `{}::unwrap_or`", ty_name),
113                 "replace with",
114                 format!(
115                     "{}.unwrap_or({})",
116                     suggestion,
117                     reindented_or_body,
118                 ),
119                 Applicability::MachineApplicable,
120             );
121         }
122     }
123 }