]> git.lizzy.rs Git - rust.git/blob - clippy_lints/src/methods.rs
Adding handling and tests for custom type with implemented expect method
[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 = match match_type(cx, self_type, &paths::OPTION) {
1025             true => "||",
1026             false => "|_|",
1027         };
1028
1029         let sugg: Cow<_> = snippet(cx, arg.span, "..");
1030         let span_replace_word = method_span.with_hi(span.hi());
1031         
1032         span_lint_and_sugg(
1033             cx,
1034             EXPECT_FUN_CALL,
1035             span_replace_word,
1036             &format!("use of `{}` followed by a function call", name),
1037             "try this",
1038             format!("unwrap_or_else({} panic!({}))", closure, sugg),
1039         );
1040     }
1041
1042     if args.len() == 2 {
1043         match args[1].node {
1044             hir::ExprLit(_) => {},
1045             _ => check_general_case(cx, name, method_span, &args[0], &args[1], expr.span),
1046         }
1047     }
1048 }
1049
1050 /// Checks for the `CLONE_ON_COPY` lint.
1051 fn lint_clone_on_copy(cx: &LateContext, expr: &hir::Expr, arg: &hir::Expr, arg_ty: Ty) {
1052     let ty = cx.tables.expr_ty(expr);
1053     if let ty::TyRef(_, inner, _) = arg_ty.sty {
1054         if let ty::TyRef(_, innermost, _) = inner.sty {
1055             span_lint_and_then(
1056                 cx,
1057                 CLONE_DOUBLE_REF,
1058                 expr.span,
1059                 "using `clone` on a double-reference; \
1060                  this will copy the reference instead of cloning the inner type",
1061                 |db| if let Some(snip) = sugg::Sugg::hir_opt(cx, arg) {
1062                     let mut ty = innermost;
1063                     let mut n = 0;
1064                     while let ty::TyRef(_, inner, _) = ty.sty {
1065                         ty = inner;
1066                         n += 1;
1067                     }
1068                     let refs: String = iter::repeat('&').take(n + 1).collect();
1069                     let derefs: String = iter::repeat('*').take(n).collect();
1070                     let explicit = format!("{}{}::clone({})", refs, ty, snip);
1071                     db.span_suggestion(expr.span, "try dereferencing it", format!("{}({}{}).clone()", refs, derefs, snip.deref()));
1072                     db.span_suggestion(expr.span, "or try being explicit about what type to clone", explicit);
1073                 },
1074             );
1075             return; // don't report clone_on_copy
1076         }
1077     }
1078
1079     if is_copy(cx, ty) {
1080         let snip;
1081         if let Some(snippet) = sugg::Sugg::hir_opt(cx, arg) {
1082             if let ty::TyRef(..) = cx.tables.expr_ty(arg).sty {
1083                 let parent = cx.tcx.hir.get_parent_node(expr.id);
1084                 match cx.tcx.hir.get(parent) {
1085                     hir::map::NodeExpr(parent) => match parent.node {
1086                         // &*x is a nop, &x.clone() is not
1087                         hir::ExprAddrOf(..) |
1088                         // (*x).func() is useless, x.clone().func() can work in case func borrows mutably
1089                         hir::ExprMethodCall(..) => return,
1090                         _ => {},
1091                     }
1092                     hir::map::NodeStmt(stmt) => {
1093                         if let hir::StmtDecl(ref decl, _) = stmt.node {
1094                             if let hir::DeclLocal(ref loc) = decl.node {
1095                                 if let hir::PatKind::Ref(..) = loc.pat.node {
1096                                     // let ref y = *x borrows x, let ref y = x.clone() does not
1097                                     return;
1098                                 }
1099                             }
1100                         }
1101                     },
1102                     _ => {},
1103                 }
1104                 snip = Some(("try dereferencing it", format!("{}", snippet.deref())));
1105             } else {
1106                 snip = Some(("try removing the `clone` call", format!("{}", snippet)));
1107             }
1108         } else {
1109             snip = None;
1110         }
1111         span_lint_and_then(cx, CLONE_ON_COPY, expr.span, "using `clone` on a `Copy` type", |db| {
1112             if let Some((text, snip)) = snip {
1113                 db.span_suggestion(expr.span, text, snip);
1114             }
1115         });
1116     }
1117 }
1118
1119 fn lint_clone_on_ref_ptr(cx: &LateContext, expr: &hir::Expr, arg: &hir::Expr) {
1120     let obj_ty = walk_ptrs_ty(cx.tables.expr_ty(arg));
1121
1122     if let ty::TyAdt(_, subst) = obj_ty.sty {
1123         let caller_type = if match_type(cx, obj_ty, &paths::RC) {
1124             "Rc"
1125         } else if match_type(cx, obj_ty, &paths::ARC) {
1126             "Arc"
1127         } else if match_type(cx, obj_ty, &paths::WEAK_RC) || match_type(cx, obj_ty, &paths::WEAK_ARC) {
1128             "Weak"
1129         } else {
1130             return;
1131         };
1132
1133         span_lint_and_sugg(
1134             cx,
1135             CLONE_ON_REF_PTR,
1136             expr.span,
1137             "using '.clone()' on a ref-counted pointer",
1138             "try this",
1139             format!("{}::<{}>::clone(&{})", caller_type, subst.type_at(0), snippet(cx, arg.span, "_")),
1140         );
1141     }
1142 }
1143
1144
1145 fn lint_string_extend(cx: &LateContext, expr: &hir::Expr, args: &[hir::Expr]) {
1146     let arg = &args[1];
1147     if let Some(arglists) = method_chain_args(arg, &["chars"]) {
1148         let target = &arglists[0][0];
1149         let self_ty = walk_ptrs_ty(cx.tables.expr_ty(target));
1150         let ref_str = if self_ty.sty == ty::TyStr {
1151             ""
1152         } else if match_type(cx, self_ty, &paths::STRING) {
1153             "&"
1154         } else {
1155             return;
1156         };
1157
1158         span_lint_and_sugg(
1159             cx,
1160             STRING_EXTEND_CHARS,
1161             expr.span,
1162             "calling `.extend(_.chars())`",
1163             "try this",
1164             format!(
1165                 "{}.push_str({}{})",
1166                 snippet(cx, args[0].span, "_"),
1167                 ref_str,
1168                 snippet(cx, target.span, "_")
1169             ),
1170         );
1171     }
1172 }
1173
1174 fn lint_extend(cx: &LateContext, expr: &hir::Expr, args: &[hir::Expr]) {
1175     let obj_ty = walk_ptrs_ty(cx.tables.expr_ty(&args[0]));
1176     if match_type(cx, obj_ty, &paths::STRING) {
1177         lint_string_extend(cx, expr, args);
1178     }
1179 }
1180
1181 fn lint_cstring_as_ptr(cx: &LateContext, expr: &hir::Expr, new: &hir::Expr, unwrap: &hir::Expr) {
1182     if_chain! {
1183         if let hir::ExprCall(ref fun, ref args) = new.node;
1184         if args.len() == 1;
1185         if let hir::ExprPath(ref path) = fun.node;
1186         if let Def::Method(did) = cx.tables.qpath_def(path, fun.hir_id);
1187         if match_def_path(cx.tcx, did, &paths::CSTRING_NEW);
1188         then {
1189             span_lint_and_then(
1190                 cx,
1191                 TEMPORARY_CSTRING_AS_PTR,
1192                 expr.span,
1193                 "you are getting the inner pointer of a temporary `CString`",
1194                 |db| {
1195                     db.note("that pointer will be invalid outside this expression");
1196                     db.span_help(unwrap.span, "assign the `CString` to a variable to extend its lifetime");
1197                 });
1198         }
1199     }
1200 }
1201
1202 fn lint_iter_cloned_collect(cx: &LateContext, expr: &hir::Expr, iter_args: &[hir::Expr]) {
1203     if match_type(cx, cx.tables.expr_ty(expr), &paths::VEC)
1204         && derefs_to_slice(cx, &iter_args[0], cx.tables.expr_ty(&iter_args[0])).is_some()
1205     {
1206         span_lint(
1207             cx,
1208             ITER_CLONED_COLLECT,
1209             expr.span,
1210             "called `cloned().collect()` on a slice to create a `Vec`. Calling `to_vec()` is both faster and \
1211              more readable",
1212         );
1213     }
1214 }
1215
1216 fn lint_unnecessary_fold(cx: &LateContext, expr: &hir::Expr, fold_args: &[hir::Expr]) {
1217     // Check that this is a call to Iterator::fold rather than just some function called fold
1218     if !match_trait_method(cx, expr, &paths::ITERATOR) {
1219         return;
1220     }
1221
1222     assert!(fold_args.len() == 3,
1223         "Expected fold_args to have three entries - the receiver, the initial value and the closure");
1224
1225     fn check_fold_with_op(
1226         cx: &LateContext,
1227         fold_args: &[hir::Expr],
1228         op: hir::BinOp_,
1229         replacement_method_name: &str,
1230         replacement_has_args: bool) {
1231
1232         if_chain! {
1233             // Extract the body of the closure passed to fold
1234             if let hir::ExprClosure(_, _, body_id, _, _) = fold_args[2].node;
1235             let closure_body = cx.tcx.hir.body(body_id);
1236             let closure_expr = remove_blocks(&closure_body.value);
1237
1238             // Check if the closure body is of the form `acc <op> some_expr(x)`
1239             if let hir::ExprBinary(ref bin_op, ref left_expr, ref right_expr) = closure_expr.node;
1240             if bin_op.node == op;
1241
1242             // Extract the names of the two arguments to the closure
1243             if let Some(first_arg_ident) = get_arg_name(&closure_body.arguments[0].pat);
1244             if let Some(second_arg_ident) = get_arg_name(&closure_body.arguments[1].pat);
1245
1246             if match_var(&*left_expr, first_arg_ident);
1247             if replacement_has_args || match_var(&*right_expr, second_arg_ident);
1248
1249             then {
1250                 // Span containing `.fold(...)`
1251                 let next_point = cx.sess().codemap().next_point(fold_args[0].span);
1252                 let fold_span = next_point.with_hi(fold_args[2].span.hi() + BytePos(1));
1253
1254                 let sugg = if replacement_has_args {
1255                     format!(
1256                         ".{replacement}(|{s}| {r})",
1257                         replacement = replacement_method_name,
1258                         s = second_arg_ident,
1259                         r = snippet(cx, right_expr.span, "EXPR"),
1260                     )
1261                 } else {
1262                     format!(
1263                         ".{replacement}()",
1264                         replacement = replacement_method_name,
1265                     )
1266                 };
1267
1268                 span_lint_and_sugg(
1269                     cx,
1270                     UNNECESSARY_FOLD,
1271                     fold_span,
1272                     // TODO #2371 don't suggest e.g. .any(|x| f(x)) if we can suggest .any(f)
1273                     "this `.fold` can be written more succinctly using another method",
1274                     "try",
1275                     sugg,
1276                 );
1277             }
1278         }
1279     }
1280
1281     // Check if the first argument to .fold is a suitable literal
1282     match fold_args[1].node {
1283         hir::ExprLit(ref lit) => {
1284             match lit.node {
1285                 ast::LitKind::Bool(false) => check_fold_with_op(
1286                     cx, fold_args, hir::BinOp_::BiOr, "any", true
1287                 ),
1288                 ast::LitKind::Bool(true) => check_fold_with_op(
1289                     cx, fold_args, hir::BinOp_::BiAnd, "all", true
1290                 ),
1291                 ast::LitKind::Int(0, _) => check_fold_with_op(
1292                     cx, fold_args, hir::BinOp_::BiAdd, "sum", false
1293                 ),
1294                 ast::LitKind::Int(1, _) => check_fold_with_op(
1295                     cx, fold_args, hir::BinOp_::BiMul, "product", false
1296                 ),
1297                 _ => return
1298             }
1299         }
1300         _ => return
1301     };
1302 }
1303
1304 fn lint_iter_nth(cx: &LateContext, expr: &hir::Expr, iter_args: &[hir::Expr], is_mut: bool) {
1305     let mut_str = if is_mut { "_mut" } else { "" };
1306     let caller_type = if derefs_to_slice(cx, &iter_args[0], cx.tables.expr_ty(&iter_args[0])).is_some() {
1307         "slice"
1308     } else if match_type(cx, cx.tables.expr_ty(&iter_args[0]), &paths::VEC) {
1309         "Vec"
1310     } else if match_type(cx, cx.tables.expr_ty(&iter_args[0]), &paths::VEC_DEQUE) {
1311         "VecDeque"
1312     } else {
1313         return; // caller is not a type that we want to lint
1314     };
1315
1316     span_lint(
1317         cx,
1318         ITER_NTH,
1319         expr.span,
1320         &format!(
1321             "called `.iter{0}().nth()` on a {1}. Calling `.get{0}()` is both faster and more readable",
1322             mut_str,
1323             caller_type
1324         ),
1325     );
1326 }
1327
1328 fn lint_get_unwrap(cx: &LateContext, expr: &hir::Expr, get_args: &[hir::Expr], is_mut: bool) {
1329     // Note: we don't want to lint `get_mut().unwrap` for HashMap or BTreeMap,
1330     // because they do not implement `IndexMut`
1331     let expr_ty = cx.tables.expr_ty(&get_args[0]);
1332     let caller_type = if derefs_to_slice(cx, &get_args[0], expr_ty).is_some() {
1333         "slice"
1334     } else if match_type(cx, expr_ty, &paths::VEC) {
1335         "Vec"
1336     } else if match_type(cx, expr_ty, &paths::VEC_DEQUE) {
1337         "VecDeque"
1338     } else if !is_mut && match_type(cx, expr_ty, &paths::HASHMAP) {
1339         "HashMap"
1340     } else if !is_mut && match_type(cx, expr_ty, &paths::BTREEMAP) {
1341         "BTreeMap"
1342     } else {
1343         return; // caller is not a type that we want to lint
1344     };
1345
1346     let mut_str = if is_mut { "_mut" } else { "" };
1347     let borrow_str = if is_mut { "&mut " } else { "&" };
1348     span_lint_and_sugg(
1349         cx,
1350         GET_UNWRAP,
1351         expr.span,
1352         &format!(
1353             "called `.get{0}().unwrap()` on a {1}. Using `[]` is more clear and more concise",
1354             mut_str,
1355             caller_type
1356         ),
1357         "try this",
1358         format!(
1359             "{}{}[{}]",
1360             borrow_str,
1361             snippet(cx, get_args[0].span, "_"),
1362             snippet(cx, get_args[1].span, "_")
1363         ),
1364     );
1365 }
1366
1367 fn lint_iter_skip_next(cx: &LateContext, expr: &hir::Expr) {
1368     // lint if caller of skip is an Iterator
1369     if match_trait_method(cx, expr, &paths::ITERATOR) {
1370         span_lint(
1371             cx,
1372             ITER_SKIP_NEXT,
1373             expr.span,
1374             "called `skip(x).next()` on an iterator. This is more succinctly expressed by calling `nth(x)`",
1375         );
1376     }
1377 }
1378
1379 fn derefs_to_slice(cx: &LateContext, expr: &hir::Expr, ty: Ty) -> Option<sugg::Sugg<'static>> {
1380     fn may_slice(cx: &LateContext, ty: Ty) -> bool {
1381         match ty.sty {
1382             ty::TySlice(_) => true,
1383             ty::TyAdt(def, _) if def.is_box() => may_slice(cx, ty.boxed_ty()),
1384             ty::TyAdt(..) => match_type(cx, ty, &paths::VEC),
1385             ty::TyArray(_, size) => size.assert_usize(cx.tcx).expect("array length") < 32,
1386             ty::TyRef(_, inner, _) => may_slice(cx, inner),
1387             _ => false,
1388         }
1389     }
1390
1391     if let hir::ExprMethodCall(ref path, _, ref args) = expr.node {
1392         if path.name == "iter" && may_slice(cx, cx.tables.expr_ty(&args[0])) {
1393             sugg::Sugg::hir_opt(cx, &args[0]).map(|sugg| sugg.addr())
1394         } else {
1395             None
1396         }
1397     } else {
1398         match ty.sty {
1399             ty::TySlice(_) => sugg::Sugg::hir_opt(cx, expr),
1400             ty::TyAdt(def, _) if def.is_box() && may_slice(cx, ty.boxed_ty()) => sugg::Sugg::hir_opt(cx, expr),
1401             ty::TyRef(_, inner, _) => if may_slice(cx, inner) {
1402                 sugg::Sugg::hir_opt(cx, expr)
1403             } else {
1404                 None
1405             },
1406             _ => None,
1407         }
1408     }
1409 }
1410
1411 /// lint use of `unwrap()` for `Option`s and `Result`s
1412 fn lint_unwrap(cx: &LateContext, expr: &hir::Expr, unwrap_args: &[hir::Expr]) {
1413     let obj_ty = walk_ptrs_ty(cx.tables.expr_ty(&unwrap_args[0]));
1414
1415     let mess = if match_type(cx, obj_ty, &paths::OPTION) {
1416         Some((OPTION_UNWRAP_USED, "an Option", "None"))
1417     } else if match_type(cx, obj_ty, &paths::RESULT) {
1418         Some((RESULT_UNWRAP_USED, "a Result", "Err"))
1419     } else {
1420         None
1421     };
1422
1423     if let Some((lint, kind, none_value)) = mess {
1424         span_lint(
1425             cx,
1426             lint,
1427             expr.span,
1428             &format!(
1429                 "used unwrap() on {} value. If you don't want to handle the {} case gracefully, consider \
1430                  using expect() to provide a better panic \
1431                  message",
1432                 kind,
1433                 none_value
1434             ),
1435         );
1436     }
1437 }
1438
1439 /// lint use of `ok().expect()` for `Result`s
1440 fn lint_ok_expect(cx: &LateContext, expr: &hir::Expr, ok_args: &[hir::Expr]) {
1441     // lint if the caller of `ok()` is a `Result`
1442     if match_type(cx, cx.tables.expr_ty(&ok_args[0]), &paths::RESULT) {
1443         let result_type = cx.tables.expr_ty(&ok_args[0]);
1444         if let Some(error_type) = get_error_type(cx, result_type) {
1445             if has_debug_impl(error_type, cx) {
1446                 span_lint(
1447                     cx,
1448                     OK_EXPECT,
1449                     expr.span,
1450                     "called `ok().expect()` on a Result value. You can call `expect` directly on the `Result`",
1451                 );
1452             }
1453         }
1454     }
1455 }
1456
1457 /// lint use of `map().unwrap_or()` for `Option`s
1458 fn lint_map_unwrap_or(cx: &LateContext, expr: &hir::Expr, map_args: &[hir::Expr], unwrap_args: &[hir::Expr]) {
1459     // lint if the caller of `map()` is an `Option`
1460     if match_type(cx, cx.tables.expr_ty(&map_args[0]), &paths::OPTION) {
1461         // get snippets for args to map() and unwrap_or()
1462         let map_snippet = snippet(cx, map_args[1].span, "..");
1463         let unwrap_snippet = snippet(cx, unwrap_args[1].span, "..");
1464         // lint message
1465         // comparing the snippet from source to raw text ("None") below is safe
1466         // because we already have checked the type.
1467         let arg = if unwrap_snippet == "None" {
1468             "None"
1469         } else {
1470             "a"
1471         };
1472         let suggest = if unwrap_snippet == "None" {
1473             "and_then(f)"
1474         } else {
1475             "map_or(a, f)"
1476         };
1477         let msg = &format!(
1478             "called `map(f).unwrap_or({})` on an Option value. \
1479              This can be done more directly by calling `{}` instead",
1480             arg,
1481             suggest
1482         );
1483         // lint, with note if neither arg is > 1 line and both map() and
1484         // unwrap_or() have the same span
1485         let multiline = map_snippet.lines().count() > 1 || unwrap_snippet.lines().count() > 1;
1486         let same_span = map_args[1].span.ctxt() == unwrap_args[1].span.ctxt();
1487         if same_span && !multiline {
1488             let suggest = if unwrap_snippet == "None" {
1489                 format!("and_then({})", map_snippet)
1490             } else {
1491                 format!("map_or({}, {})", unwrap_snippet, map_snippet)
1492             };
1493             let note = format!(
1494                 "replace `map({}).unwrap_or({})` with `{}`",
1495                 map_snippet,
1496                 unwrap_snippet,
1497                 suggest
1498             );
1499             span_note_and_lint(cx, OPTION_MAP_UNWRAP_OR, expr.span, msg, expr.span, &note);
1500         } else if same_span && multiline {
1501             span_lint(cx, OPTION_MAP_UNWRAP_OR, expr.span, msg);
1502         };
1503     }
1504 }
1505
1506 /// lint use of `map().unwrap_or_else()` for `Option`s and `Result`s
1507 fn lint_map_unwrap_or_else<'a, 'tcx>(
1508     cx: &LateContext<'a, 'tcx>,
1509     expr: &'tcx hir::Expr,
1510     map_args: &'tcx [hir::Expr],
1511     unwrap_args: &'tcx [hir::Expr],
1512 ) {
1513     // lint if the caller of `map()` is an `Option`
1514     let is_option = match_type(cx, cx.tables.expr_ty(&map_args[0]), &paths::OPTION);
1515     let is_result = match_type(cx, cx.tables.expr_ty(&map_args[0]), &paths::RESULT);
1516     if is_option || is_result {
1517         // lint message
1518         let msg = if is_option {
1519             "called `map(f).unwrap_or_else(g)` on an Option value. This can be done more directly by calling \
1520              `map_or_else(g, f)` instead"
1521         } else {
1522             "called `map(f).unwrap_or_else(g)` on a Result value. This can be done more directly by calling \
1523              `ok().map_or_else(g, f)` instead"
1524         };
1525         // get snippets for args to map() and unwrap_or_else()
1526         let map_snippet = snippet(cx, map_args[1].span, "..");
1527         let unwrap_snippet = snippet(cx, unwrap_args[1].span, "..");
1528         // lint, with note if neither arg is > 1 line and both map() and
1529         // unwrap_or_else() have the same span
1530         let multiline = map_snippet.lines().count() > 1 || unwrap_snippet.lines().count() > 1;
1531         let same_span = map_args[1].span.ctxt() == unwrap_args[1].span.ctxt();
1532         if same_span && !multiline {
1533             span_note_and_lint(
1534                 cx,
1535                 if is_option {
1536                     OPTION_MAP_UNWRAP_OR_ELSE
1537                 } else {
1538                     RESULT_MAP_UNWRAP_OR_ELSE
1539                 },
1540                 expr.span,
1541                 msg,
1542                 expr.span,
1543                 &format!(
1544                     "replace `map({0}).unwrap_or_else({1})` with `{2}map_or_else({1}, {0})`",
1545                     map_snippet,
1546                     unwrap_snippet,
1547                     if is_result { "ok()." } else { "" }
1548                 ),
1549             );
1550         } else if same_span && multiline {
1551             span_lint(
1552                 cx,
1553                 if is_option {
1554                     OPTION_MAP_UNWRAP_OR_ELSE
1555                 } else {
1556                     RESULT_MAP_UNWRAP_OR_ELSE
1557                 },
1558                 expr.span,
1559                 msg,
1560             );
1561         };
1562     }
1563 }
1564
1565 /// lint use of `_.map_or(None, _)` for `Option`s
1566 fn lint_map_or_none<'a, 'tcx>(cx: &LateContext<'a, 'tcx>, expr: &'tcx hir::Expr, map_or_args: &'tcx [hir::Expr]) {
1567     if match_type(cx, cx.tables.expr_ty(&map_or_args[0]), &paths::OPTION) {
1568         // check if the first non-self argument to map_or() is None
1569         let map_or_arg_is_none = if let hir::Expr_::ExprPath(ref qpath) = map_or_args[1].node {
1570             match_qpath(qpath, &paths::OPTION_NONE)
1571         } else {
1572             false
1573         };
1574
1575         if map_or_arg_is_none {
1576             // lint message
1577             let msg = "called `map_or(None, f)` on an Option value. This can be done more directly by calling \
1578                        `and_then(f)` instead";
1579             let map_or_self_snippet = snippet(cx, map_or_args[0].span, "..");
1580             let map_or_func_snippet = snippet(cx, map_or_args[2].span, "..");
1581             let hint = format!("{0}.and_then({1})", map_or_self_snippet, map_or_func_snippet);
1582             span_lint_and_then(cx, OPTION_MAP_OR_NONE, expr.span, msg, |db| {
1583                 db.span_suggestion(expr.span, "try using and_then instead", hint);
1584             });
1585         }
1586     }
1587 }
1588
1589 /// lint use of `filter().next()` for `Iterators`
1590 fn lint_filter_next<'a, 'tcx>(cx: &LateContext<'a, 'tcx>, expr: &'tcx hir::Expr, filter_args: &'tcx [hir::Expr]) {
1591     // lint if caller of `.filter().next()` is an Iterator
1592     if match_trait_method(cx, expr, &paths::ITERATOR) {
1593         let msg = "called `filter(p).next()` on an `Iterator`. This is more succinctly expressed by calling \
1594                    `.find(p)` instead.";
1595         let filter_snippet = snippet(cx, filter_args[1].span, "..");
1596         if filter_snippet.lines().count() <= 1 {
1597             // add note if not multi-line
1598             span_note_and_lint(
1599                 cx,
1600                 FILTER_NEXT,
1601                 expr.span,
1602                 msg,
1603                 expr.span,
1604                 &format!("replace `filter({0}).next()` with `find({0})`", filter_snippet),
1605             );
1606         } else {
1607             span_lint(cx, FILTER_NEXT, expr.span, msg);
1608         }
1609     }
1610 }
1611
1612 /// lint use of `filter().map()` for `Iterators`
1613 fn lint_filter_map<'a, 'tcx>(
1614     cx: &LateContext<'a, 'tcx>,
1615     expr: &'tcx hir::Expr,
1616     _filter_args: &'tcx [hir::Expr],
1617     _map_args: &'tcx [hir::Expr],
1618 ) {
1619     // lint if caller of `.filter().map()` is an Iterator
1620     if match_trait_method(cx, expr, &paths::ITERATOR) {
1621         let msg = "called `filter(p).map(q)` on an `Iterator`. \
1622                    This is more succinctly expressed by calling `.filter_map(..)` instead.";
1623         span_lint(cx, FILTER_MAP, expr.span, msg);
1624     }
1625 }
1626
1627 /// lint use of `filter().map()` for `Iterators`
1628 fn lint_filter_map_map<'a, 'tcx>(
1629     cx: &LateContext<'a, 'tcx>,
1630     expr: &'tcx hir::Expr,
1631     _filter_args: &'tcx [hir::Expr],
1632     _map_args: &'tcx [hir::Expr],
1633 ) {
1634     // lint if caller of `.filter().map()` is an Iterator
1635     if match_trait_method(cx, expr, &paths::ITERATOR) {
1636         let msg = "called `filter_map(p).map(q)` on an `Iterator`. \
1637                    This is more succinctly expressed by only calling `.filter_map(..)` instead.";
1638         span_lint(cx, FILTER_MAP, expr.span, msg);
1639     }
1640 }
1641
1642 /// lint use of `filter().flat_map()` for `Iterators`
1643 fn lint_filter_flat_map<'a, 'tcx>(
1644     cx: &LateContext<'a, 'tcx>,
1645     expr: &'tcx hir::Expr,
1646     _filter_args: &'tcx [hir::Expr],
1647     _map_args: &'tcx [hir::Expr],
1648 ) {
1649     // lint if caller of `.filter().flat_map()` is an Iterator
1650     if match_trait_method(cx, expr, &paths::ITERATOR) {
1651         let msg = "called `filter(p).flat_map(q)` on an `Iterator`. \
1652                    This is more succinctly expressed by calling `.flat_map(..)` \
1653                    and filtering by returning an empty Iterator.";
1654         span_lint(cx, FILTER_MAP, expr.span, msg);
1655     }
1656 }
1657
1658 /// lint use of `filter_map().flat_map()` for `Iterators`
1659 fn lint_filter_map_flat_map<'a, 'tcx>(
1660     cx: &LateContext<'a, 'tcx>,
1661     expr: &'tcx hir::Expr,
1662     _filter_args: &'tcx [hir::Expr],
1663     _map_args: &'tcx [hir::Expr],
1664 ) {
1665     // lint if caller of `.filter_map().flat_map()` is an Iterator
1666     if match_trait_method(cx, expr, &paths::ITERATOR) {
1667         let msg = "called `filter_map(p).flat_map(q)` on an `Iterator`. \
1668                    This is more succinctly expressed by calling `.flat_map(..)` \
1669                    and filtering by returning an empty Iterator.";
1670         span_lint(cx, FILTER_MAP, expr.span, msg);
1671     }
1672 }
1673
1674 /// lint searching an Iterator followed by `is_some()`
1675 fn lint_search_is_some<'a, 'tcx>(
1676     cx: &LateContext<'a, 'tcx>,
1677     expr: &'tcx hir::Expr,
1678     search_method: &str,
1679     search_args: &'tcx [hir::Expr],
1680     is_some_args: &'tcx [hir::Expr],
1681 ) {
1682     // lint if caller of search is an Iterator
1683     if match_trait_method(cx, &is_some_args[0], &paths::ITERATOR) {
1684         let msg = format!(
1685             "called `is_some()` after searching an `Iterator` with {}. This is more succinctly \
1686              expressed by calling `any()`.",
1687             search_method
1688         );
1689         let search_snippet = snippet(cx, search_args[1].span, "..");
1690         if search_snippet.lines().count() <= 1 {
1691             // add note if not multi-line
1692             span_note_and_lint(
1693                 cx,
1694                 SEARCH_IS_SOME,
1695                 expr.span,
1696                 &msg,
1697                 expr.span,
1698                 &format!("replace `{0}({1}).is_some()` with `any({1})`", search_method, search_snippet),
1699             );
1700         } else {
1701             span_lint(cx, SEARCH_IS_SOME, expr.span, &msg);
1702         }
1703     }
1704 }
1705
1706 /// Used for `lint_binary_expr_with_method_call`.
1707 #[derive(Copy, Clone)]
1708 struct BinaryExprInfo<'a> {
1709     expr: &'a hir::Expr,
1710     chain: &'a hir::Expr,
1711     other: &'a hir::Expr,
1712     eq: bool,
1713 }
1714
1715 /// Checks for the `CHARS_NEXT_CMP` and `CHARS_LAST_CMP` lints.
1716 fn lint_binary_expr_with_method_call<'a, 'tcx: 'a>(cx: &LateContext<'a, 'tcx>, info: &mut BinaryExprInfo) {
1717     macro_rules! lint_with_both_lhs_and_rhs {
1718         ($func:ident, $cx:expr, $info:ident) => {
1719             if !$func($cx, $info) {
1720                 ::std::mem::swap(&mut $info.chain, &mut $info.other);
1721                 if $func($cx, $info) {
1722                     return;
1723                 }
1724             }
1725         }
1726     }
1727
1728     lint_with_both_lhs_and_rhs!(lint_chars_next_cmp, cx, info);
1729     lint_with_both_lhs_and_rhs!(lint_chars_last_cmp, cx, info);
1730     lint_with_both_lhs_and_rhs!(lint_chars_next_cmp_with_unwrap, cx, info);
1731     lint_with_both_lhs_and_rhs!(lint_chars_last_cmp_with_unwrap, cx, info);
1732 }
1733
1734 /// Wrapper fn for `CHARS_NEXT_CMP` and `CHARS_NEXT_CMP` lints.
1735 fn lint_chars_cmp<'a, 'tcx>(
1736     cx: &LateContext<'a, 'tcx>,
1737     info: &BinaryExprInfo,
1738     chain_methods: &[&str],
1739     lint: &'static Lint,
1740     suggest: &str,
1741 ) -> bool {
1742     if_chain! {
1743         if let Some(args) = method_chain_args(info.chain, chain_methods);
1744         if let hir::ExprCall(ref fun, ref arg_char) = info.other.node;
1745         if arg_char.len() == 1;
1746         if let hir::ExprPath(ref qpath) = fun.node;
1747         if let Some(segment) = single_segment_path(qpath);
1748         if segment.name == "Some";
1749         then {
1750             let self_ty = walk_ptrs_ty(cx.tables.expr_ty_adjusted(&args[0][0]));
1751
1752             if self_ty.sty != ty::TyStr {
1753                 return false;
1754             }
1755
1756             span_lint_and_sugg(cx,
1757                                lint,
1758                                info.expr.span,
1759                                &format!("you should use the `{}` method", suggest),
1760                                "like this",
1761                                format!("{}{}.{}({})",
1762                                        if info.eq { "" } else { "!" },
1763                                        snippet(cx, args[0][0].span, "_"),
1764                                        suggest,
1765                                        snippet(cx, arg_char[0].span, "_")));
1766
1767             return true;
1768         }
1769     }
1770
1771     false
1772 }
1773
1774 /// Checks for the `CHARS_NEXT_CMP` lint.
1775 fn lint_chars_next_cmp<'a, 'tcx>(cx: &LateContext<'a, 'tcx>, info: &BinaryExprInfo) -> bool {
1776     lint_chars_cmp(cx, info, &["chars", "next"], CHARS_NEXT_CMP, "starts_with")
1777 }
1778
1779 /// Checks for the `CHARS_LAST_CMP` lint.
1780 fn lint_chars_last_cmp<'a, 'tcx>(cx: &LateContext<'a, 'tcx>, info: &BinaryExprInfo) -> bool {
1781     if lint_chars_cmp(cx, info, &["chars", "last"], CHARS_NEXT_CMP, "ends_with") {
1782         true
1783     } else {
1784         lint_chars_cmp(cx, info, &["chars", "next_back"], CHARS_NEXT_CMP, "ends_with")
1785     }
1786 }
1787
1788 /// Wrapper fn for `CHARS_NEXT_CMP` and `CHARS_LAST_CMP` lints with `unwrap()`.
1789 fn lint_chars_cmp_with_unwrap<'a, 'tcx>(
1790     cx: &LateContext<'a, 'tcx>,
1791     info: &BinaryExprInfo,
1792     chain_methods: &[&str],
1793     lint: &'static Lint,
1794     suggest: &str,
1795 ) -> bool {
1796     if_chain! {
1797         if let Some(args) = method_chain_args(info.chain, chain_methods);
1798         if let hir::ExprLit(ref lit) = info.other.node;
1799         if let ast::LitKind::Char(c) = lit.node;
1800         then {
1801             span_lint_and_sugg(
1802                 cx,
1803                 lint,
1804                 info.expr.span,
1805                 &format!("you should use the `{}` method", suggest),
1806                 "like this",
1807                 format!("{}{}.{}('{}')",
1808                         if info.eq { "" } else { "!" },
1809                         snippet(cx, args[0][0].span, "_"),
1810                         suggest,
1811                         c)
1812             );
1813
1814             return true;
1815         }
1816     }
1817
1818     false
1819 }
1820
1821 /// Checks for the `CHARS_NEXT_CMP` lint with `unwrap()`.
1822 fn lint_chars_next_cmp_with_unwrap<'a, 'tcx>(cx: &LateContext<'a, 'tcx>, info: &BinaryExprInfo) -> bool {
1823     lint_chars_cmp_with_unwrap(cx, info, &["chars", "next", "unwrap"], CHARS_NEXT_CMP, "starts_with")
1824 }
1825
1826 /// Checks for the `CHARS_LAST_CMP` lint with `unwrap()`.
1827 fn lint_chars_last_cmp_with_unwrap<'a, 'tcx>(cx: &LateContext<'a, 'tcx>, info: &BinaryExprInfo) -> bool {
1828     if lint_chars_cmp_with_unwrap(cx, info, &["chars", "last", "unwrap"], CHARS_LAST_CMP, "ends_with") {
1829         true
1830     } else {
1831         lint_chars_cmp_with_unwrap(cx, info, &["chars", "next_back", "unwrap"], CHARS_LAST_CMP, "ends_with")
1832     }
1833 }
1834
1835 /// lint for length-1 `str`s for methods in `PATTERN_METHODS`
1836 fn lint_single_char_pattern<'a, 'tcx>(cx: &LateContext<'a, 'tcx>, expr: &'tcx hir::Expr, arg: &'tcx hir::Expr) {
1837     if let Some((Constant::Str(r), _)) = constant(cx, cx.tables, arg) {
1838         if r.len() == 1 {
1839             let c = r.chars().next().unwrap();
1840             let snip = snippet(cx, expr.span, "..");
1841             let hint = snip.replace(
1842                 &format!("\"{}\"", c.escape_default()),
1843                 &format!("'{}'", c.escape_default()));
1844             span_lint_and_then(
1845                 cx,
1846                 SINGLE_CHAR_PATTERN,
1847                 arg.span,
1848                 "single-character string constant used as pattern",
1849                 |db| {
1850                     db.span_suggestion(expr.span, "try using a char instead", hint);
1851                 },
1852             );
1853         }
1854     }
1855 }
1856
1857 /// Checks for the `USELESS_ASREF` lint.
1858 fn lint_asref(cx: &LateContext, expr: &hir::Expr, call_name: &str, as_ref_args: &[hir::Expr]) {
1859     // when we get here, we've already checked that the call name is "as_ref" or "as_mut"
1860     // check if the call is to the actual `AsRef` or `AsMut` trait
1861     if match_trait_method(cx, expr, &paths::ASREF_TRAIT) || match_trait_method(cx, expr, &paths::ASMUT_TRAIT) {
1862         // check if the type after `as_ref` or `as_mut` is the same as before
1863         let recvr = &as_ref_args[0];
1864         let rcv_ty = cx.tables.expr_ty(recvr);
1865         let res_ty = cx.tables.expr_ty(expr);
1866         let (base_res_ty, res_depth) = walk_ptrs_ty_depth(res_ty);
1867         let (base_rcv_ty, rcv_depth) = walk_ptrs_ty_depth(rcv_ty);
1868         if base_rcv_ty == base_res_ty && rcv_depth >= res_depth {
1869             span_lint_and_sugg(
1870                 cx,
1871                 USELESS_ASREF,
1872                 expr.span,
1873                 &format!("this call to `{}` does nothing", call_name),
1874                 "try this",
1875                 snippet(cx, recvr.span, "_").into_owned(),
1876             );
1877         }
1878     }
1879 }
1880
1881 /// Given a `Result<T, E>` type, return its error type (`E`).
1882 fn get_error_type<'a>(cx: &LateContext, ty: Ty<'a>) -> Option<Ty<'a>> {
1883     if let ty::TyAdt(_, substs) = ty.sty {
1884         if match_type(cx, ty, &paths::RESULT) {
1885             substs.types().nth(1)
1886         } else {
1887             None
1888         }
1889     } else {
1890         None
1891     }
1892 }
1893
1894 /// This checks whether a given type is known to implement Debug.
1895 fn has_debug_impl<'a, 'b>(ty: Ty<'a>, cx: &LateContext<'b, 'a>) -> bool {
1896     match cx.tcx.lang_items().debug_trait() {
1897         Some(debug) => implements_trait(cx, ty, debug, &[]),
1898         None => false,
1899     }
1900 }
1901
1902 enum Convention {
1903     Eq(&'static str),
1904     StartsWith(&'static str),
1905 }
1906
1907 #[cfg_attr(rustfmt, rustfmt_skip)]
1908 const CONVENTIONS: [(Convention, &[SelfKind]); 6] = [
1909     (Convention::Eq("new"), &[SelfKind::No]),
1910     (Convention::StartsWith("as_"), &[SelfKind::Ref, SelfKind::RefMut]),
1911     (Convention::StartsWith("from_"), &[SelfKind::No]),
1912     (Convention::StartsWith("into_"), &[SelfKind::Value]),
1913     (Convention::StartsWith("is_"), &[SelfKind::Ref, SelfKind::No]),
1914     (Convention::StartsWith("to_"), &[SelfKind::Ref]),
1915 ];
1916
1917 #[cfg_attr(rustfmt, rustfmt_skip)]
1918 const TRAIT_METHODS: [(&str, usize, SelfKind, OutType, &str); 30] = [
1919     ("add", 2, SelfKind::Value, OutType::Any, "std::ops::Add"),
1920     ("as_mut", 1, SelfKind::RefMut, OutType::Ref, "std::convert::AsMut"),
1921     ("as_ref", 1, SelfKind::Ref, OutType::Ref, "std::convert::AsRef"),
1922     ("bitand", 2, SelfKind::Value, OutType::Any, "std::ops::BitAnd"),
1923     ("bitor", 2, SelfKind::Value, OutType::Any, "std::ops::BitOr"),
1924     ("bitxor", 2, SelfKind::Value, OutType::Any, "std::ops::BitXor"),
1925     ("borrow", 1, SelfKind::Ref, OutType::Ref, "std::borrow::Borrow"),
1926     ("borrow_mut", 1, SelfKind::RefMut, OutType::Ref, "std::borrow::BorrowMut"),
1927     ("clone", 1, SelfKind::Ref, OutType::Any, "std::clone::Clone"),
1928     ("cmp", 2, SelfKind::Ref, OutType::Any, "std::cmp::Ord"),
1929     ("default", 0, SelfKind::No, OutType::Any, "std::default::Default"),
1930     ("deref", 1, SelfKind::Ref, OutType::Ref, "std::ops::Deref"),
1931     ("deref_mut", 1, SelfKind::RefMut, OutType::Ref, "std::ops::DerefMut"),
1932     ("div", 2, SelfKind::Value, OutType::Any, "std::ops::Div"),
1933     ("drop", 1, SelfKind::RefMut, OutType::Unit, "std::ops::Drop"),
1934     ("eq", 2, SelfKind::Ref, OutType::Bool, "std::cmp::PartialEq"),
1935     ("from_iter", 1, SelfKind::No, OutType::Any, "std::iter::FromIterator"),
1936     ("from_str", 1, SelfKind::No, OutType::Any, "std::str::FromStr"),
1937     ("hash", 2, SelfKind::Ref, OutType::Unit, "std::hash::Hash"),
1938     ("index", 2, SelfKind::Ref, OutType::Ref, "std::ops::Index"),
1939     ("index_mut", 2, SelfKind::RefMut, OutType::Ref, "std::ops::IndexMut"),
1940     ("into_iter", 1, SelfKind::Value, OutType::Any, "std::iter::IntoIterator"),
1941     ("mul", 2, SelfKind::Value, OutType::Any, "std::ops::Mul"),
1942     ("neg", 1, SelfKind::Value, OutType::Any, "std::ops::Neg"),
1943     ("next", 1, SelfKind::RefMut, OutType::Any, "std::iter::Iterator"),
1944     ("not", 1, SelfKind::Value, OutType::Any, "std::ops::Not"),
1945     ("rem", 2, SelfKind::Value, OutType::Any, "std::ops::Rem"),
1946     ("shl", 2, SelfKind::Value, OutType::Any, "std::ops::Shl"),
1947     ("shr", 2, SelfKind::Value, OutType::Any, "std::ops::Shr"),
1948     ("sub", 2, SelfKind::Value, OutType::Any, "std::ops::Sub"),
1949 ];
1950
1951 #[cfg_attr(rustfmt, rustfmt_skip)]
1952 const PATTERN_METHODS: [(&str, usize); 17] = [
1953     ("contains", 1),
1954     ("starts_with", 1),
1955     ("ends_with", 1),
1956     ("find", 1),
1957     ("rfind", 1),
1958     ("split", 1),
1959     ("rsplit", 1),
1960     ("split_terminator", 1),
1961     ("rsplit_terminator", 1),
1962     ("splitn", 2),
1963     ("rsplitn", 2),
1964     ("matches", 1),
1965     ("rmatches", 1),
1966     ("match_indices", 1),
1967     ("rmatch_indices", 1),
1968     ("trim_left_matches", 1),
1969     ("trim_right_matches", 1),
1970 ];
1971
1972
1973 #[derive(Clone, Copy, PartialEq, Debug)]
1974 enum SelfKind {
1975     Value,
1976     Ref,
1977     RefMut,
1978     No,
1979 }
1980
1981 impl SelfKind {
1982     fn matches(
1983         self,
1984         ty: &hir::Ty,
1985         arg: &hir::Arg,
1986         self_ty: &hir::Ty,
1987         allow_value_for_ref: bool,
1988         generics: &hir::Generics,
1989     ) -> bool {
1990         // Self types in the HIR are desugared to explicit self types. So it will
1991         // always be `self:
1992         // SomeType`,
1993         // where SomeType can be `Self` or an explicit impl self type (e.g. `Foo` if
1994         // the impl is on `Foo`)
1995         // Thus, we only need to test equality against the impl self type or if it is
1996         // an explicit
1997         // `Self`. Furthermore, the only possible types for `self: ` are `&Self`,
1998         // `Self`, `&mut Self`,
1999         // and `Box<Self>`, including the equivalent types with `Foo`.
2000
2001         let is_actually_self = |ty| is_self_ty(ty) || ty == self_ty;
2002         if is_self(arg) {
2003             match self {
2004                 SelfKind::Value => is_actually_self(ty),
2005                 SelfKind::Ref | SelfKind::RefMut => {
2006                     if allow_value_for_ref && is_actually_self(ty) {
2007                         return true;
2008                     }
2009                     match ty.node {
2010                         hir::TyRptr(_, ref mt_ty) => {
2011                             let mutability_match = if self == SelfKind::Ref {
2012                                 mt_ty.mutbl == hir::MutImmutable
2013                             } else {
2014                                 mt_ty.mutbl == hir::MutMutable
2015                             };
2016                             is_actually_self(&mt_ty.ty) && mutability_match
2017                         },
2018                         _ => false,
2019                     }
2020                 },
2021                 _ => false,
2022             }
2023         } else {
2024             match self {
2025                 SelfKind::Value => false,
2026                 SelfKind::Ref => is_as_ref_or_mut_trait(ty, self_ty, generics, &paths::ASREF_TRAIT),
2027                 SelfKind::RefMut => is_as_ref_or_mut_trait(ty, self_ty, generics, &paths::ASMUT_TRAIT),
2028                 SelfKind::No => true,
2029             }
2030         }
2031     }
2032
2033     fn description(&self) -> &'static str {
2034         match *self {
2035             SelfKind::Value => "self by value",
2036             SelfKind::Ref => "self by reference",
2037             SelfKind::RefMut => "self by mutable reference",
2038             SelfKind::No => "no self",
2039         }
2040     }
2041 }
2042
2043 fn is_as_ref_or_mut_trait(ty: &hir::Ty, self_ty: &hir::Ty, generics: &hir::Generics, name: &[&str]) -> bool {
2044     single_segment_ty(ty).map_or(false, |seg| {
2045         generics.ty_params().any(|param| {
2046             param.name == seg.name && param.bounds.iter().any(|bound| {
2047                 if let hir::TyParamBound::TraitTyParamBound(ref ptr, ..) = *bound {
2048                     let path = &ptr.trait_ref.path;
2049                     match_path(path, name) && path.segments.last().map_or(false, |s| {
2050                         if let Some(ref params) = s.parameters {
2051                             if params.parenthesized {
2052                                 false
2053                             } else {
2054                                 params.types.len() == 1
2055                                     && (is_self_ty(&params.types[0]) || is_ty(&*params.types[0], self_ty))
2056                             }
2057                         } else {
2058                             false
2059                         }
2060                     })
2061                 } else {
2062                     false
2063                 }
2064             })
2065         })
2066     })
2067 }
2068
2069 fn is_ty(ty: &hir::Ty, self_ty: &hir::Ty) -> bool {
2070     match (&ty.node, &self_ty.node) {
2071         (
2072             &hir::TyPath(hir::QPath::Resolved(_, ref ty_path)),
2073             &hir::TyPath(hir::QPath::Resolved(_, ref self_ty_path)),
2074         ) => ty_path
2075             .segments
2076             .iter()
2077             .map(|seg| seg.name)
2078             .eq(self_ty_path.segments.iter().map(|seg| seg.name)),
2079         _ => false,
2080     }
2081 }
2082
2083 fn single_segment_ty(ty: &hir::Ty) -> Option<&hir::PathSegment> {
2084     if let hir::TyPath(ref path) = ty.node {
2085         single_segment_path(path)
2086     } else {
2087         None
2088     }
2089 }
2090
2091 impl Convention {
2092     fn check(&self, other: &str) -> bool {
2093         match *self {
2094             Convention::Eq(this) => this == other,
2095             Convention::StartsWith(this) => other.starts_with(this) && this != other,
2096         }
2097     }
2098 }
2099
2100 impl fmt::Display for Convention {
2101     fn fmt(&self, f: &mut fmt::Formatter) -> Result<(), fmt::Error> {
2102         match *self {
2103             Convention::Eq(this) => this.fmt(f),
2104             Convention::StartsWith(this) => this.fmt(f).and_then(|_| '*'.fmt(f)),
2105         }
2106     }
2107 }
2108
2109 #[derive(Clone, Copy)]
2110 enum OutType {
2111     Unit,
2112     Bool,
2113     Any,
2114     Ref,
2115 }
2116
2117 impl OutType {
2118     fn matches(&self, ty: &hir::FunctionRetTy) -> bool {
2119         match (self, ty) {
2120             (&OutType::Unit, &hir::DefaultReturn(_)) => true,
2121             (&OutType::Unit, &hir::Return(ref ty)) if ty.node == hir::TyTup(vec![].into()) => true,
2122             (&OutType::Bool, &hir::Return(ref ty)) if is_bool(ty) => true,
2123             (&OutType::Any, &hir::Return(ref ty)) if ty.node != hir::TyTup(vec![].into()) => true,
2124             (&OutType::Ref, &hir::Return(ref ty)) => matches!(ty.node, hir::TyRptr(_, _)),
2125             _ => false,
2126         }
2127     }
2128 }
2129
2130 fn is_bool(ty: &hir::Ty) -> bool {
2131     if let hir::TyPath(ref p) = ty.node {
2132         match_qpath(p, &["bool"])
2133     } else {
2134         false
2135     }
2136 }