2016-01-30 11:03:53 -06:00
|
|
|
use rustc::lint::*;
|
2016-02-09 18:22:53 -06:00
|
|
|
use rustc::middle::ty;
|
2016-01-30 11:03:53 -06:00
|
|
|
use rustc_front::hir::*;
|
2016-02-09 08:18:27 -06:00
|
|
|
use std::collections::HashMap;
|
|
|
|
use std::collections::hash_map::Entry;
|
2016-02-09 18:22:53 -06:00
|
|
|
use syntax::parse::token::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-02-09 09:45:47 -06:00
|
|
|
use utils::{get_parent_expr, in_macro, span_note_and_lint};
|
2016-01-30 11:03:53 -06:00
|
|
|
|
|
|
|
/// **What it does:** This lint checks for consecutive `ifs` with the same condition. This lint is
|
|
|
|
/// `Warn` by default.
|
|
|
|
///
|
|
|
|
/// **Why is this bad?** This is probably a copy & paste error.
|
|
|
|
///
|
|
|
|
/// **Known problems:** Hopefully none.
|
|
|
|
///
|
|
|
|
/// **Example:** `if a == b { .. } else if a == b { .. }`
|
|
|
|
declare_lint! {
|
|
|
|
pub IFS_SAME_COND,
|
|
|
|
Warn,
|
|
|
|
"consecutive `ifs` with the same condition"
|
|
|
|
}
|
|
|
|
|
2016-01-30 12:16:49 -06:00
|
|
|
/// **What it does:** This lint checks for `if/else` with the same body as the *then* part and the
|
|
|
|
/// *else* part. This lint is `Warn` by default.
|
|
|
|
///
|
|
|
|
/// **Why is this bad?** This is probably a copy & paste error.
|
|
|
|
///
|
|
|
|
/// **Known problems:** Hopefully none.
|
|
|
|
///
|
|
|
|
/// **Example:** `if .. { 42 } else { 42 }`
|
|
|
|
declare_lint! {
|
|
|
|
pub IF_SAME_THEN_ELSE,
|
|
|
|
Warn,
|
|
|
|
"if with the same *then* and *else* blocks"
|
|
|
|
}
|
|
|
|
|
2016-02-09 18:22:53 -06:00
|
|
|
/// **What it does:** This lint checks for `match` with identical arm bodies.
|
|
|
|
///
|
|
|
|
/// **Why is this bad?** This is probably a copy & paste error.
|
|
|
|
///
|
|
|
|
/// **Known problems:** Hopefully none.
|
|
|
|
///
|
|
|
|
/// **Example:**
|
|
|
|
/// ```rust,ignore
|
|
|
|
/// match foo {
|
|
|
|
/// Bar => bar(),
|
|
|
|
/// Quz => quz(),
|
|
|
|
/// Baz => bar(), // <= oups
|
|
|
|
/// ```
|
|
|
|
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 {
|
|
|
|
lint_array![
|
2016-01-30 12:16:49 -06:00
|
|
|
IFS_SAME_COND,
|
2016-02-09 18:22:53 -06:00
|
|
|
IF_SAME_THEN_ELSE,
|
|
|
|
MATCH_SAME_ARMS
|
2016-01-30 11:03:53 -06:00
|
|
|
]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl LateLintPass for CopyAndPaste {
|
|
|
|
fn check_expr(&mut self, cx: &LateContext, expr: &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
|
|
|
|
if let Some(&Expr{node: ExprIf(_, _, Some(ref else_expr)), ..}) = get_parent_expr(cx, expr) {
|
|
|
|
if else_expr.id == expr.id {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
let (conds, blocks) = if_sequence(expr);
|
2016-02-11 16:49:35 -06:00
|
|
|
lint_same_then_else(cx, blocks.as_slice());
|
|
|
|
lint_same_cond(cx, conds.as_slice());
|
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-09 18:22:53 -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
|
|
|
|
|
|
|
let eq : &Fn(&&Block, &&Block) -> bool = &|&lhs, &rhs| -> bool {
|
2016-02-09 09:45:47 -06:00
|
|
|
SpanlessEq::new(cx).eq_block(lhs, rhs)
|
|
|
|
};
|
|
|
|
|
|
|
|
if let Some((i, j)) = search_same(blocks, hash, eq) {
|
2016-02-09 18:22:53 -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-09 18:22:53 -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
|
|
|
|
|
|
|
let eq : &Fn(&&Expr, &&Expr) -> bool = &|&lhs, &rhs| -> bool {
|
2016-02-09 09:45:47 -06:00
|
|
|
SpanlessEq::new(cx).ignore_fn().eq_expr(lhs, rhs)
|
|
|
|
};
|
|
|
|
|
|
|
|
if let Some((i, j)) = search_same(conds, hash, eq) {
|
2016-02-09 18:22:53 -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");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// 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 {
|
|
|
|
SpanlessEq::new(cx).eq_expr(&lhs.body, &rhs.body) &&
|
|
|
|
// 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 {
|
|
|
|
if let Some((i, j)) = search_same(&**arms, hash, eq) {
|
|
|
|
span_note_and_lint(cx, MATCH_SAME_ARMS, j.body.span, "this `match` has identical arm bodies", i.body.span, "same as this");
|
|
|
|
}
|
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>) {
|
|
|
|
let mut conds = SmallVector::zero();
|
|
|
|
let mut blocks = SmallVector::zero();
|
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;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
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 {
|
|
|
|
PatBox(ref pat) | PatRegion(ref pat, _) => bindings_impl(cx, pat, map),
|
|
|
|
PatEnum(_, Some(ref pats)) => {
|
|
|
|
for pat in pats {
|
|
|
|
bindings_impl(cx, pat, map);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
PatIdent(_, ref ident, ref as_pat) => {
|
|
|
|
if let Entry::Vacant(v) = map.entry(ident.node.name.as_str()) {
|
|
|
|
v.insert(cx.tcx.pat_ty(pat));
|
|
|
|
}
|
|
|
|
if let Some(ref as_pat) = *as_pat {
|
|
|
|
bindings_impl(cx, as_pat, map);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
PatStruct(_, ref fields, _) => {
|
|
|
|
for pat in fields {
|
|
|
|
bindings_impl(cx, &pat.node.pat, map);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
PatTup(ref fields) => {
|
|
|
|
for pat in fields {
|
|
|
|
bindings_impl(cx, pat, map);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
PatVec(ref lhs, ref mid, ref rhs) => {
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
PatEnum(..) | PatLit(..) | PatQPath(..) | PatRange(..) | PatWild => (),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
let mut result = HashMap::new();
|
|
|
|
bindings_impl(cx, pat, &mut result);
|
|
|
|
result
|
|
|
|
}
|
|
|
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
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]))
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
None
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-02-09 18:22:53 -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-02-09 18:22:53 -06:00
|
|
|
if eq(&o, expr) {
|
|
|
|
return Some((&o, expr))
|
2016-02-09 08:18:27 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
Entry::Vacant(v) => { v.insert(vec![expr]); }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
None
|
2016-01-30 11:03:53 -06:00
|
|
|
}
|