]> git.lizzy.rs Git - rust.git/blob - clippy_lints/src/matches.rs
cd3e3b97928af8cffc423b9961c21e1ade38d351
[rust.git] / clippy_lints / src / matches.rs
1 use clippy_utils::consts::{constant, miri_to_const, Constant};
2 use clippy_utils::diagnostics::{
3     multispan_sugg, span_lint_and_help, span_lint_and_note, span_lint_and_sugg, span_lint_and_then,
4 };
5 use clippy_utils::source::{expr_block, indent_of, snippet, snippet_block, snippet_opt, snippet_with_applicability};
6 use clippy_utils::sugg::Sugg;
7 use clippy_utils::ty::{implements_trait, is_type_diagnostic_item, match_type, peel_mid_ty_refs};
8 use clippy_utils::visitors::LocalUsedVisitor;
9 use clippy_utils::{
10     get_parent_expr, in_macro, is_allowed, is_expn_of, is_lang_ctor, is_refutable, is_wild, meets_msrv, msrvs,
11     path_to_local, path_to_local_id, peel_hir_pat_refs, peel_n_hir_expr_refs, recurse_or_patterns, remove_blocks,
12     strip_pat_refs,
13 };
14 use clippy_utils::{paths, search_same, SpanlessEq, SpanlessHash};
15 use if_chain::if_chain;
16 use rustc_ast::ast::LitKind;
17 use rustc_errors::Applicability;
18 use rustc_hir::def::{CtorKind, DefKind, Res};
19 use rustc_hir::LangItem::{OptionNone, OptionSome};
20 use rustc_hir::{
21     self as hir, Arm, BindingAnnotation, Block, BorrowKind, Expr, ExprKind, Guard, HirId, Local, MatchSource,
22     Mutability, Node, Pat, PatKind, PathSegment, QPath, RangeEnd, TyKind,
23 };
24 use rustc_hir::{HirIdMap, HirIdSet};
25 use rustc_lint::{LateContext, LateLintPass, LintContext};
26 use rustc_middle::lint::in_external_macro;
27 use rustc_middle::ty::{self, Ty, TyS, VariantDef};
28 use rustc_semver::RustcVersion;
29 use rustc_session::{declare_tool_lint, impl_lint_pass};
30 use rustc_span::source_map::{Span, Spanned};
31 use rustc_span::sym;
32 use std::cmp::Ordering;
33 use std::collections::hash_map::Entry;
34 use std::iter;
35 use std::ops::Bound;
36
37 declare_clippy_lint! {
38     /// **What it does:** Checks for matches with a single arm where an `if let`
39     /// will usually suffice.
40     ///
41     /// **Why is this bad?** Just readability – `if let` nests less than a `match`.
42     ///
43     /// **Known problems:** None.
44     ///
45     /// **Example:**
46     /// ```rust
47     /// # fn bar(stool: &str) {}
48     /// # let x = Some("abc");
49     /// // Bad
50     /// match x {
51     ///     Some(ref foo) => bar(foo),
52     ///     _ => (),
53     /// }
54     ///
55     /// // Good
56     /// if let Some(ref foo) = x {
57     ///     bar(foo);
58     /// }
59     /// ```
60     pub SINGLE_MATCH,
61     style,
62     "a `match` statement with a single nontrivial arm (i.e., where the other arm is `_ => {}`) instead of `if let`"
63 }
64
65 declare_clippy_lint! {
66     /// **What it does:** Checks for matches with two arms where an `if let else` will
67     /// usually suffice.
68     ///
69     /// **Why is this bad?** Just readability – `if let` nests less than a `match`.
70     ///
71     /// **Known problems:** Personal style preferences may differ.
72     ///
73     /// **Example:**
74     ///
75     /// Using `match`:
76     ///
77     /// ```rust
78     /// # fn bar(foo: &usize) {}
79     /// # let other_ref: usize = 1;
80     /// # let x: Option<&usize> = Some(&1);
81     /// match x {
82     ///     Some(ref foo) => bar(foo),
83     ///     _ => bar(&other_ref),
84     /// }
85     /// ```
86     ///
87     /// Using `if let` with `else`:
88     ///
89     /// ```rust
90     /// # fn bar(foo: &usize) {}
91     /// # let other_ref: usize = 1;
92     /// # let x: Option<&usize> = Some(&1);
93     /// if let Some(ref foo) = x {
94     ///     bar(foo);
95     /// } else {
96     ///     bar(&other_ref);
97     /// }
98     /// ```
99     pub SINGLE_MATCH_ELSE,
100     pedantic,
101     "a `match` statement with two arms where the second arm's pattern is a placeholder instead of a specific match pattern"
102 }
103
104 declare_clippy_lint! {
105     /// **What it does:** Checks for matches where all arms match a reference,
106     /// suggesting to remove the reference and deref the matched expression
107     /// instead. It also checks for `if let &foo = bar` blocks.
108     ///
109     /// **Why is this bad?** It just makes the code less readable. That reference
110     /// destructuring adds nothing to the code.
111     ///
112     /// **Known problems:** None.
113     ///
114     /// **Example:**
115     /// ```rust,ignore
116     /// // Bad
117     /// match x {
118     ///     &A(ref y) => foo(y),
119     ///     &B => bar(),
120     ///     _ => frob(&x),
121     /// }
122     ///
123     /// // Good
124     /// match *x {
125     ///     A(ref y) => foo(y),
126     ///     B => bar(),
127     ///     _ => frob(x),
128     /// }
129     /// ```
130     pub MATCH_REF_PATS,
131     style,
132     "a `match` or `if let` with all arms prefixed with `&` instead of deref-ing the match expression"
133 }
134
135 declare_clippy_lint! {
136     /// **What it does:** Checks for matches where match expression is a `bool`. It
137     /// suggests to replace the expression with an `if...else` block.
138     ///
139     /// **Why is this bad?** It makes the code less readable.
140     ///
141     /// **Known problems:** None.
142     ///
143     /// **Example:**
144     /// ```rust
145     /// # fn foo() {}
146     /// # fn bar() {}
147     /// let condition: bool = true;
148     /// match condition {
149     ///     true => foo(),
150     ///     false => bar(),
151     /// }
152     /// ```
153     /// Use if/else instead:
154     /// ```rust
155     /// # fn foo() {}
156     /// # fn bar() {}
157     /// let condition: bool = true;
158     /// if condition {
159     ///     foo();
160     /// } else {
161     ///     bar();
162     /// }
163     /// ```
164     pub MATCH_BOOL,
165     pedantic,
166     "a `match` on a boolean expression instead of an `if..else` block"
167 }
168
169 declare_clippy_lint! {
170     /// **What it does:** Checks for overlapping match arms.
171     ///
172     /// **Why is this bad?** It is likely to be an error and if not, makes the code
173     /// less obvious.
174     ///
175     /// **Known problems:** None.
176     ///
177     /// **Example:**
178     /// ```rust
179     /// let x = 5;
180     /// match x {
181     ///     1...10 => println!("1 ... 10"),
182     ///     5...15 => println!("5 ... 15"),
183     ///     _ => (),
184     /// }
185     /// ```
186     pub MATCH_OVERLAPPING_ARM,
187     style,
188     "a `match` with overlapping arms"
189 }
190
191 declare_clippy_lint! {
192     /// **What it does:** Checks for arm which matches all errors with `Err(_)`
193     /// and take drastic actions like `panic!`.
194     ///
195     /// **Why is this bad?** It is generally a bad practice, similar to
196     /// catching all exceptions in java with `catch(Exception)`
197     ///
198     /// **Known problems:** None.
199     ///
200     /// **Example:**
201     /// ```rust
202     /// let x: Result<i32, &str> = Ok(3);
203     /// match x {
204     ///     Ok(_) => println!("ok"),
205     ///     Err(_) => panic!("err"),
206     /// }
207     /// ```
208     pub MATCH_WILD_ERR_ARM,
209     pedantic,
210     "a `match` with `Err(_)` arm and take drastic actions"
211 }
212
213 declare_clippy_lint! {
214     /// **What it does:** Checks for match which is used to add a reference to an
215     /// `Option` value.
216     ///
217     /// **Why is this bad?** Using `as_ref()` or `as_mut()` instead is shorter.
218     ///
219     /// **Known problems:** None.
220     ///
221     /// **Example:**
222     /// ```rust
223     /// let x: Option<()> = None;
224     ///
225     /// // Bad
226     /// let r: Option<&()> = match x {
227     ///     None => None,
228     ///     Some(ref v) => Some(v),
229     /// };
230     ///
231     /// // Good
232     /// let r: Option<&()> = x.as_ref();
233     /// ```
234     pub MATCH_AS_REF,
235     complexity,
236     "a `match` on an Option value instead of using `as_ref()` or `as_mut`"
237 }
238
239 declare_clippy_lint! {
240     /// **What it does:** Checks for wildcard enum matches using `_`.
241     ///
242     /// **Why is this bad?** New enum variants added by library updates can be missed.
243     ///
244     /// **Known problems:** Suggested replacements may be incorrect if guards exhaustively cover some
245     /// variants, and also may not use correct path to enum if it's not present in the current scope.
246     ///
247     /// **Example:**
248     /// ```rust
249     /// # enum Foo { A(usize), B(usize) }
250     /// # let x = Foo::B(1);
251     /// // Bad
252     /// match x {
253     ///     Foo::A(_) => {},
254     ///     _ => {},
255     /// }
256     ///
257     /// // Good
258     /// match x {
259     ///     Foo::A(_) => {},
260     ///     Foo::B(_) => {},
261     /// }
262     /// ```
263     pub WILDCARD_ENUM_MATCH_ARM,
264     restriction,
265     "a wildcard enum match arm using `_`"
266 }
267
268 declare_clippy_lint! {
269     /// **What it does:** Checks for wildcard enum matches for a single variant.
270     ///
271     /// **Why is this bad?** New enum variants added by library updates can be missed.
272     ///
273     /// **Known problems:** Suggested replacements may not use correct path to enum
274     /// if it's not present in the current scope.
275     ///
276     /// **Example:**
277     ///
278     /// ```rust
279     /// # enum Foo { A, B, C }
280     /// # let x = Foo::B;
281     /// // Bad
282     /// match x {
283     ///     Foo::A => {},
284     ///     Foo::B => {},
285     ///     _ => {},
286     /// }
287     ///
288     /// // Good
289     /// match x {
290     ///     Foo::A => {},
291     ///     Foo::B => {},
292     ///     Foo::C => {},
293     /// }
294     /// ```
295     pub MATCH_WILDCARD_FOR_SINGLE_VARIANTS,
296     pedantic,
297     "a wildcard enum match for a single variant"
298 }
299
300 declare_clippy_lint! {
301     /// **What it does:** Checks for wildcard pattern used with others patterns in same match arm.
302     ///
303     /// **Why is this bad?** Wildcard pattern already covers any other pattern as it will match anyway.
304     /// It makes the code less readable, especially to spot wildcard pattern use in match arm.
305     ///
306     /// **Known problems:** None.
307     ///
308     /// **Example:**
309     /// ```rust
310     /// // Bad
311     /// match "foo" {
312     ///     "a" => {},
313     ///     "bar" | _ => {},
314     /// }
315     ///
316     /// // Good
317     /// match "foo" {
318     ///     "a" => {},
319     ///     _ => {},
320     /// }
321     /// ```
322     pub WILDCARD_IN_OR_PATTERNS,
323     complexity,
324     "a wildcard pattern used with others patterns in same match arm"
325 }
326
327 declare_clippy_lint! {
328     /// **What it does:** Checks for matches being used to destructure a single-variant enum
329     /// or tuple struct where a `let` will suffice.
330     ///
331     /// **Why is this bad?** Just readability – `let` doesn't nest, whereas a `match` does.
332     ///
333     /// **Known problems:** None.
334     ///
335     /// **Example:**
336     /// ```rust
337     /// enum Wrapper {
338     ///     Data(i32),
339     /// }
340     ///
341     /// let wrapper = Wrapper::Data(42);
342     ///
343     /// let data = match wrapper {
344     ///     Wrapper::Data(i) => i,
345     /// };
346     /// ```
347     ///
348     /// The correct use would be:
349     /// ```rust
350     /// enum Wrapper {
351     ///     Data(i32),
352     /// }
353     ///
354     /// let wrapper = Wrapper::Data(42);
355     /// let Wrapper::Data(data) = wrapper;
356     /// ```
357     pub INFALLIBLE_DESTRUCTURING_MATCH,
358     style,
359     "a `match` statement with a single infallible arm instead of a `let`"
360 }
361
362 declare_clippy_lint! {
363     /// **What it does:** Checks for useless match that binds to only one value.
364     ///
365     /// **Why is this bad?** Readability and needless complexity.
366     ///
367     /// **Known problems:**  Suggested replacements may be incorrect when `match`
368     /// is actually binding temporary value, bringing a 'dropped while borrowed' error.
369     ///
370     /// **Example:**
371     /// ```rust
372     /// # let a = 1;
373     /// # let b = 2;
374     ///
375     /// // Bad
376     /// match (a, b) {
377     ///     (c, d) => {
378     ///         // useless match
379     ///     }
380     /// }
381     ///
382     /// // Good
383     /// let (c, d) = (a, b);
384     /// ```
385     pub MATCH_SINGLE_BINDING,
386     complexity,
387     "a match with a single binding instead of using `let` statement"
388 }
389
390 declare_clippy_lint! {
391     /// **What it does:** Checks for unnecessary '..' pattern binding on struct when all fields are explicitly matched.
392     ///
393     /// **Why is this bad?** Correctness and readability. It's like having a wildcard pattern after
394     /// matching all enum variants explicitly.
395     ///
396     /// **Known problems:** None.
397     ///
398     /// **Example:**
399     /// ```rust
400     /// # struct A { a: i32 }
401     /// let a = A { a: 5 };
402     ///
403     /// // Bad
404     /// match a {
405     ///     A { a: 5, .. } => {},
406     ///     _ => {},
407     /// }
408     ///
409     /// // Good
410     /// match a {
411     ///     A { a: 5 } => {},
412     ///     _ => {},
413     /// }
414     /// ```
415     pub REST_PAT_IN_FULLY_BOUND_STRUCTS,
416     restriction,
417     "a match on a struct that binds all fields but still uses the wildcard pattern"
418 }
419
420 declare_clippy_lint! {
421     /// **What it does:** Lint for redundant pattern matching over `Result`, `Option`,
422     /// `std::task::Poll` or `std::net::IpAddr`
423     ///
424     /// **Why is this bad?** It's more concise and clear to just use the proper
425     /// utility function
426     ///
427     /// **Known problems:** This will change the drop order for the matched type. Both `if let` and
428     /// `while let` will drop the value at the end of the block, both `if` and `while` will drop the
429     /// value before entering the block. For most types this change will not matter, but for a few
430     /// types this will not be an acceptable change (e.g. locks). See the
431     /// [reference](https://doc.rust-lang.org/reference/destructors.html#drop-scopes) for more about
432     /// drop order.
433     ///
434     /// **Example:**
435     ///
436     /// ```rust
437     /// # use std::task::Poll;
438     /// # use std::net::{IpAddr, Ipv4Addr, Ipv6Addr};
439     /// if let Ok(_) = Ok::<i32, i32>(42) {}
440     /// if let Err(_) = Err::<i32, i32>(42) {}
441     /// if let None = None::<()> {}
442     /// if let Some(_) = Some(42) {}
443     /// if let Poll::Pending = Poll::Pending::<()> {}
444     /// if let Poll::Ready(_) = Poll::Ready(42) {}
445     /// if let IpAddr::V4(_) = IpAddr::V4(Ipv4Addr::LOCALHOST) {}
446     /// if let IpAddr::V6(_) = IpAddr::V6(Ipv6Addr::LOCALHOST) {}
447     /// match Ok::<i32, i32>(42) {
448     ///     Ok(_) => true,
449     ///     Err(_) => false,
450     /// };
451     /// ```
452     ///
453     /// The more idiomatic use would be:
454     ///
455     /// ```rust
456     /// # use std::task::Poll;
457     /// # use std::net::{IpAddr, Ipv4Addr, Ipv6Addr};
458     /// if Ok::<i32, i32>(42).is_ok() {}
459     /// if Err::<i32, i32>(42).is_err() {}
460     /// if None::<()>.is_none() {}
461     /// if Some(42).is_some() {}
462     /// if Poll::Pending::<()>.is_pending() {}
463     /// if Poll::Ready(42).is_ready() {}
464     /// if IpAddr::V4(Ipv4Addr::LOCALHOST).is_ipv4() {}
465     /// if IpAddr::V6(Ipv6Addr::LOCALHOST).is_ipv6() {}
466     /// Ok::<i32, i32>(42).is_ok();
467     /// ```
468     pub REDUNDANT_PATTERN_MATCHING,
469     style,
470     "use the proper utility function avoiding an `if let`"
471 }
472
473 declare_clippy_lint! {
474     /// **What it does:** Checks for `match`  or `if let` expressions producing a
475     /// `bool` that could be written using `matches!`
476     ///
477     /// **Why is this bad?** Readability and needless complexity.
478     ///
479     /// **Known problems:** This lint falsely triggers, if there are arms with
480     /// `cfg` attributes that remove an arm evaluating to `false`.
481     ///
482     /// **Example:**
483     /// ```rust
484     /// let x = Some(5);
485     ///
486     /// // Bad
487     /// let a = match x {
488     ///     Some(0) => true,
489     ///     _ => false,
490     /// };
491     ///
492     /// let a = if let Some(0) = x {
493     ///     true
494     /// } else {
495     ///     false
496     /// };
497     ///
498     /// // Good
499     /// let a = matches!(x, Some(0));
500     /// ```
501     pub MATCH_LIKE_MATCHES_MACRO,
502     style,
503     "a match that could be written with the matches! macro"
504 }
505
506 declare_clippy_lint! {
507     /// **What it does:** Checks for `match` with identical arm bodies.
508     ///
509     /// **Why is this bad?** This is probably a copy & paste error. If arm bodies
510     /// are the same on purpose, you can factor them
511     /// [using `|`](https://doc.rust-lang.org/book/patterns.html#multiple-patterns).
512     ///
513     /// **Known problems:** False positive possible with order dependent `match`
514     /// (see issue
515     /// [#860](https://github.com/rust-lang/rust-clippy/issues/860)).
516     ///
517     /// **Example:**
518     /// ```rust,ignore
519     /// match foo {
520     ///     Bar => bar(),
521     ///     Quz => quz(),
522     ///     Baz => bar(), // <= oops
523     /// }
524     /// ```
525     ///
526     /// This should probably be
527     /// ```rust,ignore
528     /// match foo {
529     ///     Bar => bar(),
530     ///     Quz => quz(),
531     ///     Baz => baz(), // <= fixed
532     /// }
533     /// ```
534     ///
535     /// or if the original code was not a typo:
536     /// ```rust,ignore
537     /// match foo {
538     ///     Bar | Baz => bar(), // <= shows the intent better
539     ///     Quz => quz(),
540     /// }
541     /// ```
542     pub MATCH_SAME_ARMS,
543     pedantic,
544     "`match` with identical arm bodies"
545 }
546
547 #[derive(Default)]
548 pub struct Matches {
549     msrv: Option<RustcVersion>,
550     infallible_destructuring_match_linted: bool,
551 }
552
553 impl Matches {
554     #[must_use]
555     pub fn new(msrv: Option<RustcVersion>) -> Self {
556         Self {
557             msrv,
558             ..Matches::default()
559         }
560     }
561 }
562
563 impl_lint_pass!(Matches => [
564     SINGLE_MATCH,
565     MATCH_REF_PATS,
566     MATCH_BOOL,
567     SINGLE_MATCH_ELSE,
568     MATCH_OVERLAPPING_ARM,
569     MATCH_WILD_ERR_ARM,
570     MATCH_AS_REF,
571     WILDCARD_ENUM_MATCH_ARM,
572     MATCH_WILDCARD_FOR_SINGLE_VARIANTS,
573     WILDCARD_IN_OR_PATTERNS,
574     MATCH_SINGLE_BINDING,
575     INFALLIBLE_DESTRUCTURING_MATCH,
576     REST_PAT_IN_FULLY_BOUND_STRUCTS,
577     REDUNDANT_PATTERN_MATCHING,
578     MATCH_LIKE_MATCHES_MACRO,
579     MATCH_SAME_ARMS,
580 ]);
581
582 impl<'tcx> LateLintPass<'tcx> for Matches {
583     fn check_expr(&mut self, cx: &LateContext<'tcx>, expr: &'tcx Expr<'_>) {
584         if in_external_macro(cx.sess(), expr.span) || in_macro(expr.span) {
585             return;
586         }
587
588         redundant_pattern_match::check(cx, expr);
589
590         if meets_msrv(self.msrv.as_ref(), &msrvs::MATCHES_MACRO) {
591             if !check_match_like_matches(cx, expr) {
592                 lint_match_arms(cx, expr);
593             }
594         } else {
595             lint_match_arms(cx, expr);
596         }
597
598         if let ExprKind::Match(ex, arms, MatchSource::Normal) = expr.kind {
599             check_single_match(cx, ex, arms, expr);
600             check_match_bool(cx, ex, arms, expr);
601             check_overlapping_arms(cx, ex, arms);
602             check_wild_err_arm(cx, ex, arms);
603             check_wild_enum_match(cx, ex, arms);
604             check_match_as_ref(cx, ex, arms, expr);
605             check_wild_in_or_pats(cx, arms);
606
607             if self.infallible_destructuring_match_linted {
608                 self.infallible_destructuring_match_linted = false;
609             } else {
610                 check_match_single_binding(cx, ex, arms, expr);
611             }
612         }
613         if let ExprKind::Match(ex, arms, _) = expr.kind {
614             check_match_ref_pats(cx, ex, arms, expr);
615         }
616     }
617
618     fn check_local(&mut self, cx: &LateContext<'tcx>, local: &'tcx Local<'_>) {
619         if_chain! {
620             if !in_external_macro(cx.sess(), local.span);
621             if !in_macro(local.span);
622             if let Some(expr) = local.init;
623             if let ExprKind::Match(target, arms, MatchSource::Normal) = expr.kind;
624             if arms.len() == 1 && arms[0].guard.is_none();
625             if let PatKind::TupleStruct(
626                 QPath::Resolved(None, variant_name), args, _) = arms[0].pat.kind;
627             if args.len() == 1;
628             if let PatKind::Binding(_, arg, ..) = strip_pat_refs(args[0]).kind;
629             let body = remove_blocks(arms[0].body);
630             if path_to_local_id(body, arg);
631
632             then {
633                 let mut applicability = Applicability::MachineApplicable;
634                 self.infallible_destructuring_match_linted = true;
635                 span_lint_and_sugg(
636                     cx,
637                     INFALLIBLE_DESTRUCTURING_MATCH,
638                     local.span,
639                     "you seem to be trying to use `match` to destructure a single infallible pattern. \
640                     Consider using `let`",
641                     "try this",
642                     format!(
643                         "let {}({}) = {};",
644                         snippet_with_applicability(cx, variant_name.span, "..", &mut applicability),
645                         snippet_with_applicability(cx, local.pat.span, "..", &mut applicability),
646                         snippet_with_applicability(cx, target.span, "..", &mut applicability),
647                     ),
648                     applicability,
649                 );
650             }
651         }
652     }
653
654     fn check_pat(&mut self, cx: &LateContext<'tcx>, pat: &'tcx Pat<'_>) {
655         if_chain! {
656             if !in_external_macro(cx.sess(), pat.span);
657             if !in_macro(pat.span);
658             if let PatKind::Struct(QPath::Resolved(_, path), fields, true) = pat.kind;
659             if let Some(def_id) = path.res.opt_def_id();
660             let ty = cx.tcx.type_of(def_id);
661             if let ty::Adt(def, _) = ty.kind();
662             if def.is_struct() || def.is_union();
663             if fields.len() == def.non_enum_variant().fields.len();
664
665             then {
666                 span_lint_and_help(
667                     cx,
668                     REST_PAT_IN_FULLY_BOUND_STRUCTS,
669                     pat.span,
670                     "unnecessary use of `..` pattern in struct binding. All fields were already bound",
671                     None,
672                     "consider removing `..` from this binding",
673                 );
674             }
675         }
676     }
677
678     extract_msrv_attr!(LateContext);
679 }
680
681 #[rustfmt::skip]
682 fn check_single_match(cx: &LateContext<'_>, ex: &Expr<'_>, arms: &[Arm<'_>], expr: &Expr<'_>) {
683     if arms.len() == 2 && arms[0].guard.is_none() && arms[1].guard.is_none() {
684         if in_macro(expr.span) {
685             // Don't lint match expressions present in
686             // macro_rules! block
687             return;
688         }
689         if let PatKind::Or(..) = arms[0].pat.kind {
690             // don't lint for or patterns for now, this makes
691             // the lint noisy in unnecessary situations
692             return;
693         }
694         let els = arms[1].body;
695         let els = if is_unit_expr(remove_blocks(els)) {
696             None
697         } else if let ExprKind::Block(Block { stmts, expr: block_expr, .. }, _) = els.kind {
698             if stmts.len() == 1 && block_expr.is_none() || stmts.is_empty() && block_expr.is_some() {
699                 // single statement/expr "else" block, don't lint
700                 return;
701             }
702             // block with 2+ statements or 1 expr and 1+ statement
703             Some(els)
704         } else {
705             // not a block, don't lint
706             return;
707         };
708
709         let ty = cx.typeck_results().expr_ty(ex);
710         if *ty.kind() != ty::Bool || is_allowed(cx, MATCH_BOOL, ex.hir_id) {
711             check_single_match_single_pattern(cx, ex, arms, expr, els);
712             check_single_match_opt_like(cx, ex, arms, expr, ty, els);
713         }
714     }
715 }
716
717 fn check_single_match_single_pattern(
718     cx: &LateContext<'_>,
719     ex: &Expr<'_>,
720     arms: &[Arm<'_>],
721     expr: &Expr<'_>,
722     els: Option<&Expr<'_>>,
723 ) {
724     if is_wild(&arms[1].pat) {
725         report_single_match_single_pattern(cx, ex, arms, expr, els);
726     }
727 }
728
729 fn report_single_match_single_pattern(
730     cx: &LateContext<'_>,
731     ex: &Expr<'_>,
732     arms: &[Arm<'_>],
733     expr: &Expr<'_>,
734     els: Option<&Expr<'_>>,
735 ) {
736     let lint = if els.is_some() { SINGLE_MATCH_ELSE } else { SINGLE_MATCH };
737     let els_str = els.map_or(String::new(), |els| {
738         format!(" else {}", expr_block(cx, els, None, "..", Some(expr.span)))
739     });
740
741     let (pat, pat_ref_count) = peel_hir_pat_refs(arms[0].pat);
742     let (msg, sugg) = if_chain! {
743         if let PatKind::Path(_) | PatKind::Lit(_) = pat.kind;
744         let (ty, ty_ref_count) = peel_mid_ty_refs(cx.typeck_results().expr_ty(ex));
745         if let Some(spe_trait_id) = cx.tcx.lang_items().structural_peq_trait();
746         if let Some(pe_trait_id) = cx.tcx.lang_items().eq_trait();
747         if ty.is_integral() || ty.is_char() || ty.is_str()
748             || (implements_trait(cx, ty, spe_trait_id, &[])
749                 && implements_trait(cx, ty, pe_trait_id, &[ty.into()]));
750         then {
751             // scrutinee derives PartialEq and the pattern is a constant.
752             let pat_ref_count = match pat.kind {
753                 // string literals are already a reference.
754                 PatKind::Lit(Expr { kind: ExprKind::Lit(lit), .. }) if lit.node.is_str() => pat_ref_count + 1,
755                 _ => pat_ref_count,
756             };
757             // References are only implicitly added to the pattern, so no overflow here.
758             // e.g. will work: match &Some(_) { Some(_) => () }
759             // will not: match Some(_) { &Some(_) => () }
760             let ref_count_diff = ty_ref_count - pat_ref_count;
761
762             // Try to remove address of expressions first.
763             let (ex, removed) = peel_n_hir_expr_refs(ex, ref_count_diff);
764             let ref_count_diff = ref_count_diff - removed;
765
766             let msg = "you seem to be trying to use `match` for an equality check. Consider using `if`";
767             let sugg = format!(
768                 "if {} == {}{} {}{}",
769                 snippet(cx, ex.span, ".."),
770                 // PartialEq for different reference counts may not exist.
771                 "&".repeat(ref_count_diff),
772                 snippet(cx, arms[0].pat.span, ".."),
773                 expr_block(cx, arms[0].body, None, "..", Some(expr.span)),
774                 els_str,
775             );
776             (msg, sugg)
777         } else {
778             let msg = "you seem to be trying to use `match` for destructuring a single pattern. Consider using `if let`";
779             let sugg = format!(
780                 "if let {} = {} {}{}",
781                 snippet(cx, arms[0].pat.span, ".."),
782                 snippet(cx, ex.span, ".."),
783                 expr_block(cx, arms[0].body, None, "..", Some(expr.span)),
784                 els_str,
785             );
786             (msg, sugg)
787         }
788     };
789
790     span_lint_and_sugg(
791         cx,
792         lint,
793         expr.span,
794         msg,
795         "try this",
796         sugg,
797         Applicability::HasPlaceholders,
798     );
799 }
800
801 fn check_single_match_opt_like(
802     cx: &LateContext<'_>,
803     ex: &Expr<'_>,
804     arms: &[Arm<'_>],
805     expr: &Expr<'_>,
806     ty: Ty<'_>,
807     els: Option<&Expr<'_>>,
808 ) {
809     // list of candidate `Enum`s we know will never get any more members
810     let candidates = &[
811         (&paths::COW, "Borrowed"),
812         (&paths::COW, "Cow::Borrowed"),
813         (&paths::COW, "Cow::Owned"),
814         (&paths::COW, "Owned"),
815         (&paths::OPTION, "None"),
816         (&paths::RESULT, "Err"),
817         (&paths::RESULT, "Ok"),
818     ];
819
820     let path = match arms[1].pat.kind {
821         PatKind::TupleStruct(ref path, inner, _) => {
822             // Contains any non wildcard patterns (e.g., `Err(err)`)?
823             if !inner.iter().all(is_wild) {
824                 return;
825             }
826             rustc_hir_pretty::to_string(rustc_hir_pretty::NO_ANN, |s| s.print_qpath(path, false))
827         },
828         PatKind::Binding(BindingAnnotation::Unannotated, .., ident, None) => ident.to_string(),
829         PatKind::Path(ref path) => {
830             rustc_hir_pretty::to_string(rustc_hir_pretty::NO_ANN, |s| s.print_qpath(path, false))
831         },
832         _ => return,
833     };
834
835     for &(ty_path, pat_path) in candidates {
836         if path == *pat_path && match_type(cx, ty, ty_path) {
837             report_single_match_single_pattern(cx, ex, arms, expr, els);
838         }
839     }
840 }
841
842 fn check_match_bool(cx: &LateContext<'_>, ex: &Expr<'_>, arms: &[Arm<'_>], expr: &Expr<'_>) {
843     // Type of expression is `bool`.
844     if *cx.typeck_results().expr_ty(ex).kind() == ty::Bool {
845         span_lint_and_then(
846             cx,
847             MATCH_BOOL,
848             expr.span,
849             "you seem to be trying to match on a boolean expression",
850             move |diag| {
851                 if arms.len() == 2 {
852                     // no guards
853                     let exprs = if let PatKind::Lit(arm_bool) = arms[0].pat.kind {
854                         if let ExprKind::Lit(ref lit) = arm_bool.kind {
855                             match lit.node {
856                                 LitKind::Bool(true) => Some((&*arms[0].body, &*arms[1].body)),
857                                 LitKind::Bool(false) => Some((&*arms[1].body, &*arms[0].body)),
858                                 _ => None,
859                             }
860                         } else {
861                             None
862                         }
863                     } else {
864                         None
865                     };
866
867                     if let Some((true_expr, false_expr)) = exprs {
868                         let sugg = match (is_unit_expr(true_expr), is_unit_expr(false_expr)) {
869                             (false, false) => Some(format!(
870                                 "if {} {} else {}",
871                                 snippet(cx, ex.span, "b"),
872                                 expr_block(cx, true_expr, None, "..", Some(expr.span)),
873                                 expr_block(cx, false_expr, None, "..", Some(expr.span))
874                             )),
875                             (false, true) => Some(format!(
876                                 "if {} {}",
877                                 snippet(cx, ex.span, "b"),
878                                 expr_block(cx, true_expr, None, "..", Some(expr.span))
879                             )),
880                             (true, false) => {
881                                 let test = Sugg::hir(cx, ex, "..");
882                                 Some(format!(
883                                     "if {} {}",
884                                     !test,
885                                     expr_block(cx, false_expr, None, "..", Some(expr.span))
886                                 ))
887                             },
888                             (true, true) => None,
889                         };
890
891                         if let Some(sugg) = sugg {
892                             diag.span_suggestion(
893                                 expr.span,
894                                 "consider using an `if`/`else` expression",
895                                 sugg,
896                                 Applicability::HasPlaceholders,
897                             );
898                         }
899                     }
900                 }
901             },
902         );
903     }
904 }
905
906 fn check_overlapping_arms<'tcx>(cx: &LateContext<'tcx>, ex: &'tcx Expr<'_>, arms: &'tcx [Arm<'_>]) {
907     if arms.len() >= 2 && cx.typeck_results().expr_ty(ex).is_integral() {
908         let ranges = all_ranges(cx, arms, cx.typeck_results().expr_ty(ex));
909         let type_ranges = type_ranges(&ranges);
910         if !type_ranges.is_empty() {
911             if let Some((start, end)) = overlapping(&type_ranges) {
912                 span_lint_and_note(
913                     cx,
914                     MATCH_OVERLAPPING_ARM,
915                     start.span,
916                     "some ranges overlap",
917                     Some(end.span),
918                     "overlaps with this",
919                 );
920             }
921         }
922     }
923 }
924
925 fn check_wild_err_arm<'tcx>(cx: &LateContext<'tcx>, ex: &Expr<'tcx>, arms: &[Arm<'tcx>]) {
926     let ex_ty = cx.typeck_results().expr_ty(ex).peel_refs();
927     if is_type_diagnostic_item(cx, ex_ty, sym::result_type) {
928         for arm in arms {
929             if let PatKind::TupleStruct(ref path, inner, _) = arm.pat.kind {
930                 let path_str = rustc_hir_pretty::to_string(rustc_hir_pretty::NO_ANN, |s| s.print_qpath(path, false));
931                 if path_str == "Err" {
932                     let mut matching_wild = inner.iter().any(is_wild);
933                     let mut ident_bind_name = String::from("_");
934                     if !matching_wild {
935                         // Looking for unused bindings (i.e.: `_e`)
936                         for pat in inner.iter() {
937                             if let PatKind::Binding(_, id, ident, None) = pat.kind {
938                                 if ident.as_str().starts_with('_')
939                                     && !LocalUsedVisitor::new(cx, id).check_expr(arm.body)
940                                 {
941                                     ident_bind_name = (&ident.name.as_str()).to_string();
942                                     matching_wild = true;
943                                 }
944                             }
945                         }
946                     }
947                     if_chain! {
948                         if matching_wild;
949                         if let ExprKind::Block(block, _) = arm.body.kind;
950                         if is_panic_block(block);
951                         then {
952                             // `Err(_)` or `Err(_e)` arm with `panic!` found
953                             span_lint_and_note(cx,
954                                 MATCH_WILD_ERR_ARM,
955                                 arm.pat.span,
956                                 &format!("`Err({})` matches all errors", &ident_bind_name),
957                                 None,
958                                 "match each error separately or use the error output, or use `.except(msg)` if the error case is unreachable",
959                             );
960                         }
961                     }
962                 }
963             }
964         }
965     }
966 }
967
968 enum CommonPrefixSearcher<'a> {
969     None,
970     Path(&'a [PathSegment<'a>]),
971     Mixed,
972 }
973 impl CommonPrefixSearcher<'a> {
974     fn with_path(&mut self, path: &'a [PathSegment<'a>]) {
975         match path {
976             [path @ .., _] => self.with_prefix(path),
977             [] => (),
978         }
979     }
980
981     fn with_prefix(&mut self, path: &'a [PathSegment<'a>]) {
982         match self {
983             Self::None => *self = Self::Path(path),
984             Self::Path(self_path)
985                 if path
986                     .iter()
987                     .map(|p| p.ident.name)
988                     .eq(self_path.iter().map(|p| p.ident.name)) => {},
989             Self::Path(_) => *self = Self::Mixed,
990             Self::Mixed => (),
991         }
992     }
993 }
994
995 fn is_doc_hidden(cx: &LateContext<'_>, variant_def: &VariantDef) -> bool {
996     let attrs = cx.tcx.get_attrs(variant_def.def_id);
997     clippy_utils::attrs::is_doc_hidden(attrs)
998 }
999
1000 #[allow(clippy::too_many_lines)]
1001 fn check_wild_enum_match(cx: &LateContext<'_>, ex: &Expr<'_>, arms: &[Arm<'_>]) {
1002     let ty = cx.typeck_results().expr_ty(ex).peel_refs();
1003     let adt_def = match ty.kind() {
1004         ty::Adt(adt_def, _)
1005             if adt_def.is_enum()
1006                 && !(is_type_diagnostic_item(cx, ty, sym::option_type)
1007                     || is_type_diagnostic_item(cx, ty, sym::result_type)) =>
1008         {
1009             adt_def
1010         },
1011         _ => return,
1012     };
1013
1014     // First pass - check for violation, but don't do much book-keeping because this is hopefully
1015     // the uncommon case, and the book-keeping is slightly expensive.
1016     let mut wildcard_span = None;
1017     let mut wildcard_ident = None;
1018     let mut has_non_wild = false;
1019     for arm in arms {
1020         match peel_hir_pat_refs(arm.pat).0.kind {
1021             PatKind::Wild => wildcard_span = Some(arm.pat.span),
1022             PatKind::Binding(_, _, ident, None) => {
1023                 wildcard_span = Some(arm.pat.span);
1024                 wildcard_ident = Some(ident);
1025             },
1026             _ => has_non_wild = true,
1027         }
1028     }
1029     let wildcard_span = match wildcard_span {
1030         Some(x) if has_non_wild => x,
1031         _ => return,
1032     };
1033
1034     // Accumulate the variants which should be put in place of the wildcard because they're not
1035     // already covered.
1036     let mut missing_variants: Vec<_> = adt_def.variants.iter().collect();
1037
1038     let mut path_prefix = CommonPrefixSearcher::None;
1039     for arm in arms {
1040         // Guards mean that this case probably isn't exhaustively covered. Technically
1041         // this is incorrect, as we should really check whether each variant is exhaustively
1042         // covered by the set of guards that cover it, but that's really hard to do.
1043         recurse_or_patterns(arm.pat, |pat| {
1044             let path = match &peel_hir_pat_refs(pat).0.kind {
1045                 PatKind::Path(path) => {
1046                     #[allow(clippy::match_same_arms)]
1047                     let id = match cx.qpath_res(path, pat.hir_id) {
1048                         Res::Def(DefKind::Const | DefKind::ConstParam | DefKind::AnonConst, _) => return,
1049                         Res::Def(_, id) => id,
1050                         _ => return,
1051                     };
1052                     if arm.guard.is_none() {
1053                         missing_variants.retain(|e| e.ctor_def_id != Some(id));
1054                     }
1055                     path
1056                 },
1057                 PatKind::TupleStruct(path, patterns, ..) => {
1058                     if let Some(id) = cx.qpath_res(path, pat.hir_id).opt_def_id() {
1059                         if arm.guard.is_none() && patterns.iter().all(|p| !is_refutable(cx, p)) {
1060                             missing_variants.retain(|e| e.ctor_def_id != Some(id));
1061                         }
1062                     }
1063                     path
1064                 },
1065                 PatKind::Struct(path, patterns, ..) => {
1066                     if let Some(id) = cx.qpath_res(path, pat.hir_id).opt_def_id() {
1067                         if arm.guard.is_none() && patterns.iter().all(|p| !is_refutable(cx, p.pat)) {
1068                             missing_variants.retain(|e| e.def_id != id);
1069                         }
1070                     }
1071                     path
1072                 },
1073                 _ => return,
1074             };
1075             match path {
1076                 QPath::Resolved(_, path) => path_prefix.with_path(path.segments),
1077                 QPath::TypeRelative(
1078                     hir::Ty {
1079                         kind: TyKind::Path(QPath::Resolved(_, path)),
1080                         ..
1081                     },
1082                     _,
1083                 ) => path_prefix.with_prefix(path.segments),
1084                 _ => (),
1085             }
1086         });
1087     }
1088
1089     let format_suggestion = |variant: &VariantDef| {
1090         format!(
1091             "{}{}{}{}",
1092             if let Some(ident) = wildcard_ident {
1093                 format!("{} @ ", ident.name)
1094             } else {
1095                 String::new()
1096             },
1097             if let CommonPrefixSearcher::Path(path_prefix) = path_prefix {
1098                 let mut s = String::new();
1099                 for seg in path_prefix {
1100                     s.push_str(&seg.ident.as_str());
1101                     s.push_str("::");
1102                 }
1103                 s
1104             } else {
1105                 let mut s = cx.tcx.def_path_str(adt_def.did);
1106                 s.push_str("::");
1107                 s
1108             },
1109             variant.ident.name,
1110             match variant.ctor_kind {
1111                 CtorKind::Fn if variant.fields.len() == 1 => "(_)",
1112                 CtorKind::Fn => "(..)",
1113                 CtorKind::Const => "",
1114                 CtorKind::Fictive => "{ .. }",
1115             }
1116         )
1117     };
1118
1119     match missing_variants.as_slice() {
1120         [] => (),
1121         [x] if !adt_def.is_variant_list_non_exhaustive() && !is_doc_hidden(cx, x) => span_lint_and_sugg(
1122             cx,
1123             MATCH_WILDCARD_FOR_SINGLE_VARIANTS,
1124             wildcard_span,
1125             "wildcard matches only a single variant and will also match any future added variants",
1126             "try this",
1127             format_suggestion(x),
1128             Applicability::MaybeIncorrect,
1129         ),
1130         variants => {
1131             let mut suggestions: Vec<_> = variants.iter().copied().map(format_suggestion).collect();
1132             let message = if adt_def.is_variant_list_non_exhaustive() {
1133                 suggestions.push("_".into());
1134                 "wildcard matches known variants and will also match future added variants"
1135             } else {
1136                 "wildcard match will also match any future added variants"
1137             };
1138
1139             span_lint_and_sugg(
1140                 cx,
1141                 WILDCARD_ENUM_MATCH_ARM,
1142                 wildcard_span,
1143                 message,
1144                 "try this",
1145                 suggestions.join(" | "),
1146                 Applicability::MaybeIncorrect,
1147             );
1148         },
1149     };
1150 }
1151
1152 // If the block contains only a `panic!` macro (as expression or statement)
1153 fn is_panic_block(block: &Block<'_>) -> bool {
1154     match (&block.expr, block.stmts.len(), block.stmts.first()) {
1155         (&Some(exp), 0, _) => is_expn_of(exp.span, "panic").is_some() && is_expn_of(exp.span, "unreachable").is_none(),
1156         (&None, 1, Some(stmt)) => {
1157             is_expn_of(stmt.span, "panic").is_some() && is_expn_of(stmt.span, "unreachable").is_none()
1158         },
1159         _ => false,
1160     }
1161 }
1162
1163 fn check_match_ref_pats(cx: &LateContext<'_>, ex: &Expr<'_>, arms: &[Arm<'_>], expr: &Expr<'_>) {
1164     if has_only_ref_pats(arms) {
1165         let mut suggs = Vec::with_capacity(arms.len() + 1);
1166         let (title, msg) = if let ExprKind::AddrOf(BorrowKind::Ref, Mutability::Not, inner) = ex.kind {
1167             let span = ex.span.source_callsite();
1168             suggs.push((span, Sugg::hir_with_macro_callsite(cx, inner, "..").to_string()));
1169             (
1170                 "you don't need to add `&` to both the expression and the patterns",
1171                 "try",
1172             )
1173         } else {
1174             let span = ex.span.source_callsite();
1175             suggs.push((span, Sugg::hir_with_macro_callsite(cx, ex, "..").deref().to_string()));
1176             (
1177                 "you don't need to add `&` to all patterns",
1178                 "instead of prefixing all patterns with `&`, you can dereference the expression",
1179             )
1180         };
1181
1182         suggs.extend(arms.iter().filter_map(|a| {
1183             if let PatKind::Ref(refp, _) = a.pat.kind {
1184                 Some((a.pat.span, snippet(cx, refp.span, "..").to_string()))
1185             } else {
1186                 None
1187             }
1188         }));
1189
1190         span_lint_and_then(cx, MATCH_REF_PATS, expr.span, title, |diag| {
1191             if !expr.span.from_expansion() {
1192                 multispan_sugg(diag, msg, suggs);
1193             }
1194         });
1195     }
1196 }
1197
1198 fn check_match_as_ref(cx: &LateContext<'_>, ex: &Expr<'_>, arms: &[Arm<'_>], expr: &Expr<'_>) {
1199     if arms.len() == 2 && arms[0].guard.is_none() && arms[1].guard.is_none() {
1200         let arm_ref: Option<BindingAnnotation> = if is_none_arm(cx, &arms[0]) {
1201             is_ref_some_arm(cx, &arms[1])
1202         } else if is_none_arm(cx, &arms[1]) {
1203             is_ref_some_arm(cx, &arms[0])
1204         } else {
1205             None
1206         };
1207         if let Some(rb) = arm_ref {
1208             let suggestion = if rb == BindingAnnotation::Ref {
1209                 "as_ref"
1210             } else {
1211                 "as_mut"
1212             };
1213
1214             let output_ty = cx.typeck_results().expr_ty(expr);
1215             let input_ty = cx.typeck_results().expr_ty(ex);
1216
1217             let cast = if_chain! {
1218                 if let ty::Adt(_, substs) = input_ty.kind();
1219                 let input_ty = substs.type_at(0);
1220                 if let ty::Adt(_, substs) = output_ty.kind();
1221                 let output_ty = substs.type_at(0);
1222                 if let ty::Ref(_, output_ty, _) = *output_ty.kind();
1223                 if input_ty != output_ty;
1224                 then {
1225                     ".map(|x| x as _)"
1226                 } else {
1227                     ""
1228                 }
1229             };
1230
1231             let mut applicability = Applicability::MachineApplicable;
1232             span_lint_and_sugg(
1233                 cx,
1234                 MATCH_AS_REF,
1235                 expr.span,
1236                 &format!("use `{}()` instead", suggestion),
1237                 "try this",
1238                 format!(
1239                     "{}.{}(){}",
1240                     snippet_with_applicability(cx, ex.span, "_", &mut applicability),
1241                     suggestion,
1242                     cast,
1243                 ),
1244                 applicability,
1245             );
1246         }
1247     }
1248 }
1249
1250 fn check_wild_in_or_pats(cx: &LateContext<'_>, arms: &[Arm<'_>]) {
1251     for arm in arms {
1252         if let PatKind::Or(fields) = arm.pat.kind {
1253             // look for multiple fields in this arm that contains at least one Wild pattern
1254             if fields.len() > 1 && fields.iter().any(is_wild) {
1255                 span_lint_and_help(
1256                     cx,
1257                     WILDCARD_IN_OR_PATTERNS,
1258                     arm.pat.span,
1259                     "wildcard pattern covers any other pattern as it will match anyway",
1260                     None,
1261                     "consider handling `_` separately",
1262                 );
1263             }
1264         }
1265     }
1266 }
1267
1268 /// Lint a `match` or `if let .. { .. } else { .. }` expr that could be replaced by `matches!`
1269 fn check_match_like_matches<'tcx>(cx: &LateContext<'tcx>, expr: &'tcx Expr<'_>) -> bool {
1270     if let ExprKind::Match(ex, arms, ref match_source) = &expr.kind {
1271         match match_source {
1272             MatchSource::Normal => find_matches_sugg(cx, ex, arms, expr, false),
1273             MatchSource::IfLetDesugar { .. } => find_matches_sugg(cx, ex, arms, expr, true),
1274             _ => false,
1275         }
1276     } else {
1277         false
1278     }
1279 }
1280
1281 /// Lint a `match` or desugared `if let` for replacement by `matches!`
1282 fn find_matches_sugg(cx: &LateContext<'_>, ex: &Expr<'_>, arms: &[Arm<'_>], expr: &Expr<'_>, desugared: bool) -> bool {
1283     if_chain! {
1284         if arms.len() >= 2;
1285         if cx.typeck_results().expr_ty(expr).is_bool();
1286         if let Some((b1_arm, b0_arms)) = arms.split_last();
1287         if let Some(b0) = find_bool_lit(&b0_arms[0].body.kind, desugared);
1288         if let Some(b1) = find_bool_lit(&b1_arm.body.kind, desugared);
1289         if is_wild(&b1_arm.pat);
1290         if b0 != b1;
1291         let if_guard = &b0_arms[0].guard;
1292         if if_guard.is_none() || b0_arms.len() == 1;
1293         if cx.tcx.hir().attrs(b0_arms[0].hir_id).is_empty();
1294         if b0_arms[1..].iter()
1295             .all(|arm| {
1296                 find_bool_lit(&arm.body.kind, desugared).map_or(false, |b| b == b0) &&
1297                 arm.guard.is_none() && cx.tcx.hir().attrs(arm.hir_id).is_empty()
1298             });
1299         then {
1300             // The suggestion may be incorrect, because some arms can have `cfg` attributes
1301             // evaluated into `false` and so such arms will be stripped before.
1302             let mut applicability = Applicability::MaybeIncorrect;
1303             let pat = {
1304                 use itertools::Itertools as _;
1305                 b0_arms.iter()
1306                     .map(|arm| snippet_with_applicability(cx, arm.pat.span, "..", &mut applicability))
1307                     .join(" | ")
1308             };
1309             let pat_and_guard = if let Some(Guard::If(g)) = if_guard {
1310                 format!("{} if {}", pat, snippet_with_applicability(cx, g.span, "..", &mut applicability))
1311             } else {
1312                 pat
1313             };
1314
1315             // strip potential borrows (#6503), but only if the type is a reference
1316             let mut ex_new = ex;
1317             if let ExprKind::AddrOf(BorrowKind::Ref, .., ex_inner) = ex.kind {
1318                 if let ty::Ref(..) = cx.typeck_results().expr_ty(ex_inner).kind() {
1319                     ex_new = ex_inner;
1320                 }
1321             };
1322             span_lint_and_sugg(
1323                 cx,
1324                 MATCH_LIKE_MATCHES_MACRO,
1325                 expr.span,
1326                 &format!("{} expression looks like `matches!` macro", if desugared { "if let .. else" } else { "match" }),
1327                 "try this",
1328                 format!(
1329                     "{}matches!({}, {})",
1330                     if b0 { "" } else { "!" },
1331                     snippet_with_applicability(cx, ex_new.span, "..", &mut applicability),
1332                     pat_and_guard,
1333                 ),
1334                 applicability,
1335             );
1336             true
1337         } else {
1338             false
1339         }
1340     }
1341 }
1342
1343 /// Extract a `bool` or `{ bool }`
1344 fn find_bool_lit(ex: &ExprKind<'_>, desugared: bool) -> Option<bool> {
1345     match ex {
1346         ExprKind::Lit(Spanned {
1347             node: LitKind::Bool(b), ..
1348         }) => Some(*b),
1349         ExprKind::Block(
1350             rustc_hir::Block {
1351                 stmts: &[],
1352                 expr: Some(exp),
1353                 ..
1354             },
1355             _,
1356         ) if desugared => {
1357             if let ExprKind::Lit(Spanned {
1358                 node: LitKind::Bool(b), ..
1359             }) = exp.kind
1360             {
1361                 Some(b)
1362             } else {
1363                 None
1364             }
1365         },
1366         _ => None,
1367     }
1368 }
1369
1370 #[allow(clippy::too_many_lines)]
1371 fn check_match_single_binding<'a>(cx: &LateContext<'a>, ex: &Expr<'a>, arms: &[Arm<'_>], expr: &Expr<'_>) {
1372     if in_macro(expr.span) || arms.len() != 1 || is_refutable(cx, arms[0].pat) {
1373         return;
1374     }
1375
1376     // HACK:
1377     // This is a hack to deal with arms that are excluded by macros like `#[cfg]`. It is only used here
1378     // to prevent false positives as there is currently no better way to detect if code was excluded by
1379     // a macro. See PR #6435
1380     if_chain! {
1381         if let Some(match_snippet) = snippet_opt(cx, expr.span);
1382         if let Some(arm_snippet) = snippet_opt(cx, arms[0].span);
1383         if let Some(ex_snippet) = snippet_opt(cx, ex.span);
1384         let rest_snippet = match_snippet.replace(&arm_snippet, "").replace(&ex_snippet, "");
1385         if rest_snippet.contains("=>");
1386         then {
1387             // The code it self contains another thick arrow "=>"
1388             // -> Either another arm or a comment
1389             return;
1390         }
1391     }
1392
1393     let matched_vars = ex.span;
1394     let bind_names = arms[0].pat.span;
1395     let match_body = remove_blocks(arms[0].body);
1396     let mut snippet_body = if match_body.span.from_expansion() {
1397         Sugg::hir_with_macro_callsite(cx, match_body, "..").to_string()
1398     } else {
1399         snippet_block(cx, match_body.span, "..", Some(expr.span)).to_string()
1400     };
1401
1402     // Do we need to add ';' to suggestion ?
1403     match match_body.kind {
1404         ExprKind::Block(block, _) => {
1405             // macro + expr_ty(body) == ()
1406             if block.span.from_expansion() && cx.typeck_results().expr_ty(match_body).is_unit() {
1407                 snippet_body.push(';');
1408             }
1409         },
1410         _ => {
1411             // expr_ty(body) == ()
1412             if cx.typeck_results().expr_ty(match_body).is_unit() {
1413                 snippet_body.push(';');
1414             }
1415         },
1416     }
1417
1418     let mut applicability = Applicability::MaybeIncorrect;
1419     match arms[0].pat.kind {
1420         PatKind::Binding(..) | PatKind::Tuple(_, _) | PatKind::Struct(..) => {
1421             // If this match is in a local (`let`) stmt
1422             let (target_span, sugg) = if let Some(parent_let_node) = opt_parent_let(cx, ex) {
1423                 (
1424                     parent_let_node.span,
1425                     format!(
1426                         "let {} = {};\n{}let {} = {};",
1427                         snippet_with_applicability(cx, bind_names, "..", &mut applicability),
1428                         snippet_with_applicability(cx, matched_vars, "..", &mut applicability),
1429                         " ".repeat(indent_of(cx, expr.span).unwrap_or(0)),
1430                         snippet_with_applicability(cx, parent_let_node.pat.span, "..", &mut applicability),
1431                         snippet_body
1432                     ),
1433                 )
1434             } else {
1435                 // If we are in closure, we need curly braces around suggestion
1436                 let mut indent = " ".repeat(indent_of(cx, ex.span).unwrap_or(0));
1437                 let (mut cbrace_start, mut cbrace_end) = ("".to_string(), "".to_string());
1438                 if let Some(parent_expr) = get_parent_expr(cx, expr) {
1439                     if let ExprKind::Closure(..) = parent_expr.kind {
1440                         cbrace_end = format!("\n{}}}", indent);
1441                         // Fix body indent due to the closure
1442                         indent = " ".repeat(indent_of(cx, bind_names).unwrap_or(0));
1443                         cbrace_start = format!("{{\n{}", indent);
1444                     }
1445                 }
1446                 // If the parent is already an arm, and the body is another match statement,
1447                 // we need curly braces around suggestion
1448                 let parent_node_id = cx.tcx.hir().get_parent_node(expr.hir_id);
1449                 if let Node::Arm(arm) = &cx.tcx.hir().get(parent_node_id) {
1450                     if let ExprKind::Match(..) = arm.body.kind {
1451                         cbrace_end = format!("\n{}}}", indent);
1452                         // Fix body indent due to the match
1453                         indent = " ".repeat(indent_of(cx, bind_names).unwrap_or(0));
1454                         cbrace_start = format!("{{\n{}", indent);
1455                     }
1456                 }
1457                 (
1458                     expr.span,
1459                     format!(
1460                         "{}let {} = {};\n{}{}{}",
1461                         cbrace_start,
1462                         snippet_with_applicability(cx, bind_names, "..", &mut applicability),
1463                         snippet_with_applicability(cx, matched_vars, "..", &mut applicability),
1464                         indent,
1465                         snippet_body,
1466                         cbrace_end
1467                     ),
1468                 )
1469             };
1470             span_lint_and_sugg(
1471                 cx,
1472                 MATCH_SINGLE_BINDING,
1473                 target_span,
1474                 "this match could be written as a `let` statement",
1475                 "consider using `let` statement",
1476                 sugg,
1477                 applicability,
1478             );
1479         },
1480         PatKind::Wild => {
1481             if ex.can_have_side_effects() {
1482                 let indent = " ".repeat(indent_of(cx, expr.span).unwrap_or(0));
1483                 let sugg = format!(
1484                     "{};\n{}{}",
1485                     snippet_with_applicability(cx, ex.span, "..", &mut applicability),
1486                     indent,
1487                     snippet_body
1488                 );
1489                 span_lint_and_sugg(
1490                     cx,
1491                     MATCH_SINGLE_BINDING,
1492                     expr.span,
1493                     "this match could be replaced by its scrutinee and body",
1494                     "consider using the scrutinee and body instead",
1495                     sugg,
1496                     applicability,
1497                 );
1498             } else {
1499                 span_lint_and_sugg(
1500                     cx,
1501                     MATCH_SINGLE_BINDING,
1502                     expr.span,
1503                     "this match could be replaced by its body itself",
1504                     "consider using the match body instead",
1505                     snippet_body,
1506                     Applicability::MachineApplicable,
1507                 );
1508             }
1509         },
1510         _ => (),
1511     }
1512 }
1513
1514 /// Returns true if the `ex` match expression is in a local (`let`) statement
1515 fn opt_parent_let<'a>(cx: &LateContext<'a>, ex: &Expr<'a>) -> Option<&'a Local<'a>> {
1516     let map = &cx.tcx.hir();
1517     if_chain! {
1518         if let Some(Node::Expr(parent_arm_expr)) = map.find(map.get_parent_node(ex.hir_id));
1519         if let Some(Node::Local(parent_let_expr)) = map.find(map.get_parent_node(parent_arm_expr.hir_id));
1520         then {
1521             return Some(parent_let_expr);
1522         }
1523     }
1524     None
1525 }
1526
1527 /// Gets all arms that are unbounded `PatRange`s.
1528 fn all_ranges<'tcx>(cx: &LateContext<'tcx>, arms: &'tcx [Arm<'_>], ty: Ty<'tcx>) -> Vec<SpannedRange<Constant>> {
1529     arms.iter()
1530         .filter_map(|arm| {
1531             if let Arm { pat, guard: None, .. } = *arm {
1532                 if let PatKind::Range(ref lhs, ref rhs, range_end) = pat.kind {
1533                     let lhs = match lhs {
1534                         Some(lhs) => constant(cx, cx.typeck_results(), lhs)?.0,
1535                         None => miri_to_const(ty.numeric_min_val(cx.tcx)?)?,
1536                     };
1537                     let rhs = match rhs {
1538                         Some(rhs) => constant(cx, cx.typeck_results(), rhs)?.0,
1539                         None => miri_to_const(ty.numeric_max_val(cx.tcx)?)?,
1540                     };
1541                     let rhs = match range_end {
1542                         RangeEnd::Included => Bound::Included(rhs),
1543                         RangeEnd::Excluded => Bound::Excluded(rhs),
1544                     };
1545                     return Some(SpannedRange {
1546                         span: pat.span,
1547                         node: (lhs, rhs),
1548                     });
1549                 }
1550
1551                 if let PatKind::Lit(value) = pat.kind {
1552                     let value = constant(cx, cx.typeck_results(), value)?.0;
1553                     return Some(SpannedRange {
1554                         span: pat.span,
1555                         node: (value.clone(), Bound::Included(value)),
1556                     });
1557                 }
1558             }
1559             None
1560         })
1561         .collect()
1562 }
1563
1564 #[derive(Debug, Eq, PartialEq)]
1565 pub struct SpannedRange<T> {
1566     pub span: Span,
1567     pub node: (T, Bound<T>),
1568 }
1569
1570 type TypedRanges = Vec<SpannedRange<u128>>;
1571
1572 /// Gets all `Int` ranges or all `Uint` ranges. Mixed types are an error anyway
1573 /// and other types than
1574 /// `Uint` and `Int` probably don't make sense.
1575 fn type_ranges(ranges: &[SpannedRange<Constant>]) -> TypedRanges {
1576     ranges
1577         .iter()
1578         .filter_map(|range| match range.node {
1579             (Constant::Int(start), Bound::Included(Constant::Int(end))) => Some(SpannedRange {
1580                 span: range.span,
1581                 node: (start, Bound::Included(end)),
1582             }),
1583             (Constant::Int(start), Bound::Excluded(Constant::Int(end))) => Some(SpannedRange {
1584                 span: range.span,
1585                 node: (start, Bound::Excluded(end)),
1586             }),
1587             (Constant::Int(start), Bound::Unbounded) => Some(SpannedRange {
1588                 span: range.span,
1589                 node: (start, Bound::Unbounded),
1590             }),
1591             _ => None,
1592         })
1593         .collect()
1594 }
1595
1596 fn is_unit_expr(expr: &Expr<'_>) -> bool {
1597     match expr.kind {
1598         ExprKind::Tup(v) if v.is_empty() => true,
1599         ExprKind::Block(b, _) if b.stmts.is_empty() && b.expr.is_none() => true,
1600         _ => false,
1601     }
1602 }
1603
1604 // Checks if arm has the form `None => None`
1605 fn is_none_arm(cx: &LateContext<'_>, arm: &Arm<'_>) -> bool {
1606     matches!(arm.pat.kind, PatKind::Path(ref qpath) if is_lang_ctor(cx, qpath, OptionNone))
1607 }
1608
1609 // Checks if arm has the form `Some(ref v) => Some(v)` (checks for `ref` and `ref mut`)
1610 fn is_ref_some_arm(cx: &LateContext<'_>, arm: &Arm<'_>) -> Option<BindingAnnotation> {
1611     if_chain! {
1612         if let PatKind::TupleStruct(ref qpath, [first_pat, ..], _) = arm.pat.kind;
1613         if is_lang_ctor(cx, qpath, OptionSome);
1614         if let PatKind::Binding(rb, .., ident, _) = first_pat.kind;
1615         if rb == BindingAnnotation::Ref || rb == BindingAnnotation::RefMut;
1616         if let ExprKind::Call(e, args) = remove_blocks(arm.body).kind;
1617         if let ExprKind::Path(ref some_path) = e.kind;
1618         if is_lang_ctor(cx, some_path, OptionSome) && args.len() == 1;
1619         if let ExprKind::Path(QPath::Resolved(_, path2)) = args[0].kind;
1620         if path2.segments.len() == 1 && ident.name == path2.segments[0].ident.name;
1621         then {
1622             return Some(rb)
1623         }
1624     }
1625     None
1626 }
1627
1628 fn has_only_ref_pats(arms: &[Arm<'_>]) -> bool {
1629     let mapped = arms
1630         .iter()
1631         .map(|a| {
1632             match a.pat.kind {
1633                 PatKind::Ref(..) => Some(true), // &-patterns
1634                 PatKind::Wild => Some(false),   // an "anything" wildcard is also fine
1635                 _ => None,                      // any other pattern is not fine
1636             }
1637         })
1638         .collect::<Option<Vec<bool>>>();
1639     // look for Some(v) where there's at least one true element
1640     mapped.map_or(false, |v| v.iter().any(|el| *el))
1641 }
1642
1643 pub fn overlapping<T>(ranges: &[SpannedRange<T>]) -> Option<(&SpannedRange<T>, &SpannedRange<T>)>
1644 where
1645     T: Copy + Ord,
1646 {
1647     #[derive(Copy, Clone, Debug, Eq, PartialEq)]
1648     enum Kind<'a, T> {
1649         Start(T, &'a SpannedRange<T>),
1650         End(Bound<T>, &'a SpannedRange<T>),
1651     }
1652
1653     impl<'a, T: Copy> Kind<'a, T> {
1654         fn range(&self) -> &'a SpannedRange<T> {
1655             match *self {
1656                 Kind::Start(_, r) | Kind::End(_, r) => r,
1657             }
1658         }
1659
1660         fn value(self) -> Bound<T> {
1661             match self {
1662                 Kind::Start(t, _) => Bound::Included(t),
1663                 Kind::End(t, _) => t,
1664             }
1665         }
1666     }
1667
1668     impl<'a, T: Copy + Ord> PartialOrd for Kind<'a, T> {
1669         fn partial_cmp(&self, other: &Self) -> Option<Ordering> {
1670             Some(self.cmp(other))
1671         }
1672     }
1673
1674     impl<'a, T: Copy + Ord> Ord for Kind<'a, T> {
1675         fn cmp(&self, other: &Self) -> Ordering {
1676             match (self.value(), other.value()) {
1677                 (Bound::Included(a), Bound::Included(b)) | (Bound::Excluded(a), Bound::Excluded(b)) => a.cmp(&b),
1678                 // Range patterns cannot be unbounded (yet)
1679                 (Bound::Unbounded, _) | (_, Bound::Unbounded) => unimplemented!(),
1680                 (Bound::Included(a), Bound::Excluded(b)) => match a.cmp(&b) {
1681                     Ordering::Equal => Ordering::Greater,
1682                     other => other,
1683                 },
1684                 (Bound::Excluded(a), Bound::Included(b)) => match a.cmp(&b) {
1685                     Ordering::Equal => Ordering::Less,
1686                     other => other,
1687                 },
1688             }
1689         }
1690     }
1691
1692     let mut values = Vec::with_capacity(2 * ranges.len());
1693
1694     for r in ranges {
1695         values.push(Kind::Start(r.node.0, r));
1696         values.push(Kind::End(r.node.1, r));
1697     }
1698
1699     values.sort();
1700
1701     for (a, b) in iter::zip(&values, values.iter().skip(1)) {
1702         match (a, b) {
1703             (&Kind::Start(_, ra), &Kind::End(_, rb)) => {
1704                 if ra.node != rb.node {
1705                     return Some((ra, rb));
1706                 }
1707             },
1708             (&Kind::End(a, _), &Kind::Start(b, _)) if a != Bound::Included(b) => (),
1709             _ => {
1710                 // skip if the range `a` is completely included into the range `b`
1711                 if let Ordering::Equal | Ordering::Less = a.cmp(b) {
1712                     let kind_a = Kind::End(a.range().node.1, a.range());
1713                     let kind_b = Kind::End(b.range().node.1, b.range());
1714                     if let Ordering::Equal | Ordering::Greater = kind_a.cmp(&kind_b) {
1715                         return None;
1716                     }
1717                 }
1718                 return Some((a.range(), b.range()));
1719             },
1720         }
1721     }
1722
1723     None
1724 }
1725
1726 mod redundant_pattern_match {
1727     use super::REDUNDANT_PATTERN_MATCHING;
1728     use clippy_utils::diagnostics::span_lint_and_then;
1729     use clippy_utils::source::{snippet, snippet_with_applicability};
1730     use clippy_utils::ty::{implements_trait, is_type_diagnostic_item, is_type_lang_item, match_type};
1731     use clippy_utils::{is_lang_ctor, is_qpath_def_path, is_trait_method, paths};
1732     use if_chain::if_chain;
1733     use rustc_ast::ast::LitKind;
1734     use rustc_data_structures::fx::FxHashSet;
1735     use rustc_errors::Applicability;
1736     use rustc_hir::LangItem::{OptionNone, OptionSome, PollPending, PollReady, ResultErr, ResultOk};
1737     use rustc_hir::{
1738         intravisit::{walk_expr, ErasedMap, NestedVisitorMap, Visitor},
1739         Arm, Block, Expr, ExprKind, LangItem, MatchSource, Node, PatKind, QPath,
1740     };
1741     use rustc_lint::LateContext;
1742     use rustc_middle::ty::{self, subst::GenericArgKind, Ty};
1743     use rustc_span::sym;
1744
1745     pub fn check<'tcx>(cx: &LateContext<'tcx>, expr: &'tcx Expr<'_>) {
1746         if let ExprKind::Match(op, arms, ref match_source) = &expr.kind {
1747             match match_source {
1748                 MatchSource::Normal => find_sugg_for_match(cx, expr, op, arms),
1749                 MatchSource::IfLetDesugar { contains_else_clause } => {
1750                     find_sugg_for_if_let(cx, expr, op, &arms[0], "if", *contains_else_clause);
1751                 },
1752                 MatchSource::WhileLetDesugar => find_sugg_for_if_let(cx, expr, op, &arms[0], "while", false),
1753                 _ => {},
1754             }
1755         }
1756     }
1757
1758     /// Checks if the drop order for a type matters. Some std types implement drop solely to
1759     /// deallocate memory. For these types, and composites containing them, changing the drop order
1760     /// won't result in any observable side effects.
1761     fn type_needs_ordered_drop(cx: &LateContext<'tcx>, ty: Ty<'tcx>) -> bool {
1762         type_needs_ordered_drop_inner(cx, ty, &mut FxHashSet::default())
1763     }
1764
1765     fn type_needs_ordered_drop_inner(cx: &LateContext<'tcx>, ty: Ty<'tcx>, seen: &mut FxHashSet<Ty<'tcx>>) -> bool {
1766         if !seen.insert(ty) {
1767             return false;
1768         }
1769         if !ty.needs_drop(cx.tcx, cx.param_env) {
1770             false
1771         } else if !cx
1772             .tcx
1773             .lang_items()
1774             .drop_trait()
1775             .map_or(false, |id| implements_trait(cx, ty, id, &[]))
1776         {
1777             // This type doesn't implement drop, so no side effects here.
1778             // Check if any component type has any.
1779             match ty.kind() {
1780                 ty::Tuple(_) => ty.tuple_fields().any(|ty| type_needs_ordered_drop_inner(cx, ty, seen)),
1781                 ty::Array(ty, _) => type_needs_ordered_drop_inner(cx, ty, seen),
1782                 ty::Adt(adt, subs) => adt
1783                     .all_fields()
1784                     .map(|f| f.ty(cx.tcx, subs))
1785                     .any(|ty| type_needs_ordered_drop_inner(cx, ty, seen)),
1786                 _ => true,
1787             }
1788         }
1789         // Check for std types which implement drop, but only for memory allocation.
1790         else if is_type_diagnostic_item(cx, ty, sym::vec_type)
1791             || is_type_lang_item(cx, ty, LangItem::OwnedBox)
1792             || is_type_diagnostic_item(cx, ty, sym::Rc)
1793             || is_type_diagnostic_item(cx, ty, sym::Arc)
1794             || is_type_diagnostic_item(cx, ty, sym::cstring_type)
1795             || match_type(cx, ty, &paths::BTREEMAP)
1796             || match_type(cx, ty, &paths::LINKED_LIST)
1797             || match_type(cx, ty, &paths::WEAK_RC)
1798             || match_type(cx, ty, &paths::WEAK_ARC)
1799         {
1800             // Check all of the generic arguments.
1801             if let ty::Adt(_, subs) = ty.kind() {
1802                 subs.types().any(|ty| type_needs_ordered_drop_inner(cx, ty, seen))
1803             } else {
1804                 true
1805             }
1806         } else {
1807             true
1808         }
1809     }
1810
1811     // Extract the generic arguments out of a type
1812     fn try_get_generic_ty(ty: Ty<'_>, index: usize) -> Option<Ty<'_>> {
1813         if_chain! {
1814             if let ty::Adt(_, subs) = ty.kind();
1815             if let Some(sub) = subs.get(index);
1816             if let GenericArgKind::Type(sub_ty) = sub.unpack();
1817             then {
1818                 Some(sub_ty)
1819             } else {
1820                 None
1821             }
1822         }
1823     }
1824
1825     // Checks if there are any temporaries created in the given expression for which drop order
1826     // matters.
1827     fn temporaries_need_ordered_drop(cx: &LateContext<'tcx>, expr: &'tcx Expr<'tcx>) -> bool {
1828         struct V<'a, 'tcx> {
1829             cx: &'a LateContext<'tcx>,
1830             res: bool,
1831         }
1832         impl<'a, 'tcx> Visitor<'tcx> for V<'a, 'tcx> {
1833             type Map = ErasedMap<'tcx>;
1834             fn nested_visit_map(&mut self) -> NestedVisitorMap<Self::Map> {
1835                 NestedVisitorMap::None
1836             }
1837
1838             fn visit_expr(&mut self, expr: &'tcx Expr<'tcx>) {
1839                 match expr.kind {
1840                     // Taking the reference of a value leaves a temporary
1841                     // e.g. In `&String::new()` the string is a temporary value.
1842                     // Remaining fields are temporary values
1843                     // e.g. In `(String::new(), 0).1` the string is a temporary value.
1844                     ExprKind::AddrOf(_, _, expr) | ExprKind::Field(expr, _) => {
1845                         if !matches!(expr.kind, ExprKind::Path(_)) {
1846                             if type_needs_ordered_drop(self.cx, self.cx.typeck_results().expr_ty(expr)) {
1847                                 self.res = true;
1848                             } else {
1849                                 self.visit_expr(expr);
1850                             }
1851                         }
1852                     },
1853                     // the base type is alway taken by reference.
1854                     // e.g. In `(vec![0])[0]` the vector is a temporary value.
1855                     ExprKind::Index(base, index) => {
1856                         if !matches!(base.kind, ExprKind::Path(_)) {
1857                             if type_needs_ordered_drop(self.cx, self.cx.typeck_results().expr_ty(base)) {
1858                                 self.res = true;
1859                             } else {
1860                                 self.visit_expr(base);
1861                             }
1862                         }
1863                         self.visit_expr(index);
1864                     },
1865                     // Method calls can take self by reference.
1866                     // e.g. In `String::new().len()` the string is a temporary value.
1867                     ExprKind::MethodCall(_, _, [self_arg, args @ ..], _) => {
1868                         if !matches!(self_arg.kind, ExprKind::Path(_)) {
1869                             let self_by_ref = self
1870                                 .cx
1871                                 .typeck_results()
1872                                 .type_dependent_def_id(expr.hir_id)
1873                                 .map_or(false, |id| self.cx.tcx.fn_sig(id).skip_binder().inputs()[0].is_ref());
1874                             if self_by_ref
1875                                 && type_needs_ordered_drop(self.cx, self.cx.typeck_results().expr_ty(self_arg))
1876                             {
1877                                 self.res = true;
1878                             } else {
1879                                 self.visit_expr(self_arg);
1880                             }
1881                         }
1882                         args.iter().for_each(|arg| self.visit_expr(arg));
1883                     },
1884                     // Either explicitly drops values, or changes control flow.
1885                     ExprKind::DropTemps(_)
1886                     | ExprKind::Ret(_)
1887                     | ExprKind::Break(..)
1888                     | ExprKind::Yield(..)
1889                     | ExprKind::Block(Block { expr: None, .. }, _)
1890                     | ExprKind::Loop(..) => (),
1891
1892                     // Only consider the final expression.
1893                     ExprKind::Block(Block { expr: Some(expr), .. }, _) => self.visit_expr(expr),
1894
1895                     _ => walk_expr(self, expr),
1896                 }
1897             }
1898         }
1899
1900         let mut v = V { cx, res: false };
1901         v.visit_expr(expr);
1902         v.res
1903     }
1904
1905     fn find_sugg_for_if_let<'tcx>(
1906         cx: &LateContext<'tcx>,
1907         expr: &'tcx Expr<'_>,
1908         op: &'tcx Expr<'tcx>,
1909         arm: &Arm<'_>,
1910         keyword: &'static str,
1911         has_else: bool,
1912     ) {
1913         // also look inside refs
1914         let mut kind = &arm.pat.kind;
1915         // if we have &None for example, peel it so we can detect "if let None = x"
1916         if let PatKind::Ref(inner, _mutability) = kind {
1917             kind = &inner.kind;
1918         }
1919         let op_ty = cx.typeck_results().expr_ty(op);
1920         // Determine which function should be used, and the type contained by the corresponding
1921         // variant.
1922         let (good_method, inner_ty) = match kind {
1923             PatKind::TupleStruct(ref path, [sub_pat], _) => {
1924                 if let PatKind::Wild = sub_pat.kind {
1925                     if is_lang_ctor(cx, path, ResultOk) {
1926                         ("is_ok()", try_get_generic_ty(op_ty, 0).unwrap_or(op_ty))
1927                     } else if is_lang_ctor(cx, path, ResultErr) {
1928                         ("is_err()", try_get_generic_ty(op_ty, 1).unwrap_or(op_ty))
1929                     } else if is_lang_ctor(cx, path, OptionSome) {
1930                         ("is_some()", op_ty)
1931                     } else if is_lang_ctor(cx, path, PollReady) {
1932                         ("is_ready()", op_ty)
1933                     } else if is_qpath_def_path(cx, path, sub_pat.hir_id, &paths::IPADDR_V4) {
1934                         ("is_ipv4()", op_ty)
1935                     } else if is_qpath_def_path(cx, path, sub_pat.hir_id, &paths::IPADDR_V6) {
1936                         ("is_ipv6()", op_ty)
1937                     } else {
1938                         return;
1939                     }
1940                 } else {
1941                     return;
1942                 }
1943             },
1944             PatKind::Path(ref path) => {
1945                 let method = if is_lang_ctor(cx, path, OptionNone) {
1946                     "is_none()"
1947                 } else if is_lang_ctor(cx, path, PollPending) {
1948                     "is_pending()"
1949                 } else {
1950                     return;
1951                 };
1952                 // `None` and `Pending` don't have an inner type.
1953                 (method, cx.tcx.types.unit)
1954             },
1955             _ => return,
1956         };
1957
1958         // If this is the last expression in a block or there is an else clause then the whole
1959         // type needs to be considered, not just the inner type of the branch being matched on.
1960         // Note the last expression in a block is dropped after all local bindings.
1961         let check_ty = if has_else
1962             || (keyword == "if" && matches!(cx.tcx.hir().parent_iter(expr.hir_id).next(), Some((_, Node::Block(..)))))
1963         {
1964             op_ty
1965         } else {
1966             inner_ty
1967         };
1968
1969         // All temporaries created in the scrutinee expression are dropped at the same time as the
1970         // scrutinee would be, so they have to be considered as well.
1971         // e.g. in `if let Some(x) = foo.lock().unwrap().baz.as_ref() { .. }` the lock will be held
1972         // for the duration if body.
1973         let needs_drop = type_needs_ordered_drop(cx, check_ty) || temporaries_need_ordered_drop(cx, op);
1974
1975         // check that `while_let_on_iterator` lint does not trigger
1976         if_chain! {
1977             if keyword == "while";
1978             if let ExprKind::MethodCall(method_path, _, _, _) = op.kind;
1979             if method_path.ident.name == sym::next;
1980             if is_trait_method(cx, op, sym::Iterator);
1981             then {
1982                 return;
1983             }
1984         }
1985
1986         let result_expr = match &op.kind {
1987             ExprKind::AddrOf(_, _, borrowed) => borrowed,
1988             _ => op,
1989         };
1990         span_lint_and_then(
1991             cx,
1992             REDUNDANT_PATTERN_MATCHING,
1993             arm.pat.span,
1994             &format!("redundant pattern matching, consider using `{}`", good_method),
1995             |diag| {
1996                 // while let ... = ... { ... }
1997                 // ^^^^^^^^^^^^^^^^^^^^^^^^^^^
1998                 let expr_span = expr.span;
1999
2000                 // while let ... = ... { ... }
2001                 //                 ^^^
2002                 let op_span = result_expr.span.source_callsite();
2003
2004                 // while let ... = ... { ... }
2005                 // ^^^^^^^^^^^^^^^^^^^
2006                 let span = expr_span.until(op_span.shrink_to_hi());
2007
2008                 let mut app = if needs_drop {
2009                     Applicability::MaybeIncorrect
2010                 } else {
2011                     Applicability::MachineApplicable
2012                 };
2013                 let sugg = snippet_with_applicability(cx, op_span, "_", &mut app);
2014
2015                 diag.span_suggestion(span, "try this", format!("{} {}.{}", keyword, sugg, good_method), app);
2016
2017                 if needs_drop {
2018                     diag.note("this will change drop order of the result, as well as all temporaries");
2019                     diag.note("add `#[allow(clippy::redundant_pattern_matching)]` if this is important");
2020                 }
2021             },
2022         );
2023     }
2024
2025     fn find_sugg_for_match<'tcx>(cx: &LateContext<'tcx>, expr: &'tcx Expr<'_>, op: &Expr<'_>, arms: &[Arm<'_>]) {
2026         if arms.len() == 2 {
2027             let node_pair = (&arms[0].pat.kind, &arms[1].pat.kind);
2028
2029             let found_good_method = match node_pair {
2030                 (
2031                     PatKind::TupleStruct(ref path_left, patterns_left, _),
2032                     PatKind::TupleStruct(ref path_right, patterns_right, _),
2033                 ) if patterns_left.len() == 1 && patterns_right.len() == 1 => {
2034                     if let (PatKind::Wild, PatKind::Wild) = (&patterns_left[0].kind, &patterns_right[0].kind) {
2035                         find_good_method_for_match(
2036                             cx,
2037                             arms,
2038                             path_left,
2039                             path_right,
2040                             &paths::RESULT_OK,
2041                             &paths::RESULT_ERR,
2042                             "is_ok()",
2043                             "is_err()",
2044                         )
2045                         .or_else(|| {
2046                             find_good_method_for_match(
2047                                 cx,
2048                                 arms,
2049                                 path_left,
2050                                 path_right,
2051                                 &paths::IPADDR_V4,
2052                                 &paths::IPADDR_V6,
2053                                 "is_ipv4()",
2054                                 "is_ipv6()",
2055                             )
2056                         })
2057                     } else {
2058                         None
2059                     }
2060                 },
2061                 (PatKind::TupleStruct(ref path_left, patterns, _), PatKind::Path(ref path_right))
2062                 | (PatKind::Path(ref path_left), PatKind::TupleStruct(ref path_right, patterns, _))
2063                     if patterns.len() == 1 =>
2064                 {
2065                     if let PatKind::Wild = patterns[0].kind {
2066                         find_good_method_for_match(
2067                             cx,
2068                             arms,
2069                             path_left,
2070                             path_right,
2071                             &paths::OPTION_SOME,
2072                             &paths::OPTION_NONE,
2073                             "is_some()",
2074                             "is_none()",
2075                         )
2076                         .or_else(|| {
2077                             find_good_method_for_match(
2078                                 cx,
2079                                 arms,
2080                                 path_left,
2081                                 path_right,
2082                                 &paths::POLL_READY,
2083                                 &paths::POLL_PENDING,
2084                                 "is_ready()",
2085                                 "is_pending()",
2086                             )
2087                         })
2088                     } else {
2089                         None
2090                     }
2091                 },
2092                 _ => None,
2093             };
2094
2095             if let Some(good_method) = found_good_method {
2096                 let span = expr.span.to(op.span);
2097                 let result_expr = match &op.kind {
2098                     ExprKind::AddrOf(_, _, borrowed) => borrowed,
2099                     _ => op,
2100                 };
2101                 span_lint_and_then(
2102                     cx,
2103                     REDUNDANT_PATTERN_MATCHING,
2104                     expr.span,
2105                     &format!("redundant pattern matching, consider using `{}`", good_method),
2106                     |diag| {
2107                         diag.span_suggestion(
2108                             span,
2109                             "try this",
2110                             format!("{}.{}", snippet(cx, result_expr.span, "_"), good_method),
2111                             Applicability::MaybeIncorrect, // snippet
2112                         );
2113                     },
2114                 );
2115             }
2116         }
2117     }
2118
2119     #[allow(clippy::too_many_arguments)]
2120     fn find_good_method_for_match<'a>(
2121         cx: &LateContext<'_>,
2122         arms: &[Arm<'_>],
2123         path_left: &QPath<'_>,
2124         path_right: &QPath<'_>,
2125         expected_left: &[&str],
2126         expected_right: &[&str],
2127         should_be_left: &'a str,
2128         should_be_right: &'a str,
2129     ) -> Option<&'a str> {
2130         let body_node_pair = if is_qpath_def_path(cx, path_left, arms[0].pat.hir_id, expected_left)
2131             && is_qpath_def_path(cx, path_right, arms[1].pat.hir_id, expected_right)
2132         {
2133             (&(*arms[0].body).kind, &(*arms[1].body).kind)
2134         } else if is_qpath_def_path(cx, path_right, arms[1].pat.hir_id, expected_left)
2135             && is_qpath_def_path(cx, path_left, arms[0].pat.hir_id, expected_right)
2136         {
2137             (&(*arms[1].body).kind, &(*arms[0].body).kind)
2138         } else {
2139             return None;
2140         };
2141
2142         match body_node_pair {
2143             (ExprKind::Lit(ref lit_left), ExprKind::Lit(ref lit_right)) => match (&lit_left.node, &lit_right.node) {
2144                 (LitKind::Bool(true), LitKind::Bool(false)) => Some(should_be_left),
2145                 (LitKind::Bool(false), LitKind::Bool(true)) => Some(should_be_right),
2146                 _ => None,
2147             },
2148             _ => None,
2149         }
2150     }
2151 }
2152
2153 #[test]
2154 fn test_overlapping() {
2155     use rustc_span::source_map::DUMMY_SP;
2156
2157     let sp = |s, e| SpannedRange {
2158         span: DUMMY_SP,
2159         node: (s, e),
2160     };
2161
2162     assert_eq!(None, overlapping::<u8>(&[]));
2163     assert_eq!(None, overlapping(&[sp(1, Bound::Included(4))]));
2164     assert_eq!(
2165         None,
2166         overlapping(&[sp(1, Bound::Included(4)), sp(5, Bound::Included(6))])
2167     );
2168     assert_eq!(
2169         None,
2170         overlapping(&[
2171             sp(1, Bound::Included(4)),
2172             sp(5, Bound::Included(6)),
2173             sp(10, Bound::Included(11))
2174         ],)
2175     );
2176     assert_eq!(
2177         Some((&sp(1, Bound::Included(4)), &sp(3, Bound::Included(6)))),
2178         overlapping(&[sp(1, Bound::Included(4)), sp(3, Bound::Included(6))])
2179     );
2180     assert_eq!(
2181         Some((&sp(5, Bound::Included(6)), &sp(6, Bound::Included(11)))),
2182         overlapping(&[
2183             sp(1, Bound::Included(4)),
2184             sp(5, Bound::Included(6)),
2185             sp(6, Bound::Included(11))
2186         ],)
2187     );
2188 }
2189
2190 /// Implementation of `MATCH_SAME_ARMS`.
2191 fn lint_match_arms<'tcx>(cx: &LateContext<'tcx>, expr: &Expr<'_>) {
2192     if let ExprKind::Match(_, arms, MatchSource::Normal) = expr.kind {
2193         let hash = |&(_, arm): &(usize, &Arm<'_>)| -> u64 {
2194             let mut h = SpanlessHash::new(cx);
2195             h.hash_expr(arm.body);
2196             h.finish()
2197         };
2198
2199         let eq = |&(lindex, lhs): &(usize, &Arm<'_>), &(rindex, rhs): &(usize, &Arm<'_>)| -> bool {
2200             let min_index = usize::min(lindex, rindex);
2201             let max_index = usize::max(lindex, rindex);
2202
2203             let mut local_map: HirIdMap<HirId> = HirIdMap::default();
2204             let eq_fallback = |a: &Expr<'_>, b: &Expr<'_>| {
2205                 if_chain! {
2206                     if let Some(a_id) = path_to_local(a);
2207                     if let Some(b_id) = path_to_local(b);
2208                     let entry = match local_map.entry(a_id) {
2209                         Entry::Vacant(entry) => entry,
2210                         // check if using the same bindings as before
2211                         Entry::Occupied(entry) => return *entry.get() == b_id,
2212                     };
2213                     // the names technically don't have to match; this makes the lint more conservative
2214                     if cx.tcx.hir().name(a_id) == cx.tcx.hir().name(b_id);
2215                     if TyS::same_type(cx.typeck_results().expr_ty(a), cx.typeck_results().expr_ty(b));
2216                     if pat_contains_local(lhs.pat, a_id);
2217                     if pat_contains_local(rhs.pat, b_id);
2218                     then {
2219                         entry.insert(b_id);
2220                         true
2221                     } else {
2222                         false
2223                     }
2224                 }
2225             };
2226             // Arms with a guard are ignored, those can’t always be merged together
2227             // This is also the case for arms in-between each there is an arm with a guard
2228             (min_index..=max_index).all(|index| arms[index].guard.is_none())
2229                 && SpanlessEq::new(cx)
2230                     .expr_fallback(eq_fallback)
2231                     .eq_expr(lhs.body, rhs.body)
2232                 // these checks could be removed to allow unused bindings
2233                 && bindings_eq(lhs.pat, local_map.keys().copied().collect())
2234                 && bindings_eq(rhs.pat, local_map.values().copied().collect())
2235         };
2236
2237         let indexed_arms: Vec<(usize, &Arm<'_>)> = arms.iter().enumerate().collect();
2238         for (&(_, i), &(_, j)) in search_same(&indexed_arms, hash, eq) {
2239             span_lint_and_then(
2240                 cx,
2241                 MATCH_SAME_ARMS,
2242                 j.body.span,
2243                 "this `match` has identical arm bodies",
2244                 |diag| {
2245                     diag.span_note(i.body.span, "same as this");
2246
2247                     // Note: this does not use `span_suggestion` on purpose:
2248                     // there is no clean way
2249                     // to remove the other arm. Building a span and suggest to replace it to ""
2250                     // makes an even more confusing error message. Also in order not to make up a
2251                     // span for the whole pattern, the suggestion is only shown when there is only
2252                     // one pattern. The user should know about `|` if they are already using it…
2253
2254                     let lhs = snippet(cx, i.pat.span, "<pat1>");
2255                     let rhs = snippet(cx, j.pat.span, "<pat2>");
2256
2257                     if let PatKind::Wild = j.pat.kind {
2258                         // if the last arm is _, then i could be integrated into _
2259                         // note that i.pat cannot be _, because that would mean that we're
2260                         // hiding all the subsequent arms, and rust won't compile
2261                         diag.span_note(
2262                             i.body.span,
2263                             &format!(
2264                                 "`{}` has the same arm body as the `_` wildcard, consider removing it",
2265                                 lhs
2266                             ),
2267                         );
2268                     } else {
2269                         diag.span_help(i.pat.span, &format!("consider refactoring into `{} | {}`", lhs, rhs));
2270                     }
2271                 },
2272             );
2273         }
2274     }
2275 }
2276
2277 fn pat_contains_local(pat: &Pat<'_>, id: HirId) -> bool {
2278     let mut result = false;
2279     pat.walk_short(|p| {
2280         result |= matches!(p.kind, PatKind::Binding(_, binding_id, ..) if binding_id == id);
2281         !result
2282     });
2283     result
2284 }
2285
2286 /// Returns true if all the bindings in the `Pat` are in `ids` and vice versa
2287 fn bindings_eq(pat: &Pat<'_>, mut ids: HirIdSet) -> bool {
2288     let mut result = true;
2289     pat.each_binding_or_first(&mut |_, id, _, _| result &= ids.remove(&id));
2290     result && ids.is_empty()
2291 }