use rustc_front::hir::*; use rustc::lint::*; use rustc::middle::ty; use rustc::middle::subst::{Subst, TypeSpace}; use std::iter; use std::borrow::Cow; use std::collections::HashSet; use utils::{snippet, span_lint, match_path, match_type, walk_ptrs_ty_depth, walk_ptrs_ty}; use utils::{OPTION_PATH, RESULT_PATH, STRING_PATH}; use self::SelfKind::*; use self::OutType::*; use rustc::middle::def_id::DefId; use rustc::middle::ty::TypeFlags; #[derive(Clone)] pub struct MethodsPass { types_implementing_debug: Option> } impl MethodsPass { pub fn new() -> MethodsPass { MethodsPass { types_implementing_debug: None } } fn get_debug_impls(&mut self, cx: &LateContext) -> Option<&HashSet> { if self.types_implementing_debug.is_none() { let debug = match cx.tcx.lang_items.debug_trait() { Some(debug) => debug, None => return None }; let debug_def = cx.tcx.lookup_trait_def(debug); let mut impls = HashSet::new(); debug_def.for_each_impl(cx.tcx, |d| { let o_self_ty = &cx.tcx.impl_trait_ref(d) .map(|x| x.substs) .and_then(|x| x.self_ty()); let self_ty = match *o_self_ty { Some(self_type) => self_type, None => return }; let self_ty_def_id = self_ty.ty_to_def_id(); if let Some(self_ty_def_id) = self_ty_def_id { let has_params = self_ty.flags.get().contains(TypeFlags::HAS_PARAMS); if !has_params { impls.insert(self_ty_def_id); } } }); self.types_implementing_debug = Some(impls); } self.types_implementing_debug.as_ref() } // This checks whether a given type is known to implement Debug. It's // conservative, i.e. it should not return false positives, but will return // false negatives. fn has_debug_impl(&mut self, ty: ty::Ty, cx: &LateContext) -> bool { let debug_impls = match self.get_debug_impls(cx) { Some(debug_impls) => debug_impls, None => return false }; match walk_ptrs_ty(ty).sty { ty::TyBool | ty::TyChar | ty::TyInt(..) | ty::TyUint(..) | ty::TyFloat(..) | ty::TyStr => true, ty::TyTuple(ref v) if v.is_empty() => true, ty::TyStruct(..) | ty::TyEnum(..) => { match ty.ty_to_def_id() { Some(ref ty_def_id) => debug_impls.contains(ty_def_id), None => false } }, _ => false } } } declare_lint!(pub OPTION_UNWRAP_USED, Allow, "using `Option.unwrap()`, which should at least get a better message using `expect()`"); declare_lint!(pub RESULT_UNWRAP_USED, Allow, "using `Result.unwrap()`, which might be better handled"); declare_lint!(pub STR_TO_STRING, Warn, "using `to_string()` on a str, which should be `to_owned()`"); declare_lint!(pub STRING_TO_STRING, Warn, "calling `String.to_string()` which is a no-op"); declare_lint!(pub SHOULD_IMPLEMENT_TRAIT, Warn, "defining a method that should be implementing a std trait"); declare_lint!(pub WRONG_SELF_CONVENTION, Warn, "defining a method named with an established prefix (like \"into_\") that takes \ `self` with the wrong convention"); 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"); declare_lint!(pub OK_EXPECT, Warn, "using `ok().expect()`, which gives worse error messages than \ calling `expect` directly on the Result"); impl LintPass for MethodsPass { fn get_lints(&self) -> LintArray { lint_array!(OPTION_UNWRAP_USED, RESULT_UNWRAP_USED, STR_TO_STRING, STRING_TO_STRING, SHOULD_IMPLEMENT_TRAIT, WRONG_SELF_CONVENTION, OK_EXPECT) } } impl LateLintPass for MethodsPass { fn check_expr(&mut self, cx: &LateContext, expr: &Expr) { if let ExprMethodCall(ref name, _, ref args) = expr.node { let (obj_ty, ptr_depth) = walk_ptrs_ty_depth(cx.tcx.expr_ty(&args[0])); if name.node.as_str() == "unwrap" { if match_type(cx, obj_ty, &OPTION_PATH) { span_lint(cx, OPTION_UNWRAP_USED, expr.span, "used unwrap() on an Option value. If you don't want \ to handle the None case gracefully, consider using \ expect() to provide a better panic message"); } else if match_type(cx, obj_ty, &RESULT_PATH) { span_lint(cx, RESULT_UNWRAP_USED, expr.span, "used unwrap() on a Result value. Graceful handling \ of Err values is preferred"); } } else if name.node.as_str() == "to_string" { if obj_ty.sty == ty::TyStr { let mut arg_str = snippet(cx, args[0].span, "_"); if ptr_depth > 1 { arg_str = Cow::Owned(format!( "({}{})", iter::repeat('*').take(ptr_depth - 1).collect::(), arg_str)); } span_lint(cx, STR_TO_STRING, expr.span, &format!( "`{}.to_owned()` is faster", arg_str)); } else if match_type(cx, obj_ty, &STRING_PATH) { span_lint(cx, STRING_TO_STRING, expr.span, "`String.to_string()` is a no-op; use \ `clone()` to make a copy"); } } else if name.node.as_str() == "expect" { if let ExprMethodCall(ref inner_name, _, ref inner_args) = args[0].node { if inner_name.node.as_str() == "ok" && match_type(cx, cx.tcx.expr_ty(&inner_args[0]), &RESULT_PATH) { let result_type = cx.tcx.expr_ty(&inner_args[0]); if let Some(error_type) = get_error_type(cx, result_type) { if self.has_debug_impl(error_type, cx) { span_lint(cx, OK_EXPECT, expr.span, "called `ok().expect()` on a Result \ value. You can call `expect` directly on the `Result`"); } } } } } } } fn check_item(&mut self, cx: &LateContext, item: &Item) { if let ItemImpl(_, _, _, None, ref ty, ref items) = item.node { for implitem in items { let name = implitem.name; if let ImplItemKind::Method(ref sig, _) = implitem.node { // check missing trait implementations for &(method_name, n_args, self_kind, out_type, trait_name) in &TRAIT_METHODS { if_let_chain! { [ name.as_str() == method_name, sig.decl.inputs.len() == n_args, out_type.matches(&sig.decl.output), self_kind.matches(&sig.explicit_self.node, 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)); } } } // check conventions w.r.t. conversion method names and predicates let is_copy = is_copy(cx, &ty, &item); for &(prefix, self_kinds) in &CONVENTIONS { if name.as_str().starts_with(prefix) && !self_kinds.iter().any(|k| k.matches(&sig.explicit_self.node, is_copy)) { let lint = if item.vis == Visibility::Public { WRONG_PUB_SELF_CONVENTION } else { WRONG_SELF_CONVENTION }; span_lint(cx, lint, sig.explicit_self.span, &format!( "methods called `{}*` usually take {}; consider choosing a less \ ambiguous name", prefix, &self_kinds.iter().map(|k| k.description()).collect::>().join(" or "))); } } } } } } } // Given a `Result` type, return its error type (`E`) fn get_error_type<'a>(cx: &LateContext, ty: ty::Ty<'a>) -> Option> { if !match_type(cx, ty, &RESULT_PATH) { 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 } const CONVENTIONS: [(&'static str, &'static [SelfKind]); 5] = [ ("into_", &[ValueSelf]), ("to_", &[RefSelf]), ("as_", &[RefSelf, RefMutSelf]), ("is_", &[RefSelf, NoSelf]), ("from_", &[NoSelf]), ]; const TRAIT_METHODS: [(&'static str, usize, SelfKind, OutType, &'static str); 30] = [ ("add", 2, ValueSelf, AnyType, "std::ops::Add"), ("sub", 2, ValueSelf, AnyType, "std::ops::Sub"), ("mul", 2, ValueSelf, AnyType, "std::ops::Mul"), ("div", 2, ValueSelf, AnyType, "std::ops::Div"), ("rem", 2, ValueSelf, AnyType, "std::ops::Rem"), ("shl", 2, ValueSelf, AnyType, "std::ops::Shl"), ("shr", 2, ValueSelf, AnyType, "std::ops::Shr"), ("bitand", 2, ValueSelf, AnyType, "std::ops::BitAnd"), ("bitor", 2, ValueSelf, AnyType, "std::ops::BitOr"), ("bitxor", 2, ValueSelf, AnyType, "std::ops::BitXor"), ("neg", 1, ValueSelf, AnyType, "std::ops::Neg"), ("not", 1, ValueSelf, AnyType, "std::ops::Not"), ("drop", 1, RefMutSelf, UnitType, "std::ops::Drop"), ("index", 2, RefSelf, RefType, "std::ops::Index"), ("index_mut", 2, RefMutSelf, RefType, "std::ops::IndexMut"), ("deref", 1, RefSelf, RefType, "std::ops::Deref"), ("deref_mut", 1, RefMutSelf, RefType, "std::ops::DerefMut"), ("clone", 1, RefSelf, AnyType, "std::clone::Clone"), ("borrow", 1, RefSelf, RefType, "std::borrow::Borrow"), ("borrow_mut", 1, RefMutSelf, RefType, "std::borrow::BorrowMut"), ("as_ref", 1, RefSelf, RefType, "std::convert::AsRef"), ("as_mut", 1, RefMutSelf, RefType, "std::convert::AsMut"), ("eq", 2, RefSelf, BoolType, "std::cmp::PartialEq"), ("cmp", 2, RefSelf, AnyType, "std::cmp::Ord"), ("default", 0, NoSelf, AnyType, "std::default::Default"), ("hash", 2, RefSelf, UnitType, "std::hash::Hash"), ("next", 1, RefMutSelf, AnyType, "std::iter::Iterator"), ("into_iter", 1, ValueSelf, AnyType, "std::iter::IntoIterator"), ("from_iter", 1, NoSelf, AnyType, "std::iter::FromIterator"), ("from_str", 1, NoSelf, AnyType, "std::str::FromStr"), ]; #[derive(Clone, Copy)] enum SelfKind { ValueSelf, RefSelf, RefMutSelf, NoSelf, } impl SelfKind { fn matches(&self, slf: &ExplicitSelf_, allow_value_for_ref: bool) -> bool { match (self, slf) { (&ValueSelf, &SelfValue(_)) => true, (&RefSelf, &SelfRegion(_, Mutability::MutImmutable, _)) => true, (&RefMutSelf, &SelfRegion(_, Mutability::MutMutable, _)) => true, (&RefSelf, &SelfValue(_)) => allow_value_for_ref, (&RefMutSelf, &SelfValue(_)) => allow_value_for_ref, (&NoSelf, &SelfStatic) => true, (_, &SelfExplicit(ref ty, _)) => self.matches_explicit_type(ty, allow_value_for_ref), _ => false } } fn matches_explicit_type(&self, ty: &Ty, allow_value_for_ref: bool) -> bool { match (self, &ty.node) { (&ValueSelf, &TyPath(..)) => true, (&RefSelf, &TyRptr(_, MutTy { mutbl: Mutability::MutImmutable, .. })) => true, (&RefMutSelf, &TyRptr(_, MutTy { mutbl: Mutability::MutMutable, .. })) => true, (&RefSelf, &TyPath(..)) => allow_value_for_ref, (&RefMutSelf, &TyPath(..)) => allow_value_for_ref, _ => false } } fn description(&self) -> &'static str { match *self { ValueSelf => "self by value", RefSelf => "self by reference", RefMutSelf => "self by mutable reference", NoSelf => "no self", } } } #[derive(Clone, Copy)] enum OutType { UnitType, BoolType, AnyType, RefType, } impl OutType { fn matches(&self, ty: &FunctionRetTy) -> bool { match (self, ty) { (&UnitType, &DefaultReturn(_)) => true, (&UnitType, &Return(ref ty)) if ty.node == TyTup(vec![]) => true, (&BoolType, &Return(ref ty)) if is_bool(ty) => true, (&AnyType, &Return(ref ty)) if ty.node != TyTup(vec![]) => true, (&RefType, &Return(ref ty)) => { if let TyRptr(_, _) = ty.node { true } else { false } } _ => false } } } fn is_bool(ty: &Ty) -> bool { if let TyPath(None, ref p) = ty.node { if match_path(p, &["bool"]) { return true; } } false } fn is_copy(cx: &LateContext, ast_ty: &Ty, item: &Item) -> bool { match cx.tcx.ast_ty_to_ty_cache.borrow().get(&ast_ty.id) { None => false, Some(ty) => { let env = ty::ParameterEnvironment::for_item(cx.tcx, item.id); !ty.subst(cx.tcx, &env.free_substs).moves_by_default(&env, ast_ty.span) } } }