mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-12-21 10:33:27 +00:00
d647696c1f
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 -.-
161 lines
5.8 KiB
Rust
161 lines
5.8 KiB
Rust
use clippy_utils::diagnostics::span_lint_and_sugg;
|
|
use clippy_utils::source::{snippet_opt, snippet_with_applicability};
|
|
use clippy_utils::sugg::Sugg;
|
|
use if_chain::if_chain;
|
|
use rustc_ast::ast::{Expr, ExprKind, Mutability, UnOp};
|
|
use rustc_errors::Applicability;
|
|
use rustc_lint::{EarlyContext, EarlyLintPass};
|
|
use rustc_session::{declare_lint_pass, declare_tool_lint};
|
|
use rustc_span::BytePos;
|
|
|
|
declare_clippy_lint! {
|
|
/// ### What it does
|
|
/// Checks for usage of `*&` and `*&mut` in expressions.
|
|
///
|
|
/// ### Why is this bad?
|
|
/// Immediately dereferencing a reference is no-op and
|
|
/// makes the code less clear.
|
|
///
|
|
/// ### Known problems
|
|
/// Multiple dereference/addrof pairs are not handled so
|
|
/// the suggested fix for `x = **&&y` is `x = *&y`, which is still incorrect.
|
|
///
|
|
/// ### Example
|
|
/// ```rust,ignore
|
|
/// // Bad
|
|
/// let a = f(*&mut b);
|
|
/// let c = *&d;
|
|
///
|
|
/// // Good
|
|
/// let a = f(b);
|
|
/// let c = d;
|
|
/// ```
|
|
#[clippy::version = "pre 1.29.0"]
|
|
pub DEREF_ADDROF,
|
|
complexity,
|
|
"use of `*&` or `*&mut` in an expression"
|
|
}
|
|
|
|
declare_lint_pass!(DerefAddrOf => [DEREF_ADDROF]);
|
|
|
|
fn without_parens(mut e: &Expr) -> &Expr {
|
|
while let ExprKind::Paren(ref child_e) = e.kind {
|
|
e = child_e;
|
|
}
|
|
e
|
|
}
|
|
|
|
impl EarlyLintPass for DerefAddrOf {
|
|
fn check_expr(&mut self, cx: &EarlyContext<'_>, e: &Expr) {
|
|
if_chain! {
|
|
if let ExprKind::Unary(UnOp::Deref, ref deref_target) = e.kind;
|
|
if let ExprKind::AddrOf(_, ref mutability, ref addrof_target) = without_parens(deref_target).kind;
|
|
if !addrof_target.span.from_expansion();
|
|
then {
|
|
let mut applicability = Applicability::MachineApplicable;
|
|
let sugg = if e.span.from_expansion() {
|
|
#[allow(clippy::option_if_let_else)]
|
|
if let Some(macro_source) = snippet_opt(cx, e.span) {
|
|
// Remove leading whitespace from the given span
|
|
// e.g: ` $visitor` turns into `$visitor`
|
|
let trim_leading_whitespaces = |span| {
|
|
snippet_opt(cx, span).and_then(|snip| {
|
|
#[allow(clippy::cast_possible_truncation)]
|
|
snip.find(|c: char| !c.is_whitespace()).map(|pos| {
|
|
span.lo() + BytePos(pos as u32)
|
|
})
|
|
}).map_or(span, |start_no_whitespace| e.span.with_lo(start_no_whitespace))
|
|
};
|
|
|
|
let mut generate_snippet = |pattern: &str| {
|
|
#[allow(clippy::cast_possible_truncation)]
|
|
macro_source.rfind(pattern).map(|pattern_pos| {
|
|
let rpos = pattern_pos + pattern.len();
|
|
let span_after_ref = e.span.with_lo(BytePos(e.span.lo().0 + rpos as u32));
|
|
let span = trim_leading_whitespaces(span_after_ref);
|
|
snippet_with_applicability(cx, span, "_", &mut applicability)
|
|
})
|
|
};
|
|
|
|
if *mutability == Mutability::Mut {
|
|
generate_snippet("mut")
|
|
} else {
|
|
generate_snippet("&")
|
|
}
|
|
} else {
|
|
Some(snippet_with_applicability(cx, e.span, "_", &mut applicability))
|
|
}
|
|
} else {
|
|
Some(snippet_with_applicability(cx, addrof_target.span, "_", &mut applicability))
|
|
};
|
|
if let Some(sugg) = sugg {
|
|
span_lint_and_sugg(
|
|
cx,
|
|
DEREF_ADDROF,
|
|
e.span,
|
|
"immediately dereferencing a reference",
|
|
"try this",
|
|
sugg.to_string(),
|
|
applicability,
|
|
);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
declare_clippy_lint! {
|
|
/// ### What it does
|
|
/// Checks for references in expressions that use
|
|
/// auto dereference.
|
|
///
|
|
/// ### Why is this bad?
|
|
/// The reference is a no-op and is automatically
|
|
/// dereferenced by the compiler and makes the code less clear.
|
|
///
|
|
/// ### Example
|
|
/// ```rust
|
|
/// struct Point(u32, u32);
|
|
/// let point = Point(30, 20);
|
|
/// let x = (&point).0;
|
|
/// ```
|
|
/// Use instead:
|
|
/// ```rust
|
|
/// # struct Point(u32, u32);
|
|
/// # let point = Point(30, 20);
|
|
/// let x = point.0;
|
|
/// ```
|
|
#[clippy::version = "pre 1.29.0"]
|
|
pub REF_IN_DEREF,
|
|
complexity,
|
|
"Use of reference in auto dereference expression."
|
|
}
|
|
|
|
declare_lint_pass!(RefInDeref => [REF_IN_DEREF]);
|
|
|
|
impl EarlyLintPass for RefInDeref {
|
|
fn check_expr(&mut self, cx: &EarlyContext<'_>, e: &Expr) {
|
|
if_chain! {
|
|
if let ExprKind::Field(ref object, _) = e.kind;
|
|
if let ExprKind::Paren(ref parened) = object.kind;
|
|
if let ExprKind::AddrOf(_, _, ref inner) = parened.kind;
|
|
then {
|
|
let applicability = if inner.span.from_expansion() {
|
|
Applicability::MaybeIncorrect
|
|
} else {
|
|
Applicability::MachineApplicable
|
|
};
|
|
let sugg = Sugg::ast(cx, inner, "_").maybe_par();
|
|
span_lint_and_sugg(
|
|
cx,
|
|
REF_IN_DEREF,
|
|
object.span,
|
|
"creating a reference that is immediately dereferenced",
|
|
"try this",
|
|
sugg.to_string(),
|
|
applicability,
|
|
);
|
|
}
|
|
}
|
|
}
|
|
}
|