2021-08-12 04:16:25 -05:00
|
|
|
use clippy_utils::diagnostics::{span_lint_and_sugg, span_lint_and_then};
|
2021-03-25 13:29:11 -05:00
|
|
|
use clippy_utils::source::snippet_with_applicability;
|
|
|
|
use clippy_utils::sugg::Sugg;
|
|
|
|
use clippy_utils::ty::is_type_diagnostic_item;
|
2021-11-02 09:43:31 -05:00
|
|
|
use clippy_utils::{can_mut_borrow_both, eq_expr_value, std_or_core};
|
2018-11-27 14:14:15 -06:00
|
|
|
use if_chain::if_chain;
|
2018-12-29 09:04:45 -06:00
|
|
|
use rustc_errors::Applicability;
|
2021-08-12 04:16:25 -05:00
|
|
|
use rustc_hir::{BinOpKind, Block, Expr, ExprKind, PatKind, QPath, Stmt, StmtKind};
|
2020-01-12 00:08:41 -06:00
|
|
|
use rustc_lint::{LateContext, LateLintPass};
|
2020-03-30 04:02:14 -05:00
|
|
|
use rustc_middle::ty;
|
2020-01-11 05:37:08 -06:00
|
|
|
use rustc_session::{declare_lint_pass, declare_tool_lint};
|
2021-08-12 04:16:25 -05:00
|
|
|
use rustc_span::source_map::Spanned;
|
|
|
|
use rustc_span::{sym, Span};
|
2016-02-27 17:46:02 -06:00
|
|
|
|
2018-03-28 08:24:26 -05:00
|
|
|
declare_clippy_lint! {
|
2021-07-29 05:16:06 -05:00
|
|
|
/// ### What it does
|
|
|
|
/// Checks for manual swapping.
|
2019-03-05 10:50:33 -06:00
|
|
|
///
|
2021-07-29 05:16:06 -05:00
|
|
|
/// ### Why is this bad?
|
|
|
|
/// The `std::mem::swap` function exposes the intent better
|
2019-03-05 10:50:33 -06:00
|
|
|
/// without deinitializing or copying either variable.
|
|
|
|
///
|
2021-07-29 05:16:06 -05:00
|
|
|
/// ### Example
|
2019-03-09 01:51:23 -06:00
|
|
|
/// ```rust
|
2019-08-02 01:13:54 -05:00
|
|
|
/// let mut a = 42;
|
|
|
|
/// let mut b = 1337;
|
|
|
|
///
|
2019-03-05 10:50:33 -06:00
|
|
|
/// let t = b;
|
|
|
|
/// b = a;
|
|
|
|
/// a = t;
|
|
|
|
/// ```
|
|
|
|
/// Use std::mem::swap():
|
|
|
|
/// ```rust
|
2019-08-02 01:13:54 -05:00
|
|
|
/// let mut a = 1;
|
|
|
|
/// let mut b = 2;
|
2019-03-05 10:50:33 -06:00
|
|
|
/// std::mem::swap(&mut a, &mut b);
|
|
|
|
/// ```
|
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 14:06:26 -05:00
|
|
|
#[clippy::version = "pre 1.29.0"]
|
2016-02-27 17:46:02 -06:00
|
|
|
pub MANUAL_SWAP,
|
2018-03-28 08:24:26 -05:00
|
|
|
complexity,
|
2016-08-06 03:18:36 -05:00
|
|
|
"manual swap of two variables"
|
2016-02-27 17:46:02 -06:00
|
|
|
}
|
2016-02-27 17:01:15 -06:00
|
|
|
|
2018-03-28 08:24:26 -05:00
|
|
|
declare_clippy_lint! {
|
2021-07-29 05:16:06 -05:00
|
|
|
/// ### What it does
|
|
|
|
/// Checks for `foo = bar; bar = foo` sequences.
|
2019-03-05 10:50:33 -06:00
|
|
|
///
|
2021-07-29 05:16:06 -05:00
|
|
|
/// ### Why is this bad?
|
|
|
|
/// This looks like a failed attempt to swap.
|
2019-03-05 10:50:33 -06:00
|
|
|
///
|
2021-07-29 05:16:06 -05:00
|
|
|
/// ### Example
|
2019-03-09 01:51:23 -06:00
|
|
|
/// ```rust
|
|
|
|
/// # let mut a = 1;
|
|
|
|
/// # let mut b = 2;
|
2019-03-05 10:50:33 -06:00
|
|
|
/// a = b;
|
|
|
|
/// b = a;
|
|
|
|
/// ```
|
2020-03-17 20:50:39 -05:00
|
|
|
/// If swapping is intended, use `swap()` instead:
|
2019-08-18 14:37:47 -05:00
|
|
|
/// ```rust
|
|
|
|
/// # let mut a = 1;
|
|
|
|
/// # let mut b = 2;
|
|
|
|
/// std::mem::swap(&mut a, &mut b);
|
|
|
|
/// ```
|
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 14:06:26 -05:00
|
|
|
#[clippy::version = "pre 1.29.0"]
|
2016-02-27 17:46:02 -06:00
|
|
|
pub ALMOST_SWAPPED,
|
2018-03-28 08:24:26 -05:00
|
|
|
correctness,
|
2016-02-27 17:01:15 -06:00
|
|
|
"`foo = bar; bar = foo` sequence"
|
|
|
|
}
|
|
|
|
|
2019-04-08 15:43:55 -05:00
|
|
|
declare_lint_pass!(Swap => [MANUAL_SWAP, ALMOST_SWAPPED]);
|
2016-02-27 17:01:15 -06:00
|
|
|
|
2020-06-25 15:41:36 -05:00
|
|
|
impl<'tcx> LateLintPass<'tcx> for Swap {
|
|
|
|
fn check_block(&mut self, cx: &LateContext<'tcx>, block: &'tcx Block<'_>) {
|
2016-02-27 17:46:02 -06:00
|
|
|
check_manual_swap(cx, block);
|
|
|
|
check_suspicious_swap(cx, block);
|
2021-08-12 04:16:25 -05:00
|
|
|
check_xor_swap(cx, block);
|
2016-02-27 17:46:02 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-08-12 04:16:25 -05:00
|
|
|
fn generate_swap_warning(cx: &LateContext<'_>, e1: &Expr<'_>, e2: &Expr<'_>, span: Span, is_xor_based: bool) {
|
|
|
|
let mut applicability = Applicability::MachineApplicable;
|
|
|
|
|
|
|
|
if !can_mut_borrow_both(cx, e1, e2) {
|
|
|
|
if let ExprKind::Index(lhs1, idx1) = e1.kind {
|
|
|
|
if let ExprKind::Index(lhs2, idx2) = e2.kind {
|
|
|
|
if eq_expr_value(cx, lhs1, lhs2) {
|
|
|
|
let ty = cx.typeck_results().expr_ty(lhs1).peel_refs();
|
|
|
|
|
|
|
|
if matches!(ty.kind(), ty::Slice(_))
|
|
|
|
|| matches!(ty.kind(), ty::Array(_, _))
|
2021-10-02 18:51:01 -05:00
|
|
|
|| is_type_diagnostic_item(cx, ty, sym::Vec)
|
|
|
|
|| is_type_diagnostic_item(cx, ty, sym::VecDeque)
|
2021-08-12 04:16:25 -05:00
|
|
|
{
|
|
|
|
let slice = Sugg::hir_with_applicability(cx, lhs1, "<slice>", &mut applicability);
|
|
|
|
span_lint_and_sugg(
|
|
|
|
cx,
|
|
|
|
MANUAL_SWAP,
|
|
|
|
span,
|
2022-09-23 12:42:59 -05:00
|
|
|
&format!("this looks like you are swapping elements of `{slice}` manually"),
|
2021-08-12 04:16:25 -05:00
|
|
|
"try",
|
|
|
|
format!(
|
|
|
|
"{}.swap({}, {})",
|
|
|
|
slice.maybe_par(),
|
|
|
|
snippet_with_applicability(cx, idx1.span, "..", &mut applicability),
|
|
|
|
snippet_with_applicability(cx, idx2.span, "..", &mut applicability),
|
|
|
|
),
|
|
|
|
applicability,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
let first = Sugg::hir_with_applicability(cx, e1, "..", &mut applicability);
|
|
|
|
let second = Sugg::hir_with_applicability(cx, e2, "..", &mut applicability);
|
2021-10-24 23:29:05 -05:00
|
|
|
let Some(sugg) = std_or_core(cx) else { return };
|
|
|
|
|
2021-08-12 04:16:25 -05:00
|
|
|
span_lint_and_then(
|
|
|
|
cx,
|
|
|
|
MANUAL_SWAP,
|
|
|
|
span,
|
2022-09-23 12:42:59 -05:00
|
|
|
&format!("this looks like you are swapping `{first}` and `{second}` manually"),
|
2021-08-12 04:16:25 -05:00
|
|
|
|diag| {
|
|
|
|
diag.span_suggestion(
|
|
|
|
span,
|
|
|
|
"try",
|
2022-09-23 12:42:59 -05:00
|
|
|
format!("{sugg}::mem::swap({}, {})", first.mut_addr(), second.mut_addr()),
|
2021-08-12 04:16:25 -05:00
|
|
|
applicability,
|
|
|
|
);
|
|
|
|
if !is_xor_based {
|
2022-09-23 12:42:59 -05:00
|
|
|
diag.note(&format!("or maybe you should use `{sugg}::mem::replace`?"));
|
2021-08-12 04:16:25 -05:00
|
|
|
}
|
|
|
|
},
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2016-02-27 17:46:02 -06:00
|
|
|
/// Implementation of the `MANUAL_SWAP` lint.
|
2020-06-25 15:41:36 -05:00
|
|
|
fn check_manual_swap(cx: &LateContext<'_>, block: &Block<'_>) {
|
2016-02-27 17:46:02 -06:00
|
|
|
for w in block.stmts.windows(3) {
|
2017-10-23 14:18:02 -05:00
|
|
|
if_chain! {
|
2016-02-27 17:46:02 -06:00
|
|
|
// let t = foo();
|
2021-04-08 10:50:13 -05:00
|
|
|
if let StmtKind::Local(tmp) = w[0].kind;
|
|
|
|
if let Some(tmp_init) = tmp.init;
|
2019-09-27 10:16:06 -05:00
|
|
|
if let PatKind::Binding(.., ident, None) = tmp.pat.kind;
|
2016-02-27 17:46:02 -06:00
|
|
|
|
|
|
|
// foo() = bar();
|
2021-04-08 10:50:13 -05:00
|
|
|
if let StmtKind::Semi(first) = w[1].kind;
|
|
|
|
if let ExprKind::Assign(lhs1, rhs1, _) = first.kind;
|
2016-02-27 17:46:02 -06:00
|
|
|
|
|
|
|
// bar() = t;
|
2021-04-08 10:50:13 -05:00
|
|
|
if let StmtKind::Semi(second) = w[2].kind;
|
|
|
|
if let ExprKind::Assign(lhs2, rhs2, _) = second.kind;
|
|
|
|
if let ExprKind::Path(QPath::Resolved(None, rhs2)) = rhs2.kind;
|
2017-10-23 14:18:02 -05:00
|
|
|
if rhs2.segments.len() == 1;
|
|
|
|
|
2021-01-15 03:56:44 -06:00
|
|
|
if ident.name == rhs2.segments[0].ident.name;
|
2020-08-28 09:10:16 -05:00
|
|
|
if eq_expr_value(cx, tmp_init, lhs1);
|
|
|
|
if eq_expr_value(cx, rhs1, lhs2);
|
2017-10-23 14:18:02 -05:00
|
|
|
then {
|
|
|
|
let span = w[0].span.to(second.span);
|
2021-08-12 04:16:25 -05:00
|
|
|
generate_swap_warning(cx, lhs1, lhs2, span, false);
|
2019-12-03 06:20:42 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-02-27 17:46:02 -06:00
|
|
|
/// Implementation of the `ALMOST_SWAPPED` lint.
|
2020-06-25 15:41:36 -05:00
|
|
|
fn check_suspicious_swap(cx: &LateContext<'_>, block: &Block<'_>) {
|
2016-02-27 17:46:02 -06:00
|
|
|
for w in block.stmts.windows(2) {
|
2017-10-23 14:18:02 -05:00
|
|
|
if_chain! {
|
2021-04-08 10:50:13 -05:00
|
|
|
if let StmtKind::Semi(first) = w[0].kind;
|
|
|
|
if let StmtKind::Semi(second) = w[1].kind;
|
2021-11-02 09:43:31 -05:00
|
|
|
if first.span.ctxt() == second.span.ctxt();
|
2021-04-08 10:50:13 -05:00
|
|
|
if let ExprKind::Assign(lhs0, rhs0, _) = first.kind;
|
|
|
|
if let ExprKind::Assign(lhs1, rhs1, _) = second.kind;
|
2020-08-28 09:10:16 -05:00
|
|
|
if eq_expr_value(cx, lhs0, rhs1);
|
|
|
|
if eq_expr_value(cx, lhs1, rhs0);
|
2017-10-23 14:18:02 -05:00
|
|
|
then {
|
|
|
|
let lhs0 = Sugg::hir_opt(cx, lhs0);
|
|
|
|
let rhs0 = Sugg::hir_opt(cx, rhs0);
|
|
|
|
let (what, lhs, rhs) = if let (Some(first), Some(second)) = (lhs0, rhs0) {
|
2017-11-04 14:56:05 -05:00
|
|
|
(
|
2022-09-23 12:42:59 -05:00
|
|
|
format!(" `{first}` and `{second}`"),
|
2017-11-04 14:56:05 -05:00
|
|
|
first.mut_addr().to_string(),
|
|
|
|
second.mut_addr().to_string(),
|
|
|
|
)
|
2017-10-23 14:18:02 -05:00
|
|
|
} else {
|
2018-08-21 05:46:18 -05:00
|
|
|
(String::new(), String::new(), String::new())
|
2017-10-23 14:18:02 -05:00
|
|
|
};
|
2017-11-04 14:55:56 -05:00
|
|
|
|
2017-10-23 14:18:02 -05:00
|
|
|
let span = first.span.to(second.span);
|
2021-10-24 23:29:05 -05:00
|
|
|
let Some(sugg) = std_or_core(cx) else { return };
|
2017-11-04 14:55:56 -05:00
|
|
|
|
2017-10-23 14:18:02 -05:00
|
|
|
span_lint_and_then(cx,
|
2021-10-24 23:29:05 -05:00
|
|
|
ALMOST_SWAPPED,
|
|
|
|
span,
|
2022-09-23 12:42:59 -05:00
|
|
|
&format!("this looks like you are trying to swap{what}"),
|
2021-10-24 23:29:05 -05:00
|
|
|
|diag| {
|
|
|
|
if !what.is_empty() {
|
|
|
|
diag.span_suggestion(
|
|
|
|
span,
|
|
|
|
"try",
|
|
|
|
format!(
|
2022-09-23 12:42:59 -05:00
|
|
|
"{sugg}::mem::swap({lhs}, {rhs})",
|
2021-10-24 23:29:05 -05:00
|
|
|
),
|
|
|
|
Applicability::MaybeIncorrect,
|
|
|
|
);
|
|
|
|
diag.note(
|
2022-09-23 12:42:59 -05:00
|
|
|
&format!("or maybe you should use `{sugg}::mem::replace`?")
|
2021-10-24 23:29:05 -05:00
|
|
|
);
|
|
|
|
}
|
|
|
|
});
|
2017-10-23 14:18:02 -05:00
|
|
|
}
|
|
|
|
}
|
2016-02-27 17:01:15 -06:00
|
|
|
}
|
|
|
|
}
|
2021-08-12 04:16:25 -05:00
|
|
|
|
|
|
|
/// Implementation of the xor case for `MANUAL_SWAP` lint.
|
|
|
|
fn check_xor_swap(cx: &LateContext<'_>, block: &Block<'_>) {
|
|
|
|
for window in block.stmts.windows(3) {
|
|
|
|
if_chain! {
|
|
|
|
if let Some((lhs0, rhs0)) = extract_sides_of_xor_assign(&window[0]);
|
|
|
|
if let Some((lhs1, rhs1)) = extract_sides_of_xor_assign(&window[1]);
|
|
|
|
if let Some((lhs2, rhs2)) = extract_sides_of_xor_assign(&window[2]);
|
|
|
|
if eq_expr_value(cx, lhs0, rhs1);
|
|
|
|
if eq_expr_value(cx, lhs2, rhs1);
|
|
|
|
if eq_expr_value(cx, lhs1, rhs0);
|
|
|
|
if eq_expr_value(cx, lhs1, rhs2);
|
|
|
|
then {
|
|
|
|
let span = window[0].span.to(window[2].span);
|
|
|
|
generate_swap_warning(cx, lhs0, rhs0, span, true);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-10-02 18:51:01 -05:00
|
|
|
/// Returns the lhs and rhs of an xor assignment statement.
|
2021-08-12 04:16:25 -05:00
|
|
|
fn extract_sides_of_xor_assign<'a, 'hir>(stmt: &'a Stmt<'hir>) -> Option<(&'a Expr<'hir>, &'a Expr<'hir>)> {
|
|
|
|
if let StmtKind::Semi(expr) = stmt.kind {
|
|
|
|
if let ExprKind::AssignOp(
|
|
|
|
Spanned {
|
|
|
|
node: BinOpKind::BitXor,
|
|
|
|
..
|
|
|
|
},
|
|
|
|
lhs,
|
|
|
|
rhs,
|
|
|
|
) = expr.kind
|
|
|
|
{
|
|
|
|
return Some((lhs, rhs));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
None
|
|
|
|
}
|