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