]> git.lizzy.rs Git - rust.git/blob - clippy_lints/src/methods.rs
Extracting arguments to format to pass directly to panic when appropriate
[rust.git] / clippy_lints / src / methods.rs
1 use rustc::hir;
2 use rustc::lint::*;
3 use rustc::ty::{self, Ty};
4 use rustc::hir::def::Def;
5 use std::borrow::Cow;
6 use std::fmt;
7 use std::iter;
8 use syntax::ast;
9 use syntax::codemap::{Span, BytePos};
10 use crate::utils::{get_arg_name, get_trait_def_id, implements_trait, in_external_macro, in_macro, is_copy, is_self, is_self_ty,
11             iter_input_pats, last_path_segment, match_def_path, match_path, match_qpath, match_trait_method,
12             match_type, method_chain_args, match_var, return_ty, remove_blocks, same_tys, single_segment_path, snippet,
13             span_lint, span_lint_and_sugg, span_lint_and_then, span_note_and_lint, walk_ptrs_ty, walk_ptrs_ty_depth};
14 use crate::utils::paths;
15 use crate::utils::sugg;
16 use crate::consts::{constant, Constant};
17
18 #[derive(Clone)]
19 pub struct Pass;
20
21 /// **What it does:** Checks for `.unwrap()` calls on `Option`s.
22 ///
23 /// **Why is this bad?** Usually it is better to handle the `None` case, or to
24 /// at least call `.expect(_)` with a more helpful message. Still, for a lot of
25 /// quick-and-dirty code, `unwrap` is a good choice, which is why this lint is
26 /// `Allow` by default.
27 ///
28 /// **Known problems:** None.
29 ///
30 /// **Example:**
31 /// ```rust
32 /// x.unwrap()
33 /// ```
34 declare_clippy_lint! {
35     pub OPTION_UNWRAP_USED,
36     restriction,
37     "using `Option.unwrap()`, which should at least get a better message using `expect()`"
38 }
39
40 /// **What it does:** Checks for `.unwrap()` calls on `Result`s.
41 ///
42 /// **Why is this bad?** `result.unwrap()` will let the thread panic on `Err`
43 /// values. Normally, you want to implement more sophisticated error handling,
44 /// and propagate errors upwards with `try!`.
45 ///
46 /// Even if you want to panic on errors, not all `Error`s implement good
47 /// messages on display.  Therefore it may be beneficial to look at the places
48 /// where they may get displayed. Activate this lint to do just that.
49 ///
50 /// **Known problems:** None.
51 ///
52 /// **Example:**
53 /// ```rust
54 /// x.unwrap()
55 /// ```
56 declare_clippy_lint! {
57     pub RESULT_UNWRAP_USED,
58     restriction,
59     "using `Result.unwrap()`, which might be better handled"
60 }
61
62 /// **What it does:** Checks for methods that should live in a trait
63 /// implementation of a `std` trait (see [llogiq's blog
64 /// post](http://llogiq.github.io/2015/07/30/traits.html) for further
65 /// information) instead of an inherent implementation.
66 ///
67 /// **Why is this bad?** Implementing the traits improve ergonomics for users of
68 /// the code, often with very little cost. Also people seeing a `mul(...)`
69 /// method
70 /// may expect `*` to work equally, so you should have good reason to disappoint
71 /// them.
72 ///
73 /// **Known problems:** None.
74 ///
75 /// **Example:**
76 /// ```rust
77 /// struct X;
78 /// impl X {
79 ///    fn add(&self, other: &X) -> X { .. }
80 /// }
81 /// ```
82 declare_clippy_lint! {
83     pub SHOULD_IMPLEMENT_TRAIT,
84     style,
85     "defining a method that should be implementing a std trait"
86 }
87
88 /// **What it does:** Checks for methods with certain name prefixes and which
89 /// doesn't match how self is taken. The actual rules are:
90 ///
91 /// |Prefix |`self` taken          |
92 /// |-------|----------------------|
93 /// |`as_`  |`&self` or `&mut self`|
94 /// |`from_`| none                 |
95 /// |`into_`|`self`                |
96 /// |`is_`  |`&self` or none       |
97 /// |`to_`  |`&self`               |
98 ///
99 /// **Why is this bad?** Consistency breeds readability. If you follow the
100 /// conventions, your users won't be surprised that they, e.g., need to supply a
101 /// mutable reference to a `as_..` function.
102 ///
103 /// **Known problems:** None.
104 ///
105 /// **Example:**
106 /// ```rust
107 /// impl X {
108 ///     fn as_str(self) -> &str { .. }
109 /// }
110 /// ```
111 declare_clippy_lint! {
112     pub WRONG_SELF_CONVENTION,
113     style,
114     "defining a method named with an established prefix (like \"into_\") that takes \
115      `self` with the wrong convention"
116 }
117
118 /// **What it does:** This is the same as
119 /// [`wrong_self_convention`](#wrong_self_convention), but for public items.
120 ///
121 /// **Why is this bad?** See [`wrong_self_convention`](#wrong_self_convention).
122 ///
123 /// **Known problems:** Actually *renaming* the function may break clients if
124 /// the function is part of the public interface. In that case, be mindful of
125 /// the stability guarantees you've given your users.
126 ///
127 /// **Example:**
128 /// ```rust
129 /// impl X {
130 ///     pub fn as_str(self) -> &str { .. }
131 /// }
132 /// ```
133 declare_clippy_lint! {
134     pub WRONG_PUB_SELF_CONVENTION,
135     restriction,
136     "defining a public method named with an established prefix (like \"into_\") that takes \
137      `self` with the wrong convention"
138 }
139
140 /// **What it does:** Checks for usage of `ok().expect(..)`.
141 ///
142 /// **Why is this bad?** Because you usually call `expect()` on the `Result`
143 /// directly to get a better error message.
144 ///
145 /// **Known problems:** The error type needs to implement `Debug`
146 ///
147 /// **Example:**
148 /// ```rust
149 /// x.ok().expect("why did I do this again?")
150 /// ```
151 declare_clippy_lint! {
152     pub OK_EXPECT,
153     style,
154     "using `ok().expect()`, which gives worse error messages than \
155      calling `expect` directly on the Result"
156 }
157
158 /// **What it does:** Checks for usage of `_.map(_).unwrap_or(_)`.
159 ///
160 /// **Why is this bad?** Readability, this can be written more concisely as
161 /// `_.map_or(_, _)`.
162 ///
163 /// **Known problems:** The order of the arguments is not in execution order
164 ///
165 /// **Example:**
166 /// ```rust
167 /// x.map(|a| a + 1).unwrap_or(0)
168 /// ```
169 declare_clippy_lint! {
170     pub OPTION_MAP_UNWRAP_OR,
171     pedantic,
172     "using `Option.map(f).unwrap_or(a)`, which is more succinctly expressed as \
173      `map_or(a, f)`"
174 }
175
176 /// **What it does:** Checks for usage of `_.map(_).unwrap_or_else(_)`.
177 ///
178 /// **Why is this bad?** Readability, this can be written more concisely as
179 /// `_.map_or_else(_, _)`.
180 ///
181 /// **Known problems:** The order of the arguments is not in execution order.
182 ///
183 /// **Example:**
184 /// ```rust
185 /// x.map(|a| a + 1).unwrap_or_else(some_function)
186 /// ```
187 declare_clippy_lint! {
188     pub OPTION_MAP_UNWRAP_OR_ELSE,
189     pedantic,
190     "using `Option.map(f).unwrap_or_else(g)`, which is more succinctly expressed as \
191      `map_or_else(g, f)`"
192 }
193
194 /// **What it does:** Checks for usage of `result.map(_).unwrap_or_else(_)`.
195 ///
196 /// **Why is this bad?** Readability, this can be written more concisely as
197 /// `result.ok().map_or_else(_, _)`.
198 ///
199 /// **Known problems:** None.
200 ///
201 /// **Example:**
202 /// ```rust
203 /// x.map(|a| a + 1).unwrap_or_else(some_function)
204 /// ```
205 declare_clippy_lint! {
206     pub RESULT_MAP_UNWRAP_OR_ELSE,
207     pedantic,
208     "using `Result.map(f).unwrap_or_else(g)`, which is more succinctly expressed as \
209      `.ok().map_or_else(g, f)`"
210 }
211
212 /// **What it does:** Checks for usage of `_.map_or(None, _)`.
213 ///
214 /// **Why is this bad?** Readability, this can be written more concisely as
215 /// `_.and_then(_)`.
216 ///
217 /// **Known problems:** The order of the arguments is not in execution order.
218 ///
219 /// **Example:**
220 /// ```rust
221 /// opt.map_or(None, |a| a + 1)
222 /// ```
223 declare_clippy_lint! {
224     pub OPTION_MAP_OR_NONE,
225     style,
226     "using `Option.map_or(None, f)`, which is more succinctly expressed as \
227      `and_then(f)`"
228 }
229
230 /// **What it does:** Checks for usage of `_.filter(_).next()`.
231 ///
232 /// **Why is this bad?** Readability, this can be written more concisely as
233 /// `_.find(_)`.
234 ///
235 /// **Known problems:** None.
236 ///
237 /// **Example:**
238 /// ```rust
239 /// iter.filter(|x| x == 0).next()
240 /// ```
241 declare_clippy_lint! {
242     pub FILTER_NEXT,
243     complexity,
244     "using `filter(p).next()`, which is more succinctly expressed as `.find(p)`"
245 }
246
247 /// **What it does:** Checks for usage of `_.filter(_).map(_)`,
248 /// `_.filter(_).flat_map(_)`, `_.filter_map(_).flat_map(_)` and similar.
249 ///
250 /// **Why is this bad?** Readability, this can be written more concisely as a
251 /// single method call.
252 ///
253 /// **Known problems:** Often requires a condition + Option/Iterator creation
254 /// inside the closure.
255 ///
256 /// **Example:**
257 /// ```rust
258 /// iter.filter(|x| x == 0).map(|x| x * 2)
259 /// ```
260 declare_clippy_lint! {
261     pub FILTER_MAP,
262     pedantic,
263     "using combinations of `filter`, `map`, `filter_map` and `flat_map` which can \
264      usually be written as a single method call"
265 }
266
267 /// **What it does:** Checks for an iterator search (such as `find()`,
268 /// `position()`, or `rposition()`) followed by a call to `is_some()`.
269 ///
270 /// **Why is this bad?** Readability, this can be written more concisely as
271 /// `_.any(_)`.
272 ///
273 /// **Known problems:** None.
274 ///
275 /// **Example:**
276 /// ```rust
277 /// iter.find(|x| x == 0).is_some()
278 /// ```
279 declare_clippy_lint! {
280     pub SEARCH_IS_SOME,
281     complexity,
282     "using an iterator search followed by `is_some()`, which is more succinctly \
283      expressed as a call to `any()`"
284 }
285
286 /// **What it does:** Checks for usage of `.chars().next()` on a `str` to check
287 /// if it starts with a given char.
288 ///
289 /// **Why is this bad?** Readability, this can be written more concisely as
290 /// `_.starts_with(_)`.
291 ///
292 /// **Known problems:** None.
293 ///
294 /// **Example:**
295 /// ```rust
296 /// name.chars().next() == Some('_')
297 /// ```
298 declare_clippy_lint! {
299     pub CHARS_NEXT_CMP,
300     complexity,
301     "using `.chars().next()` to check if a string starts with a char"
302 }
303
304 /// **What it does:** Checks for calls to `.or(foo(..))`, `.unwrap_or(foo(..))`,
305 /// etc., and suggests to use `or_else`, `unwrap_or_else`, etc., or
306 /// `unwrap_or_default` instead.
307 ///
308 /// **Why is this bad?** The function will always be called and potentially
309 /// allocate an object acting as the default.
310 ///
311 /// **Known problems:** If the function has side-effects, not calling it will
312 /// change the semantic of the program, but you shouldn't rely on that anyway.
313 ///
314 /// **Example:**
315 /// ```rust
316 /// foo.unwrap_or(String::new())
317 /// ```
318 /// this can instead be written:
319 /// ```rust
320 /// foo.unwrap_or_else(String::new)
321 /// ```
322 /// or
323 /// ```rust
324 /// foo.unwrap_or_default()
325 /// ```
326 declare_clippy_lint! {
327     pub OR_FUN_CALL,
328     perf,
329     "using any `*or` method with a function call, which suggests `*or_else`"
330 }
331
332 /// **What it does:** Checks for calls to `.expect(&format!(...))`, `.expect(foo(..))`,
333 /// etc., and suggests to use `unwrap_or_else` instead
334 ///
335 /// **Why is this bad?** The function will always be called.
336 ///
337 /// **Known problems:** If the function has side-effects, not calling it will
338 /// change the semantic of the program, but you shouldn't rely on that anyway.
339 /// 
340 /// **Example:**
341 /// ```rust
342 /// foo.expect(&format("Err {}: {}", err_code, err_msg))
343 /// ```
344 /// or
345 /// ```rust
346 /// foo.expect(format("Err {}: {}", err_code, err_msg).as_str())
347 /// ```
348 /// this can instead be written:
349 /// ```rust
350 /// foo.unwrap_or_else(|_| panic!(&format("Err {}: {}", err_code, err_msg)))
351 /// ```
352 declare_clippy_lint! {
353     pub EXPECT_FUN_CALL,
354     perf,
355     "using any `expect` method with a function call"
356 }
357
358 /// **What it does:** Checks for usage of `.clone()` on a `Copy` type.
359 ///
360 /// **Why is this bad?** The only reason `Copy` types implement `Clone` is for
361 /// generics, not for using the `clone` method on a concrete type.
362 ///
363 /// **Known problems:** None.
364 ///
365 /// **Example:**
366 /// ```rust
367 /// 42u64.clone()
368 /// ```
369 declare_clippy_lint! {
370     pub CLONE_ON_COPY,
371     complexity,
372     "using `clone` on a `Copy` type"
373 }
374
375 /// **What it does:** Checks for usage of `.clone()` on a ref-counted pointer,
376 /// (`Rc`, `Arc`, `rc::Weak`, or `sync::Weak`), and suggests calling Clone via unified
377 /// function syntax instead (e.g. `Rc::clone(foo)`).
378 ///
379 /// **Why is this bad?**: Calling '.clone()' on an Rc, Arc, or Weak
380 /// can obscure the fact that only the pointer is being cloned, not the underlying
381 /// data.
382 ///
383 /// **Example:**
384 /// ```rust
385 /// x.clone()
386 /// ```
387 declare_clippy_lint! {
388     pub CLONE_ON_REF_PTR,
389     restriction,
390     "using 'clone' on a ref-counted pointer"
391 }
392
393 /// **What it does:** Checks for usage of `.clone()` on an `&&T`.
394 ///
395 /// **Why is this bad?** Cloning an `&&T` copies the inner `&T`, instead of
396 /// cloning the underlying `T`.
397 ///
398 /// **Known problems:** None.
399 ///
400 /// **Example:**
401 /// ```rust
402 /// fn main() {
403 ///    let x = vec![1];
404 ///    let y = &&x;
405 ///    let z = y.clone();
406 ///    println!("{:p} {:p}",*y, z); // prints out the same pointer
407 /// }
408 /// ```
409 declare_clippy_lint! {
410     pub CLONE_DOUBLE_REF,
411     correctness,
412     "using `clone` on `&&T`"
413 }
414
415 /// **What it does:** Checks for `new` not returning `Self`.
416 ///
417 /// **Why is this bad?** As a convention, `new` methods are used to make a new
418 /// instance of a type.
419 ///
420 /// **Known problems:** None.
421 ///
422 /// **Example:**
423 /// ```rust
424 /// impl Foo {
425 ///     fn new(..) -> NotAFoo {
426 ///     }
427 /// }
428 /// ```
429 declare_clippy_lint! {
430     pub NEW_RET_NO_SELF,
431     style,
432     "not returning `Self` in a `new` method"
433 }
434
435 /// **What it does:** Checks for string methods that receive a single-character
436 /// `str` as an argument, e.g. `_.split("x")`.
437 ///
438 /// **Why is this bad?** Performing these methods using a `char` is faster than
439 /// using a `str`.
440 ///
441 /// **Known problems:** Does not catch multi-byte unicode characters.
442 ///
443 /// **Example:**
444 /// `_.split("x")` could be `_.split('x')
445 declare_clippy_lint! {
446     pub SINGLE_CHAR_PATTERN,
447     perf,
448     "using a single-character str where a char could be used, e.g. \
449      `_.split(\"x\")`"
450 }
451
452 /// **What it does:** Checks for getting the inner pointer of a temporary
453 /// `CString`.
454 ///
455 /// **Why is this bad?** The inner pointer of a `CString` is only valid as long
456 /// as the `CString` is alive.
457 ///
458 /// **Known problems:** None.
459 ///
460 /// **Example:**
461 /// ```rust,ignore
462 /// let c_str = CString::new("foo").unwrap().as_ptr();
463 /// unsafe {
464 /// call_some_ffi_func(c_str);
465 /// }
466 /// ```
467 /// Here `c_str` point to a freed address. The correct use would be:
468 /// ```rust,ignore
469 /// let c_str = CString::new("foo").unwrap();
470 /// unsafe {
471 ///     call_some_ffi_func(c_str.as_ptr());
472 /// }
473 /// ```
474 declare_clippy_lint! {
475     pub TEMPORARY_CSTRING_AS_PTR,
476     correctness,
477     "getting the inner pointer of a temporary `CString`"
478 }
479
480 /// **What it does:** Checks for use of `.iter().nth()` (and the related
481 /// `.iter_mut().nth()`) on standard library types with O(1) element access.
482 ///
483 /// **Why is this bad?** `.get()` and `.get_mut()` are more efficient and more
484 /// readable.
485 ///
486 /// **Known problems:** None.
487 ///
488 /// **Example:**
489 /// ```rust
490 /// let some_vec = vec![0, 1, 2, 3];
491 /// let bad_vec = some_vec.iter().nth(3);
492 /// let bad_slice = &some_vec[..].iter().nth(3);
493 /// ```
494 /// The correct use would be:
495 /// ```rust
496 /// let some_vec = vec![0, 1, 2, 3];
497 /// let bad_vec = some_vec.get(3);
498 /// let bad_slice = &some_vec[..].get(3);
499 /// ```
500 declare_clippy_lint! {
501     pub ITER_NTH,
502     perf,
503     "using `.iter().nth()` on a standard library type with O(1) element access"
504 }
505
506 /// **What it does:** Checks for use of `.skip(x).next()` on iterators.
507 ///
508 /// **Why is this bad?** `.nth(x)` is cleaner
509 ///
510 /// **Known problems:** None.
511 ///
512 /// **Example:**
513 /// ```rust
514 /// let some_vec = vec![0, 1, 2, 3];
515 /// let bad_vec = some_vec.iter().skip(3).next();
516 /// let bad_slice = &some_vec[..].iter().skip(3).next();
517 /// ```
518 /// The correct use would be:
519 /// ```rust
520 /// let some_vec = vec![0, 1, 2, 3];
521 /// let bad_vec = some_vec.iter().nth(3);
522 /// let bad_slice = &some_vec[..].iter().nth(3);
523 /// ```
524 declare_clippy_lint! {
525     pub ITER_SKIP_NEXT,
526     style,
527     "using `.skip(x).next()` on an iterator"
528 }
529
530 /// **What it does:** Checks for use of `.get().unwrap()` (or
531 /// `.get_mut().unwrap`) on a standard library type which implements `Index`
532 ///
533 /// **Why is this bad?** Using the Index trait (`[]`) is more clear and more
534 /// concise.
535 ///
536 /// **Known problems:** None.
537 ///
538 /// **Example:**
539 /// ```rust
540 /// let some_vec = vec![0, 1, 2, 3];
541 /// let last = some_vec.get(3).unwrap();
542 /// *some_vec.get_mut(0).unwrap() = 1;
543 /// ```
544 /// The correct use would be:
545 /// ```rust
546 /// let some_vec = vec![0, 1, 2, 3];
547 /// let last = some_vec[3];
548 /// some_vec[0] = 1;
549 /// ```
550 declare_clippy_lint! {
551     pub GET_UNWRAP,
552     style,
553     "using `.get().unwrap()` or `.get_mut().unwrap()` when using `[]` would work instead"
554 }
555
556 /// **What it does:** Checks for the use of `.extend(s.chars())` where s is a
557 /// `&str` or `String`.
558 ///
559 /// **Why is this bad?** `.push_str(s)` is clearer
560 ///
561 /// **Known problems:** None.
562 ///
563 /// **Example:**
564 /// ```rust
565 /// let abc = "abc";
566 /// let def = String::from("def");
567 /// let mut s = String::new();
568 /// s.extend(abc.chars());
569 /// s.extend(def.chars());
570 /// ```
571 /// The correct use would be:
572 /// ```rust
573 /// let abc = "abc";
574 /// let def = String::from("def");
575 /// let mut s = String::new();
576 /// s.push_str(abc);
577 /// s.push_str(&def));
578 /// ```
579 declare_clippy_lint! {
580     pub STRING_EXTEND_CHARS,
581     style,
582     "using `x.extend(s.chars())` where s is a `&str` or `String`"
583 }
584
585 /// **What it does:** Checks for the use of `.cloned().collect()` on slice to
586 /// create a `Vec`.
587 ///
588 /// **Why is this bad?** `.to_vec()` is clearer
589 ///
590 /// **Known problems:** None.
591 ///
592 /// **Example:**
593 /// ```rust
594 /// let s = [1,2,3,4,5];
595 /// let s2 : Vec<isize> = s[..].iter().cloned().collect();
596 /// ```
597 /// The better use would be:
598 /// ```rust
599 /// let s = [1,2,3,4,5];
600 /// let s2 : Vec<isize> = s.to_vec();
601 /// ```
602 declare_clippy_lint! {
603     pub ITER_CLONED_COLLECT,
604     style,
605     "using `.cloned().collect()` on slice to create a `Vec`"
606 }
607
608 /// **What it does:** Checks for usage of `.chars().last()` or
609 /// `.chars().next_back()` on a `str` to check if it ends with a given char.
610 ///
611 /// **Why is this bad?** Readability, this can be written more concisely as
612 /// `_.ends_with(_)`.
613 ///
614 /// **Known problems:** None.
615 ///
616 /// **Example:**
617 /// ```rust
618 /// name.chars().last() == Some('_') || name.chars().next_back() == Some('-')
619 /// ```
620 declare_clippy_lint! {
621     pub CHARS_LAST_CMP,
622     style,
623     "using `.chars().last()` or `.chars().next_back()` to check if a string ends with a char"
624 }
625
626 /// **What it does:** Checks for usage of `.as_ref()` or `.as_mut()` where the
627 /// types before and after the call are the same.
628 ///
629 /// **Why is this bad?** The call is unnecessary.
630 ///
631 /// **Known problems:** None.
632 ///
633 /// **Example:**
634 /// ```rust
635 /// let x: &[i32] = &[1,2,3,4,5];
636 /// do_stuff(x.as_ref());
637 /// ```
638 /// The correct use would be:
639 /// ```rust
640 /// let x: &[i32] = &[1,2,3,4,5];
641 /// do_stuff(x);
642 /// ```
643 declare_clippy_lint! {
644     pub USELESS_ASREF,
645     complexity,
646     "using `as_ref` where the types before and after the call are the same"
647 }
648
649
650 /// **What it does:** Checks for using `fold` when a more succinct alternative exists.
651 /// Specifically, this checks for `fold`s which could be replaced by `any`, `all`,
652 /// `sum` or `product`.
653 ///
654 /// **Why is this bad?** Readability.
655 ///
656 /// **Known problems:** None.
657 ///
658 /// **Example:**
659 /// ```rust
660 /// let _ = (0..3).fold(false, |acc, x| acc || x > 2);
661 /// ```
662 /// This could be written as:
663 /// ```rust
664 /// let _ = (0..3).any(|x| x > 2);
665 /// ```
666 declare_clippy_lint! {
667     pub UNNECESSARY_FOLD,
668     style,
669     "using `fold` when a more succinct alternative exists"
670 }
671
672 impl LintPass for Pass {
673     fn get_lints(&self) -> LintArray {
674         lint_array!(
675             OPTION_UNWRAP_USED,
676             RESULT_UNWRAP_USED,
677             SHOULD_IMPLEMENT_TRAIT,
678             WRONG_SELF_CONVENTION,
679             WRONG_PUB_SELF_CONVENTION,
680             OK_EXPECT,
681             OPTION_MAP_UNWRAP_OR,
682             OPTION_MAP_UNWRAP_OR_ELSE,
683             RESULT_MAP_UNWRAP_OR_ELSE,
684             OPTION_MAP_OR_NONE,
685             OR_FUN_CALL,
686             EXPECT_FUN_CALL,
687             CHARS_NEXT_CMP,
688             CHARS_LAST_CMP,
689             CLONE_ON_COPY,
690             CLONE_ON_REF_PTR,
691             CLONE_DOUBLE_REF,
692             NEW_RET_NO_SELF,
693             SINGLE_CHAR_PATTERN,
694             SEARCH_IS_SOME,
695             TEMPORARY_CSTRING_AS_PTR,
696             FILTER_NEXT,
697             FILTER_MAP,
698             ITER_NTH,
699             ITER_SKIP_NEXT,
700             GET_UNWRAP,
701             STRING_EXTEND_CHARS,
702             ITER_CLONED_COLLECT,
703             USELESS_ASREF,
704             UNNECESSARY_FOLD
705         )
706     }
707 }
708
709 impl<'a, 'tcx> LateLintPass<'a, 'tcx> for Pass {
710     #[allow(cyclomatic_complexity)]
711     fn check_expr(&mut self, cx: &LateContext<'a, 'tcx>, expr: &'tcx hir::Expr) {
712         if in_macro(expr.span) {
713             return;
714         }
715
716         match expr.node {
717             hir::ExprMethodCall(ref method_call, ref method_span, ref args) => {
718                 // Chain calls
719                 // GET_UNWRAP needs to be checked before general `UNWRAP` lints
720                 if let Some(arglists) = method_chain_args(expr, &["get", "unwrap"]) {
721                     lint_get_unwrap(cx, expr, arglists[0], false);
722                 } else if let Some(arglists) = method_chain_args(expr, &["get_mut", "unwrap"]) {
723                     lint_get_unwrap(cx, expr, arglists[0], true);
724                 } else if let Some(arglists) = method_chain_args(expr, &["unwrap"]) {
725                     lint_unwrap(cx, expr, arglists[0]);
726                 } else if let Some(arglists) = method_chain_args(expr, &["ok", "expect"]) {
727                     lint_ok_expect(cx, expr, arglists[0]);
728                 } else if let Some(arglists) = method_chain_args(expr, &["map", "unwrap_or"]) {
729                     lint_map_unwrap_or(cx, expr, arglists[0], arglists[1]);
730                 } else if let Some(arglists) = method_chain_args(expr, &["map", "unwrap_or_else"]) {
731                     lint_map_unwrap_or_else(cx, expr, arglists[0], arglists[1]);
732                 } else if let Some(arglists) = method_chain_args(expr, &["map_or"]) {
733                     lint_map_or_none(cx, expr, arglists[0]);
734                 } else if let Some(arglists) = method_chain_args(expr, &["filter", "next"]) {
735                     lint_filter_next(cx, expr, arglists[0]);
736                 } else if let Some(arglists) = method_chain_args(expr, &["filter", "map"]) {
737                     lint_filter_map(cx, expr, arglists[0], arglists[1]);
738                 } else if let Some(arglists) = method_chain_args(expr, &["filter_map", "map"]) {
739                     lint_filter_map_map(cx, expr, arglists[0], arglists[1]);
740                 } else if let Some(arglists) = method_chain_args(expr, &["filter", "flat_map"]) {
741                     lint_filter_flat_map(cx, expr, arglists[0], arglists[1]);
742                 } else if let Some(arglists) = method_chain_args(expr, &["filter_map", "flat_map"]) {
743                     lint_filter_map_flat_map(cx, expr, arglists[0], arglists[1]);
744                 } else if let Some(arglists) = method_chain_args(expr, &["find", "is_some"]) {
745                     lint_search_is_some(cx, expr, "find", arglists[0], arglists[1]);
746                 } else if let Some(arglists) = method_chain_args(expr, &["position", "is_some"]) {
747                     lint_search_is_some(cx, expr, "position", arglists[0], arglists[1]);
748                 } else if let Some(arglists) = method_chain_args(expr, &["rposition", "is_some"]) {
749                     lint_search_is_some(cx, expr, "rposition", arglists[0], arglists[1]);
750                 } else if let Some(arglists) = method_chain_args(expr, &["extend"]) {
751                     lint_extend(cx, expr, arglists[0]);
752                 } else if let Some(arglists) = method_chain_args(expr, &["unwrap", "as_ptr"]) {
753                     lint_cstring_as_ptr(cx, expr, &arglists[0][0], &arglists[1][0]);
754                 } else if let Some(arglists) = method_chain_args(expr, &["iter", "nth"]) {
755                     lint_iter_nth(cx, expr, arglists[0], false);
756                 } else if let Some(arglists) = method_chain_args(expr, &["iter_mut", "nth"]) {
757                     lint_iter_nth(cx, expr, arglists[0], true);
758                 } else if method_chain_args(expr, &["skip", "next"]).is_some() {
759                     lint_iter_skip_next(cx, expr);
760                 } else if let Some(arglists) = method_chain_args(expr, &["cloned", "collect"]) {
761                     lint_iter_cloned_collect(cx, expr, arglists[0]);
762                 } else if let Some(arglists) = method_chain_args(expr, &["as_ref"]) {
763                     lint_asref(cx, expr, "as_ref", arglists[0]);
764                 } else if let Some(arglists) = method_chain_args(expr, &["as_mut"]) {
765                     lint_asref(cx, expr, "as_mut", arglists[0]);
766                 } else if let Some(arglists) = method_chain_args(expr, &["fold"]) {
767                     lint_unnecessary_fold(cx, expr, arglists[0]);
768                 }
769
770                 lint_or_fun_call(cx, expr, *method_span, &method_call.name.as_str(), args);
771                 lint_expect_fun_call(cx, expr, *method_span, &method_call.name.as_str(), args);
772
773                 let self_ty = cx.tables.expr_ty_adjusted(&args[0]);
774                 if args.len() == 1 && method_call.name == "clone" {
775                     lint_clone_on_copy(cx, expr, &args[0], self_ty);
776                     lint_clone_on_ref_ptr(cx, expr, &args[0]);
777                 }
778
779                 match self_ty.sty {
780                     ty::TyRef(_, ty, _) if ty.sty == ty::TyStr => for &(method, pos) in &PATTERN_METHODS {
781                         if method_call.name == method && args.len() > pos {
782                             lint_single_char_pattern(cx, expr, &args[pos]);
783                         }
784                     },
785                     _ => (),
786                 }
787             },
788             hir::ExprBinary(op, ref lhs, ref rhs) if op.node == hir::BiEq || op.node == hir::BiNe => {
789                 let mut info = BinaryExprInfo {
790                     expr,
791                     chain: lhs,
792                     other: rhs,
793                     eq: op.node == hir::BiEq,
794                 };
795                 lint_binary_expr_with_method_call(cx, &mut info);
796             },
797             _ => (),
798         }
799     }
800
801     fn check_impl_item(&mut self, cx: &LateContext<'a, 'tcx>, implitem: &'tcx hir::ImplItem) {
802         if in_external_macro(cx, implitem.span) {
803             return;
804         }
805         let name = implitem.name;
806         let parent = cx.tcx.hir.get_parent(implitem.id);
807         let item = cx.tcx.hir.expect_item(parent);
808         if_chain! {
809             if let hir::ImplItemKind::Method(ref sig, id) = implitem.node;
810             if let Some(first_arg_ty) = sig.decl.inputs.get(0);
811             if let Some(first_arg) = iter_input_pats(&sig.decl, cx.tcx.hir.body(id)).next();
812             if let hir::ItemImpl(_, _, _, _, None, ref self_ty, _) = item.node;
813             then {
814                 if cx.access_levels.is_exported(implitem.id) {
815                 // check missing trait implementations
816                     for &(method_name, n_args, self_kind, out_type, trait_name) in &TRAIT_METHODS {
817                         if name == method_name &&
818                         sig.decl.inputs.len() == n_args &&
819                         out_type.matches(&sig.decl.output) &&
820                         self_kind.matches(first_arg_ty, first_arg, self_ty, false, &implitem.generics) {
821                             span_lint(cx, SHOULD_IMPLEMENT_TRAIT, implitem.span, &format!(
822                                 "defining a method called `{}` on this type; consider implementing \
823                                 the `{}` trait or choosing a less ambiguous name", name, trait_name));
824                         }
825                     }
826                 }
827
828                 // check conventions w.r.t. conversion method names and predicates
829                 let def_id = cx.tcx.hir.local_def_id(item.id);
830                 let ty = cx.tcx.type_of(def_id);
831                 let is_copy = is_copy(cx, ty);
832                 for &(ref conv, self_kinds) in &CONVENTIONS {
833                     if_chain! {
834                         if conv.check(&name.as_str());
835                         if !self_kinds
836                             .iter()
837                             .any(|k| k.matches(first_arg_ty, first_arg, self_ty, is_copy, &implitem.generics));
838                         then {
839                             let lint = if item.vis == hir::Visibility::Public {
840                                 WRONG_PUB_SELF_CONVENTION
841                             } else {
842                                 WRONG_SELF_CONVENTION
843                             };
844                             span_lint(cx,
845                                       lint,
846                                       first_arg.pat.span,
847                                       &format!("methods called `{}` usually take {}; consider choosing a less \
848                                                 ambiguous name",
849                                                conv,
850                                                &self_kinds.iter()
851                                                           .map(|k| k.description())
852                                                           .collect::<Vec<_>>()
853                                                           .join(" or ")));
854                         }
855                     }
856                 }
857
858                 let ret_ty = return_ty(cx, implitem.id);
859                 if name == "new" &&
860                    !ret_ty.walk().any(|t| same_tys(cx, t, ty)) {
861                     span_lint(cx,
862                               NEW_RET_NO_SELF,
863                               implitem.span,
864                               "methods called `new` usually return `Self`");
865                 }
866             }
867         }
868     }
869 }
870
871 /// Checks for the `OR_FUN_CALL` lint.
872 fn lint_or_fun_call(cx: &LateContext, expr: &hir::Expr, method_span: Span, name: &str, args: &[hir::Expr]) {
873     /// Check for `unwrap_or(T::new())` or `unwrap_or(T::default())`.
874     fn check_unwrap_or_default(
875         cx: &LateContext,
876         name: &str,
877         fun: &hir::Expr,
878         self_expr: &hir::Expr,
879         arg: &hir::Expr,
880         or_has_args: bool,
881         span: Span,
882     ) -> bool {
883         if or_has_args {
884             return false;
885         }
886
887         if name == "unwrap_or" {
888             if let hir::ExprPath(ref qpath) = fun.node {
889                 let path = &*last_path_segment(qpath).name.as_str();
890
891                 if ["default", "new"].contains(&path) {
892                     let arg_ty = cx.tables.expr_ty(arg);
893                     let default_trait_id = if let Some(default_trait_id) = get_trait_def_id(cx, &paths::DEFAULT_TRAIT) {
894                         default_trait_id
895                     } else {
896                         return false;
897                     };
898
899                     if implements_trait(cx, arg_ty, default_trait_id, &[]) {
900                         span_lint_and_sugg(
901                             cx,
902                             OR_FUN_CALL,
903                             span,
904                             &format!("use of `{}` followed by a call to `{}`", name, path),
905                             "try this",
906                             format!("{}.unwrap_or_default()", snippet(cx, self_expr.span, "_")),
907                         );
908                         return true;
909                     }
910                 }
911             }
912         }
913
914         false
915     }
916
917     /// Check for `*or(foo())`.
918     #[allow(too_many_arguments)]
919     fn check_general_case(
920         cx: &LateContext,
921         name: &str,
922         method_span: Span,
923         fun_span: Span,
924         self_expr: &hir::Expr,
925         arg: &hir::Expr,
926         or_has_args: bool,
927         span: Span,
928     ) {
929         // (path, fn_has_argument, methods, suffix)
930         let know_types: &[(&[_], _, &[_], _)] = &[
931             (&paths::BTREEMAP_ENTRY, false, &["or_insert"], "with"),
932             (&paths::HASHMAP_ENTRY, false, &["or_insert"], "with"),
933             (&paths::OPTION, false, &["map_or", "ok_or", "or", "unwrap_or"], "else"),
934             (&paths::RESULT, true, &["or", "unwrap_or"], "else"),
935         ];
936
937         // early check if the name is one we care about
938         if know_types.iter().all(|k| !k.2.contains(&name)) {
939             return;
940         }
941
942         // don't lint for constant values
943         let owner_def = cx.tcx.hir.get_parent_did(arg.id);
944         let promotable = cx.tcx.rvalue_promotable_map(owner_def).contains(&arg.hir_id.local_id);
945         if promotable {
946             return;
947         }
948
949         let self_ty = cx.tables.expr_ty(self_expr);
950
951         let (fn_has_arguments, poss, suffix) = if let Some(&(_, fn_has_arguments, poss, suffix)) =
952             know_types.iter().find(|&&i| match_type(cx, self_ty, i.0))
953         {
954             (fn_has_arguments, poss, suffix)
955         } else {
956             return;
957         };
958
959         if !poss.contains(&name) {
960             return;
961         }
962
963         let sugg: Cow<_> = match (fn_has_arguments, !or_has_args) {
964             (true, _) => format!("|_| {}", snippet(cx, arg.span, "..")).into(),
965             (false, false) => format!("|| {}", snippet(cx, arg.span, "..")).into(),
966             (false, true) => snippet(cx, fun_span, ".."),
967         };
968         let span_replace_word = method_span.with_hi(span.hi());
969         span_lint_and_sugg(
970             cx,
971             OR_FUN_CALL,
972             span_replace_word,
973             &format!("use of `{}` followed by a function call", name),
974             "try this",
975             format!("{}_{}({})", name, suffix, sugg),
976         );
977     }
978
979     if args.len() == 2 {
980         match args[1].node {
981             hir::ExprCall(ref fun, ref or_args) => {
982                 let or_has_args = !or_args.is_empty();
983                 if !check_unwrap_or_default(cx, name, fun, &args[0], &args[1], or_has_args, expr.span) {
984                     check_general_case(cx, name, method_span, fun.span, &args[0], &args[1], or_has_args, expr.span);
985                 }
986             },
987             hir::ExprMethodCall(_, span, ref or_args) => {
988                 check_general_case(cx, name, method_span, span, &args[0], &args[1], !or_args.is_empty(), expr.span)
989             },
990             _ => {},
991         }
992     }
993 }
994
995 /// Checks for the `EXPECT_FUN_CALL` lint.
996 fn lint_expect_fun_call(cx: &LateContext, expr: &hir::Expr, method_span: Span, name: &str, args: &[hir::Expr]) {
997     fn check_general_case(
998         cx: &LateContext,
999         name: &str,
1000         method_span: Span,
1001         self_expr: &hir::Expr,
1002         arg: &hir::Expr,
1003         span: Span,
1004     ) {
1005         if name != "expect" {
1006             return;
1007         }
1008
1009         let self_type = cx.tables.expr_ty(self_expr);
1010         let known_types = &[&paths::OPTION, &paths::RESULT];
1011
1012         // if not a known type, return early
1013         if known_types.iter().all(|&k| !match_type(cx, self_type, k)) {
1014             return;
1015         }
1016
1017         // don't lint for constant values
1018         let owner_def = cx.tcx.hir.get_parent_did(arg.id);
1019         let promotable = cx.tcx.rvalue_promotable_map(owner_def).contains(&arg.hir_id.local_id);
1020         if promotable {
1021             return;
1022         }
1023
1024         let closure = if match_type(cx, self_type, &paths::OPTION) { "||" } else { "|_|" };
1025         let span_replace_word = method_span.with_hi(span.hi());
1026
1027         if let hir::ExprAddrOf(_, ref addr_of) = arg.node {
1028             if let hir::ExprCall(ref _inner_fun, ref inner_args) = addr_of.node {
1029                 // TODO: check if inner_fun is call to format!
1030                 if inner_args.len() == 1 {
1031                     if let hir::ExprCall(_, ref format_args) = inner_args[0].node {
1032                         let args_len = format_args.len();
1033                         let args: Vec<String> = format_args
1034                             .into_iter()
1035                             .take(args_len - 1)
1036                             .map(|a| {
1037                                 if let hir::ExprAddrOf(_, ref format_arg) = a.node {
1038                                     if let hir::ExprMatch(ref format_arg_expr, _, _) = format_arg.node {
1039                                         if let hir::ExprTup(ref format_arg_expr_tup) = format_arg_expr.node {
1040                                             return snippet(cx, format_arg_expr_tup[0].span, "..").into_owned();
1041                                         }
1042                                     }
1043                                 };
1044                                 snippet(cx, a.span, "..").into_owned()
1045                             })
1046                             .collect();
1047
1048                         let sugg = args.join(", ");
1049
1050                         span_lint_and_sugg(
1051                             cx,
1052                             EXPECT_FUN_CALL,
1053                             span_replace_word,
1054                             &format!("use of `{}` followed by a function call", name),
1055                             "try this",
1056                             format!("unwrap_or_else({} panic!({}))", closure, sugg),
1057                         );
1058
1059                         return;
1060                     }
1061                 }
1062             }
1063         }
1064
1065         let sugg: Cow<_> = snippet(cx, arg.span, "..");
1066         
1067         span_lint_and_sugg(
1068             cx,
1069             EXPECT_FUN_CALL,
1070             span_replace_word,
1071             &format!("use of `{}` followed by a function call", name),
1072             "try this",
1073             format!("unwrap_or_else({} panic!({}))", closure, sugg),
1074         );
1075     }
1076
1077     if args.len() == 2 {
1078         match args[1].node {
1079             hir::ExprLit(_) => {},
1080             _ => check_general_case(cx, name, method_span, &args[0], &args[1], expr.span),
1081         }
1082     }
1083 }
1084
1085 /// Checks for the `CLONE_ON_COPY` lint.
1086 fn lint_clone_on_copy(cx: &LateContext, expr: &hir::Expr, arg: &hir::Expr, arg_ty: Ty) {
1087     let ty = cx.tables.expr_ty(expr);
1088     if let ty::TyRef(_, inner, _) = arg_ty.sty {
1089         if let ty::TyRef(_, innermost, _) = inner.sty {
1090             span_lint_and_then(
1091                 cx,
1092                 CLONE_DOUBLE_REF,
1093                 expr.span,
1094                 "using `clone` on a double-reference; \
1095                  this will copy the reference instead of cloning the inner type",
1096                 |db| if let Some(snip) = sugg::Sugg::hir_opt(cx, arg) {
1097                     let mut ty = innermost;
1098                     let mut n = 0;
1099                     while let ty::TyRef(_, inner, _) = ty.sty {
1100                         ty = inner;
1101                         n += 1;
1102                     }
1103                     let refs: String = iter::repeat('&').take(n + 1).collect();
1104                     let derefs: String = iter::repeat('*').take(n).collect();
1105                     let explicit = format!("{}{}::clone({})", refs, ty, snip);
1106                     db.span_suggestion(expr.span, "try dereferencing it", format!("{}({}{}).clone()", refs, derefs, snip.deref()));
1107                     db.span_suggestion(expr.span, "or try being explicit about what type to clone", explicit);
1108                 },
1109             );
1110             return; // don't report clone_on_copy
1111         }
1112     }
1113
1114     if is_copy(cx, ty) {
1115         let snip;
1116         if let Some(snippet) = sugg::Sugg::hir_opt(cx, arg) {
1117             if let ty::TyRef(..) = cx.tables.expr_ty(arg).sty {
1118                 let parent = cx.tcx.hir.get_parent_node(expr.id);
1119                 match cx.tcx.hir.get(parent) {
1120                     hir::map::NodeExpr(parent) => match parent.node {
1121                         // &*x is a nop, &x.clone() is not
1122                         hir::ExprAddrOf(..) |
1123                         // (*x).func() is useless, x.clone().func() can work in case func borrows mutably
1124                         hir::ExprMethodCall(..) => return,
1125                         _ => {},
1126                     }
1127                     hir::map::NodeStmt(stmt) => {
1128                         if let hir::StmtDecl(ref decl, _) = stmt.node {
1129                             if let hir::DeclLocal(ref loc) = decl.node {
1130                                 if let hir::PatKind::Ref(..) = loc.pat.node {
1131                                     // let ref y = *x borrows x, let ref y = x.clone() does not
1132                                     return;
1133                                 }
1134                             }
1135                         }
1136                     },
1137                     _ => {},
1138                 }
1139                 snip = Some(("try dereferencing it", format!("{}", snippet.deref())));
1140             } else {
1141                 snip = Some(("try removing the `clone` call", format!("{}", snippet)));
1142             }
1143         } else {
1144             snip = None;
1145         }
1146         span_lint_and_then(cx, CLONE_ON_COPY, expr.span, "using `clone` on a `Copy` type", |db| {
1147             if let Some((text, snip)) = snip {
1148                 db.span_suggestion(expr.span, text, snip);
1149             }
1150         });
1151     }
1152 }
1153
1154 fn lint_clone_on_ref_ptr(cx: &LateContext, expr: &hir::Expr, arg: &hir::Expr) {
1155     let obj_ty = walk_ptrs_ty(cx.tables.expr_ty(arg));
1156
1157     if let ty::TyAdt(_, subst) = obj_ty.sty {
1158         let caller_type = if match_type(cx, obj_ty, &paths::RC) {
1159             "Rc"
1160         } else if match_type(cx, obj_ty, &paths::ARC) {
1161             "Arc"
1162         } else if match_type(cx, obj_ty, &paths::WEAK_RC) || match_type(cx, obj_ty, &paths::WEAK_ARC) {
1163             "Weak"
1164         } else {
1165             return;
1166         };
1167
1168         span_lint_and_sugg(
1169             cx,
1170             CLONE_ON_REF_PTR,
1171             expr.span,
1172             "using '.clone()' on a ref-counted pointer",
1173             "try this",
1174             format!("{}::<{}>::clone(&{})", caller_type, subst.type_at(0), snippet(cx, arg.span, "_")),
1175         );
1176     }
1177 }
1178
1179
1180 fn lint_string_extend(cx: &LateContext, expr: &hir::Expr, args: &[hir::Expr]) {
1181     let arg = &args[1];
1182     if let Some(arglists) = method_chain_args(arg, &["chars"]) {
1183         let target = &arglists[0][0];
1184         let self_ty = walk_ptrs_ty(cx.tables.expr_ty(target));
1185         let ref_str = if self_ty.sty == ty::TyStr {
1186             ""
1187         } else if match_type(cx, self_ty, &paths::STRING) {
1188             "&"
1189         } else {
1190             return;
1191         };
1192
1193         span_lint_and_sugg(
1194             cx,
1195             STRING_EXTEND_CHARS,
1196             expr.span,
1197             "calling `.extend(_.chars())`",
1198             "try this",
1199             format!(
1200                 "{}.push_str({}{})",
1201                 snippet(cx, args[0].span, "_"),
1202                 ref_str,
1203                 snippet(cx, target.span, "_")
1204             ),
1205         );
1206     }
1207 }
1208
1209 fn lint_extend(cx: &LateContext, expr: &hir::Expr, args: &[hir::Expr]) {
1210     let obj_ty = walk_ptrs_ty(cx.tables.expr_ty(&args[0]));
1211     if match_type(cx, obj_ty, &paths::STRING) {
1212         lint_string_extend(cx, expr, args);
1213     }
1214 }
1215
1216 fn lint_cstring_as_ptr(cx: &LateContext, expr: &hir::Expr, new: &hir::Expr, unwrap: &hir::Expr) {
1217     if_chain! {
1218         if let hir::ExprCall(ref fun, ref args) = new.node;
1219         if args.len() == 1;
1220         if let hir::ExprPath(ref path) = fun.node;
1221         if let Def::Method(did) = cx.tables.qpath_def(path, fun.hir_id);
1222         if match_def_path(cx.tcx, did, &paths::CSTRING_NEW);
1223         then {
1224             span_lint_and_then(
1225                 cx,
1226                 TEMPORARY_CSTRING_AS_PTR,
1227                 expr.span,
1228                 "you are getting the inner pointer of a temporary `CString`",
1229                 |db| {
1230                     db.note("that pointer will be invalid outside this expression");
1231                     db.span_help(unwrap.span, "assign the `CString` to a variable to extend its lifetime");
1232                 });
1233         }
1234     }
1235 }
1236
1237 fn lint_iter_cloned_collect(cx: &LateContext, expr: &hir::Expr, iter_args: &[hir::Expr]) {
1238     if match_type(cx, cx.tables.expr_ty(expr), &paths::VEC)
1239         && derefs_to_slice(cx, &iter_args[0], cx.tables.expr_ty(&iter_args[0])).is_some()
1240     {
1241         span_lint(
1242             cx,
1243             ITER_CLONED_COLLECT,
1244             expr.span,
1245             "called `cloned().collect()` on a slice to create a `Vec`. Calling `to_vec()` is both faster and \
1246              more readable",
1247         );
1248     }
1249 }
1250
1251 fn lint_unnecessary_fold(cx: &LateContext, expr: &hir::Expr, fold_args: &[hir::Expr]) {
1252     // Check that this is a call to Iterator::fold rather than just some function called fold
1253     if !match_trait_method(cx, expr, &paths::ITERATOR) {
1254         return;
1255     }
1256
1257     assert!(fold_args.len() == 3,
1258         "Expected fold_args to have three entries - the receiver, the initial value and the closure");
1259
1260     fn check_fold_with_op(
1261         cx: &LateContext,
1262         fold_args: &[hir::Expr],
1263         op: hir::BinOp_,
1264         replacement_method_name: &str,
1265         replacement_has_args: bool) {
1266
1267         if_chain! {
1268             // Extract the body of the closure passed to fold
1269             if let hir::ExprClosure(_, _, body_id, _, _) = fold_args[2].node;
1270             let closure_body = cx.tcx.hir.body(body_id);
1271             let closure_expr = remove_blocks(&closure_body.value);
1272
1273             // Check if the closure body is of the form `acc <op> some_expr(x)`
1274             if let hir::ExprBinary(ref bin_op, ref left_expr, ref right_expr) = closure_expr.node;
1275             if bin_op.node == op;
1276
1277             // Extract the names of the two arguments to the closure
1278             if let Some(first_arg_ident) = get_arg_name(&closure_body.arguments[0].pat);
1279             if let Some(second_arg_ident) = get_arg_name(&closure_body.arguments[1].pat);
1280
1281             if match_var(&*left_expr, first_arg_ident);
1282             if replacement_has_args || match_var(&*right_expr, second_arg_ident);
1283
1284             then {
1285                 // Span containing `.fold(...)`
1286                 let next_point = cx.sess().codemap().next_point(fold_args[0].span);
1287                 let fold_span = next_point.with_hi(fold_args[2].span.hi() + BytePos(1));
1288
1289                 let sugg = if replacement_has_args {
1290                     format!(
1291                         ".{replacement}(|{s}| {r})",
1292                         replacement = replacement_method_name,
1293                         s = second_arg_ident,
1294                         r = snippet(cx, right_expr.span, "EXPR"),
1295                     )
1296                 } else {
1297                     format!(
1298                         ".{replacement}()",
1299                         replacement = replacement_method_name,
1300                     )
1301                 };
1302
1303                 span_lint_and_sugg(
1304                     cx,
1305                     UNNECESSARY_FOLD,
1306                     fold_span,
1307                     // TODO #2371 don't suggest e.g. .any(|x| f(x)) if we can suggest .any(f)
1308                     "this `.fold` can be written more succinctly using another method",
1309                     "try",
1310                     sugg,
1311                 );
1312             }
1313         }
1314     }
1315
1316     // Check if the first argument to .fold is a suitable literal
1317     match fold_args[1].node {
1318         hir::ExprLit(ref lit) => {
1319             match lit.node {
1320                 ast::LitKind::Bool(false) => check_fold_with_op(
1321                     cx, fold_args, hir::BinOp_::BiOr, "any", true
1322                 ),
1323                 ast::LitKind::Bool(true) => check_fold_with_op(
1324                     cx, fold_args, hir::BinOp_::BiAnd, "all", true
1325                 ),
1326                 ast::LitKind::Int(0, _) => check_fold_with_op(
1327                     cx, fold_args, hir::BinOp_::BiAdd, "sum", false
1328                 ),
1329                 ast::LitKind::Int(1, _) => check_fold_with_op(
1330                     cx, fold_args, hir::BinOp_::BiMul, "product", false
1331                 ),
1332                 _ => return
1333             }
1334         }
1335         _ => return
1336     };
1337 }
1338
1339 fn lint_iter_nth(cx: &LateContext, expr: &hir::Expr, iter_args: &[hir::Expr], is_mut: bool) {
1340     let mut_str = if is_mut { "_mut" } else { "" };
1341     let caller_type = if derefs_to_slice(cx, &iter_args[0], cx.tables.expr_ty(&iter_args[0])).is_some() {
1342         "slice"
1343     } else if match_type(cx, cx.tables.expr_ty(&iter_args[0]), &paths::VEC) {
1344         "Vec"
1345     } else if match_type(cx, cx.tables.expr_ty(&iter_args[0]), &paths::VEC_DEQUE) {
1346         "VecDeque"
1347     } else {
1348         return; // caller is not a type that we want to lint
1349     };
1350
1351     span_lint(
1352         cx,
1353         ITER_NTH,
1354         expr.span,
1355         &format!(
1356             "called `.iter{0}().nth()` on a {1}. Calling `.get{0}()` is both faster and more readable",
1357             mut_str,
1358             caller_type
1359         ),
1360     );
1361 }
1362
1363 fn lint_get_unwrap(cx: &LateContext, expr: &hir::Expr, get_args: &[hir::Expr], is_mut: bool) {
1364     // Note: we don't want to lint `get_mut().unwrap` for HashMap or BTreeMap,
1365     // because they do not implement `IndexMut`
1366     let expr_ty = cx.tables.expr_ty(&get_args[0]);
1367     let caller_type = if derefs_to_slice(cx, &get_args[0], expr_ty).is_some() {
1368         "slice"
1369     } else if match_type(cx, expr_ty, &paths::VEC) {
1370         "Vec"
1371     } else if match_type(cx, expr_ty, &paths::VEC_DEQUE) {
1372         "VecDeque"
1373     } else if !is_mut && match_type(cx, expr_ty, &paths::HASHMAP) {
1374         "HashMap"
1375     } else if !is_mut && match_type(cx, expr_ty, &paths::BTREEMAP) {
1376         "BTreeMap"
1377     } else {
1378         return; // caller is not a type that we want to lint
1379     };
1380
1381     let mut_str = if is_mut { "_mut" } else { "" };
1382     let borrow_str = if is_mut { "&mut " } else { "&" };
1383     span_lint_and_sugg(
1384         cx,
1385         GET_UNWRAP,
1386         expr.span,
1387         &format!(
1388             "called `.get{0}().unwrap()` on a {1}. Using `[]` is more clear and more concise",
1389             mut_str,
1390             caller_type
1391         ),
1392         "try this",
1393         format!(
1394             "{}{}[{}]",
1395             borrow_str,
1396             snippet(cx, get_args[0].span, "_"),
1397             snippet(cx, get_args[1].span, "_")
1398         ),
1399     );
1400 }
1401
1402 fn lint_iter_skip_next(cx: &LateContext, expr: &hir::Expr) {
1403     // lint if caller of skip is an Iterator
1404     if match_trait_method(cx, expr, &paths::ITERATOR) {
1405         span_lint(
1406             cx,
1407             ITER_SKIP_NEXT,
1408             expr.span,
1409             "called `skip(x).next()` on an iterator. This is more succinctly expressed by calling `nth(x)`",
1410         );
1411     }
1412 }
1413
1414 fn derefs_to_slice(cx: &LateContext, expr: &hir::Expr, ty: Ty) -> Option<sugg::Sugg<'static>> {
1415     fn may_slice(cx: &LateContext, ty: Ty) -> bool {
1416         match ty.sty {
1417             ty::TySlice(_) => true,
1418             ty::TyAdt(def, _) if def.is_box() => may_slice(cx, ty.boxed_ty()),
1419             ty::TyAdt(..) => match_type(cx, ty, &paths::VEC),
1420             ty::TyArray(_, size) => size.assert_usize(cx.tcx).expect("array length") < 32,
1421             ty::TyRef(_, inner, _) => may_slice(cx, inner),
1422             _ => false,
1423         }
1424     }
1425
1426     if let hir::ExprMethodCall(ref path, _, ref args) = expr.node {
1427         if path.name == "iter" && may_slice(cx, cx.tables.expr_ty(&args[0])) {
1428             sugg::Sugg::hir_opt(cx, &args[0]).map(|sugg| sugg.addr())
1429         } else {
1430             None
1431         }
1432     } else {
1433         match ty.sty {
1434             ty::TySlice(_) => sugg::Sugg::hir_opt(cx, expr),
1435             ty::TyAdt(def, _) if def.is_box() && may_slice(cx, ty.boxed_ty()) => sugg::Sugg::hir_opt(cx, expr),
1436             ty::TyRef(_, inner, _) => if may_slice(cx, inner) {
1437                 sugg::Sugg::hir_opt(cx, expr)
1438             } else {
1439                 None
1440             },
1441             _ => None,
1442         }
1443     }
1444 }
1445
1446 /// lint use of `unwrap()` for `Option`s and `Result`s
1447 fn lint_unwrap(cx: &LateContext, expr: &hir::Expr, unwrap_args: &[hir::Expr]) {
1448     let obj_ty = walk_ptrs_ty(cx.tables.expr_ty(&unwrap_args[0]));
1449
1450     let mess = if match_type(cx, obj_ty, &paths::OPTION) {
1451         Some((OPTION_UNWRAP_USED, "an Option", "None"))
1452     } else if match_type(cx, obj_ty, &paths::RESULT) {
1453         Some((RESULT_UNWRAP_USED, "a Result", "Err"))
1454     } else {
1455         None
1456     };
1457
1458     if let Some((lint, kind, none_value)) = mess {
1459         span_lint(
1460             cx,
1461             lint,
1462             expr.span,
1463             &format!(
1464                 "used unwrap() on {} value. If you don't want to handle the {} case gracefully, consider \
1465                  using expect() to provide a better panic \
1466                  message",
1467                 kind,
1468                 none_value
1469             ),
1470         );
1471     }
1472 }
1473
1474 /// lint use of `ok().expect()` for `Result`s
1475 fn lint_ok_expect(cx: &LateContext, expr: &hir::Expr, ok_args: &[hir::Expr]) {
1476     // lint if the caller of `ok()` is a `Result`
1477     if match_type(cx, cx.tables.expr_ty(&ok_args[0]), &paths::RESULT) {
1478         let result_type = cx.tables.expr_ty(&ok_args[0]);
1479         if let Some(error_type) = get_error_type(cx, result_type) {
1480             if has_debug_impl(error_type, cx) {
1481                 span_lint(
1482                     cx,
1483                     OK_EXPECT,
1484                     expr.span,
1485                     "called `ok().expect()` on a Result value. You can call `expect` directly on the `Result`",
1486                 );
1487             }
1488         }
1489     }
1490 }
1491
1492 /// lint use of `map().unwrap_or()` for `Option`s
1493 fn lint_map_unwrap_or(cx: &LateContext, expr: &hir::Expr, map_args: &[hir::Expr], unwrap_args: &[hir::Expr]) {
1494     // lint if the caller of `map()` is an `Option`
1495     if match_type(cx, cx.tables.expr_ty(&map_args[0]), &paths::OPTION) {
1496         // get snippets for args to map() and unwrap_or()
1497         let map_snippet = snippet(cx, map_args[1].span, "..");
1498         let unwrap_snippet = snippet(cx, unwrap_args[1].span, "..");
1499         // lint message
1500         // comparing the snippet from source to raw text ("None") below is safe
1501         // because we already have checked the type.
1502         let arg = if unwrap_snippet == "None" {
1503             "None"
1504         } else {
1505             "a"
1506         };
1507         let suggest = if unwrap_snippet == "None" {
1508             "and_then(f)"
1509         } else {
1510             "map_or(a, f)"
1511         };
1512         let msg = &format!(
1513             "called `map(f).unwrap_or({})` on an Option value. \
1514              This can be done more directly by calling `{}` instead",
1515             arg,
1516             suggest
1517         );
1518         // lint, with note if neither arg is > 1 line and both map() and
1519         // unwrap_or() have the same span
1520         let multiline = map_snippet.lines().count() > 1 || unwrap_snippet.lines().count() > 1;
1521         let same_span = map_args[1].span.ctxt() == unwrap_args[1].span.ctxt();
1522         if same_span && !multiline {
1523             let suggest = if unwrap_snippet == "None" {
1524                 format!("and_then({})", map_snippet)
1525             } else {
1526                 format!("map_or({}, {})", unwrap_snippet, map_snippet)
1527             };
1528             let note = format!(
1529                 "replace `map({}).unwrap_or({})` with `{}`",
1530                 map_snippet,
1531                 unwrap_snippet,
1532                 suggest
1533             );
1534             span_note_and_lint(cx, OPTION_MAP_UNWRAP_OR, expr.span, msg, expr.span, &note);
1535         } else if same_span && multiline {
1536             span_lint(cx, OPTION_MAP_UNWRAP_OR, expr.span, msg);
1537         };
1538     }
1539 }
1540
1541 /// lint use of `map().unwrap_or_else()` for `Option`s and `Result`s
1542 fn lint_map_unwrap_or_else<'a, 'tcx>(
1543     cx: &LateContext<'a, 'tcx>,
1544     expr: &'tcx hir::Expr,
1545     map_args: &'tcx [hir::Expr],
1546     unwrap_args: &'tcx [hir::Expr],
1547 ) {
1548     // lint if the caller of `map()` is an `Option`
1549     let is_option = match_type(cx, cx.tables.expr_ty(&map_args[0]), &paths::OPTION);
1550     let is_result = match_type(cx, cx.tables.expr_ty(&map_args[0]), &paths::RESULT);
1551     if is_option || is_result {
1552         // lint message
1553         let msg = if is_option {
1554             "called `map(f).unwrap_or_else(g)` on an Option value. This can be done more directly by calling \
1555              `map_or_else(g, f)` instead"
1556         } else {
1557             "called `map(f).unwrap_or_else(g)` on a Result value. This can be done more directly by calling \
1558              `ok().map_or_else(g, f)` instead"
1559         };
1560         // get snippets for args to map() and unwrap_or_else()
1561         let map_snippet = snippet(cx, map_args[1].span, "..");
1562         let unwrap_snippet = snippet(cx, unwrap_args[1].span, "..");
1563         // lint, with note if neither arg is > 1 line and both map() and
1564         // unwrap_or_else() have the same span
1565         let multiline = map_snippet.lines().count() > 1 || unwrap_snippet.lines().count() > 1;
1566         let same_span = map_args[1].span.ctxt() == unwrap_args[1].span.ctxt();
1567         if same_span && !multiline {
1568             span_note_and_lint(
1569                 cx,
1570                 if is_option {
1571                     OPTION_MAP_UNWRAP_OR_ELSE
1572                 } else {
1573                     RESULT_MAP_UNWRAP_OR_ELSE
1574                 },
1575                 expr.span,
1576                 msg,
1577                 expr.span,
1578                 &format!(
1579                     "replace `map({0}).unwrap_or_else({1})` with `{2}map_or_else({1}, {0})`",
1580                     map_snippet,
1581                     unwrap_snippet,
1582                     if is_result { "ok()." } else { "" }
1583                 ),
1584             );
1585         } else if same_span && multiline {
1586             span_lint(
1587                 cx,
1588                 if is_option {
1589                     OPTION_MAP_UNWRAP_OR_ELSE
1590                 } else {
1591                     RESULT_MAP_UNWRAP_OR_ELSE
1592                 },
1593                 expr.span,
1594                 msg,
1595             );
1596         };
1597     }
1598 }
1599
1600 /// lint use of `_.map_or(None, _)` for `Option`s
1601 fn lint_map_or_none<'a, 'tcx>(cx: &LateContext<'a, 'tcx>, expr: &'tcx hir::Expr, map_or_args: &'tcx [hir::Expr]) {
1602     if match_type(cx, cx.tables.expr_ty(&map_or_args[0]), &paths::OPTION) {
1603         // check if the first non-self argument to map_or() is None
1604         let map_or_arg_is_none = if let hir::Expr_::ExprPath(ref qpath) = map_or_args[1].node {
1605             match_qpath(qpath, &paths::OPTION_NONE)
1606         } else {
1607             false
1608         };
1609
1610         if map_or_arg_is_none {
1611             // lint message
1612             let msg = "called `map_or(None, f)` on an Option value. This can be done more directly by calling \
1613                        `and_then(f)` instead";
1614             let map_or_self_snippet = snippet(cx, map_or_args[0].span, "..");
1615             let map_or_func_snippet = snippet(cx, map_or_args[2].span, "..");
1616             let hint = format!("{0}.and_then({1})", map_or_self_snippet, map_or_func_snippet);
1617             span_lint_and_then(cx, OPTION_MAP_OR_NONE, expr.span, msg, |db| {
1618                 db.span_suggestion(expr.span, "try using and_then instead", hint);
1619             });
1620         }
1621     }
1622 }
1623
1624 /// lint use of `filter().next()` for `Iterators`
1625 fn lint_filter_next<'a, 'tcx>(cx: &LateContext<'a, 'tcx>, expr: &'tcx hir::Expr, filter_args: &'tcx [hir::Expr]) {
1626     // lint if caller of `.filter().next()` is an Iterator
1627     if match_trait_method(cx, expr, &paths::ITERATOR) {
1628         let msg = "called `filter(p).next()` on an `Iterator`. This is more succinctly expressed by calling \
1629                    `.find(p)` instead.";
1630         let filter_snippet = snippet(cx, filter_args[1].span, "..");
1631         if filter_snippet.lines().count() <= 1 {
1632             // add note if not multi-line
1633             span_note_and_lint(
1634                 cx,
1635                 FILTER_NEXT,
1636                 expr.span,
1637                 msg,
1638                 expr.span,
1639                 &format!("replace `filter({0}).next()` with `find({0})`", filter_snippet),
1640             );
1641         } else {
1642             span_lint(cx, FILTER_NEXT, expr.span, msg);
1643         }
1644     }
1645 }
1646
1647 /// lint use of `filter().map()` for `Iterators`
1648 fn lint_filter_map<'a, 'tcx>(
1649     cx: &LateContext<'a, 'tcx>,
1650     expr: &'tcx hir::Expr,
1651     _filter_args: &'tcx [hir::Expr],
1652     _map_args: &'tcx [hir::Expr],
1653 ) {
1654     // lint if caller of `.filter().map()` is an Iterator
1655     if match_trait_method(cx, expr, &paths::ITERATOR) {
1656         let msg = "called `filter(p).map(q)` on an `Iterator`. \
1657                    This is more succinctly expressed by calling `.filter_map(..)` instead.";
1658         span_lint(cx, FILTER_MAP, expr.span, msg);
1659     }
1660 }
1661
1662 /// lint use of `filter().map()` for `Iterators`
1663 fn lint_filter_map_map<'a, 'tcx>(
1664     cx: &LateContext<'a, 'tcx>,
1665     expr: &'tcx hir::Expr,
1666     _filter_args: &'tcx [hir::Expr],
1667     _map_args: &'tcx [hir::Expr],
1668 ) {
1669     // lint if caller of `.filter().map()` is an Iterator
1670     if match_trait_method(cx, expr, &paths::ITERATOR) {
1671         let msg = "called `filter_map(p).map(q)` on an `Iterator`. \
1672                    This is more succinctly expressed by only calling `.filter_map(..)` instead.";
1673         span_lint(cx, FILTER_MAP, expr.span, msg);
1674     }
1675 }
1676
1677 /// lint use of `filter().flat_map()` for `Iterators`
1678 fn lint_filter_flat_map<'a, 'tcx>(
1679     cx: &LateContext<'a, 'tcx>,
1680     expr: &'tcx hir::Expr,
1681     _filter_args: &'tcx [hir::Expr],
1682     _map_args: &'tcx [hir::Expr],
1683 ) {
1684     // lint if caller of `.filter().flat_map()` is an Iterator
1685     if match_trait_method(cx, expr, &paths::ITERATOR) {
1686         let msg = "called `filter(p).flat_map(q)` on an `Iterator`. \
1687                    This is more succinctly expressed by calling `.flat_map(..)` \
1688                    and filtering by returning an empty Iterator.";
1689         span_lint(cx, FILTER_MAP, expr.span, msg);
1690     }
1691 }
1692
1693 /// lint use of `filter_map().flat_map()` for `Iterators`
1694 fn lint_filter_map_flat_map<'a, 'tcx>(
1695     cx: &LateContext<'a, 'tcx>,
1696     expr: &'tcx hir::Expr,
1697     _filter_args: &'tcx [hir::Expr],
1698     _map_args: &'tcx [hir::Expr],
1699 ) {
1700     // lint if caller of `.filter_map().flat_map()` is an Iterator
1701     if match_trait_method(cx, expr, &paths::ITERATOR) {
1702         let msg = "called `filter_map(p).flat_map(q)` on an `Iterator`. \
1703                    This is more succinctly expressed by calling `.flat_map(..)` \
1704                    and filtering by returning an empty Iterator.";
1705         span_lint(cx, FILTER_MAP, expr.span, msg);
1706     }
1707 }
1708
1709 /// lint searching an Iterator followed by `is_some()`
1710 fn lint_search_is_some<'a, 'tcx>(
1711     cx: &LateContext<'a, 'tcx>,
1712     expr: &'tcx hir::Expr,
1713     search_method: &str,
1714     search_args: &'tcx [hir::Expr],
1715     is_some_args: &'tcx [hir::Expr],
1716 ) {
1717     // lint if caller of search is an Iterator
1718     if match_trait_method(cx, &is_some_args[0], &paths::ITERATOR) {
1719         let msg = format!(
1720             "called `is_some()` after searching an `Iterator` with {}. This is more succinctly \
1721              expressed by calling `any()`.",
1722             search_method
1723         );
1724         let search_snippet = snippet(cx, search_args[1].span, "..");
1725         if search_snippet.lines().count() <= 1 {
1726             // add note if not multi-line
1727             span_note_and_lint(
1728                 cx,
1729                 SEARCH_IS_SOME,
1730                 expr.span,
1731                 &msg,
1732                 expr.span,
1733                 &format!("replace `{0}({1}).is_some()` with `any({1})`", search_method, search_snippet),
1734             );
1735         } else {
1736             span_lint(cx, SEARCH_IS_SOME, expr.span, &msg);
1737         }
1738     }
1739 }
1740
1741 /// Used for `lint_binary_expr_with_method_call`.
1742 #[derive(Copy, Clone)]
1743 struct BinaryExprInfo<'a> {
1744     expr: &'a hir::Expr,
1745     chain: &'a hir::Expr,
1746     other: &'a hir::Expr,
1747     eq: bool,
1748 }
1749
1750 /// Checks for the `CHARS_NEXT_CMP` and `CHARS_LAST_CMP` lints.
1751 fn lint_binary_expr_with_method_call<'a, 'tcx: 'a>(cx: &LateContext<'a, 'tcx>, info: &mut BinaryExprInfo) {
1752     macro_rules! lint_with_both_lhs_and_rhs {
1753         ($func:ident, $cx:expr, $info:ident) => {
1754             if !$func($cx, $info) {
1755                 ::std::mem::swap(&mut $info.chain, &mut $info.other);
1756                 if $func($cx, $info) {
1757                     return;
1758                 }
1759             }
1760         }
1761     }
1762
1763     lint_with_both_lhs_and_rhs!(lint_chars_next_cmp, cx, info);
1764     lint_with_both_lhs_and_rhs!(lint_chars_last_cmp, cx, info);
1765     lint_with_both_lhs_and_rhs!(lint_chars_next_cmp_with_unwrap, cx, info);
1766     lint_with_both_lhs_and_rhs!(lint_chars_last_cmp_with_unwrap, cx, info);
1767 }
1768
1769 /// Wrapper fn for `CHARS_NEXT_CMP` and `CHARS_NEXT_CMP` lints.
1770 fn lint_chars_cmp<'a, 'tcx>(
1771     cx: &LateContext<'a, 'tcx>,
1772     info: &BinaryExprInfo,
1773     chain_methods: &[&str],
1774     lint: &'static Lint,
1775     suggest: &str,
1776 ) -> bool {
1777     if_chain! {
1778         if let Some(args) = method_chain_args(info.chain, chain_methods);
1779         if let hir::ExprCall(ref fun, ref arg_char) = info.other.node;
1780         if arg_char.len() == 1;
1781         if let hir::ExprPath(ref qpath) = fun.node;
1782         if let Some(segment) = single_segment_path(qpath);
1783         if segment.name == "Some";
1784         then {
1785             let self_ty = walk_ptrs_ty(cx.tables.expr_ty_adjusted(&args[0][0]));
1786
1787             if self_ty.sty != ty::TyStr {
1788                 return false;
1789             }
1790
1791             span_lint_and_sugg(cx,
1792                                lint,
1793                                info.expr.span,
1794                                &format!("you should use the `{}` method", suggest),
1795                                "like this",
1796                                format!("{}{}.{}({})",
1797                                        if info.eq { "" } else { "!" },
1798                                        snippet(cx, args[0][0].span, "_"),
1799                                        suggest,
1800                                        snippet(cx, arg_char[0].span, "_")));
1801
1802             return true;
1803         }
1804     }
1805
1806     false
1807 }
1808
1809 /// Checks for the `CHARS_NEXT_CMP` lint.
1810 fn lint_chars_next_cmp<'a, 'tcx>(cx: &LateContext<'a, 'tcx>, info: &BinaryExprInfo) -> bool {
1811     lint_chars_cmp(cx, info, &["chars", "next"], CHARS_NEXT_CMP, "starts_with")
1812 }
1813
1814 /// Checks for the `CHARS_LAST_CMP` lint.
1815 fn lint_chars_last_cmp<'a, 'tcx>(cx: &LateContext<'a, 'tcx>, info: &BinaryExprInfo) -> bool {
1816     if lint_chars_cmp(cx, info, &["chars", "last"], CHARS_NEXT_CMP, "ends_with") {
1817         true
1818     } else {
1819         lint_chars_cmp(cx, info, &["chars", "next_back"], CHARS_NEXT_CMP, "ends_with")
1820     }
1821 }
1822
1823 /// Wrapper fn for `CHARS_NEXT_CMP` and `CHARS_LAST_CMP` lints with `unwrap()`.
1824 fn lint_chars_cmp_with_unwrap<'a, 'tcx>(
1825     cx: &LateContext<'a, 'tcx>,
1826     info: &BinaryExprInfo,
1827     chain_methods: &[&str],
1828     lint: &'static Lint,
1829     suggest: &str,
1830 ) -> bool {
1831     if_chain! {
1832         if let Some(args) = method_chain_args(info.chain, chain_methods);
1833         if let hir::ExprLit(ref lit) = info.other.node;
1834         if let ast::LitKind::Char(c) = lit.node;
1835         then {
1836             span_lint_and_sugg(
1837                 cx,
1838                 lint,
1839                 info.expr.span,
1840                 &format!("you should use the `{}` method", suggest),
1841                 "like this",
1842                 format!("{}{}.{}('{}')",
1843                         if info.eq { "" } else { "!" },
1844                         snippet(cx, args[0][0].span, "_"),
1845                         suggest,
1846                         c)
1847             );
1848
1849             return true;
1850         }
1851     }
1852
1853     false
1854 }
1855
1856 /// Checks for the `CHARS_NEXT_CMP` lint with `unwrap()`.
1857 fn lint_chars_next_cmp_with_unwrap<'a, 'tcx>(cx: &LateContext<'a, 'tcx>, info: &BinaryExprInfo) -> bool {
1858     lint_chars_cmp_with_unwrap(cx, info, &["chars", "next", "unwrap"], CHARS_NEXT_CMP, "starts_with")
1859 }
1860
1861 /// Checks for the `CHARS_LAST_CMP` lint with `unwrap()`.
1862 fn lint_chars_last_cmp_with_unwrap<'a, 'tcx>(cx: &LateContext<'a, 'tcx>, info: &BinaryExprInfo) -> bool {
1863     if lint_chars_cmp_with_unwrap(cx, info, &["chars", "last", "unwrap"], CHARS_LAST_CMP, "ends_with") {
1864         true
1865     } else {
1866         lint_chars_cmp_with_unwrap(cx, info, &["chars", "next_back", "unwrap"], CHARS_LAST_CMP, "ends_with")
1867     }
1868 }
1869
1870 /// lint for length-1 `str`s for methods in `PATTERN_METHODS`
1871 fn lint_single_char_pattern<'a, 'tcx>(cx: &LateContext<'a, 'tcx>, expr: &'tcx hir::Expr, arg: &'tcx hir::Expr) {
1872     if let Some((Constant::Str(r), _)) = constant(cx, cx.tables, arg) {
1873         if r.len() == 1 {
1874             let c = r.chars().next().unwrap();
1875             let snip = snippet(cx, expr.span, "..");
1876             let hint = snip.replace(
1877                 &format!("\"{}\"", c.escape_default()),
1878                 &format!("'{}'", c.escape_default()));
1879             span_lint_and_then(
1880                 cx,
1881                 SINGLE_CHAR_PATTERN,
1882                 arg.span,
1883                 "single-character string constant used as pattern",
1884                 |db| {
1885                     db.span_suggestion(expr.span, "try using a char instead", hint);
1886                 },
1887             );
1888         }
1889     }
1890 }
1891
1892 /// Checks for the `USELESS_ASREF` lint.
1893 fn lint_asref(cx: &LateContext, expr: &hir::Expr, call_name: &str, as_ref_args: &[hir::Expr]) {
1894     // when we get here, we've already checked that the call name is "as_ref" or "as_mut"
1895     // check if the call is to the actual `AsRef` or `AsMut` trait
1896     if match_trait_method(cx, expr, &paths::ASREF_TRAIT) || match_trait_method(cx, expr, &paths::ASMUT_TRAIT) {
1897         // check if the type after `as_ref` or `as_mut` is the same as before
1898         let recvr = &as_ref_args[0];
1899         let rcv_ty = cx.tables.expr_ty(recvr);
1900         let res_ty = cx.tables.expr_ty(expr);
1901         let (base_res_ty, res_depth) = walk_ptrs_ty_depth(res_ty);
1902         let (base_rcv_ty, rcv_depth) = walk_ptrs_ty_depth(rcv_ty);
1903         if base_rcv_ty == base_res_ty && rcv_depth >= res_depth {
1904             span_lint_and_sugg(
1905                 cx,
1906                 USELESS_ASREF,
1907                 expr.span,
1908                 &format!("this call to `{}` does nothing", call_name),
1909                 "try this",
1910                 snippet(cx, recvr.span, "_").into_owned(),
1911             );
1912         }
1913     }
1914 }
1915
1916 /// Given a `Result<T, E>` type, return its error type (`E`).
1917 fn get_error_type<'a>(cx: &LateContext, ty: Ty<'a>) -> Option<Ty<'a>> {
1918     if let ty::TyAdt(_, substs) = ty.sty {
1919         if match_type(cx, ty, &paths::RESULT) {
1920             substs.types().nth(1)
1921         } else {
1922             None
1923         }
1924     } else {
1925         None
1926     }
1927 }
1928
1929 /// This checks whether a given type is known to implement Debug.
1930 fn has_debug_impl<'a, 'b>(ty: Ty<'a>, cx: &LateContext<'b, 'a>) -> bool {
1931     match cx.tcx.lang_items().debug_trait() {
1932         Some(debug) => implements_trait(cx, ty, debug, &[]),
1933         None => false,
1934     }
1935 }
1936
1937 enum Convention {
1938     Eq(&'static str),
1939     StartsWith(&'static str),
1940 }
1941
1942 #[cfg_attr(rustfmt, rustfmt_skip)]
1943 const CONVENTIONS: [(Convention, &[SelfKind]); 6] = [
1944     (Convention::Eq("new"), &[SelfKind::No]),
1945     (Convention::StartsWith("as_"), &[SelfKind::Ref, SelfKind::RefMut]),
1946     (Convention::StartsWith("from_"), &[SelfKind::No]),
1947     (Convention::StartsWith("into_"), &[SelfKind::Value]),
1948     (Convention::StartsWith("is_"), &[SelfKind::Ref, SelfKind::No]),
1949     (Convention::StartsWith("to_"), &[SelfKind::Ref]),
1950 ];
1951
1952 #[cfg_attr(rustfmt, rustfmt_skip)]
1953 const TRAIT_METHODS: [(&str, usize, SelfKind, OutType, &str); 30] = [
1954     ("add", 2, SelfKind::Value, OutType::Any, "std::ops::Add"),
1955     ("as_mut", 1, SelfKind::RefMut, OutType::Ref, "std::convert::AsMut"),
1956     ("as_ref", 1, SelfKind::Ref, OutType::Ref, "std::convert::AsRef"),
1957     ("bitand", 2, SelfKind::Value, OutType::Any, "std::ops::BitAnd"),
1958     ("bitor", 2, SelfKind::Value, OutType::Any, "std::ops::BitOr"),
1959     ("bitxor", 2, SelfKind::Value, OutType::Any, "std::ops::BitXor"),
1960     ("borrow", 1, SelfKind::Ref, OutType::Ref, "std::borrow::Borrow"),
1961     ("borrow_mut", 1, SelfKind::RefMut, OutType::Ref, "std::borrow::BorrowMut"),
1962     ("clone", 1, SelfKind::Ref, OutType::Any, "std::clone::Clone"),
1963     ("cmp", 2, SelfKind::Ref, OutType::Any, "std::cmp::Ord"),
1964     ("default", 0, SelfKind::No, OutType::Any, "std::default::Default"),
1965     ("deref", 1, SelfKind::Ref, OutType::Ref, "std::ops::Deref"),
1966     ("deref_mut", 1, SelfKind::RefMut, OutType::Ref, "std::ops::DerefMut"),
1967     ("div", 2, SelfKind::Value, OutType::Any, "std::ops::Div"),
1968     ("drop", 1, SelfKind::RefMut, OutType::Unit, "std::ops::Drop"),
1969     ("eq", 2, SelfKind::Ref, OutType::Bool, "std::cmp::PartialEq"),
1970     ("from_iter", 1, SelfKind::No, OutType::Any, "std::iter::FromIterator"),
1971     ("from_str", 1, SelfKind::No, OutType::Any, "std::str::FromStr"),
1972     ("hash", 2, SelfKind::Ref, OutType::Unit, "std::hash::Hash"),
1973     ("index", 2, SelfKind::Ref, OutType::Ref, "std::ops::Index"),
1974     ("index_mut", 2, SelfKind::RefMut, OutType::Ref, "std::ops::IndexMut"),
1975     ("into_iter", 1, SelfKind::Value, OutType::Any, "std::iter::IntoIterator"),
1976     ("mul", 2, SelfKind::Value, OutType::Any, "std::ops::Mul"),
1977     ("neg", 1, SelfKind::Value, OutType::Any, "std::ops::Neg"),
1978     ("next", 1, SelfKind::RefMut, OutType::Any, "std::iter::Iterator"),
1979     ("not", 1, SelfKind::Value, OutType::Any, "std::ops::Not"),
1980     ("rem", 2, SelfKind::Value, OutType::Any, "std::ops::Rem"),
1981     ("shl", 2, SelfKind::Value, OutType::Any, "std::ops::Shl"),
1982     ("shr", 2, SelfKind::Value, OutType::Any, "std::ops::Shr"),
1983     ("sub", 2, SelfKind::Value, OutType::Any, "std::ops::Sub"),
1984 ];
1985
1986 #[cfg_attr(rustfmt, rustfmt_skip)]
1987 const PATTERN_METHODS: [(&str, usize); 17] = [
1988     ("contains", 1),
1989     ("starts_with", 1),
1990     ("ends_with", 1),
1991     ("find", 1),
1992     ("rfind", 1),
1993     ("split", 1),
1994     ("rsplit", 1),
1995     ("split_terminator", 1),
1996     ("rsplit_terminator", 1),
1997     ("splitn", 2),
1998     ("rsplitn", 2),
1999     ("matches", 1),
2000     ("rmatches", 1),
2001     ("match_indices", 1),
2002     ("rmatch_indices", 1),
2003     ("trim_left_matches", 1),
2004     ("trim_right_matches", 1),
2005 ];
2006
2007
2008 #[derive(Clone, Copy, PartialEq, Debug)]
2009 enum SelfKind {
2010     Value,
2011     Ref,
2012     RefMut,
2013     No,
2014 }
2015
2016 impl SelfKind {
2017     fn matches(
2018         self,
2019         ty: &hir::Ty,
2020         arg: &hir::Arg,
2021         self_ty: &hir::Ty,
2022         allow_value_for_ref: bool,
2023         generics: &hir::Generics,
2024     ) -> bool {
2025         // Self types in the HIR are desugared to explicit self types. So it will
2026         // always be `self:
2027         // SomeType`,
2028         // where SomeType can be `Self` or an explicit impl self type (e.g. `Foo` if
2029         // the impl is on `Foo`)
2030         // Thus, we only need to test equality against the impl self type or if it is
2031         // an explicit
2032         // `Self`. Furthermore, the only possible types for `self: ` are `&Self`,
2033         // `Self`, `&mut Self`,
2034         // and `Box<Self>`, including the equivalent types with `Foo`.
2035
2036         let is_actually_self = |ty| is_self_ty(ty) || ty == self_ty;
2037         if is_self(arg) {
2038             match self {
2039                 SelfKind::Value => is_actually_self(ty),
2040                 SelfKind::Ref | SelfKind::RefMut => {
2041                     if allow_value_for_ref && is_actually_self(ty) {
2042                         return true;
2043                     }
2044                     match ty.node {
2045                         hir::TyRptr(_, ref mt_ty) => {
2046                             let mutability_match = if self == SelfKind::Ref {
2047                                 mt_ty.mutbl == hir::MutImmutable
2048                             } else {
2049                                 mt_ty.mutbl == hir::MutMutable
2050                             };
2051                             is_actually_self(&mt_ty.ty) && mutability_match
2052                         },
2053                         _ => false,
2054                     }
2055                 },
2056                 _ => false,
2057             }
2058         } else {
2059             match self {
2060                 SelfKind::Value => false,
2061                 SelfKind::Ref => is_as_ref_or_mut_trait(ty, self_ty, generics, &paths::ASREF_TRAIT),
2062                 SelfKind::RefMut => is_as_ref_or_mut_trait(ty, self_ty, generics, &paths::ASMUT_TRAIT),
2063                 SelfKind::No => true,
2064             }
2065         }
2066     }
2067
2068     fn description(&self) -> &'static str {
2069         match *self {
2070             SelfKind::Value => "self by value",
2071             SelfKind::Ref => "self by reference",
2072             SelfKind::RefMut => "self by mutable reference",
2073             SelfKind::No => "no self",
2074         }
2075     }
2076 }
2077
2078 fn is_as_ref_or_mut_trait(ty: &hir::Ty, self_ty: &hir::Ty, generics: &hir::Generics, name: &[&str]) -> bool {
2079     single_segment_ty(ty).map_or(false, |seg| {
2080         generics.ty_params().any(|param| {
2081             param.name == seg.name && param.bounds.iter().any(|bound| {
2082                 if let hir::TyParamBound::TraitTyParamBound(ref ptr, ..) = *bound {
2083                     let path = &ptr.trait_ref.path;
2084                     match_path(path, name) && path.segments.last().map_or(false, |s| {
2085                         if let Some(ref params) = s.parameters {
2086                             if params.parenthesized {
2087                                 false
2088                             } else {
2089                                 params.types.len() == 1
2090                                     && (is_self_ty(&params.types[0]) || is_ty(&*params.types[0], self_ty))
2091                             }
2092                         } else {
2093                             false
2094                         }
2095                     })
2096                 } else {
2097                     false
2098                 }
2099             })
2100         })
2101     })
2102 }
2103
2104 fn is_ty(ty: &hir::Ty, self_ty: &hir::Ty) -> bool {
2105     match (&ty.node, &self_ty.node) {
2106         (
2107             &hir::TyPath(hir::QPath::Resolved(_, ref ty_path)),
2108             &hir::TyPath(hir::QPath::Resolved(_, ref self_ty_path)),
2109         ) => ty_path
2110             .segments
2111             .iter()
2112             .map(|seg| seg.name)
2113             .eq(self_ty_path.segments.iter().map(|seg| seg.name)),
2114         _ => false,
2115     }
2116 }
2117
2118 fn single_segment_ty(ty: &hir::Ty) -> Option<&hir::PathSegment> {
2119     if let hir::TyPath(ref path) = ty.node {
2120         single_segment_path(path)
2121     } else {
2122         None
2123     }
2124 }
2125
2126 impl Convention {
2127     fn check(&self, other: &str) -> bool {
2128         match *self {
2129             Convention::Eq(this) => this == other,
2130             Convention::StartsWith(this) => other.starts_with(this) && this != other,
2131         }
2132     }
2133 }
2134
2135 impl fmt::Display for Convention {
2136     fn fmt(&self, f: &mut fmt::Formatter) -> Result<(), fmt::Error> {
2137         match *self {
2138             Convention::Eq(this) => this.fmt(f),
2139             Convention::StartsWith(this) => this.fmt(f).and_then(|_| '*'.fmt(f)),
2140         }
2141     }
2142 }
2143
2144 #[derive(Clone, Copy)]
2145 enum OutType {
2146     Unit,
2147     Bool,
2148     Any,
2149     Ref,
2150 }
2151
2152 impl OutType {
2153     fn matches(&self, ty: &hir::FunctionRetTy) -> bool {
2154         match (self, ty) {
2155             (&OutType::Unit, &hir::DefaultReturn(_)) => true,
2156             (&OutType::Unit, &hir::Return(ref ty)) if ty.node == hir::TyTup(vec![].into()) => true,
2157             (&OutType::Bool, &hir::Return(ref ty)) if is_bool(ty) => true,
2158             (&OutType::Any, &hir::Return(ref ty)) if ty.node != hir::TyTup(vec![].into()) => true,
2159             (&OutType::Ref, &hir::Return(ref ty)) => matches!(ty.node, hir::TyRptr(_, _)),
2160             _ => false,
2161         }
2162     }
2163 }
2164
2165 fn is_bool(ty: &hir::Ty) -> bool {
2166     if let hir::TyPath(ref p) = ty.node {
2167         match_qpath(p, &["bool"])
2168     } else {
2169         false
2170     }
2171 }