]> git.lizzy.rs Git - rust.git/blob - clippy_lints/src/ptr.rs
mechanically swap if_let_chain -> if_chain
[rust.git] / clippy_lints / src / ptr.rs
1 //! Checks for usage of  `&Vec[_]` and `&String`.
2
3 use std::borrow::Cow;
4 use rustc::hir::*;
5 use rustc::hir::map::NodeItem;
6 use rustc::lint::*;
7 use rustc::ty;
8 use syntax::ast::NodeId;
9 use syntax::codemap::Span;
10 use syntax_pos::MultiSpan;
11 use utils::{match_qpath, match_type, paths, snippet_opt, span_lint, span_lint_and_then,
12             walk_ptrs_hir_ty};
13 use utils::ptr::get_spans;
14
15 /// **What it does:** This lint checks for function arguments of type `&String`
16 /// or `&Vec` unless the references are mutable. It will also suggest you
17 /// replace `.clone()` calls with the appropriate `.to_owned()`/`to_string()`
18 /// calls.
19 ///
20 /// **Why is this bad?** Requiring the argument to be of the specific size
21 /// makes the function less useful for no benefit; slices in the form of `&[T]`
22 /// or `&str` usually suffice and can be obtained from other types, too.
23 ///
24 /// **Known problems:** The lint does not follow data. So if you have an
25 /// argument `x` and write `let y = x; y.clone()` the lint will not suggest
26 /// changing that `.clone()` to `.to_owned()`.
27 ///
28 /// Other functions called from this function taking a `&String` or `&Vec`
29 /// argument may also fail to compile if you change the argument. Applying
30 /// this lint on them will fix the problem, but they may be in other crates.
31 ///
32 /// Also there may be `fn(&Vec)`-typed references pointing to your function.
33 /// If you have them, you will get a compiler error after applying this lint's
34 /// suggestions. You then have the choice to undo your changes or change the
35 /// type of the reference.
36 ///
37 /// Note that if the function is part of your public interface, there may be
38 /// other crates referencing it you may not be aware. Carefully deprecate the
39 /// function before applying the lint suggestions in this case.
40 ///
41 /// **Example:**
42 /// ```rust
43 /// fn foo(&Vec<u32>) { .. }
44 /// ```
45 declare_lint! {
46     pub PTR_ARG,
47     Warn,
48     "fn arguments of the type `&Vec<...>` or `&String`, suggesting to use `&[...]` or `&str` \
49      instead, respectively"
50 }
51
52 /// **What it does:** This lint checks for equality comparisons with `ptr::null`
53 ///
54 /// **Why is this bad?** It's easier and more readable to use the inherent
55 /// `.is_null()`
56 /// method instead
57 ///
58 /// **Known problems:** None.
59 ///
60 /// **Example:**
61 /// ```rust
62 /// if x == ptr::null { .. }
63 /// ```
64 declare_lint! {
65     pub CMP_NULL,
66     Warn,
67     "comparing a pointer to a null pointer, suggesting to use `.is_null()` instead."
68 }
69
70 /// **What it does:** This lint checks for functions that take immutable
71 /// references and return
72 /// mutable ones.
73 ///
74 /// **Why is this bad?** This is trivially unsound, as one can create two
75 /// mutable references
76 /// from the same (immutable!) source. This
77 /// [error](https://github.com/rust-lang/rust/issues/39465)
78 /// actually lead to an interim Rust release 1.15.1.
79 ///
80 /// **Known problems:** To be on the conservative side, if there's at least one
81 /// mutable reference
82 /// with the output lifetime, this lint will not trigger. In practice, this
83 /// case is unlikely anyway.
84 ///
85 /// **Example:**
86 /// ```rust
87 /// fn foo(&Foo) -> &mut Bar { .. }
88 /// ```
89 declare_lint! {
90     pub MUT_FROM_REF,
91     Warn,
92     "fns that create mutable refs from immutable ref args"
93 }
94
95 #[derive(Copy, Clone)]
96 pub struct PointerPass;
97
98 impl LintPass for PointerPass {
99     fn get_lints(&self) -> LintArray {
100         lint_array!(PTR_ARG, CMP_NULL, MUT_FROM_REF)
101     }
102 }
103
104 impl<'a, 'tcx> LateLintPass<'a, 'tcx> for PointerPass {
105     fn check_item(&mut self, cx: &LateContext<'a, 'tcx>, item: &'tcx Item) {
106         if let ItemFn(ref decl, _, _, _, _, body_id) = item.node {
107             check_fn(cx, decl, item.id, Some(body_id));
108         }
109     }
110
111     fn check_impl_item(&mut self, cx: &LateContext<'a, 'tcx>, item: &'tcx ImplItem) {
112         if let ImplItemKind::Method(ref sig, body_id) = item.node {
113             if let Some(NodeItem(it)) = cx.tcx.hir.find(cx.tcx.hir.get_parent(item.id)) {
114                 if let ItemImpl(_, _, _, _, Some(_), _, _) = it.node {
115                     return; // ignore trait impls
116                 }
117             }
118             check_fn(cx, &sig.decl, item.id, Some(body_id));
119         }
120     }
121
122     fn check_trait_item(&mut self, cx: &LateContext<'a, 'tcx>, item: &'tcx TraitItem) {
123         if let TraitItemKind::Method(ref sig, ref trait_method) = item.node {
124             let body_id = if let TraitMethod::Provided(b) = *trait_method { Some(b) } else { None };
125             check_fn(cx, &sig.decl, item.id, body_id);
126         }
127     }
128
129     fn check_expr(&mut self, cx: &LateContext<'a, 'tcx>, expr: &'tcx Expr) {
130         if let ExprBinary(ref op, ref l, ref r) = expr.node {
131             if (op.node == BiEq || op.node == BiNe) && (is_null_path(l) || is_null_path(r)) {
132                 span_lint(
133                     cx,
134                     CMP_NULL,
135                     expr.span,
136                     "Comparing with null is better expressed by the .is_null() method",
137                 );
138             }
139         }
140     }
141 }
142
143 fn check_fn(cx: &LateContext, decl: &FnDecl, fn_id: NodeId, opt_body_id: Option<BodyId>) {
144     let fn_def_id = cx.tcx.hir.local_def_id(fn_id);
145     let sig = cx.tcx.fn_sig(fn_def_id);
146     let fn_ty = sig.skip_binder();
147
148     for (idx, (arg, ty)) in decl.inputs.iter().zip(fn_ty.inputs()).enumerate() {
149         if let ty::TyRef(
150             _,
151             ty::TypeAndMut {
152                 ty,
153                 mutbl: MutImmutable,
154             },
155         ) = ty.sty
156         {
157             if match_type(cx, ty, &paths::VEC) {
158                 let mut ty_snippet = None;
159                 if_chain! {
160                     if let TyPath(QPath::Resolved(_, ref path)) = walk_ptrs_hir_ty(arg).node;
161                     if let Some(&PathSegment{parameters: Some(ref parameters), ..}) = path.segments.last();
162                     if parameters.types.len() == 1;
163                     then {
164                         ty_snippet = snippet_opt(cx, parameters.types[0].span);
165                     }
166                 };
167                 if let Some(spans) = get_spans(cx, opt_body_id, idx, &[("clone", ".to_owned()")]) {
168                     span_lint_and_then(
169                         cx,
170                         PTR_ARG,
171                         arg.span,
172                         "writing `&Vec<_>` instead of `&[_]` involves one more reference and cannot be used \
173                          with non-Vec-based slices.",
174                         |db| {
175                             if let Some(ref snippet) = ty_snippet {
176                                 db.span_suggestion(arg.span,
177                                                    "change this to",
178                                                    format!("&[{}]", snippet));
179                             }
180                             for (clonespan, suggestion) in spans {
181                                 db.span_suggestion(clonespan,
182                                                    &snippet_opt(cx, clonespan).map_or("change the call to".into(),
183                                                         |x| Cow::Owned(format!("change `{}` to", x))),
184                                                    suggestion.into());
185                             }
186                         }
187                     );
188                 }
189             } else if match_type(cx, ty, &paths::STRING) {
190                 if let Some(spans) = get_spans(cx, opt_body_id, idx, &[("clone", ".to_string()"), ("as_str", "")]) {
191                     span_lint_and_then(
192                         cx,
193                         PTR_ARG,
194                         arg.span,
195                         "writing `&String` instead of `&str` involves a new object where a slice will do.",
196                         |db| {
197                             db.span_suggestion(arg.span,
198                                                "change this to",
199                                                "&str".into());
200                             for (clonespan, suggestion) in spans {
201                                 db.span_suggestion_short(clonespan,
202                                                    &snippet_opt(cx, clonespan).map_or("change the call to".into(),
203                                                         |x| Cow::Owned(format!("change `{}` to", x))),
204                                                    suggestion.into());
205                             }
206                         }
207                     );
208                 }
209             }
210         }
211     }
212
213     if let FunctionRetTy::Return(ref ty) = decl.output {
214         if let Some((out, MutMutable, _)) = get_rptr_lm(ty) {
215             let mut immutables = vec![];
216             for (_, ref mutbl, ref argspan) in decl.inputs
217                 .iter()
218                 .filter_map(|ty| get_rptr_lm(ty))
219                 .filter(|&(lt, _, _)| lt.name == out.name)
220             {
221                 if *mutbl == MutMutable {
222                     return;
223                 }
224                 immutables.push(*argspan);
225             }
226             if immutables.is_empty() {
227                 return;
228             }
229             span_lint_and_then(cx, MUT_FROM_REF, ty.span, "mutable borrow from immutable input(s)", |db| {
230                 let ms = MultiSpan::from_spans(immutables);
231                 db.span_note(ms, "immutable borrow here");
232             });
233         }
234     }
235 }
236
237 fn get_rptr_lm(ty: &Ty) -> Option<(&Lifetime, Mutability, Span)> {
238     if let Ty_::TyRptr(ref lt, ref m) = ty.node {
239         Some((lt, m.mutbl, ty.span))
240     } else {
241         None
242     }
243 }
244
245 fn is_null_path(expr: &Expr) -> bool {
246     if let ExprCall(ref pathexp, ref args) = expr.node {
247         if args.is_empty() {
248             if let ExprPath(ref path) = pathexp.node {
249                 return match_qpath(path, &paths::PTR_NULL) || match_qpath(path, &paths::PTR_NULL_MUT);
250             }
251         }
252     }
253     false
254 }