2016-05-17 16:25:20 -05:00
use rustc ::hir ;
2015-08-16 01:54:43 -05:00
use rustc ::lint ::* ;
2016-03-31 10:05:43 -05:00
use rustc ::middle ::const_val ::ConstVal ;
2016-05-12 03:23:06 -05:00
use rustc ::middle ::const_qualif ::ConstQualif ;
2016-03-27 13:59:02 -05:00
use rustc ::ty ::subst ::{ Subst , TypeSpace } ;
use rustc ::ty ;
2016-03-31 10:05:43 -05:00
use rustc_const_eval ::EvalHint ::ExprTypeChecked ;
use rustc_const_eval ::eval_const_expr_partial ;
2015-08-25 11:38:08 -05:00
use std ::borrow ::Cow ;
2016-03-24 13:25:59 -05:00
use std ::fmt ;
2016-01-18 06:11:07 -06:00
use syntax ::codemap ::Span ;
2016-02-12 18:42:46 -06:00
use syntax ::ptr ::P ;
2016-02-05 04:34:15 -06:00
use utils ::{ get_trait_def_id , implements_trait , in_external_macro , in_macro , match_path , match_trait_method ,
2016-03-03 12:46:10 -06:00
match_type , method_chain_args , return_ty , same_tys , snippet , snippet_opt , span_lint ,
2016-03-01 09:25:15 -06:00
span_lint_and_then , span_note_and_lint , walk_ptrs_ty , walk_ptrs_ty_depth } ;
2015-12-27 16:15:09 -06:00
use utils ::MethodArgs ;
2016-04-14 11:13:15 -05:00
use utils ::paths ;
2015-08-11 13:53:50 -05:00
2015-11-19 07:39:27 -06:00
#[ derive(Clone) ]
2015-11-19 13:13:36 -06:00
pub struct MethodsPass ;
2015-08-11 13:53:50 -05:00
2016-02-05 17:41:54 -06:00
/// **What it does:** This lint checks for `.unwrap()` calls on `Option`s.
2015-12-10 18:22:27 -06:00
///
/// **Why is this bad?** Usually it is better to handle the `None` case, or to at least call `.expect(_)` with a more helpful message. Still, for a lot of quick-and-dirty code, `unwrap` is a good choice, which is why this lint is `Allow` by default.
///
/// **Known problems:** None
///
/// **Example:** `x.unwrap()`
2016-02-05 17:13:29 -06:00
declare_lint! {
pub OPTION_UNWRAP_USED , Allow ,
" using `Option.unwrap()`, which should at least get a better message using `expect()` "
}
2015-12-14 15:16:56 -06:00
2016-02-05 17:41:54 -06:00
/// **What it does:** This lint checks for `.unwrap()` calls on `Result`s.
2015-12-10 18:22:27 -06:00
///
/// **Why is this bad?** `result.unwrap()` will let the thread panic on `Err` values. Normally, you want to implement more sophisticated error handling, and propagate errors upwards with `try!`.
///
/// Even if you want to panic on errors, not all `Error`s implement good messages on display. Therefore it may be beneficial to look at the places where they may get displayed. Activate this lint to do just that.
///
/// **Known problems:** None
///
/// **Example:** `x.unwrap()`
2016-02-05 17:13:29 -06:00
declare_lint! {
pub RESULT_UNWRAP_USED , Allow ,
" using `Result.unwrap()`, which might be better handled "
}
2015-12-14 15:16:56 -06:00
2016-02-05 17:41:54 -06:00
/// **What it does:** This lint checks for methods that should live in a trait implementation of a `std` trait (see [llogiq's blog post](http://llogiq.github.io/2015/07/30/traits.html) for further information) instead of an inherent implementation.
2015-12-10 18:22:27 -06:00
///
/// **Why is this bad?** Implementing the traits improve ergonomics for users of the code, often with very little cost. Also people seeing a `mul(..)` method may expect `*` to work equally, so you should have good reason to disappoint them.
///
/// **Known problems:** None
///
/// **Example:**
/// ```
/// struct X;
/// impl X {
/// fn add(&self, other: &X) -> X { .. }
/// }
/// ```
2016-02-05 17:13:29 -06:00
declare_lint! {
pub SHOULD_IMPLEMENT_TRAIT , Warn ,
" defining a method that should be implementing a std trait "
}
2015-12-14 15:16:56 -06:00
2016-02-05 17:41:54 -06:00
/// **What it does:** This lint checks for methods with certain name prefixes and which doesn't match how self is taken. The actual rules are:
2015-12-10 18:22:27 -06:00
///
/// |Prefix |`self` taken |
/// |-------|--------------------|
/// |`as_` |`&self` or &mut self|
/// |`from_`| none |
/// |`into_`|`self` |
/// |`is_` |`&self` or none |
/// |`to_` |`&self` |
///
2016-02-05 17:41:54 -06:00
/// **Why is this bad?** Consistency breeds readability. If you follow the conventions, your users won't be surprised that they e.g. need to supply a mutable reference to a `as_..` function.
2015-12-10 18:22:27 -06:00
///
/// **Known problems:** None
///
/// **Example**
///
/// ```
/// impl X {
/// fn as_str(self) -> &str { .. }
/// }
/// ```
2016-02-05 17:13:29 -06:00
declare_lint! {
pub WRONG_SELF_CONVENTION , Warn ,
" defining a method named with an established prefix (like \" into_ \" ) that takes \
` self ` with the wrong convention "
}
2015-12-14 15:16:56 -06:00
2016-02-05 17:41:54 -06:00
/// **What it does:** This is the same as [`wrong_self_convention`](#wrong_self_convention), but for public items.
2015-12-10 18:22:27 -06:00
///
/// **Why is this bad?** See [`wrong_self_convention`](#wrong_self_convention).
///
/// **Known problems:** Actually *renaming* the function may break clients if the function is part of the public interface. In that case, be mindful of the stability guarantees you've given your users.
///
/// **Example:**
/// ```
/// impl X {
/// pub fn as_str(self) -> &str { .. }
/// }
/// ```
2016-02-05 17:13:29 -06:00
declare_lint! {
pub WRONG_PUB_SELF_CONVENTION , Allow ,
" defining a public method named with an established prefix (like \" into_ \" ) that takes \
` self ` with the wrong convention "
}
2015-12-14 15:16:56 -06:00
2016-02-05 17:41:54 -06:00
/// **What it does:** This lint checks for usage of `ok().expect(..)`.
2015-12-14 15:16:56 -06:00
///
/// **Why is this bad?** Because you usually call `expect()` on the `Result` directly to get a good error message.
///
/// **Known problems:** None.
///
/// **Example:** `x.ok().expect("why did I do this again?")`
2016-02-05 17:13:29 -06:00
declare_lint! {
pub OK_EXPECT , Warn ,
" using `ok().expect()`, which gives worse error messages than \
calling ` expect ` directly on the Result "
}
2015-12-14 15:16:56 -06:00
2016-02-05 17:41:54 -06:00
/// **What it does:** This lint checks for usage of `_.map(_).unwrap_or(_)`.
2015-12-14 15:16:56 -06:00
///
/// **Why is this bad?** Readability, this can be written more concisely as `_.map_or(_, _)`.
///
/// **Known problems:** None.
///
/// **Example:** `x.map(|a| a + 1).unwrap_or(0)`
2016-02-05 17:13:29 -06:00
declare_lint! {
pub OPTION_MAP_UNWRAP_OR , Warn ,
" using `Option.map(f).unwrap_or(a)`, which is more succinctly expressed as \
` map_or ( a , f ) ` "
}
2015-12-14 15:16:56 -06:00
/// **What it does:** This lint `Warn`s on `_.map(_).unwrap_or_else(_)`.
///
/// **Why is this bad?** Readability, this can be written more concisely as `_.map_or_else(_, _)`.
///
/// **Known problems:** None.
///
/// **Example:** `x.map(|a| a + 1).unwrap_or_else(some_function)`
2016-02-05 17:13:29 -06:00
declare_lint! {
pub OPTION_MAP_UNWRAP_OR_ELSE , Warn ,
" using `Option.map(f).unwrap_or_else(g)`, which is more succinctly expressed as \
` map_or_else ( g , f ) ` "
}
2015-12-28 18:56:58 -06:00
/// **What it does:** This lint `Warn`s on `_.filter(_).next()`.
///
/// **Why is this bad?** Readability, this can be written more concisely as `_.find(_)`.
///
/// **Known problems:** None.
///
/// **Example:** `iter.filter(|x| x == 0).next()`
2016-02-05 17:13:29 -06:00
declare_lint! {
pub FILTER_NEXT , Warn ,
" using `filter(p).next()`, which is more succinctly expressed as `.find(p)` "
}
2015-08-11 13:53:50 -05:00
2015-12-30 02:38:03 -06:00
/// **What it does:** This lint `Warn`s on an iterator search (such as `find()`, `position()`, or
/// `rposition()`) followed by a call to `is_some()`.
///
/// **Why is this bad?** Readability, this can be written more concisely as `_.any(_)`.
///
/// **Known problems:** None.
///
/// **Example:** `iter.find(|x| x == 0).is_some()`
2016-02-05 17:13:29 -06:00
declare_lint! {
pub SEARCH_IS_SOME , Warn ,
" using an iterator search followed by `is_some()`, which is more succinctly \
expressed as a call to ` any ( ) ` "
}
2015-12-30 02:38:03 -06:00
2016-01-19 19:23:39 -06:00
/// **What it does:** This lint `Warn`s on using `.chars().next()` on a `str` to check if it
/// starts with a given char.
///
/// **Why is this bad?** Readability, this can be written more concisely as `_.starts_with(_)`.
///
/// **Known problems:** None.
///
/// **Example:** `name.chars().next() == Some('_')`
2016-02-05 17:13:29 -06:00
declare_lint! {
pub CHARS_NEXT_CMP , Warn ,
" using `.chars().next()` to check if a string starts with a char "
}
2016-01-19 19:23:39 -06:00
2016-01-16 11:47:45 -06:00
/// **What it does:** This lint checks for calls to `.or(foo(..))`, `.unwrap_or(foo(..))`, etc., and
2016-01-18 06:11:07 -06:00
/// suggests to use `or_else`, `unwrap_or_else`, etc., or `unwrap_or_default` instead.
2016-01-16 11:47:45 -06:00
///
/// **Why is this bad?** The function will always be called and potentially allocate an object
/// in expressions such as:
/// ```rust
/// foo.unwrap_or(String::new())
/// ```
/// this can instead be written:
/// ```rust
/// foo.unwrap_or_else(String::new)
/// ```
2016-01-18 06:11:07 -06:00
/// or
/// ```rust
/// foo.unwrap_or_default()
/// ```
2016-01-16 11:47:45 -06:00
///
/// **Known problems:** If the function as side-effects, not calling it will change the semantic of
2016-01-18 06:11:07 -06:00
/// the program, but you shouldn't rely on that anyway.
2016-02-05 17:13:29 -06:00
declare_lint! {
pub OR_FUN_CALL , Warn ,
" using any `*or` method when the `*or_else` would do "
}
2016-01-16 11:47:45 -06:00
2016-02-05 17:41:54 -06:00
/// **What it does:** This lint checks for usage of `.extend(s)` on a `Vec` to extend the vector by a slice.
2016-01-25 07:02:47 -06:00
///
/// **Why is this bad?** Since Rust 1.6, the `extend_from_slice(_)` method is stable and at least for now faster.
///
/// **Known problems:** None.
///
/// **Example:** `my_vec.extend(&xs)`
2016-02-05 17:13:29 -06:00
declare_lint! {
pub EXTEND_FROM_SLICE , Warn ,
" `.extend_from_slice(_)` is a faster way to extend a Vec by a slice "
}
2016-01-25 07:02:47 -06:00
2016-02-02 15:35:01 -06:00
/// **What it does:** This lint warns on using `.clone()` on a `Copy` type.
///
/// **Why is this bad?** The only reason `Copy` types implement `Clone` is for generics, not for
/// using the `clone` method on a concrete type.
///
/// **Known problems:** None.
///
/// **Example:** `42u64.clone()`
2016-02-05 17:13:29 -06:00
declare_lint! {
pub CLONE_ON_COPY , Warn , " using `clone` on a `Copy` type "
}
2016-02-02 15:35:01 -06:00
2016-02-05 04:34:15 -06:00
/// **What it does:** This lint warns on using `.clone()` on an `&&T`
///
/// **Why is this bad?** Cloning an `&&T` copies the inner `&T`, instead of cloning the underlying
/// `T`
///
/// **Known problems:** None.
///
/// **Example:**
/// ```rust
/// fn main() {
/// let x = vec![1];
/// let y = &&x;
/// let z = y.clone();
/// println!("{:p} {:p}",*y, z); // prints out the same pointer
/// }
/// ```
2016-02-05 17:13:29 -06:00
declare_lint! {
pub CLONE_DOUBLE_REF , Warn , " using `clone` on `&&T` "
}
2016-02-05 04:34:15 -06:00
2016-02-12 19:20:22 -06:00
/// **What it does:** This lint warns about `new` not returning `Self`.
///
/// **Why is this bad?** As a convention, `new` methods are used to make a new instance of a type.
///
/// **Known problems:** None.
///
/// **Example:**
/// ```rust
/// impl Foo {
/// fn new(..) -> NotAFoo {
/// }
/// }
/// ```
declare_lint! {
pub NEW_RET_NO_SELF , Warn , " not returning `Self` in a `new` method "
}
2016-02-15 08:10:31 -06:00
/// **What it does:** This lint checks for string methods that receive a single-character `str` as an argument, e.g. `_.split("x")`.
2016-02-14 21:40:43 -06:00
///
2016-02-15 09:32:04 -06:00
/// **Why is this bad?** Performing these methods using a `char` is faster than using a `str`.
2016-02-14 21:40:43 -06:00
///
2016-02-15 08:10:31 -06:00
/// **Known problems:** Does not catch multi-byte unicode characters.
2016-02-14 21:40:43 -06:00
///
/// **Example:** `_.split("x")` could be `_.split('x')`
declare_lint! {
pub SINGLE_CHAR_PATTERN ,
Warn ,
" using a single-character str where a char could be used, e.g. \
` _ . split ( \ " x \" )` "
}
2016-04-14 10:25:31 -05:00
/// **What it does:** This lint checks for getting the inner pointer of a temporary `CString`.
///
/// **Why is this bad?** The inner pointer of a `CString` is only valid as long as the `CString` is
/// alive.
///
/// **Known problems:** None.
///
/// **Example:**
/// ```rust,ignore
/// let c_str = CString::new("foo").unwrap().as_ptr();
/// unsafe {
/// call_some_ffi_func(c_str);
/// }
/// ```
/// Here `c_str` point to a freed address. The correct use would be:
/// ```rust,ignore
/// let c_str = CString::new("foo").unwrap();
/// unsafe {
/// call_some_ffi_func(c_str.as_ptr());
/// }
/// ```
declare_lint! {
pub TEMPORARY_CSTRING_AS_PTR ,
Warn ,
" getting the inner pointer of a temporary `CString` "
}
2016-06-16 04:02:00 -05:00
/// **What it does:** This lint checks for use of `.iter().nth()` on a slice or Vec.
2016-06-16 03:36:11 -05:00
///
/// **Why is this bad?** `.get()` is more efficient and more readable.
///
/// **Known problems:** None.
///
/// **Example:**
/// ```rust
2016-06-16 04:02:00 -05:00
/// let some_vec = vec![0, 1, 2, 3];
/// let bad_vec = some_vec.iter().nth(3);
/// let bad_slice = &some_vec[..].iter().nth(3);
2016-06-16 03:36:11 -05:00
/// ```
/// The correct use would be:
/// ```rust
2016-06-16 04:02:00 -05:00
/// let some_vec = vec![0, 1, 2, 3];
/// let bad_vec = some_vec.get(3);
/// let bad_slice = &some_vec[..].get(3);
2016-06-16 03:36:11 -05:00
/// ```
declare_lint! {
2016-06-16 04:02:00 -05:00
pub ITER_NTH ,
2016-06-16 03:36:11 -05:00
Warn ,
2016-06-16 04:02:00 -05:00
" using `.iter().nth()` on a slice or Vec "
2016-06-16 03:36:11 -05:00
}
2015-08-11 13:53:50 -05:00
impl LintPass for MethodsPass {
fn get_lints ( & self ) -> LintArray {
2016-01-25 07:02:47 -06:00
lint_array! ( EXTEND_FROM_SLICE ,
OPTION_UNWRAP_USED ,
2016-01-03 22:26:12 -06:00
RESULT_UNWRAP_USED ,
SHOULD_IMPLEMENT_TRAIT ,
WRONG_SELF_CONVENTION ,
WRONG_PUB_SELF_CONVENTION ,
OK_EXPECT ,
OPTION_MAP_UNWRAP_OR ,
2016-01-16 11:47:45 -06:00
OPTION_MAP_UNWRAP_OR_ELSE ,
2016-01-19 19:23:39 -06:00
OR_FUN_CALL ,
2016-02-02 15:35:01 -06:00
CHARS_NEXT_CMP ,
2016-02-05 04:34:15 -06:00
CLONE_ON_COPY ,
2016-02-12 19:20:22 -06:00
CLONE_DOUBLE_REF ,
2016-02-14 21:40:43 -06:00
NEW_RET_NO_SELF ,
2016-04-01 03:33:17 -05:00
SINGLE_CHAR_PATTERN ,
2016-04-14 10:25:31 -05:00
SEARCH_IS_SOME ,
2016-06-16 03:36:11 -05:00
TEMPORARY_CSTRING_AS_PTR ,
2016-06-16 04:02:00 -05:00
ITER_NTH )
2015-08-11 13:53:50 -05:00
}
2015-09-18 21:53:04 -05:00
}
2015-08-11 13:53:50 -05:00
2015-09-18 21:53:04 -05:00
impl LateLintPass for MethodsPass {
2016-05-17 16:25:20 -05:00
fn check_expr ( & mut self , cx : & LateContext , expr : & hir ::Expr ) {
2016-01-20 11:32:17 -06:00
if in_macro ( cx , expr . span ) {
return ;
}
2016-01-19 19:23:39 -06:00
match expr . node {
2016-05-17 16:25:20 -05:00
hir ::ExprMethodCall ( name , _ , ref args ) = > {
2016-01-19 19:23:39 -06:00
// Chain calls
if let Some ( arglists ) = method_chain_args ( expr , & [ " unwrap " ] ) {
lint_unwrap ( cx , expr , arglists [ 0 ] ) ;
} else if let Some ( arglists ) = method_chain_args ( expr , & [ " ok " , " expect " ] ) {
lint_ok_expect ( cx , expr , arglists [ 0 ] ) ;
} else if let Some ( arglists ) = method_chain_args ( expr , & [ " map " , " unwrap_or " ] ) {
lint_map_unwrap_or ( cx , expr , arglists [ 0 ] , arglists [ 1 ] ) ;
} else if let Some ( arglists ) = method_chain_args ( expr , & [ " map " , " unwrap_or_else " ] ) {
lint_map_unwrap_or_else ( cx , expr , arglists [ 0 ] , arglists [ 1 ] ) ;
} else if let Some ( arglists ) = method_chain_args ( expr , & [ " filter " , " next " ] ) {
lint_filter_next ( cx , expr , arglists [ 0 ] ) ;
} else if let Some ( arglists ) = method_chain_args ( expr , & [ " find " , " is_some " ] ) {
lint_search_is_some ( cx , expr , " find " , arglists [ 0 ] , arglists [ 1 ] ) ;
} else if let Some ( arglists ) = method_chain_args ( expr , & [ " position " , " is_some " ] ) {
lint_search_is_some ( cx , expr , " position " , arglists [ 0 ] , arglists [ 1 ] ) ;
} else if let Some ( arglists ) = method_chain_args ( expr , & [ " rposition " , " is_some " ] ) {
lint_search_is_some ( cx , expr , " rposition " , arglists [ 0 ] , arglists [ 1 ] ) ;
2016-01-25 07:02:47 -06:00
} else if let Some ( arglists ) = method_chain_args ( expr , & [ " extend " ] ) {
lint_extend ( cx , expr , arglists [ 0 ] ) ;
2016-04-14 10:25:31 -05:00
} else if let Some ( arglists ) = method_chain_args ( expr , & [ " unwrap " , " as_ptr " ] ) {
lint_cstring_as_ptr ( cx , expr , & arglists [ 0 ] [ 0 ] , & arglists [ 1 ] [ 0 ] ) ;
2016-06-16 03:36:11 -05:00
} else if let Some ( arglists ) = method_chain_args ( expr , & [ " iter " , " nth " ] ) {
2016-06-16 04:02:00 -05:00
lint_iter_nth ( cx , expr , arglists [ 0 ] ) ;
2016-01-19 19:23:39 -06:00
}
2016-04-14 10:25:31 -05:00
2016-04-26 10:05:39 -05:00
lint_or_fun_call ( cx , expr , & name . node . as_str ( ) , args ) ;
2016-04-20 14:09:38 -05:00
let self_ty = cx . tcx . expr_ty_adjusted ( & args [ 0 ] ) ;
2016-02-05 04:34:15 -06:00
if args . len ( ) = = 1 & & name . node . as_str ( ) = = " clone " {
lint_clone_on_copy ( cx , expr ) ;
2016-04-20 14:09:38 -05:00
lint_clone_double_ref ( cx , expr , & args [ 0 ] , self_ty ) ;
2016-02-05 04:34:15 -06:00
}
2016-04-20 14:09:38 -05:00
match self_ty . sty {
ty ::TyRef ( _ , ty ) if ty . ty . sty = = ty ::TyStr = > {
for & ( method , pos ) in & PATTERN_METHODS {
if name . node . as_str ( ) = = method & & args . len ( ) > pos {
lint_single_char_pattern ( cx , expr , & args [ pos ] ) ;
}
}
2016-02-14 21:40:43 -06:00
}
2016-04-20 14:09:38 -05:00
_ = > ( ) ,
2016-02-14 21:40:43 -06:00
}
2016-01-19 19:23:39 -06:00
}
2016-05-17 16:25:20 -05:00
hir ::ExprBinary ( op , ref lhs , ref rhs ) if op . node = = hir ::BiEq | | op . node = = hir ::BiNe = > {
if ! lint_chars_next ( cx , expr , lhs , rhs , op . node = = hir ::BiEq ) {
lint_chars_next ( cx , expr , rhs , lhs , op . node = = hir ::BiEq ) ;
2016-01-19 19:23:39 -06:00
}
}
_ = > ( ) ,
2015-08-11 13:53:50 -05:00
}
}
2015-08-24 11:13:02 -05:00
2016-05-17 16:25:20 -05:00
fn check_item ( & mut self , cx : & LateContext , item : & hir ::Item ) {
2016-01-20 11:32:17 -06:00
if in_external_macro ( cx , item . span ) {
return ;
}
2016-05-17 16:25:20 -05:00
if let hir ::ItemImpl ( _ , _ , _ , None , _ , ref items ) = item . node {
2015-09-01 14:08:49 -05:00
for implitem in items {
2015-09-23 19:30:39 -05:00
let name = implitem . name ;
2016-05-17 16:25:20 -05:00
if_let_chain! { [
let hir ::ImplItemKind ::Method ( ref sig , _ ) = implitem . node ,
let Some ( explicit_self ) = sig . decl . inputs . get ( 0 ) . and_then ( hir ::Arg ::to_self ) ,
] , {
2015-09-01 11:52:48 -05:00
// check missing trait implementations
for & ( method_name , n_args , self_kind , out_type , trait_name ) in & TRAIT_METHODS {
2016-05-17 16:25:20 -05:00
if name . as_str ( ) = = method_name & &
sig . decl . inputs . len ( ) = = n_args & &
out_type . matches ( & sig . decl . output ) & &
self_kind . matches ( & explicit_self , false ) {
span_lint ( cx , SHOULD_IMPLEMENT_TRAIT , implitem . span , & format! (
" defining a method called `{}` on this type; consider implementing \
the ` { } ` trait or choosing a less ambiguous name " , name, trait_name));
2015-09-01 11:52:48 -05:00
}
}
2016-02-12 18:42:46 -06:00
2015-09-01 11:52:48 -05:00
// check conventions w.r.t. conversion method names and predicates
2016-02-15 06:44:59 -06:00
let ty = cx . tcx . lookup_item_type ( cx . tcx . map . local_def_id ( item . id ) ) . ty ;
2016-04-26 10:05:39 -05:00
let is_copy = is_copy ( cx , ty , item ) ;
2016-02-12 18:42:46 -06:00
for & ( ref conv , self_kinds ) in & CONVENTIONS {
2016-05-17 16:25:20 -05:00
if_let_chain! { [
conv . check ( & name . as_str ( ) ) ,
let Some ( explicit_self ) = sig . decl . inputs . get ( 0 ) . and_then ( hir ::Arg ::to_self ) ,
! self_kinds . iter ( ) . any ( | k | k . matches ( & explicit_self , is_copy ) ) ,
] , {
let lint = if item . vis = = hir ::Visibility ::Public {
2015-09-07 02:17:45 -05:00
WRONG_PUB_SELF_CONVENTION
} else {
WRONG_SELF_CONVENTION
} ;
2016-01-03 22:26:12 -06:00
span_lint ( cx ,
lint ,
2016-05-17 16:25:20 -05:00
explicit_self . span ,
2016-02-12 18:42:46 -06:00
& format! ( " methods called ` {} ` usually take {} ; consider choosing a less \
2016-01-03 22:26:12 -06:00
ambiguous name " ,
2016-02-12 18:42:46 -06:00
conv ,
2016-01-03 22:26:12 -06:00
& self_kinds . iter ( )
. map ( | k | k . description ( ) )
. collect ::< Vec < _ > > ( )
. join ( " or " ) ) ) ;
2016-05-17 16:25:20 -05:00
} }
2015-08-24 11:13:02 -05:00
}
2016-02-12 19:20:22 -06:00
2016-03-26 16:14:25 -05:00
let ret_ty = return_ty ( cx , implitem . id ) ;
2016-04-14 13:14:03 -05:00
if & name . as_str ( ) = = & " new " & &
! ret_ty . map_or ( false , | ret_ty | ret_ty . walk ( ) . any ( | t | same_tys ( cx , t , ty , implitem . id ) ) ) {
2016-03-01 09:25:15 -06:00
span_lint ( cx ,
NEW_RET_NO_SELF ,
2016-05-17 16:25:20 -05:00
explicit_self . span ,
2016-03-01 09:25:15 -06:00
" methods called `new` usually return `Self` " ) ;
2016-02-12 19:20:22 -06:00
}
2016-06-05 18:42:39 -05:00
} }
}
2015-08-24 11:13:02 -05:00
}
}
}
2016-01-16 11:47:45 -06:00
/// Checks for the `OR_FUN_CALL` lint.
2016-05-17 16:25:20 -05:00
fn lint_or_fun_call ( cx : & LateContext , expr : & hir ::Expr , name : & str , args : & [ P < hir ::Expr > ] ) {
2016-01-18 06:11:07 -06:00
/// Check for `unwrap_or(T::new())` or `unwrap_or(T::default())`.
2016-05-17 16:25:20 -05:00
fn check_unwrap_or_default ( cx : & LateContext , name : & str , fun : & hir ::Expr , self_expr : & hir ::Expr , arg : & hir ::Expr ,
2016-02-05 04:34:15 -06:00
or_has_args : bool , span : Span )
-> bool {
2016-01-18 06:11:07 -06:00
if or_has_args {
return false ;
}
if name = = " unwrap_or " {
2016-05-17 16:25:20 -05:00
if let hir ::ExprPath ( _ , ref path ) = fun . node {
2016-01-30 06:48:39 -06:00
let path : & str = & path . segments
. last ( )
. expect ( " A path must have at least one segment " )
. name
. as_str ( ) ;
2016-01-18 06:11:07 -06:00
if [ " default " , " new " ] . contains ( & path ) {
let arg_ty = cx . tcx . expr_ty ( arg ) ;
2016-04-14 11:13:15 -05:00
let default_trait_id = if let Some ( default_trait_id ) = get_trait_def_id ( cx , & paths ::DEFAULT_TRAIT ) {
2016-01-18 06:11:07 -06:00
default_trait_id
2016-01-30 06:48:39 -06:00
} else {
2016-01-18 06:11:07 -06:00
return false ;
} ;
2016-03-01 09:25:15 -06:00
if implements_trait ( cx , arg_ty , default_trait_id , Vec ::new ( ) ) {
2016-02-05 04:34:15 -06:00
span_lint ( cx ,
OR_FUN_CALL ,
span ,
2016-01-18 06:11:07 -06:00
& format! ( " use of ` {} ` followed by a call to ` {} ` " , name , path ) )
2016-02-05 04:34:15 -06:00
. span_suggestion ( span ,
" try this " ,
format! ( " {} .unwrap_or_default() " , snippet ( cx , self_expr . span , " _ " ) ) ) ;
2016-01-18 06:11:07 -06:00
return true ;
}
}
}
}
false
}
/// Check for `*or(foo())`.
2016-05-17 16:25:20 -05:00
fn check_general_case ( cx : & LateContext , name : & str , fun : & hir ::Expr , self_expr : & hir ::Expr , arg : & hir ::Expr , or_has_args : bool ,
2016-02-05 04:34:15 -06:00
span : Span ) {
2016-05-12 03:23:06 -05:00
// don't lint for constant values
// FIXME: can we `expect` here instead of match?
if let Some ( qualif ) = cx . tcx . const_qualif_map . borrow ( ) . get ( & arg . id ) {
if ! qualif . contains ( ConstQualif ::NOT_CONST ) {
return ;
}
}
2016-05-20 12:18:32 -05:00
// (path, fn_has_argument, methods, suffix)
2016-04-14 11:13:15 -05:00
let know_types : & [ ( & [ _ ] , _ , & [ _ ] , _ ) ] = & [ ( & paths ::BTREEMAP_ENTRY , false , & [ " or_insert " ] , " with " ) ,
( & paths ::HASHMAP_ENTRY , false , & [ " or_insert " ] , " with " ) ,
( & paths ::OPTION ,
2016-02-05 04:34:15 -06:00
false ,
& [ " map_or " , " ok_or " , " or " , " unwrap_or " ] ,
" else " ) ,
2016-04-14 11:13:15 -05:00
( & paths ::RESULT , true , & [ " or " , " unwrap_or " ] , " else " ) ] ;
2016-01-19 17:53:26 -06:00
2016-01-18 06:11:07 -06:00
let self_ty = cx . tcx . expr_ty ( self_expr ) ;
2016-01-16 11:47:45 -06:00
2016-02-05 04:34:15 -06:00
let ( fn_has_arguments , poss , suffix ) = if let Some ( & ( _ , fn_has_arguments , poss , suffix ) ) =
know_types . iter ( ) . find ( | & & i | match_type ( cx , self_ty , i . 0 ) ) {
( fn_has_arguments , poss , suffix )
} else {
return ;
} ;
2016-01-19 17:53:26 -06:00
if ! poss . contains ( & name ) {
2016-01-30 06:48:39 -06:00
return ;
2016-01-16 11:47:45 -06:00
}
2016-02-20 14:03:45 -06:00
let sugg : Cow < _ > = match ( fn_has_arguments , ! or_has_args ) {
( true , _ ) = > format! ( " |_| {} " , snippet ( cx , arg . span , " .. " ) ) . into ( ) ,
( false , false ) = > format! ( " || {} " , snippet ( cx , arg . span , " .. " ) ) . into ( ) ,
( false , true ) = > snippet ( cx , fun . span , " .. " ) ,
2016-01-18 06:11:07 -06:00
} ;
2016-02-05 04:34:15 -06:00
span_lint ( cx , OR_FUN_CALL , span , & format! ( " use of ` {} ` followed by a function call " , name ) )
. span_suggestion ( span ,
" try this " ,
format! ( " {} . {} _ {} ( {} ) " , snippet ( cx , self_expr . span , " _ " ) , name , suffix , sugg ) ) ;
2016-01-18 06:11:07 -06:00
}
2016-01-19 17:53:26 -06:00
if args . len ( ) = = 2 {
2016-05-17 16:25:20 -05:00
if let hir ::ExprCall ( ref fun , ref or_args ) = args [ 1 ] . node {
2016-01-18 06:11:07 -06:00
let or_has_args = ! or_args . is_empty ( ) ;
if ! check_unwrap_or_default ( cx , name , fun , & args [ 0 ] , & args [ 1 ] , or_has_args , expr . span ) {
check_general_case ( cx , name , fun , & args [ 0 ] , & args [ 1 ] , or_has_args , expr . span ) ;
}
2016-01-16 11:47:45 -06:00
}
}
}
2016-02-02 15:35:01 -06:00
/// Checks for the `CLONE_ON_COPY` lint.
2016-05-17 16:25:20 -05:00
fn lint_clone_on_copy ( cx : & LateContext , expr : & hir ::Expr ) {
2016-02-05 04:34:15 -06:00
let ty = cx . tcx . expr_ty ( expr ) ;
let parent = cx . tcx . map . get_parent ( expr . id ) ;
let parameter_environment = ty ::ParameterEnvironment ::for_item ( cx . tcx , parent ) ;
2016-05-12 12:11:13 -05:00
if ! ty . moves_by_default ( cx . tcx . global_tcx ( ) , & parameter_environment , expr . span ) {
2016-02-05 04:34:15 -06:00
span_lint ( cx , CLONE_ON_COPY , expr . span , " using `clone` on a `Copy` type " ) ;
}
}
/// Checks for the `CLONE_DOUBLE_REF` lint.
2016-05-17 16:25:20 -05:00
fn lint_clone_double_ref ( cx : & LateContext , expr : & hir ::Expr , arg : & hir ::Expr , ty : ty ::Ty ) {
2016-02-05 04:34:15 -06:00
if let ty ::TyRef ( _ , ty ::TypeAndMut { ty : ref inner , .. } ) = ty . sty {
if let ty ::TyRef ( .. ) = inner . sty {
2016-02-29 05:19:32 -06:00
let mut db = span_lint ( cx ,
CLONE_DOUBLE_REF ,
expr . span ,
2016-02-05 04:34:15 -06:00
" using `clone` on a double-reference; \
this will copy the reference instead of cloning \
the inner type " );
if let Some ( snip ) = snippet_opt ( cx , arg . span ) {
db . span_suggestion ( expr . span , " try dereferencing it " , format! ( " (* {} ).clone() " , snip ) ) ;
}
2016-02-02 15:35:01 -06:00
}
}
}
2016-05-17 16:25:20 -05:00
fn lint_extend ( cx : & LateContext , expr : & hir ::Expr , args : & MethodArgs ) {
2016-01-25 07:02:47 -06:00
let ( obj_ty , _ ) = walk_ptrs_ty_depth ( cx . tcx . expr_ty ( & args [ 0 ] ) ) ;
2016-04-14 11:13:15 -05:00
if ! match_type ( cx , obj_ty , & paths ::VEC ) {
2016-01-26 16:51:06 -06:00
return ;
2016-01-25 07:02:47 -06:00
}
2016-01-26 16:51:06 -06:00
let arg_ty = cx . tcx . expr_ty ( & args [ 1 ] ) ;
2016-01-27 07:51:30 -06:00
if let Some ( ( span , r ) ) = derefs_to_slice ( cx , & args [ 1 ] , & arg_ty ) {
2016-02-29 05:19:32 -06:00
span_lint ( cx , EXTEND_FROM_SLICE , expr . span , " use of `extend` to extend a Vec by a slice " )
2016-01-30 06:48:39 -06:00
. span_suggestion ( expr . span ,
" try this " ,
2016-01-27 07:51:30 -06:00
format! ( " {} .extend_from_slice( {} {} ) " ,
2016-01-25 07:02:47 -06:00
snippet ( cx , args [ 0 ] . span , " _ " ) ,
2016-01-30 06:48:39 -06:00
r ,
snippet ( cx , span , " _ " ) ) ) ;
2016-01-25 07:02:47 -06:00
}
}
2016-05-17 16:25:20 -05:00
fn lint_cstring_as_ptr ( cx : & LateContext , expr : & hir ::Expr , new : & hir ::Expr , unwrap : & hir ::Expr ) {
2016-04-14 10:25:31 -05:00
if_let_chain! { [
2016-05-17 16:25:20 -05:00
let hir ::ExprCall ( ref fun , ref args ) = new . node ,
2016-04-14 10:25:31 -05:00
args . len ( ) = = 1 ,
2016-05-17 16:25:20 -05:00
let hir ::ExprPath ( None , ref path ) = fun . node ,
2016-04-14 11:13:15 -05:00
match_path ( path , & paths ::CSTRING_NEW ) ,
2016-04-14 10:25:31 -05:00
] , {
span_lint_and_then ( cx , TEMPORARY_CSTRING_AS_PTR , expr . span ,
" you are getting the inner pointer of a temporary `CString` " ,
| db | {
2016-05-04 01:54:59 -05:00
db . note ( " that pointer will be invalid outside this expression " ) ;
2016-04-14 10:25:31 -05:00
db . span_help ( unwrap . span , " assign the `CString` to a variable to extend its lifetime " ) ;
} ) ;
} }
}
2016-06-16 03:36:11 -05:00
#[ allow(ptr_arg) ]
// Type of MethodArgs is potentially a Vec
2016-06-16 04:02:00 -05:00
fn lint_iter_nth ( cx : & LateContext , expr : & hir ::Expr , iter_args : & MethodArgs ) {
// lint if the caller of `.iter().nth()` is a `slice`
2016-06-16 03:36:11 -05:00
if let Some ( _ ) = derefs_to_slice ( cx , & iter_args [ 0 ] , & cx . tcx . expr_ty ( & iter_args [ 0 ] ) ) {
span_lint ( cx ,
2016-06-16 04:02:00 -05:00
ITER_NTH ,
2016-06-16 03:36:11 -05:00
expr . span ,
" called `.iter().nth()` on a slice. Calling `.get()` is both faster and more readable " ) ;
}
2016-06-16 04:02:00 -05:00
// lint if the caller of `.iter().nth()` is a `Vec`
else if match_type ( cx , cx . tcx . expr_ty ( & iter_args [ 0 ] ) , & paths ::VEC ) {
span_lint ( cx ,
ITER_NTH ,
expr . span ,
" called `.iter().nth()` on a Vec. Calling `.get()` is both faster and more readable " ) ;
}
2016-06-16 03:36:11 -05:00
}
2016-05-17 16:25:20 -05:00
fn derefs_to_slice ( cx : & LateContext , expr : & hir ::Expr , ty : & ty ::Ty ) -> Option < ( Span , & 'static str ) > {
2016-01-27 07:51:30 -06:00
fn may_slice ( cx : & LateContext , ty : & ty ::Ty ) -> bool {
2016-01-26 16:51:06 -06:00
match ty . sty {
2016-02-01 05:51:33 -06:00
ty ::TySlice ( _ ) = > true ,
2016-04-14 11:13:15 -05:00
ty ::TyStruct ( .. ) = > match_type ( cx , ty , & paths ::VEC ) ,
2016-01-26 16:51:06 -06:00
ty ::TyArray ( _ , size ) = > size < 32 ,
ty ::TyRef ( _ , ty ::TypeAndMut { ty : ref inner , .. } ) |
2016-01-27 07:51:30 -06:00
ty ::TyBox ( ref inner ) = > may_slice ( cx , inner ) ,
2016-01-30 06:48:39 -06:00
_ = > false ,
2016-01-26 16:51:06 -06:00
}
}
2016-05-17 16:25:20 -05:00
if let hir ::ExprMethodCall ( name , _ , ref args ) = expr . node {
2016-01-30 06:48:39 -06:00
if & name . node . as_str ( ) = = & " iter " & & may_slice ( cx , & cx . tcx . expr_ty ( & args [ 0 ] ) ) {
2016-01-27 07:51:30 -06:00
Some ( ( args [ 0 ] . span , " & " ) )
} else {
None
}
} else {
match ty . sty {
ty ::TySlice ( _ ) = > Some ( ( expr . span , " " ) ) ,
ty ::TyRef ( _ , ty ::TypeAndMut { ty : ref inner , .. } ) |
2016-01-30 06:48:39 -06:00
ty ::TyBox ( ref inner ) = > {
if may_slice ( cx , inner ) {
Some ( ( expr . span , " " ) )
} else {
None
}
}
_ = > None ,
2016-01-27 07:51:30 -06:00
}
2016-01-25 07:02:47 -06:00
}
}
2016-01-03 22:26:12 -06:00
#[ allow(ptr_arg) ]
// Type of MethodArgs is potentially a Vec
2015-12-27 03:22:53 -06:00
/// lint use of `unwrap()` for `Option`s and `Result`s
2016-05-17 16:25:20 -05:00
fn lint_unwrap ( cx : & LateContext , expr : & hir ::Expr , unwrap_args : & MethodArgs ) {
2015-12-27 16:15:09 -06:00
let ( obj_ty , _ ) = walk_ptrs_ty_depth ( cx . tcx . expr_ty ( & unwrap_args [ 0 ] ) ) ;
2015-12-27 03:22:53 -06:00
2016-04-14 11:13:15 -05:00
let mess = if match_type ( cx , obj_ty , & paths ::OPTION ) {
2016-01-03 07:36:24 -06:00
Some ( ( OPTION_UNWRAP_USED , " an Option " , " None " ) )
2016-04-14 11:13:15 -05:00
} else if match_type ( cx , obj_ty , & paths ::RESULT ) {
2016-01-03 07:36:24 -06:00
Some ( ( RESULT_UNWRAP_USED , " a Result " , " Err " ) )
2016-01-03 22:26:12 -06:00
} else {
2016-01-03 07:36:24 -06:00
None
} ;
if let Some ( ( lint , kind , none_value ) ) = mess {
2016-01-03 22:26:12 -06:00
span_lint ( cx ,
lint ,
expr . span ,
& format! ( " used unwrap() on {} value. If you don't want to handle the {} case gracefully, consider \
using expect ( ) to provide a better panic
message " ,
kind ,
none_value ) ) ;
2015-12-27 03:22:53 -06:00
}
}
2016-01-03 22:26:12 -06:00
#[ allow(ptr_arg) ]
// Type of MethodArgs is potentially a Vec
2015-12-27 03:22:53 -06:00
/// lint use of `ok().expect()` for `Result`s
2016-05-17 16:25:20 -05:00
fn lint_ok_expect ( cx : & LateContext , expr : & hir ::Expr , ok_args : & MethodArgs ) {
2015-12-27 03:22:53 -06:00
// lint if the caller of `ok()` is a `Result`
2016-04-14 11:13:15 -05:00
if match_type ( cx , cx . tcx . expr_ty ( & ok_args [ 0 ] ) , & paths ::RESULT ) {
2015-12-27 03:22:53 -06:00
let result_type = cx . tcx . expr_ty ( & ok_args [ 0 ] ) ;
if let Some ( error_type ) = get_error_type ( cx , result_type ) {
if has_debug_impl ( error_type , cx ) {
2016-01-03 22:26:12 -06:00
span_lint ( cx ,
OK_EXPECT ,
expr . span ,
" called `ok().expect()` on a Result value. You can call `expect` directly on the `Result` " ) ;
2015-12-27 03:22:53 -06:00
}
}
}
}
2016-01-03 22:26:12 -06:00
#[ allow(ptr_arg) ]
// Type of MethodArgs is potentially a Vec
2015-12-27 03:22:53 -06:00
/// lint use of `map().unwrap_or()` for `Option`s
2016-05-17 16:25:20 -05:00
fn lint_map_unwrap_or ( cx : & LateContext , expr : & hir ::Expr , map_args : & MethodArgs , unwrap_args : & MethodArgs ) {
2015-12-27 03:22:53 -06:00
// lint if the caller of `map()` is an `Option`
2016-04-14 11:13:15 -05:00
if match_type ( cx , cx . tcx . expr_ty ( & map_args [ 0 ] ) , & paths ::OPTION ) {
2015-12-27 03:22:53 -06:00
// lint message
2016-01-03 22:26:12 -06:00
let msg = " called `map(f).unwrap_or(a)` on an Option value. This can be done more directly by calling \
` map_or ( a , f ) ` instead " ;
2015-12-27 03:22:53 -06:00
// get snippets for args to map() and unwrap_or()
let map_snippet = snippet ( cx , map_args [ 1 ] . span , " .. " ) ;
let unwrap_snippet = snippet ( cx , unwrap_args [ 1 ] . span , " .. " ) ;
// lint, with note if neither arg is > 1 line and both map() and
// unwrap_or() have the same span
2016-01-03 22:26:12 -06:00
let multiline = map_snippet . lines ( ) . count ( ) > 1 | | unwrap_snippet . lines ( ) . count ( ) > 1 ;
2015-12-27 03:22:53 -06:00
let same_span = map_args [ 1 ] . span . expn_id = = unwrap_args [ 1 ] . span . expn_id ;
if same_span & & ! multiline {
2016-01-03 22:26:12 -06:00
span_note_and_lint ( cx ,
OPTION_MAP_UNWRAP_OR ,
expr . span ,
msg ,
expr . span ,
& format! ( " replace `map( {0} ).unwrap_or( {1} )` with `map_or( {1} , {0} )` " ,
map_snippet ,
unwrap_snippet ) ) ;
} else if same_span & & multiline {
2015-12-27 03:22:53 -06:00
span_lint ( cx , OPTION_MAP_UNWRAP_OR , expr . span , msg ) ;
} ;
}
}
2016-01-03 22:26:12 -06:00
#[ allow(ptr_arg) ]
// Type of MethodArgs is potentially a Vec
2015-12-27 03:22:53 -06:00
/// lint use of `map().unwrap_or_else()` for `Option`s
2016-05-17 16:25:20 -05:00
fn lint_map_unwrap_or_else ( cx : & LateContext , expr : & hir ::Expr , map_args : & MethodArgs , unwrap_args : & MethodArgs ) {
2015-12-27 16:15:09 -06:00
// lint if the caller of `map()` is an `Option`
2016-04-14 11:13:15 -05:00
if match_type ( cx , cx . tcx . expr_ty ( & map_args [ 0 ] ) , & paths ::OPTION ) {
2015-12-27 03:22:53 -06:00
// lint message
2016-01-03 22:26:12 -06:00
let msg = " called `map(f).unwrap_or_else(g)` on an Option value. This can be done more directly by calling \
` map_or_else ( g , f ) ` instead " ;
2015-12-27 03:22:53 -06:00
// get snippets for args to map() and unwrap_or_else()
let map_snippet = snippet ( cx , map_args [ 1 ] . span , " .. " ) ;
let unwrap_snippet = snippet ( cx , unwrap_args [ 1 ] . span , " .. " ) ;
// lint, with note if neither arg is > 1 line and both map() and
// unwrap_or_else() have the same span
2016-01-03 22:26:12 -06:00
let multiline = map_snippet . lines ( ) . count ( ) > 1 | | unwrap_snippet . lines ( ) . count ( ) > 1 ;
2015-12-27 03:22:53 -06:00
let same_span = map_args [ 1 ] . span . expn_id = = unwrap_args [ 1 ] . span . expn_id ;
if same_span & & ! multiline {
2016-01-03 22:26:12 -06:00
span_note_and_lint ( cx ,
OPTION_MAP_UNWRAP_OR_ELSE ,
expr . span ,
msg ,
expr . span ,
& format! ( " replace `map( {0} ).unwrap_or_else( {1} )` with `with map_or_else( {1} , {0} )` " ,
map_snippet ,
unwrap_snippet ) ) ;
} else if same_span & & multiline {
2015-12-27 03:22:53 -06:00
span_lint ( cx , OPTION_MAP_UNWRAP_OR_ELSE , expr . span , msg ) ;
} ;
}
}
2016-01-03 22:26:12 -06:00
#[ allow(ptr_arg) ]
// Type of MethodArgs is potentially a Vec
2015-12-28 18:56:58 -06:00
/// lint use of `filter().next() for Iterators`
2016-05-17 16:25:20 -05:00
fn lint_filter_next ( cx : & LateContext , expr : & hir ::Expr , filter_args : & MethodArgs ) {
2015-12-28 18:56:58 -06:00
// lint if caller of `.filter().next()` is an Iterator
2016-04-26 06:31:52 -05:00
if match_trait_method ( cx , expr , & paths ::ITERATOR ) {
2016-01-03 22:26:12 -06:00
let msg = " called `filter(p).next()` on an Iterator. This is more succinctly expressed by calling `.find(p)` \
instead . " ;
2015-12-28 18:56:58 -06:00
let filter_snippet = snippet ( cx , filter_args [ 1 ] . span , " .. " ) ;
2016-01-03 22:26:12 -06:00
if filter_snippet . lines ( ) . count ( ) < = 1 {
// add note if not multi-line
span_note_and_lint ( cx ,
FILTER_NEXT ,
expr . span ,
msg ,
expr . span ,
& format! ( " replace `filter( {0} ).next()` with `find( {0} )` " , filter_snippet ) ) ;
} else {
2015-12-28 18:56:58 -06:00
span_lint ( cx , FILTER_NEXT , expr . span , msg ) ;
}
}
}
2016-01-03 22:26:12 -06:00
#[ allow(ptr_arg) ]
// Type of MethodArgs is potentially a Vec
2015-12-30 02:38:03 -06:00
/// lint searching an Iterator followed by `is_some()`
2016-05-17 16:25:20 -05:00
fn lint_search_is_some ( cx : & LateContext , expr : & hir ::Expr , search_method : & str , search_args : & MethodArgs ,
2015-12-30 02:38:03 -06:00
is_some_args : & MethodArgs ) {
// lint if caller of search is an Iterator
2016-04-26 06:31:52 -05:00
if match_trait_method ( cx , & * is_some_args [ 0 ] , & paths ::ITERATOR ) {
2016-01-03 22:26:12 -06:00
let msg = format! ( " called `is_some()` after searching an iterator with {} . This is more succinctly expressed \
by calling ` any ( ) ` . " ,
search_method ) ;
2015-12-30 02:38:03 -06:00
let search_snippet = snippet ( cx , search_args [ 1 ] . span , " .. " ) ;
2016-01-03 22:26:12 -06:00
if search_snippet . lines ( ) . count ( ) < = 1 {
// add note if not multi-line
span_note_and_lint ( cx ,
SEARCH_IS_SOME ,
expr . span ,
& msg ,
expr . span ,
& format! ( " replace ` {0} ( {1} ).is_some()` with `any( {1} )` " , search_method , search_snippet ) ) ;
} else {
2015-12-30 02:38:03 -06:00
span_lint ( cx , SEARCH_IS_SOME , expr . span , & msg ) ;
}
}
}
2016-01-19 19:23:39 -06:00
/// Checks for the `CHARS_NEXT_CMP` lint.
2016-05-17 16:25:20 -05:00
fn lint_chars_next ( cx : & LateContext , expr : & hir ::Expr , chain : & hir ::Expr , other : & hir ::Expr , eq : bool ) -> bool {
2016-01-19 19:23:39 -06:00
if_let_chain! { [
let Some ( args ) = method_chain_args ( chain , & [ " chars " , " next " ] ) ,
2016-05-17 16:25:20 -05:00
let hir ::ExprCall ( ref fun , ref arg_char ) = other . node ,
2016-01-19 19:23:39 -06:00
arg_char . len ( ) = = 1 ,
2016-05-17 16:25:20 -05:00
let hir ::ExprPath ( None , ref path ) = fun . node ,
2016-05-19 16:14:34 -05:00
path . segments . len ( ) = = 1 & & path . segments [ 0 ] . name . as_str ( ) = = " Some "
2016-01-19 19:23:39 -06:00
] , {
let self_ty = walk_ptrs_ty ( cx . tcx . expr_ty_adjusted ( & args [ 0 ] [ 0 ] ) ) ;
if self_ty . sty ! = ty ::TyStr {
return false ;
}
span_lint_and_then ( cx ,
CHARS_NEXT_CMP ,
expr . span ,
" you should use the `starts_with` method " ,
| db | {
let sugg = format! ( " {} {} .starts_with( {} ) " ,
if eq { " " } else { " ! " } ,
snippet ( cx , args [ 0 ] [ 0 ] . span , " _ " ) ,
snippet ( cx , arg_char [ 0 ] . span , " _ " )
) ;
db . span_suggestion ( expr . span , " like this " , sugg ) ;
} ) ;
return true ;
} }
false
}
2016-02-14 21:40:43 -06:00
/// lint for length-1 `str`s for methods in `PATTERN_METHODS`
2016-05-17 16:25:20 -05:00
fn lint_single_char_pattern ( cx : & LateContext , expr : & hir ::Expr , arg : & hir ::Expr ) {
2016-02-14 21:40:43 -06:00
if let Ok ( ConstVal ::Str ( r ) ) = eval_const_expr_partial ( cx . tcx , arg , ExprTypeChecked , None ) {
if r . len ( ) = = 1 {
let hint = snippet ( cx , expr . span , " .. " ) . replace ( & format! ( " \" {} \" " , r ) , & format! ( " ' {} ' " , r ) ) ;
span_lint_and_then ( cx ,
SINGLE_CHAR_PATTERN ,
2016-02-15 08:10:31 -06:00
arg . span ,
2016-02-14 21:40:43 -06:00
" single-character string constant used as pattern " ,
| db | {
db . span_suggestion ( expr . span , " try using a char instead: " , hint ) ;
} ) ;
}
}
}
2016-02-02 15:35:01 -06:00
/// Given a `Result<T, E>` type, return its error type (`E`).
2015-11-19 07:39:27 -06:00
fn get_error_type < ' a > ( cx : & LateContext , ty : ty ::Ty < ' a > ) -> Option < ty ::Ty < ' a > > {
2016-04-14 11:13:15 -05:00
if ! match_type ( cx , ty , & paths ::RESULT ) {
2015-11-19 07:39:27 -06:00
return None ;
}
if let ty ::TyEnum ( _ , substs ) = ty . sty {
if let Some ( err_ty ) = substs . types . opt_get ( TypeSpace , 1 ) {
return Some ( err_ty ) ;
}
}
None
}
2016-04-14 11:13:15 -05:00
/// This checks whether a given type is known to implement Debug.
2015-11-19 13:13:36 -06:00
fn has_debug_impl < ' a , ' b > ( ty : ty ::Ty < ' a > , cx : & LateContext < ' b , ' a > ) -> bool {
2016-02-12 18:38:55 -06:00
match cx . tcx . lang_items . debug_trait ( ) {
2016-03-01 09:25:15 -06:00
Some ( debug ) = > implements_trait ( cx , ty , debug , Vec ::new ( ) ) ,
2016-02-12 18:38:55 -06:00
None = > false ,
}
2015-11-19 13:13:36 -06:00
}
2015-11-19 07:39:27 -06:00
2016-02-12 18:42:46 -06:00
enum Convention {
Eq ( & 'static str ) ,
StartsWith ( & 'static str ) ,
}
2016-01-30 07:01:26 -06:00
#[ cfg_attr(rustfmt, rustfmt_skip) ]
2016-02-12 18:42:46 -06:00
const CONVENTIONS : [ ( Convention , & 'static [ SelfKind ] ) ; 6 ] = [
( Convention ::Eq ( " new " ) , & [ SelfKind ::No ] ) ,
( Convention ::StartsWith ( " as_ " ) , & [ SelfKind ::Ref , SelfKind ::RefMut ] ) ,
( Convention ::StartsWith ( " from_ " ) , & [ SelfKind ::No ] ) ,
( Convention ::StartsWith ( " into_ " ) , & [ SelfKind ::Value ] ) ,
( Convention ::StartsWith ( " is_ " ) , & [ SelfKind ::Ref , SelfKind ::No ] ) ,
( Convention ::StartsWith ( " to_ " ) , & [ SelfKind ::Ref ] ) ,
2016-01-30 06:39:16 -06:00
] ;
2016-01-30 07:01:26 -06:00
#[ cfg_attr(rustfmt, rustfmt_skip) ]
2016-01-30 06:39:16 -06:00
const TRAIT_METHODS : [ ( & 'static str , usize , SelfKind , OutType , & 'static str ) ; 30 ] = [
( " add " , 2 , SelfKind ::Value , OutType ::Any , " std::ops::Add " ) ,
2016-02-12 18:42:46 -06:00
( " as_mut " , 1 , SelfKind ::RefMut , OutType ::Ref , " std::convert::AsMut " ) ,
( " as_ref " , 1 , SelfKind ::Ref , OutType ::Ref , " std::convert::AsRef " ) ,
2016-01-30 06:39:16 -06:00
( " bitand " , 2 , SelfKind ::Value , OutType ::Any , " std::ops::BitAnd " ) ,
( " bitor " , 2 , SelfKind ::Value , OutType ::Any , " std::ops::BitOr " ) ,
( " bitxor " , 2 , SelfKind ::Value , OutType ::Any , " std::ops::BitXor " ) ,
( " borrow " , 1 , SelfKind ::Ref , OutType ::Ref , " std::borrow::Borrow " ) ,
( " borrow_mut " , 1 , SelfKind ::RefMut , OutType ::Ref , " std::borrow::BorrowMut " ) ,
2016-02-12 18:42:46 -06:00
( " clone " , 1 , SelfKind ::Ref , OutType ::Any , " std::clone::Clone " ) ,
2016-01-30 06:39:16 -06:00
( " cmp " , 2 , SelfKind ::Ref , OutType ::Any , " std::cmp::Ord " ) ,
( " default " , 0 , SelfKind ::No , OutType ::Any , " std::default::Default " ) ,
2016-02-12 18:42:46 -06:00
( " deref " , 1 , SelfKind ::Ref , OutType ::Ref , " std::ops::Deref " ) ,
( " deref_mut " , 1 , SelfKind ::RefMut , OutType ::Ref , " std::ops::DerefMut " ) ,
( " div " , 2 , SelfKind ::Value , OutType ::Any , " std::ops::Div " ) ,
( " drop " , 1 , SelfKind ::RefMut , OutType ::Unit , " std::ops::Drop " ) ,
( " eq " , 2 , SelfKind ::Ref , OutType ::Bool , " std::cmp::PartialEq " ) ,
2016-01-30 06:39:16 -06:00
( " from_iter " , 1 , SelfKind ::No , OutType ::Any , " std::iter::FromIterator " ) ,
( " from_str " , 1 , SelfKind ::No , OutType ::Any , " std::str::FromStr " ) ,
2016-02-12 18:42:46 -06:00
( " hash " , 2 , SelfKind ::Ref , OutType ::Unit , " std::hash::Hash " ) ,
( " index " , 2 , SelfKind ::Ref , OutType ::Ref , " std::ops::Index " ) ,
( " index_mut " , 2 , SelfKind ::RefMut , OutType ::Ref , " std::ops::IndexMut " ) ,
( " into_iter " , 1 , SelfKind ::Value , OutType ::Any , " std::iter::IntoIterator " ) ,
( " mul " , 2 , SelfKind ::Value , OutType ::Any , " std::ops::Mul " ) ,
( " neg " , 1 , SelfKind ::Value , OutType ::Any , " std::ops::Neg " ) ,
( " next " , 1 , SelfKind ::RefMut , OutType ::Any , " std::iter::Iterator " ) ,
( " not " , 1 , SelfKind ::Value , OutType ::Any , " std::ops::Not " ) ,
( " rem " , 2 , SelfKind ::Value , OutType ::Any , " std::ops::Rem " ) ,
( " shl " , 2 , SelfKind ::Value , OutType ::Any , " std::ops::Shl " ) ,
( " shr " , 2 , SelfKind ::Value , OutType ::Any , " std::ops::Shr " ) ,
( " sub " , 2 , SelfKind ::Value , OutType ::Any , " std::ops::Sub " ) ,
2016-01-30 06:39:16 -06:00
] ;
2015-08-24 11:13:02 -05:00
2016-02-14 21:40:43 -06:00
#[ cfg_attr(rustfmt, rustfmt_skip) ]
const PATTERN_METHODS : [ ( & 'static str , usize ) ; 17 ] = [
( " contains " , 1 ) ,
( " starts_with " , 1 ) ,
( " ends_with " , 1 ) ,
( " find " , 1 ) ,
( " rfind " , 1 ) ,
( " split " , 1 ) ,
( " rsplit " , 1 ) ,
( " split_terminator " , 1 ) ,
( " rsplit_terminator " , 1 ) ,
( " splitn " , 2 ) ,
( " rsplitn " , 2 ) ,
( " matches " , 1 ) ,
( " rmatches " , 1 ) ,
( " match_indices " , 1 ) ,
( " rmatch_indices " , 1 ) ,
( " trim_left_matches " , 1 ) ,
( " trim_right_matches " , 1 ) ,
] ;
2015-08-24 11:13:02 -05:00
#[ derive(Clone, Copy) ]
enum SelfKind {
2016-02-01 05:51:33 -06:00
Value ,
Ref ,
RefMut ,
No ,
2015-08-24 11:13:02 -05:00
}
impl SelfKind {
2016-05-17 16:25:20 -05:00
fn matches ( self , slf : & hir ::ExplicitSelf , allow_value_for_ref : bool ) -> bool {
match ( self , & slf . node ) {
( SelfKind ::Value , & hir ::SelfKind ::Value ( _ ) ) |
( SelfKind ::Ref , & hir ::SelfKind ::Region ( _ , hir ::Mutability ::MutImmutable ) ) |
( SelfKind ::RefMut , & hir ::SelfKind ::Region ( _ , hir ::Mutability ::MutMutable ) ) = > true ,
( SelfKind ::Ref , & hir ::SelfKind ::Value ( _ ) ) |
( SelfKind ::RefMut , & hir ::SelfKind ::Value ( _ ) ) = > allow_value_for_ref ,
( _ , & hir ::SelfKind ::Explicit ( ref ty , _ ) ) = > self . matches_explicit_type ( ty , allow_value_for_ref ) ,
2016-01-03 22:26:12 -06:00
_ = > false ,
2015-08-24 11:13:02 -05:00
}
}
2015-09-01 11:52:48 -05:00
2016-05-17 16:25:20 -05:00
fn matches_explicit_type ( self , ty : & hir ::Ty , allow_value_for_ref : bool ) -> bool {
2015-09-01 11:52:48 -05:00
match ( self , & ty . node ) {
2016-05-17 16:25:20 -05:00
( SelfKind ::Value , & hir ::TyPath ( .. ) ) |
( SelfKind ::Ref , & hir ::TyRptr ( _ , hir ::MutTy { mutbl : hir ::Mutability ::MutImmutable , .. } ) ) |
( SelfKind ::RefMut , & hir ::TyRptr ( _ , hir ::MutTy { mutbl : hir ::Mutability ::MutMutable , .. } ) ) = > true ,
( SelfKind ::Ref , & hir ::TyPath ( .. ) ) |
( SelfKind ::RefMut , & hir ::TyPath ( .. ) ) = > allow_value_for_ref ,
2016-01-03 22:26:12 -06:00
_ = > false ,
2015-09-01 11:52:48 -05:00
}
}
fn description ( & self ) -> & 'static str {
match * self {
2016-02-01 05:51:33 -06:00
SelfKind ::Value = > " self by value " ,
SelfKind ::Ref = > " self by reference " ,
SelfKind ::RefMut = > " self by mutable reference " ,
SelfKind ::No = > " no self " ,
2015-09-01 11:52:48 -05:00
}
}
2015-08-24 11:13:02 -05:00
}
2016-02-12 18:42:46 -06:00
impl Convention {
fn check ( & self , other : & str ) -> bool {
match * self {
Convention ::Eq ( this ) = > this = = other ,
Convention ::StartsWith ( this ) = > other . starts_with ( this ) ,
}
}
}
impl fmt ::Display for Convention {
fn fmt ( & self , f : & mut fmt ::Formatter ) -> Result < ( ) , fmt ::Error > {
match * self {
Convention ::Eq ( this ) = > this . fmt ( f ) ,
Convention ::StartsWith ( this ) = > this . fmt ( f ) . and_then ( | _ | '*' . fmt ( f ) ) ,
}
}
}
2015-08-24 11:13:02 -05:00
#[ derive(Clone, Copy) ]
enum OutType {
2016-02-01 05:51:33 -06:00
Unit ,
Bool ,
Any ,
Ref ,
2015-08-24 11:13:02 -05:00
}
impl OutType {
2016-05-17 16:25:20 -05:00
fn matches ( & self , ty : & hir ::FunctionRetTy ) -> bool {
2015-08-24 11:13:02 -05:00
match ( self , ty ) {
2016-05-17 16:25:20 -05:00
( & OutType ::Unit , & hir ::DefaultReturn ( _ ) ) = > true ,
( & OutType ::Unit , & hir ::Return ( ref ty ) ) if ty . node = = hir ::TyTup ( vec! [ ] . into ( ) ) = > true ,
( & OutType ::Bool , & hir ::Return ( ref ty ) ) if is_bool ( ty ) = > true ,
( & OutType ::Any , & hir ::Return ( ref ty ) ) if ty . node ! = hir ::TyTup ( vec! [ ] . into ( ) ) = > true ,
2016-06-05 18:42:39 -05:00
( & OutType ::Ref , & hir ::Return ( ref ty ) ) = > matches! ( ty . node , hir ::TyRptr ( _ , _ ) ) ,
2016-01-03 22:26:12 -06:00
_ = > false ,
2015-08-24 11:13:02 -05:00
}
}
}
2016-05-17 16:25:20 -05:00
fn is_bool ( ty : & hir ::Ty ) -> bool {
if let hir ::TyPath ( None , ref p ) = ty . node {
2016-06-05 13:46:42 -05:00
match_path ( p , & [ " bool " ] )
} else {
false
2015-08-24 11:13:02 -05:00
}
2015-08-11 13:53:50 -05:00
}
2015-09-01 14:08:49 -05:00
2016-05-17 16:25:20 -05:00
fn is_copy < ' a , ' ctx > ( cx : & LateContext < ' a , ' ctx > , ty : ty ::Ty < ' ctx > , item : & hir ::Item ) -> bool {
2016-02-15 06:44:59 -06:00
let env = ty ::ParameterEnvironment ::for_item ( cx . tcx , item . id ) ;
2016-05-12 12:11:13 -05:00
! ty . subst ( cx . tcx , env . free_substs ) . moves_by_default ( cx . tcx . global_tcx ( ) , & env , item . span )
2015-09-01 14:08:49 -05:00
}