]> git.lizzy.rs Git - rust.git/blob - clippy_lints/src/needless_pass_by_value.rs
needless_pass_by_value: Whitelist RangeArgument (fixes #2357)
[rust.git] / clippy_lints / src / needless_pass_by_value.rs
1 use rustc::hir::*;
2 use rustc::hir::map::*;
3 use rustc::hir::intravisit::FnKind;
4 use rustc::lint::*;
5 use rustc::ty::{self, RegionKind, TypeFoldable};
6 use rustc::traits;
7 use rustc::middle::expr_use_visitor as euv;
8 use rustc::middle::mem_categorization as mc;
9 use syntax::abi::Abi;
10 use syntax::ast::NodeId;
11 use syntax_pos::Span;
12 use syntax::errors::DiagnosticBuilder;
13 use utils::{get_trait_def_id, implements_trait, in_macro, is_copy, is_self, match_type, multispan_sugg, paths,
14             snippet, snippet_opt, span_lint_and_then};
15 use utils::ptr::get_spans;
16 use std::collections::{HashMap, HashSet};
17 use std::borrow::Cow;
18
19 /// **What it does:** Checks for functions taking arguments by value, but not
20 /// consuming them in its
21 /// body.
22 ///
23 /// **Why is this bad?** Taking arguments by reference is more flexible and can
24 /// sometimes avoid
25 /// unnecessary allocations.
26 ///
27 /// **Known problems:**
28 /// * This lint suggests taking an argument by reference,
29 /// however sometimes it is better to let users decide the argument type
30 /// (by using `Borrow` trait, for example), depending on how the function is used.
31 ///
32 /// **Example:**
33 /// ```rust
34 /// fn foo(v: Vec<i32>) {
35 ///     assert_eq!(v.len(), 42);
36 /// }
37 /// // should be
38 /// fn foo(v: &[i32]) {
39 ///     assert_eq!(v.len(), 42);
40 /// }
41 /// ```
42 declare_lint! {
43     pub NEEDLESS_PASS_BY_VALUE,
44     Warn,
45     "functions taking arguments by value, but not consuming them in its body"
46 }
47
48 pub struct NeedlessPassByValue;
49
50 impl LintPass for NeedlessPassByValue {
51     fn get_lints(&self) -> LintArray {
52         lint_array![NEEDLESS_PASS_BY_VALUE]
53     }
54 }
55
56 macro_rules! need {
57     ($e: expr) => { if let Some(x) = $e { x } else { return; } };
58 }
59
60 impl<'a, 'tcx> LateLintPass<'a, 'tcx> for NeedlessPassByValue {
61     fn check_fn(
62         &mut self,
63         cx: &LateContext<'a, 'tcx>,
64         kind: FnKind<'tcx>,
65         decl: &'tcx FnDecl,
66         body: &'tcx Body,
67         span: Span,
68         node_id: NodeId,
69     ) {
70         if in_macro(span) {
71             return;
72         }
73
74         match kind {
75             FnKind::ItemFn(.., abi, _, attrs) => {
76                 if abi != Abi::Rust {
77                     return;
78                 }
79                 for a in attrs {
80                     if_chain! {
81                         if a.meta_item_list().is_some();
82                         if let Some(name) = a.name();
83                         if name == "proc_macro_derive";
84                         then {
85                             return;
86                         }
87                     }
88                 }
89             },
90             FnKind::Method(..) => (),
91             _ => return,
92         }
93
94         // Exclude non-inherent impls
95         if let Some(NodeItem(item)) = cx.tcx.hir.find(cx.tcx.hir.get_parent_node(node_id)) {
96             if matches!(item.node, ItemImpl(_, _, _, _, Some(_), _, _) |
97                 ItemTrait(..))
98             {
99                 return;
100             }
101         }
102
103         // Allow `Borrow` or functions to be taken by value
104         let borrow_trait = need!(get_trait_def_id(cx, &paths::BORROW_TRAIT));
105         let whitelisted_traits = [
106             need!(cx.tcx.lang_items().fn_trait()),
107             need!(cx.tcx.lang_items().fn_once_trait()),
108             need!(cx.tcx.lang_items().fn_mut_trait()),
109             need!(get_trait_def_id(cx, &paths::RANGE_ARGUMENT_TRAIT))
110         ];
111
112         let sized_trait = need!(cx.tcx.lang_items().sized_trait());
113
114         let fn_def_id = cx.tcx.hir.local_def_id(node_id);
115
116         let preds = traits::elaborate_predicates(cx.tcx, cx.param_env.caller_bounds.to_vec())
117             .filter(|p| !p.is_global())
118             .filter_map(|pred| {
119                 if let ty::Predicate::Trait(poly_trait_ref) = pred {
120                     if poly_trait_ref.def_id() == sized_trait || poly_trait_ref.skip_binder().has_escaping_regions() {
121                         return None;
122                     }
123                     Some(poly_trait_ref)
124                 } else {
125                     None
126                 }
127             })
128             .collect::<Vec<_>>();
129
130         // Collect moved variables and spans which will need dereferencings from the
131         // function body.
132         let MovedVariablesCtxt {
133             moved_vars,
134             spans_need_deref,
135             ..
136         } = {
137             let mut ctx = MovedVariablesCtxt::new(cx);
138             let region_scope_tree = &cx.tcx.region_scope_tree(fn_def_id);
139             euv::ExprUseVisitor::new(&mut ctx, cx.tcx, cx.param_env, region_scope_tree, cx.tables, None)
140                 .consume_body(body);
141             ctx
142         };
143
144         let fn_sig = cx.tcx.fn_sig(fn_def_id);
145         let fn_sig = cx.tcx.erase_late_bound_regions(&fn_sig);
146
147         for (idx, ((input, &ty), arg)) in decl.inputs
148             .iter()
149             .zip(fn_sig.inputs())
150             .zip(&body.arguments)
151             .enumerate()
152         {
153             // All spans generated from a proc-macro invocation are the same...
154             if span == input.span {
155                 return;
156             }
157
158             // Ignore `self`s.
159             if idx == 0 {
160                 if let PatKind::Binding(_, _, name, ..) = arg.pat.node {
161                     if name.node.as_str() == "self" {
162                         continue;
163                     }
164                 }
165             }
166
167             // * Exclude a type that is specifically bounded by `Borrow`.
168             // * Exclude a type whose reference also fulfills its bound.
169             //   (e.g. `std::convert::AsRef`, `serde::Serialize`)
170             let (implements_borrow_trait, all_borrowable_trait) = {
171                 let preds = preds
172                     .iter()
173                     .filter(|t| t.skip_binder().self_ty() == ty)
174                     .collect::<Vec<_>>();
175
176                 (
177                     preds.iter().any(|t| t.def_id() == borrow_trait),
178                     !preds.is_empty() && preds.iter().all(|t| {
179                         implements_trait(
180                             cx,
181                             cx.tcx.mk_imm_ref(&RegionKind::ReErased, ty),
182                             t.def_id(),
183                             &t.skip_binder().input_types().skip(1).collect::<Vec<_>>(),
184                         )
185                     }),
186                 )
187             };
188
189             if_chain! {
190                 if !is_self(arg);
191                 if !ty.is_mutable_pointer();
192                 if !is_copy(cx, ty);
193                 if !whitelisted_traits.iter().any(|&t| implements_trait(cx, ty, t, &[]));
194                 if !implements_borrow_trait;
195                 if !all_borrowable_trait;
196
197                 if let PatKind::Binding(mode, canonical_id, ..) = arg.pat.node;
198                 if !moved_vars.contains(&canonical_id);
199                 then {
200                     if mode == BindingAnnotation::Mutable || mode == BindingAnnotation::RefMut {
201                         continue;
202                     }
203
204                     // Dereference suggestion
205                     let sugg = |db: &mut DiagnosticBuilder| {
206                         if let ty::TypeVariants::TyAdt(ref def, ..) = ty.sty {
207                             if let Some(span) = cx.tcx.hir.span_if_local(def.did) {
208                                 // FIXME (#2374) Restrict this to types which can impl Copy
209                                 db.span_help(span, "consider marking this type as Copy if possible");
210                             }
211                         }
212
213                         let deref_span = spans_need_deref.get(&canonical_id);
214                         if_chain! {
215                             if match_type(cx, ty, &paths::VEC);
216                             if let Some(clone_spans) =
217                                 get_spans(cx, Some(body.id()), idx, &[("clone", ".to_owned()")]);
218                             if let TyPath(QPath::Resolved(_, ref path)) = input.node;
219                             if let Some(elem_ty) = path.segments.iter()
220                                 .find(|seg| seg.name == "Vec")
221                                 .and_then(|ps| ps.parameters.as_ref())
222                                 .map(|params| &params.types[0]);
223                             then {
224                                 let slice_ty = format!("&[{}]", snippet(cx, elem_ty.span, "_"));
225                                 db.span_suggestion(input.span,
226                                                 "consider changing the type to",
227                                                 slice_ty);
228
229                                 for (span, suggestion) in clone_spans {
230                                     db.span_suggestion(
231                                         span,
232                                         &snippet_opt(cx, span)
233                                             .map_or(
234                                                 "change the call to".into(),
235                                                 |x| Cow::from(format!("change `{}` to", x)),
236                                             ),
237                                         suggestion.into()
238                                     );
239                                 }
240
241                                 // cannot be destructured, no need for `*` suggestion
242                                 assert!(deref_span.is_none());
243                                 return;
244                             }
245                         }
246
247                         if match_type(cx, ty, &paths::STRING) {
248                             if let Some(clone_spans) =
249                                 get_spans(cx, Some(body.id()), idx, &[("clone", ".to_string()"), ("as_str", "")]) {
250                                 db.span_suggestion(input.span, "consider changing the type to", "&str".to_string());
251
252                                 for (span, suggestion) in clone_spans {
253                                     db.span_suggestion(
254                                         span,
255                                         &snippet_opt(cx, span)
256                                             .map_or(
257                                                 "change the call to".into(),
258                                                 |x| Cow::from(format!("change `{}` to", x))
259                                             ),
260                                         suggestion.into(),
261                                     );
262                                 }
263
264                                 assert!(deref_span.is_none());
265                                 return;
266                             }
267                         }
268
269                         let mut spans = vec![(input.span, format!("&{}", snippet(cx, input.span, "_")))];
270
271                         // Suggests adding `*` to dereference the added reference.
272                         if let Some(deref_span) = deref_span {
273                             spans.extend(
274                                 deref_span
275                                     .iter()
276                                     .cloned()
277                                     .map(|span| (span, format!("*{}", snippet(cx, span, "<expr>")))),
278                             );
279                             spans.sort_by_key(|&(span, _)| span);
280                         }
281                         multispan_sugg(db, "consider taking a reference instead".to_string(), spans);
282                     };
283
284                     span_lint_and_then(
285                         cx,
286                         NEEDLESS_PASS_BY_VALUE,
287                         input.span,
288                         "this argument is passed by value, but not consumed in the function body",
289                         sugg,
290                     );
291                 }
292             }
293         }
294     }
295 }
296
297 struct MovedVariablesCtxt<'a, 'tcx: 'a> {
298     cx: &'a LateContext<'a, 'tcx>,
299     moved_vars: HashSet<NodeId>,
300     /// Spans which need to be prefixed with `*` for dereferencing the
301     /// suggested additional reference.
302     spans_need_deref: HashMap<NodeId, HashSet<Span>>,
303 }
304
305 impl<'a, 'tcx> MovedVariablesCtxt<'a, 'tcx> {
306     fn new(cx: &'a LateContext<'a, 'tcx>) -> Self {
307         Self {
308             cx: cx,
309             moved_vars: HashSet::new(),
310             spans_need_deref: HashMap::new(),
311         }
312     }
313
314     fn move_common(&mut self, _consume_id: NodeId, _span: Span, cmt: mc::cmt<'tcx>) {
315         let cmt = unwrap_downcast_or_interior(cmt);
316
317         if let mc::Categorization::Local(vid) = cmt.cat {
318             self.moved_vars.insert(vid);
319         }
320     }
321
322     fn non_moving_pat(&mut self, matched_pat: &Pat, cmt: mc::cmt<'tcx>) {
323         let cmt = unwrap_downcast_or_interior(cmt);
324
325         if let mc::Categorization::Local(vid) = cmt.cat {
326             let mut id = matched_pat.id;
327             loop {
328                 let parent = self.cx.tcx.hir.get_parent_node(id);
329                 if id == parent {
330                     // no parent
331                     return;
332                 }
333                 id = parent;
334
335                 if let Some(node) = self.cx.tcx.hir.find(id) {
336                     match node {
337                         map::Node::NodeExpr(e) => {
338                             // `match` and `if let`
339                             if let ExprMatch(ref c, ..) = e.node {
340                                 self.spans_need_deref
341                                     .entry(vid)
342                                     .or_insert_with(HashSet::new)
343                                     .insert(c.span);
344                             }
345                         },
346
347                         map::Node::NodeStmt(s) => {
348                             // `let <pat> = x;`
349                             if_chain! {
350                                 if let StmtDecl(ref decl, _) = s.node;
351                                 if let DeclLocal(ref local) = decl.node;
352                                 then {
353                                     self.spans_need_deref
354                                         .entry(vid)
355                                         .or_insert_with(HashSet::new)
356                                         .insert(local.init
357                                             .as_ref()
358                                             .map(|e| e.span)
359                                             .expect("`let` stmt without init aren't caught by match_pat"));
360                                 }
361                             }
362                         },
363
364                         _ => {},
365                     }
366                 }
367             }
368         }
369     }
370 }
371
372 impl<'a, 'tcx> euv::Delegate<'tcx> for MovedVariablesCtxt<'a, 'tcx> {
373     fn consume(&mut self, consume_id: NodeId, consume_span: Span, cmt: mc::cmt<'tcx>, mode: euv::ConsumeMode) {
374         if let euv::ConsumeMode::Move(_) = mode {
375             self.move_common(consume_id, consume_span, cmt);
376         }
377     }
378
379     fn matched_pat(&mut self, matched_pat: &Pat, cmt: mc::cmt<'tcx>, mode: euv::MatchMode) {
380         if let euv::MatchMode::MovingMatch = mode {
381             self.move_common(matched_pat.id, matched_pat.span, cmt);
382         } else {
383             self.non_moving_pat(matched_pat, cmt);
384         }
385     }
386
387     fn consume_pat(&mut self, consume_pat: &Pat, cmt: mc::cmt<'tcx>, mode: euv::ConsumeMode) {
388         if let euv::ConsumeMode::Move(_) = mode {
389             self.move_common(consume_pat.id, consume_pat.span, cmt);
390         }
391     }
392
393     fn borrow(&mut self, _: NodeId, _: Span, _: mc::cmt<'tcx>, _: ty::Region, _: ty::BorrowKind, _: euv::LoanCause) {}
394
395     fn mutate(&mut self, _: NodeId, _: Span, _: mc::cmt<'tcx>, _: euv::MutateMode) {}
396
397     fn decl_without_init(&mut self, _: NodeId, _: Span) {}
398 }
399
400
401 fn unwrap_downcast_or_interior(mut cmt: mc::cmt) -> mc::cmt {
402     loop {
403         match cmt.cat.clone() {
404             mc::Categorization::Downcast(c, _) | mc::Categorization::Interior(c, _) => {
405                 cmt = c;
406             },
407             _ => return cmt,
408         }
409     }
410 }