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