2016-03-01 03:13:54 -06:00
|
|
|
use rustc::lint::*;
|
|
|
|
use syntax::codemap::Span;
|
|
|
|
use syntax::parse::token::InternedString;
|
|
|
|
use syntax::ast::*;
|
|
|
|
use syntax::visit::{self, FnKind};
|
2016-03-01 06:05:39 -06:00
|
|
|
use utils::{span_lint_and_then, in_macro, span_lint};
|
2016-03-01 03:13:54 -06:00
|
|
|
use strsim::levenshtein;
|
|
|
|
|
|
|
|
/// **What it does:** This lint warns about names that are very similar and thus confusing
|
|
|
|
///
|
|
|
|
/// **Why is this bad?** It's hard to distinguish between names that differ only by a single character
|
|
|
|
///
|
|
|
|
/// **Known problems:** None?
|
|
|
|
///
|
|
|
|
/// **Example:** `checked_exp` and `checked_expr`
|
|
|
|
declare_lint! {
|
|
|
|
pub SIMILAR_NAMES,
|
|
|
|
Warn,
|
|
|
|
"similarly named items and bindings"
|
|
|
|
}
|
|
|
|
|
2016-03-01 06:05:39 -06:00
|
|
|
/// **What it does:** This lint warns about having too many variables whose name consists of a single character
|
|
|
|
///
|
|
|
|
/// **Why is this bad?** It's hard to memorize what a variable means without a descriptive name.
|
|
|
|
///
|
|
|
|
/// **Known problems:** None?
|
|
|
|
///
|
|
|
|
/// **Example:** let (a, b, c, d, e, f, g) = (...);
|
|
|
|
declare_lint! {
|
|
|
|
pub MANY_SINGLE_CHAR_NAMES,
|
|
|
|
Warn,
|
|
|
|
"too many single character bindings"
|
|
|
|
}
|
|
|
|
|
|
|
|
pub struct NonExpressiveNames {
|
|
|
|
pub similarity_threshold: usize,
|
|
|
|
pub max_single_char_names: usize,
|
|
|
|
}
|
2016-03-01 03:13:54 -06:00
|
|
|
|
2016-03-01 06:05:39 -06:00
|
|
|
impl LintPass for NonExpressiveNames {
|
2016-03-01 03:13:54 -06:00
|
|
|
fn get_lints(&self) -> LintArray {
|
2016-03-01 06:05:39 -06:00
|
|
|
lint_array!(SIMILAR_NAMES, MANY_SINGLE_CHAR_NAMES)
|
2016-03-01 03:13:54 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
struct SimilarNamesLocalVisitor<'a, 'b: 'a> {
|
|
|
|
names: Vec<(InternedString, Span)>,
|
|
|
|
cx: &'a EarlyContext<'b>,
|
2016-03-01 06:05:39 -06:00
|
|
|
lint: &'a NonExpressiveNames,
|
|
|
|
single_char_names: Vec<char>,
|
2016-03-01 03:13:54 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
const WHITELIST: &'static [&'static str] = &[
|
|
|
|
"lhs", "rhs",
|
|
|
|
];
|
|
|
|
|
|
|
|
struct SimilarNamesNameVisitor<'a, 'b: 'a, 'c: 'b>(&'a mut SimilarNamesLocalVisitor<'b, 'c>);
|
|
|
|
|
|
|
|
impl<'v, 'a, 'b, 'c> visit::Visitor<'v> for SimilarNamesNameVisitor<'a, 'b, 'c> {
|
|
|
|
fn visit_pat(&mut self, pat: &'v Pat) {
|
|
|
|
if let PatKind::Ident(_, id, _) = pat.node {
|
|
|
|
self.check_name(id.span, id.node.name);
|
|
|
|
}
|
|
|
|
visit::walk_pat(self, pat);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<'a, 'b, 'c> SimilarNamesNameVisitor<'a, 'b, 'c> {
|
|
|
|
fn check_name(&mut self, span: Span, name: Name) {
|
|
|
|
if in_macro(self.0.cx, span) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
let interned_name = name.as_str();
|
|
|
|
if interned_name.chars().any(char::is_uppercase) {
|
|
|
|
return;
|
|
|
|
}
|
2016-03-01 06:05:39 -06:00
|
|
|
let count = interned_name.chars().count();
|
|
|
|
if count < 3 {
|
2016-03-08 07:36:21 -06:00
|
|
|
if count != 1 {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
let c = interned_name.chars().next().expect("already checked");
|
|
|
|
// make sure we ignore shadowing
|
|
|
|
if self.0.single_char_names.contains(&c) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
self.0.single_char_names.push(c);
|
2016-03-14 04:18:09 -05:00
|
|
|
if self.0.single_char_names.len() >= self.0.lint.max_single_char_names {
|
|
|
|
span_lint(self.0.cx,
|
|
|
|
MANY_SINGLE_CHAR_NAMES,
|
|
|
|
span,
|
|
|
|
&format!("{}th binding whose name is just one char",
|
|
|
|
self.0.single_char_names.len()));
|
2016-03-01 06:05:39 -06:00
|
|
|
}
|
2016-03-01 03:13:54 -06:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
for &allow in WHITELIST {
|
|
|
|
if interned_name == allow {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if interned_name.len() <= allow.len() {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
// allow_*
|
|
|
|
let allow_start = allow.chars().chain(Some('_'));
|
|
|
|
if interned_name.chars().zip(allow_start).all(|(l, r)| l == r) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
// *_allow
|
|
|
|
let allow_end = Some('_').into_iter().chain(allow.chars());
|
|
|
|
if interned_name.chars().rev().zip(allow_end.rev()).all(|(l, r)| l == r) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
for &(ref existing_name, sp) in &self.0.names {
|
|
|
|
let dist = levenshtein(&interned_name, &existing_name);
|
|
|
|
// equality is caught by shadow lints
|
|
|
|
if dist == 0 {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
// if they differ enough it's all good
|
2016-03-01 06:05:39 -06:00
|
|
|
if dist > self.0.lint.similarity_threshold {
|
2016-03-01 03:13:54 -06:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
// are we doing stuff like `for item in items`?
|
|
|
|
if interned_name.starts_with(&**existing_name) ||
|
|
|
|
existing_name.starts_with(&*interned_name) ||
|
|
|
|
interned_name.ends_with(&**existing_name) ||
|
|
|
|
existing_name.ends_with(&*interned_name) {
|
|
|
|
continue;
|
|
|
|
}
|
2016-03-01 03:34:45 -06:00
|
|
|
let mut split_at = None;
|
2016-03-01 03:13:54 -06:00
|
|
|
if dist == 1 {
|
|
|
|
// are we doing stuff like a_bar, b_bar, c_bar?
|
2016-03-01 03:34:45 -06:00
|
|
|
if interned_name.chars().next() != existing_name.chars().next() {
|
|
|
|
if interned_name.chars().nth(1) == Some('_') {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
split_at = interned_name.chars().next().map(|c| c.len_utf8());
|
2016-03-01 03:13:54 -06:00
|
|
|
}
|
|
|
|
// are we doing stuff like foo_x, foo_y, foo_z?
|
2016-03-01 03:34:45 -06:00
|
|
|
if interned_name.chars().rev().next() != existing_name.chars().rev().next() {
|
|
|
|
if interned_name.chars().rev().nth(1) == Some('_') {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
split_at = interned_name.char_indices().rev().next().map(|(i, _)| i);
|
2016-03-01 03:13:54 -06:00
|
|
|
}
|
|
|
|
}
|
2016-03-01 03:34:45 -06:00
|
|
|
span_lint_and_then(self.0.cx,
|
|
|
|
SIMILAR_NAMES,
|
|
|
|
span,
|
|
|
|
"binding's name is too similar to existing binding",
|
|
|
|
|diag| {
|
|
|
|
diag.span_note(sp, "existing binding defined here");
|
|
|
|
if let Some(split) = split_at {
|
2016-03-01 06:05:39 -06:00
|
|
|
diag.span_help(span, &format!("separate the discriminating character \
|
|
|
|
by an underscore like: `{}_{}`",
|
2016-03-01 03:34:45 -06:00
|
|
|
&interned_name[..split],
|
|
|
|
&interned_name[split..]));
|
|
|
|
}
|
|
|
|
});
|
2016-03-01 03:13:54 -06:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
self.0.names.push((interned_name, span));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-03-01 06:05:39 -06:00
|
|
|
impl<'a, 'b> SimilarNamesLocalVisitor<'a, 'b> {
|
2016-03-08 07:36:21 -06:00
|
|
|
/// ensure scoping rules work
|
|
|
|
fn apply<F: for<'c> Fn(&'c mut Self)>(&mut self, f: F) {
|
|
|
|
let n = self.names.len();
|
|
|
|
let single_char_count = self.single_char_names.len();
|
|
|
|
f(self);
|
|
|
|
self.names.truncate(n);
|
|
|
|
self.single_char_names.truncate(single_char_count);
|
2016-03-01 06:05:39 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-03-01 03:13:54 -06:00
|
|
|
impl<'v, 'a, 'b> visit::Visitor<'v> for SimilarNamesLocalVisitor<'a, 'b> {
|
|
|
|
fn visit_local(&mut self, local: &'v Local) {
|
2016-03-08 07:36:21 -06:00
|
|
|
if let Some(ref init) = local.init {
|
|
|
|
self.apply(|this| visit::walk_expr(this, &**init));
|
|
|
|
}
|
|
|
|
// add the pattern after the expression because the bindings aren't available yet in the init expression
|
|
|
|
SimilarNamesNameVisitor(self).visit_pat(&*local.pat);
|
2016-03-01 03:13:54 -06:00
|
|
|
}
|
|
|
|
fn visit_block(&mut self, blk: &'v Block) {
|
2016-03-08 07:36:21 -06:00
|
|
|
self.apply(|this| visit::walk_block(this, blk));
|
2016-03-01 03:13:54 -06:00
|
|
|
}
|
|
|
|
fn visit_arm(&mut self, arm: &'v Arm) {
|
2016-03-08 07:36:21 -06:00
|
|
|
self.apply(|this| {
|
|
|
|
// just go through the first pattern, as either all patterns bind the same bindings or rustc would have errored much earlier
|
|
|
|
SimilarNamesNameVisitor(this).visit_pat(&arm.pats[0]);
|
|
|
|
this.apply(|this| visit::walk_expr(this, &arm.body));
|
|
|
|
});
|
2016-03-01 03:13:54 -06:00
|
|
|
}
|
|
|
|
fn visit_item(&mut self, _: &'v Item) {
|
|
|
|
// do nothing
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-03-01 06:05:39 -06:00
|
|
|
impl EarlyLintPass for NonExpressiveNames {
|
2016-03-01 03:13:54 -06:00
|
|
|
fn check_fn(&mut self, cx: &EarlyContext, _: FnKind, decl: &FnDecl, blk: &Block, _: Span, _: NodeId) {
|
|
|
|
let mut visitor = SimilarNamesLocalVisitor {
|
|
|
|
names: Vec::new(),
|
|
|
|
cx: cx,
|
2016-03-01 06:05:39 -06:00
|
|
|
lint: &self,
|
|
|
|
single_char_names: Vec::new(),
|
2016-03-01 03:13:54 -06:00
|
|
|
};
|
|
|
|
// initialize with function arguments
|
|
|
|
for arg in &decl.inputs {
|
|
|
|
visit::walk_pat(&mut SimilarNamesNameVisitor(&mut visitor), &arg.pat);
|
|
|
|
}
|
|
|
|
// walk all other bindings
|
|
|
|
visit::walk_block(&mut visitor, blk);
|
|
|
|
}
|
|
|
|
}
|