-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Add a lint about deriving Hash and implementing PartialEq #571
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,98 @@ | ||
use rustc::lint::*; | ||
use rustc_front::hir::*; | ||
use syntax::ast::{Attribute, MetaItem_}; | ||
use utils::{match_path, span_lint_and_then}; | ||
use utils::HASH_PATH; | ||
|
||
use rustc::middle::ty::fast_reject::simplify_type; | ||
|
||
/// **What it does:** This lint warns about deriving `Hash` but implementing `PartialEq` | ||
/// explicitely. | ||
/// | ||
/// **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 explicitely defined `PartialEq`. In particular, the following must hold for any type: | ||
/// | ||
/// ```rust | ||
/// k1 == k2 -> hash(k1) == hash(k2) | ||
/// ``` | ||
/// | ||
/// **Known problems:** None. | ||
/// | ||
/// **Example:** | ||
/// ```rust | ||
/// #[derive(Hash)] | ||
/// struct Foo; | ||
/// | ||
/// impl PartialEq for Foo { | ||
/// .. | ||
/// } | ||
declare_lint! { | ||
pub DERIVE_HASH_NOT_EQ, | ||
Warn, | ||
"deriving `Hash` but implementing `PartialEq` explicitly" | ||
} | ||
|
||
pub struct Derive; | ||
|
||
impl LintPass for Derive { | ||
fn get_lints(&self) -> LintArray { | ||
lint_array!(DERIVE_HASH_NOT_EQ) | ||
} | ||
} | ||
|
||
impl LateLintPass for Derive { | ||
fn check_item(&mut self, cx: &LateContext, item: &Item) { | ||
/// A `#[derive]`d implementation has a `#[automatically_derived]` attribute. | ||
fn is_automatically_derived(attr: &Attribute) -> bool { | ||
if let MetaItem_::MetaWord(ref word) = attr.node.value.node { | ||
word == &"automatically_derived" | ||
} | ||
else { | ||
false | ||
} | ||
} | ||
|
||
// If `item` is an automatically derived `Hash` implementation | ||
if_let_chain! {[ | ||
let ItemImpl(_, _, _, Some(ref trait_ref), ref ast_ty, _) = item.node, | ||
match_path(&trait_ref.path, &HASH_PATH), | ||
item.attrs.iter().any(is_automatically_derived), | ||
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); | ||
|
||
cx.tcx.populate_implementations_for_trait_if_necessary(peq_trait_def.trait_ref.def_id); | ||
let peq_impls = peq_trait_def.borrow_impl_lists(cx.tcx).1; | ||
let ast_ty_to_ty_cache = cx.tcx.ast_ty_to_ty_cache.borrow(); | ||
|
||
|
||
// Look for the PartialEq implementations for `ty` | ||
if_let_chain! {[ | ||
let Some(ty) = ast_ty_to_ty_cache.get(&ast_ty.id), | ||
let Some(simpl_ty) = simplify_type(cx.tcx, ty, false), | ||
let Some(impl_ids) = peq_impls.get(&simpl_ty) | ||
], { | ||
for &impl_id in impl_ids { | ||
let trait_ref = cx.tcx.impl_trait_ref(impl_id).expect("must be a trait implementation"); | ||
|
||
// Only care about `impl PartialEq<Foo> for Foo` | ||
if trait_ref.input_types()[0] == *ty && | ||
!cx.tcx.get_attrs(impl_id).iter().any(is_automatically_derived) { | ||
span_lint_and_then( | ||
cx, DERIVE_HASH_NOT_EQ, item.span, | ||
&format!("you are deriving `Hash` but have implemented \ | ||
`PartialEq` explicitely"), |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" | ||
); | ||
} | ||
}); | ||
} | ||
} | ||
}} | ||
}} | ||
} | ||
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
#![feature(plugin)] | ||
#![plugin(clippy)] | ||
|
||
#![deny(warnings)] | ||
|
||
#[derive(PartialEq, Hash)] | ||
struct Foo; | ||
|
||
impl PartialEq<u64> for Foo { | ||
fn eq(&self, _: &u64) -> bool { true } | ||
} | ||
|
||
#[derive(Hash)] | ||
//~^ ERROR you are deriving `Hash` but have implemented `PartialEq` explicitely | ||
struct Bar; | ||
|
||
impl PartialEq for Bar { | ||
fn eq(&self, _: &Bar) -> bool { true } | ||
} | ||
|
||
#[derive(Hash)] | ||
//~^ ERROR you are deriving `Hash` but have implemented `PartialEq` explicitely | ||
struct Baz; | ||
|
||
impl PartialEq<Baz> for Baz { | ||
fn eq(&self, _: &Baz) -> bool { true } | ||
} | ||
|
||
fn main() {} |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
there should be a linebreak before this