]> git.lizzy.rs Git - rust.git/blob - src/tools/clippy/clippy_lints/src/unnested_or_patterns.rs
Auto merge of #91599 - RalfJung:miri, r=RalfJung
[rust.git] / src / tools / clippy / clippy_lints / src / unnested_or_patterns.rs
1 #![allow(clippy::wildcard_imports, clippy::enum_glob_use)]
2
3 use clippy_utils::ast_utils::{eq_field_pat, eq_id, eq_maybe_qself, eq_pat, eq_path};
4 use clippy_utils::diagnostics::span_lint_and_then;
5 use clippy_utils::{meets_msrv, msrvs, over};
6 use rustc_ast::mut_visit::*;
7 use rustc_ast::ptr::P;
8 use rustc_ast::{self as ast, Pat, PatKind, PatKind::*, DUMMY_NODE_ID};
9 use rustc_ast_pretty::pprust;
10 use rustc_errors::Applicability;
11 use rustc_lint::{EarlyContext, EarlyLintPass};
12 use rustc_semver::RustcVersion;
13 use rustc_session::{declare_tool_lint, impl_lint_pass};
14 use rustc_span::DUMMY_SP;
15
16 use std::cell::Cell;
17 use std::mem;
18
19 declare_clippy_lint! {
20     /// ### What it does
21     /// Checks for unnested or-patterns, e.g., `Some(0) | Some(2)` and
22     /// suggests replacing the pattern with a nested one, `Some(0 | 2)`.
23     ///
24     /// Another way to think of this is that it rewrites patterns in
25     /// *disjunctive normal form (DNF)* into *conjunctive normal form (CNF)*.
26     ///
27     /// ### Why is this bad?
28     /// In the example above, `Some` is repeated, which unncessarily complicates the pattern.
29     ///
30     /// ### Example
31     /// ```rust
32     /// fn main() {
33     ///     if let Some(0) | Some(2) = Some(0) {}
34     /// }
35     /// ```
36     /// Use instead:
37     /// ```rust
38     /// fn main() {
39     ///     if let Some(0 | 2) = Some(0) {}
40     /// }
41     /// ```
42     #[clippy::version = "1.46.0"]
43     pub UNNESTED_OR_PATTERNS,
44     pedantic,
45     "unnested or-patterns, e.g., `Foo(Bar) | Foo(Baz) instead of `Foo(Bar | Baz)`"
46 }
47
48 #[derive(Clone, Copy)]
49 pub struct UnnestedOrPatterns {
50     msrv: Option<RustcVersion>,
51 }
52
53 impl UnnestedOrPatterns {
54     #[must_use]
55     pub fn new(msrv: Option<RustcVersion>) -> Self {
56         Self { msrv }
57     }
58 }
59
60 impl_lint_pass!(UnnestedOrPatterns => [UNNESTED_OR_PATTERNS]);
61
62 impl EarlyLintPass for UnnestedOrPatterns {
63     fn check_arm(&mut self, cx: &EarlyContext<'_>, a: &ast::Arm) {
64         if meets_msrv(self.msrv.as_ref(), &msrvs::OR_PATTERNS) {
65             lint_unnested_or_patterns(cx, &a.pat);
66         }
67     }
68
69     fn check_expr(&mut self, cx: &EarlyContext<'_>, e: &ast::Expr) {
70         if meets_msrv(self.msrv.as_ref(), &msrvs::OR_PATTERNS) {
71             if let ast::ExprKind::Let(pat, _, _) = &e.kind {
72                 lint_unnested_or_patterns(cx, pat);
73             }
74         }
75     }
76
77     fn check_param(&mut self, cx: &EarlyContext<'_>, p: &ast::Param) {
78         if meets_msrv(self.msrv.as_ref(), &msrvs::OR_PATTERNS) {
79             lint_unnested_or_patterns(cx, &p.pat);
80         }
81     }
82
83     fn check_local(&mut self, cx: &EarlyContext<'_>, l: &ast::Local) {
84         if meets_msrv(self.msrv.as_ref(), &msrvs::OR_PATTERNS) {
85             lint_unnested_or_patterns(cx, &l.pat);
86         }
87     }
88
89     extract_msrv_attr!(EarlyContext);
90 }
91
92 fn lint_unnested_or_patterns(cx: &EarlyContext<'_>, pat: &Pat) {
93     if let Ident(.., None) | Lit(_) | Wild | Path(..) | Range(..) | Rest | MacCall(_) = pat.kind {
94         // This is a leaf pattern, so cloning is unprofitable.
95         return;
96     }
97
98     let mut pat = P(pat.clone());
99
100     // Nix all the paren patterns everywhere so that they aren't in our way.
101     remove_all_parens(&mut pat);
102
103     // Transform all unnested or-patterns into nested ones, and if there were none, quit.
104     if !unnest_or_patterns(&mut pat) {
105         return;
106     }
107
108     span_lint_and_then(cx, UNNESTED_OR_PATTERNS, pat.span, "unnested or-patterns", |db| {
109         insert_necessary_parens(&mut pat);
110         db.span_suggestion_verbose(
111             pat.span,
112             "nest the patterns",
113             pprust::pat_to_string(&pat),
114             Applicability::MachineApplicable,
115         );
116     });
117 }
118
119 /// Remove all `(p)` patterns in `pat`.
120 fn remove_all_parens(pat: &mut P<Pat>) {
121     struct Visitor;
122     impl MutVisitor for Visitor {
123         fn visit_pat(&mut self, pat: &mut P<Pat>) {
124             noop_visit_pat(pat, self);
125             let inner = match &mut pat.kind {
126                 Paren(i) => mem::replace(&mut i.kind, Wild),
127                 _ => return,
128             };
129             pat.kind = inner;
130         }
131     }
132     Visitor.visit_pat(pat);
133 }
134
135 /// Insert parens where necessary according to Rust's precedence rules for patterns.
136 fn insert_necessary_parens(pat: &mut P<Pat>) {
137     struct Visitor;
138     impl MutVisitor for Visitor {
139         fn visit_pat(&mut self, pat: &mut P<Pat>) {
140             use ast::{BindingMode::*, Mutability::*};
141             noop_visit_pat(pat, self);
142             let target = match &mut pat.kind {
143                 // `i @ a | b`, `box a | b`, and `& mut? a | b`.
144                 Ident(.., Some(p)) | Box(p) | Ref(p, _) if matches!(&p.kind, Or(ps) if ps.len() > 1) => p,
145                 Ref(p, Not) if matches!(p.kind, Ident(ByValue(Mut), ..)) => p, // `&(mut x)`
146                 _ => return,
147             };
148             target.kind = Paren(P(take_pat(target)));
149         }
150     }
151     Visitor.visit_pat(pat);
152 }
153
154 /// Unnest or-patterns `p0 | ... | p1` in the pattern `pat`.
155 /// For example, this would transform `Some(0) | FOO | Some(2)` into `Some(0 | 2) | FOO`.
156 fn unnest_or_patterns(pat: &mut P<Pat>) -> bool {
157     struct Visitor {
158         changed: bool,
159     }
160     impl MutVisitor for Visitor {
161         fn visit_pat(&mut self, p: &mut P<Pat>) {
162             // This is a bottom up transformation, so recurse first.
163             noop_visit_pat(p, self);
164
165             // Don't have an or-pattern? Just quit early on.
166             let alternatives = match &mut p.kind {
167                 Or(ps) => ps,
168                 _ => return,
169             };
170
171             // Collapse or-patterns directly nested in or-patterns.
172             let mut idx = 0;
173             let mut this_level_changed = false;
174             while idx < alternatives.len() {
175                 let inner = if let Or(ps) = &mut alternatives[idx].kind {
176                     mem::take(ps)
177                 } else {
178                     idx += 1;
179                     continue;
180                 };
181                 this_level_changed = true;
182                 alternatives.splice(idx..=idx, inner);
183             }
184
185             // Focus on `p_n` and then try to transform all `p_i` where `i > n`.
186             let mut focus_idx = 0;
187             while focus_idx < alternatives.len() {
188                 this_level_changed |= transform_with_focus_on_idx(alternatives, focus_idx);
189                 focus_idx += 1;
190             }
191             self.changed |= this_level_changed;
192
193             // Deal with `Some(Some(0)) | Some(Some(1))`.
194             if this_level_changed {
195                 noop_visit_pat(p, self);
196             }
197         }
198     }
199
200     let mut visitor = Visitor { changed: false };
201     visitor.visit_pat(pat);
202     visitor.changed
203 }
204
205 /// Match `$scrutinee` against `$pat` and extract `$then` from it.
206 /// Panics if there is no match.
207 macro_rules! always_pat {
208     ($scrutinee:expr, $pat:pat => $then:expr) => {
209         match $scrutinee {
210             $pat => $then,
211             _ => unreachable!(),
212         }
213     };
214 }
215
216 /// Focus on `focus_idx` in `alternatives`,
217 /// attempting to extend it with elements of the same constructor `C`
218 /// in `alternatives[focus_idx + 1..]`.
219 fn transform_with_focus_on_idx(alternatives: &mut Vec<P<Pat>>, focus_idx: usize) -> bool {
220     // Extract the kind; we'll need to make some changes in it.
221     let mut focus_kind = mem::replace(&mut alternatives[focus_idx].kind, PatKind::Wild);
222     // We'll focus on `alternatives[focus_idx]`,
223     // so we're draining from `alternatives[focus_idx + 1..]`.
224     let start = focus_idx + 1;
225
226     // We're trying to find whatever kind (~"constructor") we found in `alternatives[start..]`.
227     let changed = match &mut focus_kind {
228         // These pattern forms are "leafs" and do not have sub-patterns.
229         // Therefore they are not some form of constructor `C`,
230         // with which a pattern `C(p_0)` may be formed,
231         // which we would want to join with other `C(p_j)`s.
232         Ident(.., None) | Lit(_) | Wild | Path(..) | Range(..) | Rest | MacCall(_)
233         // Dealt with elsewhere.
234         | Or(_) | Paren(_) => false,
235         // Transform `box x | ... | box y` into `box (x | y)`.
236         //
237         // The cases below until `Slice(...)` deal with *singleton* products.
238         // These patterns have the shape `C(p)`, and not e.g., `C(p0, ..., pn)`.
239         Box(target) => extend_with_matching(
240             target, start, alternatives,
241             |k| matches!(k, Box(_)),
242             |k| always_pat!(k, Box(p) => p),
243         ),
244         // Transform `&m x | ... | &m y` into `&m (x | y)`.
245         Ref(target, m1) => extend_with_matching(
246             target, start, alternatives,
247             |k| matches!(k, Ref(_, m2) if m1 == m2), // Mutabilities must match.
248             |k| always_pat!(k, Ref(p, _) => p),
249         ),
250         // Transform `b @ p0 | ... b @ p1` into `b @ (p0 | p1)`.
251         Ident(b1, i1, Some(target)) => extend_with_matching(
252             target, start, alternatives,
253             // Binding names must match.
254             |k| matches!(k, Ident(b2, i2, Some(_)) if b1 == b2 && eq_id(*i1, *i2)),
255             |k| always_pat!(k, Ident(_, _, Some(p)) => p),
256         ),
257         // Transform `[pre, x, post] | ... | [pre, y, post]` into `[pre, x | y, post]`.
258         Slice(ps1) => extend_with_matching_product(
259             ps1, start, alternatives,
260             |k, ps1, idx| matches!(k, Slice(ps2) if eq_pre_post(ps1, ps2, idx)),
261             |k| always_pat!(k, Slice(ps) => ps),
262         ),
263         // Transform `(pre, x, post) | ... | (pre, y, post)` into `(pre, x | y, post)`.
264         Tuple(ps1) => extend_with_matching_product(
265             ps1, start, alternatives,
266             |k, ps1, idx| matches!(k, Tuple(ps2) if eq_pre_post(ps1, ps2, idx)),
267             |k| always_pat!(k, Tuple(ps) => ps),
268         ),
269         // Transform `S(pre, x, post) | ... | S(pre, y, post)` into `S(pre, x | y, post)`.
270         TupleStruct(qself1, path1, ps1) => extend_with_matching_product(
271             ps1, start, alternatives,
272             |k, ps1, idx| matches!(
273                 k,
274                 TupleStruct(qself2, path2, ps2)
275                     if eq_maybe_qself(qself1, qself2) && eq_path(path1, path2) && eq_pre_post(ps1, ps2, idx)
276             ),
277             |k| always_pat!(k, TupleStruct(_, _, ps) => ps),
278         ),
279         // Transform a record pattern `S { fp_0, ..., fp_n }`.
280         Struct(qself1, path1, fps1, rest1) => extend_with_struct_pat(qself1, path1, fps1, *rest1, start, alternatives),
281     };
282
283     alternatives[focus_idx].kind = focus_kind;
284     changed
285 }
286
287 /// Here we focusing on a record pattern `S { fp_0, ..., fp_n }`.
288 /// In particular, for a record pattern, the order in which the field patterns is irrelevant.
289 /// So when we fixate on some `ident_k: pat_k`, we try to find `ident_k` in the other pattern
290 /// and check that all `fp_i` where `i ∈ ((0...n) \ k)` between two patterns are equal.
291 fn extend_with_struct_pat(
292     qself1: &Option<ast::QSelf>,
293     path1: &ast::Path,
294     fps1: &mut Vec<ast::PatField>,
295     rest1: bool,
296     start: usize,
297     alternatives: &mut Vec<P<Pat>>,
298 ) -> bool {
299     (0..fps1.len()).any(|idx| {
300         let pos_in_2 = Cell::new(None); // The element `k`.
301         let tail_or = drain_matching(
302             start,
303             alternatives,
304             |k| {
305                 matches!(k, Struct(qself2, path2, fps2, rest2)
306                 if rest1 == *rest2 // If one struct pattern has `..` so must the other.
307                 && eq_maybe_qself(qself1, qself2)
308                 && eq_path(path1, path2)
309                 && fps1.len() == fps2.len()
310                 && fps1.iter().enumerate().all(|(idx_1, fp1)| {
311                     if idx_1 == idx {
312                         // In the case of `k`, we merely require identical field names
313                         // so that we will transform into `ident_k: p1_k | p2_k`.
314                         let pos = fps2.iter().position(|fp2| eq_id(fp1.ident, fp2.ident));
315                         pos_in_2.set(pos);
316                         pos.is_some()
317                     } else {
318                         fps2.iter().any(|fp2| eq_field_pat(fp1, fp2))
319                     }
320                 }))
321             },
322             // Extract `p2_k`.
323             |k| always_pat!(k, Struct(_, _, mut fps, _) => fps.swap_remove(pos_in_2.take().unwrap()).pat),
324         );
325         extend_with_tail_or(&mut fps1[idx].pat, tail_or)
326     })
327 }
328
329 /// Like `extend_with_matching` but for products with > 1 factor, e.g., `C(p_0, ..., p_n)`.
330 /// Here, the idea is that we fixate on some `p_k` in `C`,
331 /// allowing it to vary between two `targets` and `ps2` (returned by `extract`),
332 /// while also requiring `ps1[..n] ~ ps2[..n]` (pre) and `ps1[n + 1..] ~ ps2[n + 1..]` (post),
333 /// where `~` denotes semantic equality.
334 fn extend_with_matching_product(
335     targets: &mut Vec<P<Pat>>,
336     start: usize,
337     alternatives: &mut Vec<P<Pat>>,
338     predicate: impl Fn(&PatKind, &[P<Pat>], usize) -> bool,
339     extract: impl Fn(PatKind) -> Vec<P<Pat>>,
340 ) -> bool {
341     (0..targets.len()).any(|idx| {
342         let tail_or = drain_matching(
343             start,
344             alternatives,
345             |k| predicate(k, targets, idx),
346             |k| extract(k).swap_remove(idx),
347         );
348         extend_with_tail_or(&mut targets[idx], tail_or)
349     })
350 }
351
352 /// Extract the pattern from the given one and replace it with `Wild`.
353 /// This is meant for temporarily swapping out the pattern for manipulation.
354 fn take_pat(from: &mut Pat) -> Pat {
355     let dummy = Pat {
356         id: DUMMY_NODE_ID,
357         kind: Wild,
358         span: DUMMY_SP,
359         tokens: None,
360     };
361     mem::replace(from, dummy)
362 }
363
364 /// Extend `target` as an or-pattern with the alternatives
365 /// in `tail_or` if there are any and return if there were.
366 fn extend_with_tail_or(target: &mut Pat, tail_or: Vec<P<Pat>>) -> bool {
367     fn extend(target: &mut Pat, mut tail_or: Vec<P<Pat>>) {
368         match target {
369             // On an existing or-pattern in the target, append to it.
370             Pat { kind: Or(ps), .. } => ps.append(&mut tail_or),
371             // Otherwise convert the target to an or-pattern.
372             target => {
373                 let mut init_or = vec![P(take_pat(target))];
374                 init_or.append(&mut tail_or);
375                 target.kind = Or(init_or);
376             },
377         }
378     }
379
380     let changed = !tail_or.is_empty();
381     if changed {
382         // Extend the target.
383         extend(target, tail_or);
384     }
385     changed
386 }
387
388 // Extract all inner patterns in `alternatives` matching our `predicate`.
389 // Only elements beginning with `start` are considered for extraction.
390 fn drain_matching(
391     start: usize,
392     alternatives: &mut Vec<P<Pat>>,
393     predicate: impl Fn(&PatKind) -> bool,
394     extract: impl Fn(PatKind) -> P<Pat>,
395 ) -> Vec<P<Pat>> {
396     let mut tail_or = vec![];
397     let mut idx = 0;
398     for pat in alternatives.drain_filter(|p| {
399         // Check if we should extract, but only if `idx >= start`.
400         idx += 1;
401         idx > start && predicate(&p.kind)
402     }) {
403         tail_or.push(extract(pat.into_inner().kind));
404     }
405     tail_or
406 }
407
408 fn extend_with_matching(
409     target: &mut Pat,
410     start: usize,
411     alternatives: &mut Vec<P<Pat>>,
412     predicate: impl Fn(&PatKind) -> bool,
413     extract: impl Fn(PatKind) -> P<Pat>,
414 ) -> bool {
415     extend_with_tail_or(target, drain_matching(start, alternatives, predicate, extract))
416 }
417
418 /// Are the patterns in `ps1` and `ps2` equal save for `ps1[idx]` compared to `ps2[idx]`?
419 fn eq_pre_post(ps1: &[P<Pat>], ps2: &[P<Pat>], idx: usize) -> bool {
420     ps1.len() == ps2.len()
421         && ps1[idx].is_rest() == ps2[idx].is_rest() // Avoid `[x, ..] | [x, 0]` => `[x, .. | 0]`.
422         && over(&ps1[..idx], &ps2[..idx], |l, r| eq_pat(l, r))
423         && over(&ps1[idx + 1..], &ps2[idx + 1..], |l, r| eq_pat(l, r))
424 }