2016-01-21 11:19:02 -06:00
|
|
|
|
use rustc::lint::*;
|
2017-06-10 21:57:25 -05:00
|
|
|
|
use rustc::ty::{self, Ty};
|
2016-04-07 10:46:48 -05:00
|
|
|
|
use rustc::hir::*;
|
2016-01-24 06:56:23 -06:00
|
|
|
|
use syntax::codemap::Span;
|
2016-04-14 11:13:15 -05:00
|
|
|
|
use utils::paths;
|
2017-09-05 04:33:04 -05:00
|
|
|
|
use utils::{is_automatically_derived, is_copy, match_path, span_lint_and_then};
|
2016-01-21 11:19:02 -06:00
|
|
|
|
|
2016-08-06 02:55:04 -05:00
|
|
|
|
/// **What it does:** Checks for deriving `Hash` but implementing `PartialEq`
|
2016-01-24 06:56:23 -06:00
|
|
|
|
/// explicitly.
|
2016-01-21 11:19:02 -06:00
|
|
|
|
///
|
2016-08-06 02:55:04 -05: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 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-08-06 02:55:04 -05:00
|
|
|
|
/// ...
|
2016-01-21 11:19:02 -06:00
|
|
|
|
/// }
|
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-08-06 02:55:04 -05:00
|
|
|
|
/// **What it does:** Checks for explicit `Clone` implementations for `Copy`
|
|
|
|
|
/// types.
|
2016-01-24 06:56:23 -06:00
|
|
|
|
///
|
2016-08-06 02:55:04 -05:00
|
|
|
|
/// **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.
|
2016-01-24 06:56:23 -06:00
|
|
|
|
///
|
|
|
|
|
/// **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
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2016-12-07 06:13:40 -06:00
|
|
|
|
impl<'a, 'tcx> LateLintPass<'a, 'tcx> for Derive {
|
|
|
|
|
fn check_item(&mut self, cx: &LateContext<'a, 'tcx>, item: &'tcx Item) {
|
2017-04-28 06:00:42 -05:00
|
|
|
|
if let ItemImpl(_, _, _, _, Some(ref trait_ref), _, _) = item.node {
|
2017-04-27 07:00:35 -05:00
|
|
|
|
let ty = cx.tcx.type_of(cx.tcx.hir.local_def_id(item.id));
|
2016-10-29 20:13:41 -05:00
|
|
|
|
let is_automatically_derived = is_automatically_derived(&*item.attrs);
|
2016-02-15 16:38:09 -06:00
|
|
|
|
|
|
|
|
|
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-06-05 13:46:27 -05: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-12-21 05:14:54 -06:00
|
|
|
|
fn check_hash_peq<'a, 'tcx>(
|
|
|
|
|
cx: &LateContext<'a, 'tcx>,
|
|
|
|
|
span: Span,
|
|
|
|
|
trait_ref: &TraitRef,
|
2017-06-10 21:57:25 -05:00
|
|
|
|
ty: Ty<'tcx>,
|
2017-08-09 02:30:56 -05:00
|
|
|
|
hash_is_automatically_derived: bool,
|
2016-12-21 05:14:54 -06:00
|
|
|
|
) {
|
2017-10-23 14:18:02 -05:00
|
|
|
|
if_chain! {
|
|
|
|
|
if match_path(&trait_ref.path, &paths::HASH);
|
|
|
|
|
if let Some(peq_trait_def_id) = cx.tcx.lang_items().eq_trait();
|
|
|
|
|
then {
|
|
|
|
|
// Look for the PartialEq implementations for `ty`
|
|
|
|
|
cx.tcx.for_each_relevant_impl(peq_trait_def_id, ty, |impl_id| {
|
|
|
|
|
let peq_is_automatically_derived = is_automatically_derived(&cx.tcx.get_attrs(impl_id));
|
|
|
|
|
|
|
|
|
|
if peq_is_automatically_derived == hash_is_automatically_derived {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
let trait_ref = cx.tcx.impl_trait_ref(impl_id).expect("must be a trait implementation");
|
|
|
|
|
|
|
|
|
|
// Only care about `impl PartialEq<Foo> for Foo`
|
|
|
|
|
// For `impl PartialEq<B> for A, input_types is [A, B]
|
|
|
|
|
if trait_ref.substs.type_at(1) == 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"
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
span_lint_and_then(
|
|
|
|
|
cx, DERIVE_HASH_XOR_EQ, span,
|
|
|
|
|
mess,
|
|
|
|
|
|db| {
|
|
|
|
|
if let Some(node_id) = cx.tcx.hir.as_local_node_id(impl_id) {
|
|
|
|
|
db.span_note(
|
|
|
|
|
cx.tcx.hir.span(node_id),
|
|
|
|
|
"`PartialEq` implemented here"
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
}
|
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.
|
2017-06-10 21:57:25 -05:00
|
|
|
|
fn check_copy_clone<'a, 'tcx>(cx: &LateContext<'a, 'tcx>, item: &Item, trait_ref: &TraitRef, ty: Ty<'tcx>) {
|
2017-08-24 17:21:46 -05:00
|
|
|
|
if match_path(&trait_ref.path, &paths::CLONE_TRAIT) {
|
2017-06-10 21:34:47 -05:00
|
|
|
|
if !is_copy(cx, ty) {
|
2017-04-28 10:03:18 -05:00
|
|
|
|
return;
|
2016-01-24 06:56:23 -06:00
|
|
|
|
}
|
2016-01-21 11:19:02 -06:00
|
|
|
|
|
2016-01-24 06:56:23 -06:00
|
|
|
|
match ty.sty {
|
2017-06-10 21:57:25 -05:00
|
|
|
|
ty::TyAdt(def, _) if def.is_union() => return,
|
2016-08-28 12:43:55 -05:00
|
|
|
|
|
|
|
|
|
// Some types are not Clone by default but could be cloned “by hand” if necessary
|
2017-09-05 04:33:04 -05:00
|
|
|
|
ty::TyAdt(def, substs) => for variant in &def.variants {
|
|
|
|
|
for field in &variant.fields {
|
2017-09-13 08:34:04 -05:00
|
|
|
|
if let ty::TyFnDef(..) = field.ty(cx.tcx, substs).sty {
|
|
|
|
|
return;
|
2016-01-21 11:19:02 -06:00
|
|
|
|
}
|
|
|
|
|
}
|
2016-12-20 11:21:30 -06:00
|
|
|
|
},
|
2016-01-24 06:56:23 -06:00
|
|
|
|
_ => (),
|
|
|
|
|
}
|
|
|
|
|
|
2017-09-05 04:33:04 -05:00
|
|
|
|
span_lint_and_then(
|
|
|
|
|
cx,
|
|
|
|
|
EXPL_IMPL_CLONE_ON_COPY,
|
|
|
|
|
item.span,
|
|
|
|
|
"you are implementing `Clone` explicitly on a `Copy` type",
|
|
|
|
|
|db| { db.span_note(item.span, "consider deriving `Clone` or removing `Copy`"); },
|
|
|
|
|
);
|
2016-01-24 06:56:23 -06:00
|
|
|
|
}
|
|
|
|
|
}
|