2016-01-30 11:03:53 -06:00
|
|
|
|
use rustc::lint::*;
|
2016-03-27 13:59:02 -05:00
|
|
|
|
use rustc::ty;
|
2016-04-07 10:46:48 -05:00
|
|
|
|
use rustc::hir::*;
|
2016-02-09 08:18:27 -06:00
|
|
|
|
use std::collections::HashMap;
|
|
|
|
|
use std::collections::hash_map::Entry;
|
2016-11-23 14:19:03 -06:00
|
|
|
|
use syntax::symbol::InternedString;
|
2016-02-11 16:49:35 -06:00
|
|
|
|
use syntax::util::small_vector::SmallVector;
|
2016-02-09 08:18:27 -06:00
|
|
|
|
use utils::{SpanlessEq, SpanlessHash};
|
2016-07-10 07:46:39 -05:00
|
|
|
|
use utils::{get_parent_expr, in_macro, span_lint_and_then, span_note_and_lint, snippet};
|
2016-01-30 11:03:53 -06:00
|
|
|
|
|
2016-08-06 02:55:04 -05:00
|
|
|
|
/// **What it does:** Checks for consecutive `if`s with the same condition.
|
2016-01-30 11:03:53 -06:00
|
|
|
|
///
|
|
|
|
|
/// **Why is this bad?** This is probably a copy & paste error.
|
|
|
|
|
///
|
|
|
|
|
/// **Known problems:** Hopefully none.
|
|
|
|
|
///
|
2016-07-15 17:25:44 -05:00
|
|
|
|
/// **Example:**
|
|
|
|
|
/// ```rust
|
|
|
|
|
/// if a == b {
|
|
|
|
|
/// …
|
|
|
|
|
/// } else if a == b {
|
|
|
|
|
/// …
|
|
|
|
|
/// }
|
|
|
|
|
/// ```
|
|
|
|
|
///
|
2016-08-06 02:55:04 -05:00
|
|
|
|
/// Note that this lint ignores all conditions with a function call as it could
|
|
|
|
|
/// have side effects:
|
2016-07-15 17:25:44 -05:00
|
|
|
|
///
|
|
|
|
|
/// ```rust
|
|
|
|
|
/// if foo() {
|
|
|
|
|
/// …
|
|
|
|
|
/// } else if foo() { // not linted
|
|
|
|
|
/// …
|
|
|
|
|
/// }
|
|
|
|
|
/// ```
|
2016-01-30 11:03:53 -06:00
|
|
|
|
declare_lint! {
|
|
|
|
|
pub IFS_SAME_COND,
|
|
|
|
|
Warn,
|
|
|
|
|
"consecutive `ifs` with the same condition"
|
|
|
|
|
}
|
|
|
|
|
|
2016-08-06 02:55:04 -05:00
|
|
|
|
/// **What it does:** Checks for `if/else` with the same body as the *then* part
|
|
|
|
|
/// and the *else* part.
|
2016-01-30 12:16:49 -06:00
|
|
|
|
///
|
|
|
|
|
/// **Why is this bad?** This is probably a copy & paste error.
|
|
|
|
|
///
|
|
|
|
|
/// **Known problems:** Hopefully none.
|
|
|
|
|
///
|
2016-07-15 17:25:44 -05:00
|
|
|
|
/// **Example:**
|
|
|
|
|
/// ```rust
|
|
|
|
|
/// let foo = if … {
|
|
|
|
|
/// 42
|
|
|
|
|
/// } else {
|
|
|
|
|
/// 42
|
|
|
|
|
/// };
|
|
|
|
|
/// ```
|
2016-01-30 12:16:49 -06:00
|
|
|
|
declare_lint! {
|
|
|
|
|
pub IF_SAME_THEN_ELSE,
|
|
|
|
|
Warn,
|
|
|
|
|
"if with the same *then* and *else* blocks"
|
|
|
|
|
}
|
|
|
|
|
|
2016-08-06 02:55:04 -05:00
|
|
|
|
/// **What it does:** Checks for `match` with identical arm bodies.
|
2016-02-09 18:22:53 -06:00
|
|
|
|
///
|
2016-08-06 02:55:04 -05:00
|
|
|
|
/// **Why is this bad?** This is probably a copy & paste error. If arm bodies
|
|
|
|
|
/// are the same on purpose, you can factor them
|
2016-04-01 06:14:39 -05:00
|
|
|
|
/// [using `|`](https://doc.rust-lang.org/book/patterns.html#multiple-patterns).
|
2016-02-09 18:22:53 -06:00
|
|
|
|
///
|
2016-07-10 07:53:42 -05:00
|
|
|
|
/// **Known problems:** False positive possible with order dependent `match`
|
|
|
|
|
/// (see issue [#860](https://github.com/Manishearth/rust-clippy/issues/860)).
|
2016-02-09 18:22:53 -06:00
|
|
|
|
///
|
|
|
|
|
/// **Example:**
|
|
|
|
|
/// ```rust,ignore
|
|
|
|
|
/// match foo {
|
|
|
|
|
/// Bar => bar(),
|
|
|
|
|
/// Quz => quz(),
|
2016-03-19 09:06:56 -05:00
|
|
|
|
/// Baz => bar(), // <= oops
|
2016-02-13 15:08:15 -06:00
|
|
|
|
/// }
|
2016-02-09 18:22:53 -06:00
|
|
|
|
/// ```
|
2016-07-10 07:46:39 -05:00
|
|
|
|
///
|
|
|
|
|
/// This should probably be
|
|
|
|
|
/// ```rust,ignore
|
|
|
|
|
/// match foo {
|
|
|
|
|
/// Bar => bar(),
|
|
|
|
|
/// Quz => quz(),
|
|
|
|
|
/// Baz => baz(), // <= fixed
|
|
|
|
|
/// }
|
|
|
|
|
/// ```
|
|
|
|
|
///
|
|
|
|
|
/// or if the original code was not a typo:
|
|
|
|
|
/// ```rust,ignore
|
|
|
|
|
/// match foo {
|
|
|
|
|
/// Bar | Baz => bar(), // <= shows the intent better
|
|
|
|
|
/// Quz => quz(),
|
|
|
|
|
/// }
|
|
|
|
|
/// ```
|
2016-02-09 18:22:53 -06:00
|
|
|
|
declare_lint! {
|
|
|
|
|
pub MATCH_SAME_ARMS,
|
|
|
|
|
Warn,
|
|
|
|
|
"`match` with identical arm bodies"
|
|
|
|
|
}
|
|
|
|
|
|
2016-01-30 11:03:53 -06:00
|
|
|
|
#[derive(Copy, Clone, Debug)]
|
|
|
|
|
pub struct CopyAndPaste;
|
|
|
|
|
|
|
|
|
|
impl LintPass for CopyAndPaste {
|
|
|
|
|
fn get_lints(&self) -> LintArray {
|
2016-02-24 10:38:57 -06:00
|
|
|
|
lint_array![IFS_SAME_COND, IF_SAME_THEN_ELSE, MATCH_SAME_ARMS]
|
2016-01-30 11:03:53 -06:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2016-12-07 06:13:40 -06:00
|
|
|
|
impl<'a, 'tcx> LateLintPass<'a, 'tcx> for CopyAndPaste {
|
|
|
|
|
fn check_expr(&mut self, cx: &LateContext<'a, 'tcx>, expr: &'tcx Expr) {
|
2016-01-30 12:16:49 -06:00
|
|
|
|
if !in_macro(cx, expr.span) {
|
2016-02-09 08:18:27 -06:00
|
|
|
|
// skip ifs directly in else, it will be checked in the parent if
|
2016-04-14 13:14:03 -05:00
|
|
|
|
if let Some(&Expr { node: ExprIf(_, _, Some(ref else_expr)), .. }) = get_parent_expr(cx, expr) {
|
2016-02-09 08:18:27 -06:00
|
|
|
|
if else_expr.id == expr.id {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
let (conds, blocks) = if_sequence(expr);
|
2016-11-16 14:57:56 -06:00
|
|
|
|
lint_same_then_else(cx, &blocks);
|
|
|
|
|
lint_same_cond(cx, &conds);
|
2016-02-09 18:22:53 -06:00
|
|
|
|
lint_match_arms(cx, expr);
|
2016-01-30 11:03:53 -06:00
|
|
|
|
}
|
2016-01-30 12:16:49 -06:00
|
|
|
|
}
|
|
|
|
|
}
|
2016-01-30 11:03:53 -06:00
|
|
|
|
|
2016-01-30 12:16:49 -06:00
|
|
|
|
/// Implementation of `IF_SAME_THEN_ELSE`.
|
2016-02-09 09:45:47 -06:00
|
|
|
|
fn lint_same_then_else(cx: &LateContext, blocks: &[&Block]) {
|
2016-02-24 10:38:57 -06:00
|
|
|
|
let hash: &Fn(&&Block) -> u64 = &|block| -> u64 {
|
2016-02-09 09:45:47 -06:00
|
|
|
|
let mut h = SpanlessHash::new(cx);
|
|
|
|
|
h.hash_block(block);
|
|
|
|
|
h.finish()
|
|
|
|
|
};
|
2016-02-09 18:22:53 -06:00
|
|
|
|
|
2016-02-29 05:19:32 -06:00
|
|
|
|
let eq: &Fn(&&Block, &&Block) -> bool = &|&lhs, &rhs| -> bool { SpanlessEq::new(cx).eq_block(lhs, rhs) };
|
2016-02-09 09:45:47 -06:00
|
|
|
|
|
|
|
|
|
if let Some((i, j)) = search_same(blocks, hash, eq) {
|
2016-02-24 10:38:57 -06:00
|
|
|
|
span_note_and_lint(cx,
|
|
|
|
|
IF_SAME_THEN_ELSE,
|
|
|
|
|
j.span,
|
|
|
|
|
"this `if` has identical blocks",
|
|
|
|
|
i.span,
|
|
|
|
|
"same as this");
|
2016-01-30 12:16:49 -06:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// Implementation of `IFS_SAME_COND`.
|
2016-02-09 08:18:27 -06:00
|
|
|
|
fn lint_same_cond(cx: &LateContext, conds: &[&Expr]) {
|
2016-02-24 10:38:57 -06:00
|
|
|
|
let hash: &Fn(&&Expr) -> u64 = &|expr| -> u64 {
|
2016-02-09 09:45:47 -06:00
|
|
|
|
let mut h = SpanlessHash::new(cx);
|
|
|
|
|
h.hash_expr(expr);
|
|
|
|
|
h.finish()
|
|
|
|
|
};
|
2016-02-09 18:22:53 -06:00
|
|
|
|
|
2016-02-24 10:38:57 -06:00
|
|
|
|
let eq: &Fn(&&Expr, &&Expr) -> bool = &|&lhs, &rhs| -> bool { SpanlessEq::new(cx).ignore_fn().eq_expr(lhs, rhs) };
|
2016-02-09 09:45:47 -06:00
|
|
|
|
|
|
|
|
|
if let Some((i, j)) = search_same(conds, hash, eq) {
|
2016-02-24 10:38:57 -06:00
|
|
|
|
span_note_and_lint(cx,
|
|
|
|
|
IFS_SAME_COND,
|
|
|
|
|
j.span,
|
|
|
|
|
"this `if` has the same condition as a previous if",
|
|
|
|
|
i.span,
|
|
|
|
|
"same as this");
|
2016-02-09 18:22:53 -06:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// Implementation if `MATCH_SAME_ARMS`.
|
|
|
|
|
fn lint_match_arms(cx: &LateContext, expr: &Expr) {
|
|
|
|
|
let hash = |arm: &Arm| -> u64 {
|
|
|
|
|
let mut h = SpanlessHash::new(cx);
|
|
|
|
|
h.hash_expr(&arm.body);
|
|
|
|
|
h.finish()
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
let eq = |lhs: &Arm, rhs: &Arm| -> bool {
|
2016-03-28 18:39:35 -05:00
|
|
|
|
// Arms with a guard are ignored, those can’t always be merged together
|
|
|
|
|
lhs.guard.is_none() && rhs.guard.is_none() &&
|
|
|
|
|
SpanlessEq::new(cx).eq_expr(&lhs.body, &rhs.body) &&
|
2016-02-09 18:22:53 -06:00
|
|
|
|
// all patterns should have the same bindings
|
|
|
|
|
bindings(cx, &lhs.pats[0]) == bindings(cx, &rhs.pats[0])
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
if let ExprMatch(_, ref arms, MatchSource::Normal) = expr.node {
|
2016-04-26 10:05:39 -05:00
|
|
|
|
if let Some((i, j)) = search_same(arms, hash, eq) {
|
2016-07-10 07:46:39 -05:00
|
|
|
|
span_lint_and_then(cx,
|
2016-02-24 10:38:57 -06:00
|
|
|
|
MATCH_SAME_ARMS,
|
|
|
|
|
j.body.span,
|
|
|
|
|
"this `match` has identical arm bodies",
|
2016-07-10 07:46:39 -05:00
|
|
|
|
|db| {
|
|
|
|
|
db.span_note(i.body.span, "same as this");
|
|
|
|
|
|
|
|
|
|
// Note: this does not use `span_suggestion` on purpose: there is no clean way to
|
|
|
|
|
// remove the other arm. Building a span and suggest to replace it to "" makes an
|
|
|
|
|
// even more confusing error message. Also in order not to make up a span for the
|
|
|
|
|
// whole pattern, the suggestion is only shown when there is only one pattern. The
|
|
|
|
|
// user should know about `|` if they are already using it…
|
|
|
|
|
|
|
|
|
|
if i.pats.len() == 1 && j.pats.len() == 1 {
|
|
|
|
|
let lhs = snippet(cx, i.pats[0].span, "<pat1>");
|
|
|
|
|
let rhs = snippet(cx, j.pats[0].span, "<pat2>");
|
2016-10-08 08:16:00 -05:00
|
|
|
|
|
|
|
|
|
if let PatKind::Wild = j.pats[0].node {
|
|
|
|
|
// if the last arm is _, then i could be integrated into _
|
2016-12-21 03:25:14 -06:00
|
|
|
|
// note that i.pats[0] cannot be _, because that would mean that we're
|
|
|
|
|
// hiding all the subsequent arms, and rust won't compile
|
2016-12-20 11:21:30 -06:00
|
|
|
|
db.span_note(i.body.span,
|
|
|
|
|
&format!("`{}` has the same arm body as the `_` wildcard, consider removing it`",
|
|
|
|
|
lhs));
|
2016-10-08 08:16:00 -05:00
|
|
|
|
} else {
|
|
|
|
|
db.span_note(i.body.span, &format!("consider refactoring into `{} | {}`", lhs, rhs));
|
|
|
|
|
}
|
2016-07-10 07:46:39 -05:00
|
|
|
|
}
|
|
|
|
|
});
|
2016-02-09 18:22:53 -06:00
|
|
|
|
}
|
2016-01-30 11:03:53 -06:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2016-02-09 08:18:27 -06:00
|
|
|
|
/// Return the list of condition expressions and the list of blocks in a sequence of `if/else`.
|
|
|
|
|
/// Eg. would return `([a, b], [c, d, e])` for the expression
|
|
|
|
|
/// `if a { c } else if b { d } else { e }`.
|
2016-02-11 16:49:35 -06:00
|
|
|
|
fn if_sequence(mut expr: &Expr) -> (SmallVector<&Expr>, SmallVector<&Block>) {
|
2016-11-16 14:57:56 -06:00
|
|
|
|
let mut conds = SmallVector::new();
|
|
|
|
|
let mut blocks = SmallVector::new();
|
2016-01-30 11:03:53 -06:00
|
|
|
|
|
2016-02-09 08:18:27 -06:00
|
|
|
|
while let ExprIf(ref cond, ref then_block, ref else_expr) = expr.node {
|
|
|
|
|
conds.push(&**cond);
|
|
|
|
|
blocks.push(&**then_block);
|
2016-01-30 11:03:53 -06:00
|
|
|
|
|
|
|
|
|
if let Some(ref else_expr) = *else_expr {
|
|
|
|
|
expr = else_expr;
|
2016-02-24 10:38:57 -06:00
|
|
|
|
} else {
|
2016-01-30 11:03:53 -06:00
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2016-02-09 08:18:27 -06:00
|
|
|
|
// final `else {..}`
|
|
|
|
|
if !blocks.is_empty() {
|
|
|
|
|
if let ExprBlock(ref block) = expr.node {
|
|
|
|
|
blocks.push(&**block);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
(conds, blocks)
|
|
|
|
|
}
|
|
|
|
|
|
2016-02-09 18:22:53 -06:00
|
|
|
|
/// Return the list of bindings in a pattern.
|
|
|
|
|
fn bindings<'a, 'tcx>(cx: &LateContext<'a, 'tcx>, pat: &Pat) -> HashMap<InternedString, ty::Ty<'tcx>> {
|
|
|
|
|
fn bindings_impl<'a, 'tcx>(cx: &LateContext<'a, 'tcx>, pat: &Pat, map: &mut HashMap<InternedString, ty::Ty<'tcx>>) {
|
|
|
|
|
match pat.node {
|
2016-04-14 13:14:03 -05:00
|
|
|
|
PatKind::Box(ref pat) |
|
|
|
|
|
PatKind::Ref(ref pat, _) => bindings_impl(cx, pat, map),
|
2016-05-27 07:24:28 -05:00
|
|
|
|
PatKind::TupleStruct(_, ref pats, _) => {
|
2016-02-09 18:22:53 -06:00
|
|
|
|
for pat in pats {
|
|
|
|
|
bindings_impl(cx, pat, map);
|
|
|
|
|
}
|
2016-12-20 11:21:30 -06:00
|
|
|
|
},
|
2016-12-01 15:31:56 -06:00
|
|
|
|
PatKind::Binding(_, _, ref ident, ref as_pat) => {
|
2016-05-19 16:14:34 -05:00
|
|
|
|
if let Entry::Vacant(v) = map.entry(ident.node.as_str()) {
|
2016-11-16 14:57:56 -06:00
|
|
|
|
v.insert(cx.tcx.tables().pat_ty(pat));
|
2016-02-09 18:22:53 -06:00
|
|
|
|
}
|
|
|
|
|
if let Some(ref as_pat) = *as_pat {
|
|
|
|
|
bindings_impl(cx, as_pat, map);
|
|
|
|
|
}
|
2016-12-20 11:21:30 -06:00
|
|
|
|
},
|
2016-02-18 14:16:39 -06:00
|
|
|
|
PatKind::Struct(_, ref fields, _) => {
|
2016-02-09 18:22:53 -06:00
|
|
|
|
for pat in fields {
|
|
|
|
|
bindings_impl(cx, &pat.node.pat, map);
|
|
|
|
|
}
|
2016-12-20 11:21:30 -06:00
|
|
|
|
},
|
2016-05-27 07:24:28 -05:00
|
|
|
|
PatKind::Tuple(ref fields, _) => {
|
2016-02-09 18:22:53 -06:00
|
|
|
|
for pat in fields {
|
|
|
|
|
bindings_impl(cx, pat, map);
|
|
|
|
|
}
|
2016-12-20 11:21:30 -06:00
|
|
|
|
},
|
2016-09-30 08:35:24 -05:00
|
|
|
|
PatKind::Slice(ref lhs, ref mid, ref rhs) => {
|
2016-02-09 18:22:53 -06:00
|
|
|
|
for pat in lhs {
|
|
|
|
|
bindings_impl(cx, pat, map);
|
|
|
|
|
}
|
|
|
|
|
if let Some(ref mid) = *mid {
|
|
|
|
|
bindings_impl(cx, mid, map);
|
|
|
|
|
}
|
|
|
|
|
for pat in rhs {
|
|
|
|
|
bindings_impl(cx, pat, map);
|
|
|
|
|
}
|
2016-12-20 11:21:30 -06:00
|
|
|
|
},
|
2016-02-24 10:38:57 -06:00
|
|
|
|
PatKind::Lit(..) |
|
|
|
|
|
PatKind::Range(..) |
|
|
|
|
|
PatKind::Wild |
|
|
|
|
|
PatKind::Path(..) => (),
|
2016-02-09 18:22:53 -06:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
let mut result = HashMap::new();
|
|
|
|
|
bindings_impl(cx, pat, &mut result);
|
|
|
|
|
result
|
|
|
|
|
}
|
|
|
|
|
|
2016-02-24 10:38:57 -06:00
|
|
|
|
fn search_same<T, Hash, Eq>(exprs: &[T], hash: Hash, eq: Eq) -> Option<(&T, &T)>
|
|
|
|
|
where Hash: Fn(&T) -> u64,
|
|
|
|
|
Eq: Fn(&T, &T) -> bool
|
|
|
|
|
{
|
2016-02-09 08:18:27 -06:00
|
|
|
|
// common cases
|
|
|
|
|
if exprs.len() < 2 {
|
|
|
|
|
return None;
|
2016-02-24 10:38:57 -06:00
|
|
|
|
} else if exprs.len() == 2 {
|
2016-02-09 09:45:47 -06:00
|
|
|
|
return if eq(&exprs[0], &exprs[1]) {
|
2016-02-09 08:18:27 -06:00
|
|
|
|
Some((&exprs[0], &exprs[1]))
|
2016-02-24 10:38:57 -06:00
|
|
|
|
} else {
|
2016-02-09 08:18:27 -06:00
|
|
|
|
None
|
2016-02-24 10:38:57 -06:00
|
|
|
|
};
|
2016-02-09 08:18:27 -06:00
|
|
|
|
}
|
|
|
|
|
|
2016-02-24 10:38:57 -06:00
|
|
|
|
let mut map: HashMap<_, Vec<&_>> = HashMap::with_capacity(exprs.len());
|
2016-02-09 08:18:27 -06:00
|
|
|
|
|
2016-02-09 18:22:53 -06:00
|
|
|
|
for expr in exprs {
|
2016-02-09 09:45:47 -06:00
|
|
|
|
match map.entry(hash(expr)) {
|
2016-02-09 08:18:27 -06:00
|
|
|
|
Entry::Occupied(o) => {
|
|
|
|
|
for o in o.get() {
|
2016-04-26 10:05:39 -05:00
|
|
|
|
if eq(o, expr) {
|
|
|
|
|
return Some((o, expr));
|
2016-02-09 08:18:27 -06:00
|
|
|
|
}
|
|
|
|
|
}
|
2016-12-20 11:21:30 -06:00
|
|
|
|
},
|
2016-02-24 10:38:57 -06:00
|
|
|
|
Entry::Vacant(v) => {
|
|
|
|
|
v.insert(vec![expr]);
|
2016-12-20 11:21:30 -06:00
|
|
|
|
},
|
2016-02-09 08:18:27 -06:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
None
|
2016-01-30 11:03:53 -06:00
|
|
|
|
}
|