2016-01-21 11:19:02 -06:00
|
|
|
|
use rustc::lint::*;
|
2016-03-27 13:59:02 -05:00
|
|
|
|
use rustc::ty::subst::Subst;
|
|
|
|
|
use rustc::ty::TypeVariants;
|
|
|
|
|
use rustc::ty;
|
2016-04-07 10:46:48 -05:00
|
|
|
|
use rustc::hir::*;
|
2016-02-12 11:35:44 -06:00
|
|
|
|
use syntax::ast::{Attribute, MetaItemKind};
|
2016-01-24 06:56:23 -06:00
|
|
|
|
use syntax::codemap::Span;
|
|
|
|
|
use utils::{CLONE_TRAIT_PATH, HASH_PATH};
|
2016-01-21 11:19:02 -06:00
|
|
|
|
use utils::{match_path, span_lint_and_then};
|
|
|
|
|
|
|
|
|
|
/// **What it does:** This lint warns about deriving `Hash` but implementing `PartialEq`
|
2016-01-24 06:56:23 -06:00
|
|
|
|
/// explicitly.
|
2016-01-21 11:19:02 -06:00
|
|
|
|
///
|
|
|
|
|
/// **Why is this bad?** The implementation of these traits must agree (for example for use with
|
|
|
|
|
/// `HashMap`) so it’s probably a bad idea to use a default-generated `Hash` implementation with
|
2016-03-19 09:06:56 -05:00
|
|
|
|
/// an explicitly defined `PartialEq`. In particular, the following must hold for any type:
|
2016-01-21 11:19:02 -06:00
|
|
|
|
///
|
|
|
|
|
/// ```rust
|
2016-02-15 15:26:20 -06:00
|
|
|
|
/// k1 == k2 ⇒ hash(k1) == hash(k2)
|
2016-01-21 11:19:02 -06:00
|
|
|
|
/// ```
|
|
|
|
|
///
|
|
|
|
|
/// **Known problems:** None.
|
|
|
|
|
///
|
|
|
|
|
/// **Example:**
|
|
|
|
|
/// ```rust
|
|
|
|
|
/// #[derive(Hash)]
|
|
|
|
|
/// struct Foo;
|
|
|
|
|
///
|
|
|
|
|
/// impl PartialEq for Foo {
|
|
|
|
|
/// ..
|
|
|
|
|
/// }
|
2016-01-29 15:42:19 -06:00
|
|
|
|
/// ```
|
2016-01-21 11:19:02 -06:00
|
|
|
|
declare_lint! {
|
2016-02-15 16:38:09 -06:00
|
|
|
|
pub DERIVE_HASH_XOR_EQ,
|
2016-01-21 11:19:02 -06:00
|
|
|
|
Warn,
|
|
|
|
|
"deriving `Hash` but implementing `PartialEq` explicitly"
|
|
|
|
|
}
|
|
|
|
|
|
2016-01-24 06:56:23 -06:00
|
|
|
|
/// **What it does:** This lint warns about explicit `Clone` implementation for `Copy` types.
|
|
|
|
|
///
|
|
|
|
|
/// **Why is this bad?** To avoid surprising behaviour, these traits should agree and the behaviour
|
|
|
|
|
/// of `Copy` cannot be overridden. In almost all situations a `Copy` type should have a `Clone`
|
|
|
|
|
/// implementation that does nothing more than copy the object, which is what
|
|
|
|
|
/// `#[derive(Copy, Clone)]` gets you.
|
|
|
|
|
///
|
|
|
|
|
/// **Known problems:** None.
|
|
|
|
|
///
|
|
|
|
|
/// **Example:**
|
|
|
|
|
/// ```rust
|
|
|
|
|
/// #[derive(Copy)]
|
|
|
|
|
/// struct Foo;
|
|
|
|
|
///
|
|
|
|
|
/// impl Clone for Foo {
|
|
|
|
|
/// ..
|
|
|
|
|
/// }
|
2016-01-29 15:42:19 -06:00
|
|
|
|
/// ```
|
2016-01-24 06:56:23 -06:00
|
|
|
|
declare_lint! {
|
|
|
|
|
pub EXPL_IMPL_CLONE_ON_COPY,
|
|
|
|
|
Warn,
|
|
|
|
|
"implementing `Clone` explicitly on `Copy` types"
|
|
|
|
|
}
|
|
|
|
|
|
2016-01-21 11:19:02 -06:00
|
|
|
|
pub struct Derive;
|
|
|
|
|
|
|
|
|
|
impl LintPass for Derive {
|
|
|
|
|
fn get_lints(&self) -> LintArray {
|
2016-02-15 16:38:09 -06:00
|
|
|
|
lint_array!(EXPL_IMPL_CLONE_ON_COPY, DERIVE_HASH_XOR_EQ)
|
2016-01-21 11:19:02 -06:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
impl LateLintPass for Derive {
|
|
|
|
|
fn check_item(&mut self, cx: &LateContext, item: &Item) {
|
2016-01-24 06:56:23 -06:00
|
|
|
|
if_let_chain! {[
|
2016-02-14 22:50:26 -06:00
|
|
|
|
let ItemImpl(_, _, _, Some(ref trait_ref), _, _) = item.node
|
2016-01-24 06:56:23 -06:00
|
|
|
|
], {
|
2016-02-14 22:50:26 -06:00
|
|
|
|
let ty = cx.tcx.lookup_item_type(cx.tcx.map.local_def_id(item.id)).ty;
|
2016-02-15 16:38:09 -06:00
|
|
|
|
let is_automatically_derived = item.attrs.iter().any(is_automatically_derived);
|
|
|
|
|
|
|
|
|
|
check_hash_peq(cx, item.span, trait_ref, ty, is_automatically_derived);
|
|
|
|
|
|
|
|
|
|
if !is_automatically_derived {
|
2016-02-14 13:29:32 -06:00
|
|
|
|
check_copy_clone(cx, item, trait_ref, ty);
|
2016-01-21 11:19:02 -06:00
|
|
|
|
}
|
2016-01-24 06:56:23 -06:00
|
|
|
|
}}
|
|
|
|
|
}
|
|
|
|
|
}
|
2016-01-21 11:19:02 -06:00
|
|
|
|
|
2016-02-15 16:38:09 -06:00
|
|
|
|
/// Implementation of the `DERIVE_HASH_XOR_EQ` lint.
|
2016-04-08 10:31:47 -05:00
|
|
|
|
fn check_hash_peq<'a, 'tcx>(cx: &LateContext<'a, 'tcx>, span: Span, trait_ref: &TraitRef, ty: ty::Ty<'tcx>, hash_is_automatically_derived: bool) {
|
2016-01-24 06:56:23 -06:00
|
|
|
|
if_let_chain! {[
|
|
|
|
|
match_path(&trait_ref.path, &HASH_PATH),
|
|
|
|
|
let Some(peq_trait_def_id) = cx.tcx.lang_items.eq_trait()
|
|
|
|
|
], {
|
|
|
|
|
let peq_trait_def = cx.tcx.lookup_trait_def(peq_trait_def_id);
|
|
|
|
|
|
|
|
|
|
// Look for the PartialEq implementations for `ty`
|
2016-04-08 10:31:47 -05:00
|
|
|
|
peq_trait_def.for_each_relevant_impl(&cx.tcx, ty, |impl_id| {
|
|
|
|
|
let peq_is_automatically_derived = cx.tcx.get_attrs(impl_id).iter().any(is_automatically_derived);
|
2016-02-15 16:38:09 -06:00
|
|
|
|
|
2016-04-08 10:31:47 -05:00
|
|
|
|
if peq_is_automatically_derived == hash_is_automatically_derived {
|
|
|
|
|
return;
|
|
|
|
|
}
|
2016-02-15 16:38:09 -06:00
|
|
|
|
|
2016-04-08 10:31:47 -05:00
|
|
|
|
let trait_ref = cx.tcx.impl_trait_ref(impl_id).expect("must be a trait implementation");
|
2016-01-21 11:19:02 -06:00
|
|
|
|
|
2016-04-08 10:31:47 -05:00
|
|
|
|
// Only care about `impl PartialEq<Foo> for Foo`
|
|
|
|
|
if trait_ref.input_types()[0] == ty {
|
|
|
|
|
let mess = if peq_is_automatically_derived {
|
|
|
|
|
"you are implementing `Hash` explicitly but have derived `PartialEq`"
|
|
|
|
|
} else {
|
|
|
|
|
"you are deriving `Hash` but have implemented `PartialEq` explicitly"
|
|
|
|
|
};
|
2016-02-15 16:38:09 -06:00
|
|
|
|
|
2016-04-08 10:31:47 -05:00
|
|
|
|
span_lint_and_then(
|
|
|
|
|
cx, DERIVE_HASH_XOR_EQ, span,
|
|
|
|
|
mess,
|
|
|
|
|
|db| {
|
|
|
|
|
if let Some(node_id) = cx.tcx.map.as_local_node_id(impl_id) {
|
|
|
|
|
db.span_note(
|
|
|
|
|
cx.tcx.map.span(node_id),
|
|
|
|
|
"`PartialEq` implemented here"
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
});
|
2016-01-24 06:56:23 -06:00
|
|
|
|
}
|
2016-04-08 10:31:47 -05:00
|
|
|
|
});
|
2016-01-24 06:56:23 -06:00
|
|
|
|
}}
|
|
|
|
|
}
|
2016-01-21 11:19:02 -06:00
|
|
|
|
|
2016-01-24 06:56:23 -06:00
|
|
|
|
/// Implementation of the `EXPL_IMPL_CLONE_ON_COPY` lint.
|
2016-02-29 05:19:32 -06:00
|
|
|
|
fn check_copy_clone<'a, 'tcx>(cx: &LateContext<'a, 'tcx>, item: &Item, trait_ref: &TraitRef, ty: ty::Ty<'tcx>) {
|
2016-01-24 06:56:23 -06:00
|
|
|
|
if match_path(&trait_ref.path, &CLONE_TRAIT_PATH) {
|
2016-02-14 13:29:32 -06:00
|
|
|
|
let parameter_environment = ty::ParameterEnvironment::for_item(cx.tcx, item.id);
|
2016-02-14 22:50:26 -06:00
|
|
|
|
let subst_ty = ty.subst(cx.tcx, ¶meter_environment.free_substs);
|
2016-01-21 11:19:02 -06:00
|
|
|
|
|
2016-02-14 22:50:26 -06:00
|
|
|
|
if subst_ty.moves_by_default(¶meter_environment, item.span) {
|
2016-01-24 06:56:23 -06:00
|
|
|
|
return; // ty is not Copy
|
|
|
|
|
}
|
2016-01-21 11:19:02 -06:00
|
|
|
|
|
2016-01-24 06:56:23 -06:00
|
|
|
|
// Some types are not Clone by default but could be cloned `by hand` if necessary
|
|
|
|
|
match ty.sty {
|
|
|
|
|
TypeVariants::TyEnum(def, substs) | TypeVariants::TyStruct(def, substs) => {
|
|
|
|
|
for variant in &def.variants {
|
|
|
|
|
for field in &variant.fields {
|
|
|
|
|
match field.ty(cx.tcx, substs).sty {
|
|
|
|
|
TypeVariants::TyArray(_, size) if size > 32 => {
|
|
|
|
|
return;
|
2016-01-21 11:19:02 -06:00
|
|
|
|
}
|
2016-03-10 11:13:49 -06:00
|
|
|
|
TypeVariants::TyFnPtr(..) => {
|
2016-01-24 06:56:23 -06:00
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
TypeVariants::TyTuple(ref tys) if tys.len() > 12 => {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
_ => (),
|
|
|
|
|
}
|
2016-01-21 11:19:02 -06:00
|
|
|
|
}
|
|
|
|
|
}
|
2016-01-24 06:56:23 -06:00
|
|
|
|
}
|
|
|
|
|
_ => (),
|
|
|
|
|
}
|
|
|
|
|
|
2016-01-30 06:48:39 -06:00
|
|
|
|
span_lint_and_then(cx,
|
2016-02-15 15:26:20 -06:00
|
|
|
|
EXPL_IMPL_CLONE_ON_COPY,
|
2016-02-14 13:29:32 -06:00
|
|
|
|
item.span,
|
2016-01-30 06:48:39 -06:00
|
|
|
|
"you are implementing `Clone` explicitly on a `Copy` type",
|
|
|
|
|
|db| {
|
2016-02-14 13:29:32 -06:00
|
|
|
|
db.span_note(item.span, "consider deriving `Clone` or removing `Copy`");
|
2016-01-30 06:48:39 -06:00
|
|
|
|
});
|
2016-01-24 06:56:23 -06:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// Checks for the `#[automatically_derived]` attribute all `#[derive]`d implementations have.
|
|
|
|
|
fn is_automatically_derived(attr: &Attribute) -> bool {
|
2016-02-12 11:35:44 -06:00
|
|
|
|
if let MetaItemKind::Word(ref word) = attr.node.value.node {
|
2016-01-24 06:56:23 -06:00
|
|
|
|
word == &"automatically_derived"
|
2016-01-30 06:48:39 -06:00
|
|
|
|
} else {
|
2016-01-24 06:56:23 -06:00
|
|
|
|
false
|
2016-01-21 11:19:02 -06:00
|
|
|
|
}
|
|
|
|
|
}
|