]> git.lizzy.rs Git - rust.git/blob - clippy_lints/src/shadow.rs
Auto merge of #4087 - phansch:move_tests, r=matthiaskrgr
[rust.git] / clippy_lints / src / shadow.rs
1 use crate::reexport::*;
2 use crate::utils::{contains_name, higher, iter_input_pats, snippet, span_lint_and_then};
3 use rustc::hir::intravisit::FnKind;
4 use rustc::hir::*;
5 use rustc::lint::{in_external_macro, LateContext, LateLintPass, LintArray, LintContext, LintPass};
6 use rustc::ty;
7 use rustc::{declare_lint_pass, declare_tool_lint};
8 use syntax::source_map::Span;
9
10 declare_clippy_lint! {
11     /// **What it does:** Checks for bindings that shadow other bindings already in
12     /// scope, while just changing reference level or mutability.
13     ///
14     /// **Why is this bad?** Not much, in fact it's a very common pattern in Rust
15     /// code. Still, some may opt to avoid it in their code base, they can set this
16     /// lint to `Warn`.
17     ///
18     /// **Known problems:** This lint, as the other shadowing related lints,
19     /// currently only catches very simple patterns.
20     ///
21     /// **Example:**
22     /// ```rust
23     /// let x = &x;
24     /// ```
25     pub SHADOW_SAME,
26     restriction,
27     "rebinding a name to itself, e.g., `let mut x = &mut x`"
28 }
29
30 declare_clippy_lint! {
31     /// **What it does:** Checks for bindings that shadow other bindings already in
32     /// scope, while reusing the original value.
33     ///
34     /// **Why is this bad?** Not too much, in fact it's a common pattern in Rust
35     /// code. Still, some argue that name shadowing like this hurts readability,
36     /// because a value may be bound to different things depending on position in
37     /// the code.
38     ///
39     /// **Known problems:** This lint, as the other shadowing related lints,
40     /// currently only catches very simple patterns.
41     ///
42     /// **Example:**
43     /// ```rust
44     /// let x = x + 1;
45     /// ```
46     /// use different variable name:
47     /// ```rust
48     /// let y = x + 1;
49     /// ```
50     pub SHADOW_REUSE,
51     restriction,
52     "rebinding a name to an expression that re-uses the original value, e.g., `let x = x + 1`"
53 }
54
55 declare_clippy_lint! {
56     /// **What it does:** Checks for bindings that shadow other bindings already in
57     /// scope, either without a initialization or with one that does not even use
58     /// the original value.
59     ///
60     /// **Why is this bad?** Name shadowing can hurt readability, especially in
61     /// large code bases, because it is easy to lose track of the active binding at
62     /// any place in the code. This can be alleviated by either giving more specific
63     /// names to bindings or introducing more scopes to contain the bindings.
64     ///
65     /// **Known problems:** This lint, as the other shadowing related lints,
66     /// currently only catches very simple patterns.
67     ///
68     /// **Example:**
69     /// ```rust
70     /// let x = y;
71     /// let x = z; // shadows the earlier binding
72     /// ```
73     pub SHADOW_UNRELATED,
74     pedantic,
75     "rebinding a name without even using the original value"
76 }
77
78 declare_lint_pass!(Shadow => [SHADOW_SAME, SHADOW_REUSE, SHADOW_UNRELATED]);
79
80 impl<'a, 'tcx> LateLintPass<'a, 'tcx> for Shadow {
81     fn check_fn(
82         &mut self,
83         cx: &LateContext<'a, 'tcx>,
84         _: FnKind<'tcx>,
85         decl: &'tcx FnDecl,
86         body: &'tcx Body,
87         _: Span,
88         _: HirId,
89     ) {
90         if in_external_macro(cx.sess(), body.value.span) {
91             return;
92         }
93         check_fn(cx, decl, body);
94     }
95 }
96
97 fn check_fn<'a, 'tcx>(cx: &LateContext<'a, 'tcx>, decl: &'tcx FnDecl, body: &'tcx Body) {
98     let mut bindings = Vec::new();
99     for arg in iter_input_pats(decl, body) {
100         if let PatKind::Binding(.., ident, _) = arg.pat.node {
101             bindings.push((ident.name, ident.span))
102         }
103     }
104     check_expr(cx, &body.value, &mut bindings);
105 }
106
107 fn check_block<'a, 'tcx>(cx: &LateContext<'a, 'tcx>, block: &'tcx Block, bindings: &mut Vec<(Name, Span)>) {
108     let len = bindings.len();
109     for stmt in &block.stmts {
110         match stmt.node {
111             StmtKind::Local(ref local) => check_local(cx, local, bindings),
112             StmtKind::Expr(ref e) | StmtKind::Semi(ref e) => check_expr(cx, e, bindings),
113             StmtKind::Item(..) => {},
114         }
115     }
116     if let Some(ref o) = block.expr {
117         check_expr(cx, o, bindings);
118     }
119     bindings.truncate(len);
120 }
121
122 fn check_local<'a, 'tcx>(cx: &LateContext<'a, 'tcx>, local: &'tcx Local, bindings: &mut Vec<(Name, Span)>) {
123     if in_external_macro(cx.sess(), local.span) {
124         return;
125     }
126     if higher::is_from_for_desugar(local) {
127         return;
128     }
129     let Local {
130         ref pat,
131         ref ty,
132         ref init,
133         span,
134         ..
135     } = *local;
136     if let Some(ref t) = *ty {
137         check_ty(cx, t, bindings)
138     }
139     if let Some(ref o) = *init {
140         check_expr(cx, o, bindings);
141         check_pat(cx, pat, Some(o), span, bindings);
142     } else {
143         check_pat(cx, pat, None, span, bindings);
144     }
145 }
146
147 fn is_binding(cx: &LateContext<'_, '_>, pat_id: HirId) -> bool {
148     let var_ty = cx.tables.node_type(pat_id);
149     match var_ty.sty {
150         ty::Adt(..) => false,
151         _ => true,
152     }
153 }
154
155 fn check_pat<'a, 'tcx>(
156     cx: &LateContext<'a, 'tcx>,
157     pat: &'tcx Pat,
158     init: Option<&'tcx Expr>,
159     span: Span,
160     bindings: &mut Vec<(Name, Span)>,
161 ) {
162     // TODO: match more stuff / destructuring
163     match pat.node {
164         PatKind::Binding(.., ident, ref inner) => {
165             let name = ident.name;
166             if is_binding(cx, pat.hir_id) {
167                 let mut new_binding = true;
168                 for tup in bindings.iter_mut() {
169                     if tup.0 == name {
170                         lint_shadow(cx, name, span, pat.span, init, tup.1);
171                         tup.1 = ident.span;
172                         new_binding = false;
173                         break;
174                     }
175                 }
176                 if new_binding {
177                     bindings.push((name, ident.span));
178                 }
179             }
180             if let Some(ref p) = *inner {
181                 check_pat(cx, p, init, span, bindings);
182             }
183         },
184         PatKind::Struct(_, ref pfields, _) => {
185             if let Some(init_struct) = init {
186                 if let ExprKind::Struct(_, ref efields, _) = init_struct.node {
187                     for field in pfields {
188                         let name = field.node.ident.name;
189                         let efield = efields
190                             .iter()
191                             .find_map(|f| if f.ident.name == name { Some(&*f.expr) } else { None });
192                         check_pat(cx, &field.node.pat, efield, span, bindings);
193                     }
194                 } else {
195                     for field in pfields {
196                         check_pat(cx, &field.node.pat, init, span, bindings);
197                     }
198                 }
199             } else {
200                 for field in pfields {
201                     check_pat(cx, &field.node.pat, None, span, bindings);
202                 }
203             }
204         },
205         PatKind::Tuple(ref inner, _) => {
206             if let Some(init_tup) = init {
207                 if let ExprKind::Tup(ref tup) = init_tup.node {
208                     for (i, p) in inner.iter().enumerate() {
209                         check_pat(cx, p, Some(&tup[i]), p.span, bindings);
210                     }
211                 } else {
212                     for p in inner {
213                         check_pat(cx, p, init, span, bindings);
214                     }
215                 }
216             } else {
217                 for p in inner {
218                     check_pat(cx, p, None, span, bindings);
219                 }
220             }
221         },
222         PatKind::Box(ref inner) => {
223             if let Some(initp) = init {
224                 if let ExprKind::Box(ref inner_init) = initp.node {
225                     check_pat(cx, inner, Some(&**inner_init), span, bindings);
226                 } else {
227                     check_pat(cx, inner, init, span, bindings);
228                 }
229             } else {
230                 check_pat(cx, inner, init, span, bindings);
231             }
232         },
233         PatKind::Ref(ref inner, _) => check_pat(cx, inner, init, span, bindings),
234         // PatVec(Vec<P<Pat>>, Option<P<Pat>>, Vec<P<Pat>>),
235         _ => (),
236     }
237 }
238
239 fn lint_shadow<'a, 'tcx: 'a>(
240     cx: &LateContext<'a, 'tcx>,
241     name: Name,
242     span: Span,
243     pattern_span: Span,
244     init: Option<&'tcx Expr>,
245     prev_span: Span,
246 ) {
247     if let Some(expr) = init {
248         if is_self_shadow(name, expr) {
249             span_lint_and_then(
250                 cx,
251                 SHADOW_SAME,
252                 span,
253                 &format!(
254                     "`{}` is shadowed by itself in `{}`",
255                     snippet(cx, pattern_span, "_"),
256                     snippet(cx, expr.span, "..")
257                 ),
258                 |db| {
259                     db.span_note(prev_span, "previous binding is here");
260                 },
261             );
262         } else if contains_name(name, expr) {
263             span_lint_and_then(
264                 cx,
265                 SHADOW_REUSE,
266                 pattern_span,
267                 &format!(
268                     "`{}` is shadowed by `{}` which reuses the original value",
269                     snippet(cx, pattern_span, "_"),
270                     snippet(cx, expr.span, "..")
271                 ),
272                 |db| {
273                     db.span_note(expr.span, "initialization happens here");
274                     db.span_note(prev_span, "previous binding is here");
275                 },
276             );
277         } else {
278             span_lint_and_then(
279                 cx,
280                 SHADOW_UNRELATED,
281                 pattern_span,
282                 &format!(
283                     "`{}` is shadowed by `{}`",
284                     snippet(cx, pattern_span, "_"),
285                     snippet(cx, expr.span, "..")
286                 ),
287                 |db| {
288                     db.span_note(expr.span, "initialization happens here");
289                     db.span_note(prev_span, "previous binding is here");
290                 },
291             );
292         }
293     } else {
294         span_lint_and_then(
295             cx,
296             SHADOW_UNRELATED,
297             span,
298             &format!("`{}` shadows a previous declaration", snippet(cx, pattern_span, "_")),
299             |db| {
300                 db.span_note(prev_span, "previous binding is here");
301             },
302         );
303     }
304 }
305
306 fn check_expr<'a, 'tcx>(cx: &LateContext<'a, 'tcx>, expr: &'tcx Expr, bindings: &mut Vec<(Name, Span)>) {
307     if in_external_macro(cx.sess(), expr.span) {
308         return;
309     }
310     match expr.node {
311         ExprKind::Unary(_, ref e) | ExprKind::Field(ref e, _) | ExprKind::AddrOf(_, ref e) | ExprKind::Box(ref e) => {
312             check_expr(cx, e, bindings)
313         },
314         ExprKind::Block(ref block, _) | ExprKind::Loop(ref block, _, _) => check_block(cx, block, bindings),
315         // ExprKind::Call
316         // ExprKind::MethodCall
317         ExprKind::Array(ref v) | ExprKind::Tup(ref v) => {
318             for e in v {
319                 check_expr(cx, e, bindings)
320             }
321         },
322         ExprKind::While(ref cond, ref block, _) => {
323             check_expr(cx, cond, bindings);
324             check_block(cx, block, bindings);
325         },
326         ExprKind::Match(ref init, ref arms, _) => {
327             check_expr(cx, init, bindings);
328             let len = bindings.len();
329             for arm in arms {
330                 for pat in &arm.pats {
331                     check_pat(cx, pat, Some(&**init), pat.span, bindings);
332                     // This is ugly, but needed to get the right type
333                     if let Some(ref guard) = arm.guard {
334                         match guard {
335                             Guard::If(if_expr) => check_expr(cx, if_expr, bindings),
336                         }
337                     }
338                     check_expr(cx, &arm.body, bindings);
339                     bindings.truncate(len);
340                 }
341             }
342         },
343         _ => (),
344     }
345 }
346
347 fn check_ty<'a, 'tcx>(cx: &LateContext<'a, 'tcx>, ty: &'tcx Ty, bindings: &mut Vec<(Name, Span)>) {
348     match ty.node {
349         TyKind::Slice(ref sty) => check_ty(cx, sty, bindings),
350         TyKind::Array(ref fty, ref anon_const) => {
351             check_ty(cx, fty, bindings);
352             check_expr(cx, &cx.tcx.hir().body(anon_const.body).value, bindings);
353         },
354         TyKind::Ptr(MutTy { ty: ref mty, .. }) | TyKind::Rptr(_, MutTy { ty: ref mty, .. }) => {
355             check_ty(cx, mty, bindings)
356         },
357         TyKind::Tup(ref tup) => {
358             for t in tup {
359                 check_ty(cx, t, bindings)
360             }
361         },
362         TyKind::Typeof(ref anon_const) => check_expr(cx, &cx.tcx.hir().body(anon_const.body).value, bindings),
363         _ => (),
364     }
365 }
366
367 fn is_self_shadow(name: Name, expr: &Expr) -> bool {
368     match expr.node {
369         ExprKind::Box(ref inner) | ExprKind::AddrOf(_, ref inner) => is_self_shadow(name, inner),
370         ExprKind::Block(ref block, _) => {
371             block.stmts.is_empty() && block.expr.as_ref().map_or(false, |e| is_self_shadow(name, e))
372         },
373         ExprKind::Unary(op, ref inner) => (UnDeref == op) && is_self_shadow(name, inner),
374         ExprKind::Path(QPath::Resolved(_, ref path)) => path_eq_name(name, path),
375         _ => false,
376     }
377 }
378
379 fn path_eq_name(name: Name, path: &Path) -> bool {
380     !path.is_global() && path.segments.len() == 1 && path.segments[0].ident.as_str() == name.as_str()
381 }