rust-clippy/clippy_lints/src/non_expressive_names.rs

430 lines
14 KiB
Rust
Raw Normal View History

use clippy_utils::diagnostics::{span_lint, span_lint_and_then};
2021-01-29 07:31:08 +00:00
use rustc_ast::ast::{
self, Arm, AssocItem, AssocItemKind, Attribute, Block, FnDecl, Item, ItemKind, Local, Pat, PatKind,
2021-01-29 07:31:08 +00:00
};
2020-03-01 03:23:33 +00:00
use rustc_ast::visit::{walk_block, walk_expr, walk_pat, Visitor};
2020-01-12 06:08:41 +00:00
use rustc_lint::{EarlyContext, EarlyLintPass};
use rustc_middle::lint::in_external_macro;
2020-01-11 11:37:08 +00:00
use rustc_session::{declare_tool_lint, impl_lint_pass};
use rustc_span::source_map::Span;
use rustc_span::sym;
use rustc_span::symbol::{Ident, Symbol};
2019-09-24 21:55:05 +00:00
use std::cmp::Ordering;
2018-03-28 13:24:26 +00:00
declare_clippy_lint! {
/// ### What it does
/// Checks for 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.
///
/// ### Example
2019-03-05 22:23:50 +00:00
/// ```ignore
/// let checked_exp = something;
/// let checked_expr = something_else;
/// ```
Added `clippy::version` attribute to all normal lints So, some context for this, well, more a story. I'm not used to scripting, I've never really scripted anything, even if it's a valuable skill. I just never really needed it. Now, `@flip1995` correctly suggested using a script for this in `rust-clippy#7813`... And I decided to write a script using nushell because why not? This was a mistake... I spend way more time on this than I would like to admit. It has definitely been more than 4 hours. It shouldn't take that long, but me being new to scripting and nushell just wasn't a good mixture... Anyway, here is the script that creates another script which adds the versions. Fun... Just execute this on the `gh-pages` branch and the resulting `replacer.sh` in `clippy_lints` and it should all work. ```nu mv v0.0.212 rust-1.00.0; mv beta rust-1.57.0; mv master rust-1.58.0; let paths = (open ./rust-1.58.0/lints.json | select id id_span | flatten | select id path); let versions = ( ls | where name =~ "rust-" | select name | format {name}/lints.json | each { open $it | select id | insert version $it | str substring "5,11" version} | group-by id | rotate counter-clockwise id version | update version {get version | first 1} | flatten | select id version); $paths | each { |row| let version = ($versions | where id == ($row.id) | format {version}) let idu = ($row.id | str upcase) $"sed -i '0,/($idu),/{s/pub ($idu),/#[clippy::version = "($version)"]\n pub ($idu),/}' ($row.path)" } | str collect ";" | str find-replace --all '1.00.0' 'pre 1.29.0' | save "replacer.sh"; ``` And this still has some problems, but at this point I just want to be done -.-
2021-10-21 19:06:26 +00:00
#[clippy::version = "pre 1.29.0"]
pub SIMILAR_NAMES,
2018-03-28 13:24:26 +00:00
pedantic,
"similarly named items and bindings"
}
2018-03-28 13:24:26 +00:00
declare_clippy_lint! {
/// ### What it does
/// Checks for 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.
///
/// ### Example
2019-03-05 22:23:50 +00:00
/// ```ignore
/// let (a, b, c, d, e, f, g) = (...);
/// ```
Added `clippy::version` attribute to all normal lints So, some context for this, well, more a story. I'm not used to scripting, I've never really scripted anything, even if it's a valuable skill. I just never really needed it. Now, `@flip1995` correctly suggested using a script for this in `rust-clippy#7813`... And I decided to write a script using nushell because why not? This was a mistake... I spend way more time on this than I would like to admit. It has definitely been more than 4 hours. It shouldn't take that long, but me being new to scripting and nushell just wasn't a good mixture... Anyway, here is the script that creates another script which adds the versions. Fun... Just execute this on the `gh-pages` branch and the resulting `replacer.sh` in `clippy_lints` and it should all work. ```nu mv v0.0.212 rust-1.00.0; mv beta rust-1.57.0; mv master rust-1.58.0; let paths = (open ./rust-1.58.0/lints.json | select id id_span | flatten | select id path); let versions = ( ls | where name =~ "rust-" | select name | format {name}/lints.json | each { open $it | select id | insert version $it | str substring "5,11" version} | group-by id | rotate counter-clockwise id version | update version {get version | first 1} | flatten | select id version); $paths | each { |row| let version = ($versions | where id == ($row.id) | format {version}) let idu = ($row.id | str upcase) $"sed -i '0,/($idu),/{s/pub ($idu),/#[clippy::version = "($version)"]\n pub ($idu),/}' ($row.path)" } | str collect ";" | str find-replace --all '1.00.0' 'pre 1.29.0' | save "replacer.sh"; ``` And this still has some problems, but at this point I just want to be done -.-
2021-10-21 19:06:26 +00:00
#[clippy::version = "pre 1.29.0"]
pub MANY_SINGLE_CHAR_NAMES,
pedantic,
"too many single character bindings"
}
2018-03-28 13:24:26 +00:00
declare_clippy_lint! {
/// ### What it does
/// Checks if you have variables whose name consists of just
/// underscores and digits.
///
/// ### Why is this bad?
/// It's hard to memorize what a variable means without a
/// descriptive name.
///
/// ### Example
/// ```rust
/// let _1 = 1;
/// let ___1 = 1;
/// let __1___2 = 11;
/// ```
Added `clippy::version` attribute to all normal lints So, some context for this, well, more a story. I'm not used to scripting, I've never really scripted anything, even if it's a valuable skill. I just never really needed it. Now, `@flip1995` correctly suggested using a script for this in `rust-clippy#7813`... And I decided to write a script using nushell because why not? This was a mistake... I spend way more time on this than I would like to admit. It has definitely been more than 4 hours. It shouldn't take that long, but me being new to scripting and nushell just wasn't a good mixture... Anyway, here is the script that creates another script which adds the versions. Fun... Just execute this on the `gh-pages` branch and the resulting `replacer.sh` in `clippy_lints` and it should all work. ```nu mv v0.0.212 rust-1.00.0; mv beta rust-1.57.0; mv master rust-1.58.0; let paths = (open ./rust-1.58.0/lints.json | select id id_span | flatten | select id path); let versions = ( ls | where name =~ "rust-" | select name | format {name}/lints.json | each { open $it | select id | insert version $it | str substring "5,11" version} | group-by id | rotate counter-clockwise id version | update version {get version | first 1} | flatten | select id version); $paths | each { |row| let version = ($versions | where id == ($row.id) | format {version}) let idu = ($row.id | str upcase) $"sed -i '0,/($idu),/{s/pub ($idu),/#[clippy::version = "($version)"]\n pub ($idu),/}' ($row.path)" } | str collect ";" | str find-replace --all '1.00.0' 'pre 1.29.0' | save "replacer.sh"; ``` And this still has some problems, but at this point I just want to be done -.-
2021-10-21 19:06:26 +00:00
#[clippy::version = "pre 1.29.0"]
pub JUST_UNDERSCORES_AND_DIGITS,
2018-03-28 13:24:26 +00:00
style,
"unclear name"
}
2019-04-08 20:43:55 +00:00
#[derive(Copy, Clone)]
pub struct NonExpressiveNames {
2017-05-09 13:23:38 +00:00
pub single_char_binding_names_threshold: u64,
}
2019-04-08 20:43:55 +00:00
impl_lint_pass!(NonExpressiveNames => [SIMILAR_NAMES, MANY_SINGLE_CHAR_NAMES, JUST_UNDERSCORES_AND_DIGITS]);
struct ExistingName {
interned: Symbol,
span: Span,
len: usize,
exemptions: &'static [&'static str],
}
struct SimilarNamesLocalVisitor<'a, 'tcx> {
names: Vec<ExistingName>,
cx: &'a EarlyContext<'tcx>,
lint: &'a NonExpressiveNames,
/// A stack of scopes containing the single-character bindings in each scope.
single_char_names: Vec<Vec<Ident>>,
}
impl<'a, 'tcx> SimilarNamesLocalVisitor<'a, 'tcx> {
fn check_single_char_names(&self) {
let num_single_char_names = self.single_char_names.iter().flatten().count();
let threshold = self.lint.single_char_binding_names_threshold;
if num_single_char_names as u64 > threshold {
let span = self
.single_char_names
.iter()
.flatten()
.map(|ident| ident.span)
.collect::<Vec<_>>();
span_lint(
self.cx,
MANY_SINGLE_CHAR_NAMES,
span,
&format!(
"{} bindings with single-character names in scope",
num_single_char_names
),
);
}
}
}
// this list contains lists of names that are allowed to be similar
// the assumption is that no name is ever contained in multiple lists.
2018-05-30 16:24:44 +00:00
#[rustfmt::skip]
const ALLOWED_TO_BE_SIMILAR: &[&[&str]] = &[
&["parsed", "parser"],
&["lhs", "rhs"],
&["tx", "rx"],
&["set", "get"],
2017-10-27 08:51:43 +00:00
&["args", "arms"],
&["qpath", "path"],
&["lit", "lint"],
&["wparam", "lparam"],
&["iter", "item"],
];
struct SimilarNamesNameVisitor<'a, 'tcx, 'b>(&'b mut SimilarNamesLocalVisitor<'a, 'tcx>);
impl<'a, 'tcx, 'b> Visitor<'tcx> for SimilarNamesNameVisitor<'a, 'tcx, 'b> {
fn visit_pat(&mut self, pat: &'tcx Pat) {
2019-09-27 15:16:06 +00:00
match pat.kind {
PatKind::Ident(_, ident, _) => {
if !pat.span.from_expansion() {
self.check_ident(ident);
}
},
PatKind::Struct(_, _, ref fields, _) => {
2018-11-27 20:14:15 +00:00
for field in fields {
if !field.is_shorthand {
self.visit_pat(&field.pat);
2018-11-27 20:14:15 +00:00
}
}
2016-12-20 17:21:30 +00:00
},
// just go through the first pattern, as either all patterns
// bind the same bindings or rustc would have errored much earlier
PatKind::Or(ref pats) => self.visit_pat(&pats[0]),
_ => walk_pat(self, pat),
}
}
}
#[must_use]
fn get_exemptions(interned_name: &str) -> Option<&'static [&'static str]> {
for &list in ALLOWED_TO_BE_SIMILAR {
if allowed_to_be_similar(interned_name, list) {
return Some(list);
2016-03-14 13:34:47 +00:00
}
}
None
}
#[must_use]
fn allowed_to_be_similar(interned_name: &str, list: &[&str]) -> bool {
2017-09-05 09:33:04 +00:00
list.iter()
.any(|&name| interned_name.starts_with(name) || interned_name.ends_with(name))
2016-03-14 13:34:47 +00:00
}
impl<'a, 'tcx, 'b> SimilarNamesNameVisitor<'a, 'tcx, 'b> {
fn check_short_ident(&mut self, ident: Ident) {
// Ignore shadowing
if self
.0
.single_char_names
.iter()
.flatten()
.any(|id| id.name == ident.name)
{
2016-03-14 13:34:47 +00:00
return;
2019-06-20 11:44:00 +00:00
}
if let Some(scope) = &mut self.0.single_char_names.last_mut() {
scope.push(ident);
2016-03-14 13:34:47 +00:00
}
}
2019-01-13 15:19:02 +00:00
#[allow(clippy::too_many_lines)]
fn check_ident(&mut self, ident: Ident) {
let interned_name = ident.name.as_str();
if interned_name.chars().any(char::is_uppercase) {
return;
}
if interned_name.chars().all(|c| c.is_digit(10) || c == '_') {
span_lint(
self.0.cx,
2017-11-03 20:54:33 +00:00
JUST_UNDERSCORES_AND_DIGITS,
ident.span,
2017-11-03 20:54:33 +00:00
"consider choosing a more descriptive name",
);
return;
}
if interned_name.starts_with('_') {
// these bindings are typically unused or represent an ignored portion of a destructuring pattern
return;
}
let count = interned_name.chars().count();
if count < 3 {
if count == 1 {
self.check_short_ident(ident);
2016-03-08 13:36:21 +00:00
}
return;
}
for existing_name in &self.0.names {
if allowed_to_be_similar(&interned_name, existing_name.exemptions) {
continue;
}
2019-09-24 21:55:05 +00:00
match existing_name.len.cmp(&count) {
Ordering::Greater => {
if existing_name.len - count != 1
|| levenstein_not_1(&interned_name, &existing_name.interned.as_str())
{
2019-09-24 21:55:05 +00:00
continue;
}
},
Ordering::Less => {
if count - existing_name.len != 1
|| levenstein_not_1(&existing_name.interned.as_str(), &interned_name)
{
2019-09-24 21:55:05 +00:00
continue;
}
},
Ordering::Equal => {
let mut interned_chars = interned_name.chars();
let interned_str = existing_name.interned.as_str();
let mut existing_chars = interned_str.chars();
2019-09-24 21:55:05 +00:00
let first_i = interned_chars.next().expect("we know we have at least one char");
let first_e = existing_chars.next().expect("we know we have at least one char");
let eq_or_numeric = |(a, b): (char, char)| a == b || a.is_numeric() && b.is_numeric();
2016-03-14 13:34:47 +00:00
2019-09-24 21:55:05 +00:00
if eq_or_numeric((first_i, first_e)) {
let last_i = interned_chars.next_back().expect("we know we have at least two chars");
let last_e = existing_chars.next_back().expect("we know we have at least two chars");
if eq_or_numeric((last_i, last_e)) {
if interned_chars
.zip(existing_chars)
.filter(|&ie| !eq_or_numeric(ie))
.count()
!= 1
{
continue;
}
} else {
let second_last_i = interned_chars
.next_back()
.expect("we know we have at least three chars");
let second_last_e = existing_chars
.next_back()
.expect("we know we have at least three chars");
if !eq_or_numeric((second_last_i, second_last_e))
|| second_last_i == '_'
|| !interned_chars.zip(existing_chars).all(eq_or_numeric)
{
// allowed similarity foo_x, foo_y
// or too many chars differ (foo_x, boo_y) or (foox, booy)
continue;
}
2016-03-14 13:34:47 +00:00
}
} else {
2019-09-24 21:55:05 +00:00
let second_i = interned_chars.next().expect("we know we have at least two chars");
let second_e = existing_chars.next().expect("we know we have at least two chars");
if !eq_or_numeric((second_i, second_e))
|| second_i == '_'
2017-11-04 19:55:56 +00:00
|| !interned_chars.zip(existing_chars).all(eq_or_numeric)
2017-08-09 07:30:56 +00:00
{
2019-09-24 21:55:05 +00:00
// allowed similarity x_foo, y_foo
// or too many chars differ (x_foo, y_boo) or (xfoo, yboo)
2016-03-14 13:34:47 +00:00
continue;
}
}
2019-09-24 21:55:05 +00:00
},
}
2017-08-09 07:30:56 +00:00
span_lint_and_then(
self.0.cx,
SIMILAR_NAMES,
ident.span,
2017-08-09 07:30:56 +00:00
"binding's name is too similar to existing binding",
|diag| {
diag.span_note(existing_name.span, "existing binding defined here");
},
);
return;
}
self.0.names.push(ExistingName {
exemptions: get_exemptions(&interned_name).unwrap_or(&[]),
interned: ident.name,
span: ident.span,
len: count,
});
}
}
impl<'a, 'b> SimilarNamesLocalVisitor<'a, 'b> {
2016-03-08 13:36:21 +00: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);
}
}
impl<'a, 'tcx> Visitor<'tcx> for SimilarNamesLocalVisitor<'a, 'tcx> {
fn visit_local(&mut self, local: &'tcx Local) {
2021-07-25 23:27:44 +00:00
if let Some((init, els)) = &local.kind.init_else_opt() {
self.apply(|this| walk_expr(this, init));
if let Some(els) = els {
self.apply(|this| walk_block(this, els));
}
2016-03-08 13:36:21 +00:00
}
2017-08-09 07:30:56 +00:00
// add the pattern after the expression because the bindings aren't available
// yet in the init
// expression
2016-03-08 13:36:21 +00:00
SimilarNamesNameVisitor(self).visit_pat(&*local.pat);
}
fn visit_block(&mut self, blk: &'tcx Block) {
self.single_char_names.push(vec![]);
self.apply(|this| walk_block(this, blk));
self.check_single_char_names();
self.single_char_names.pop();
}
fn visit_arm(&mut self, arm: &'tcx Arm) {
self.single_char_names.push(vec![]);
2016-03-08 13:36:21 +00:00
self.apply(|this| {
2019-09-06 11:57:27 +00:00
SimilarNamesNameVisitor(this).visit_pat(&arm.pat);
this.apply(|this| walk_expr(this, &arm.body));
2016-03-08 13:36:21 +00:00
});
self.check_single_char_names();
self.single_char_names.pop();
}
fn visit_item(&mut self, _: &Item) {
// do not recurse into inner items
}
}
impl EarlyLintPass for NonExpressiveNames {
2018-07-23 11:01:12 +00:00
fn check_item(&mut self, cx: &EarlyContext<'_>, item: &Item) {
if in_external_macro(cx.sess, item.span) {
return;
}
if let ItemKind::Fn(box ast::Fn {
ref sig,
body: Some(ref blk),
..
}) = item.kind
{
2019-11-08 20:12:08 +00:00
do_check(self, cx, &item.attrs, &sig.decl, blk);
2018-02-02 06:49:47 +00:00
}
}
fn check_impl_item(&mut self, cx: &EarlyContext<'_>, item: &AssocItem) {
if in_external_macro(cx.sess, item.span) {
return;
}
if let AssocItemKind::Fn(box ast::Fn {
ref sig,
body: Some(ref blk),
..
}) = item.kind
{
2018-02-02 06:49:47 +00:00
do_check(self, cx, &item.attrs, &sig.decl, blk);
}
}
}
2018-07-23 11:01:12 +00:00
fn do_check(lint: &mut NonExpressiveNames, cx: &EarlyContext<'_>, attrs: &[Attribute], decl: &FnDecl, blk: &Block) {
if !attrs.iter().any(|attr| attr.has_name(sym::test)) {
2018-02-02 06:49:47 +00:00
let mut visitor = SimilarNamesLocalVisitor {
names: Vec::new(),
cx,
lint,
single_char_names: vec![vec![]],
2018-02-02 06:49:47 +00:00
};
2018-02-02 06:49:47 +00:00
// initialize with function arguments
for arg in &decl.inputs {
SimilarNamesNameVisitor(&mut visitor).visit_pat(&arg.pat);
}
2018-02-02 06:49:47 +00:00
// walk all other bindings
walk_block(&mut visitor, blk);
visitor.check_single_char_names();
}
}
2016-03-14 13:34:47 +00:00
2016-03-19 16:48:29 +00:00
/// Precondition: `a_name.chars().count() < b_name.chars().count()`.
#[must_use]
2016-03-14 13:34:47 +00:00
fn levenstein_not_1(a_name: &str, b_name: &str) -> bool {
debug_assert!(a_name.chars().count() < b_name.chars().count());
let mut a_chars = a_name.chars();
let mut b_chars = b_name.chars();
while let (Some(a), Some(b)) = (a_chars.next(), b_chars.next()) {
if a == b {
continue;
}
if let Some(b2) = b_chars.next() {
// check if there's just one character inserted
2016-03-23 13:50:47 +00:00
return a != b2 || a_chars.ne(b_chars);
2016-03-14 13:34:47 +00:00
}
// tuple
// ntuple
return true;
2016-03-14 13:34:47 +00:00
}
// for item in items
true
}