mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-30 18:53:39 +00:00
improve almost swap to look for let statement
This commit is contained in:
parent
5adeebf92f
commit
179c037643
@ -172,6 +172,7 @@ fn check_manual_swap(cx: &LateContext<'_>, block: &Block<'_>) {
|
||||
}
|
||||
}
|
||||
|
||||
#[allow(clippy::too_many_lines)]
|
||||
/// Implementation of the `ALMOST_SWAPPED` lint.
|
||||
fn check_suspicious_swap(cx: &LateContext<'_>, block: &Block<'_>) {
|
||||
for w in block.stmts.windows(2) {
|
||||
@ -220,6 +221,79 @@ fn check_suspicious_swap(cx: &LateContext<'_>, block: &Block<'_>) {
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
let lint_almost_swapped_note = |span, what: String, sugg, lhs, rhs| {
|
||||
span_lint_and_then(
|
||||
cx,
|
||||
ALMOST_SWAPPED,
|
||||
span,
|
||||
&format!("this looks like you are trying to swap{}", what),
|
||||
|diag| {
|
||||
if !what.is_empty() {
|
||||
diag.note(&format!(
|
||||
"maybe you could use `{sugg}::mem::swap({lhs}, {rhs})` or `{sugg}::mem::replace`?"
|
||||
));
|
||||
}
|
||||
},
|
||||
);
|
||||
};
|
||||
|
||||
if let StmtKind::Local(first) = w[0].kind
|
||||
&& let StmtKind::Local(second) = w[1].kind
|
||||
&& first.span.ctxt() == second.span.ctxt()
|
||||
&& let Some(rhs0) = first.init
|
||||
&& let Some(rhs1) = second.init
|
||||
&& let ExprKind::Path(QPath::Resolved(None, path_l)) = rhs0.kind
|
||||
&& let ExprKind::Path(QPath::Resolved(None, path_r)) = rhs1.kind
|
||||
&& let PatKind::Binding(_,_, ident_l,_) = first.pat.kind
|
||||
&& let PatKind::Binding(_,_, ident_r,_) = second.pat.kind
|
||||
&& ident_l.name.as_str() == path_r.segments.iter().map(|el| el.ident.to_string()).collect::<Vec<_>>().join("::")
|
||||
&& ident_r.name.as_str() == path_l.segments.iter().map(|el| el.ident.to_string()).collect::<Vec<_>>().join("::")
|
||||
{
|
||||
let rhs0 = Sugg::hir_opt(cx, rhs0);
|
||||
let (what, lhs, rhs) = if let Some(second) = rhs0 {
|
||||
(
|
||||
format!(" `{}` and `{}`", ident_l, second),
|
||||
format!("&mut {}", ident_l),
|
||||
second.mut_addr().to_string(),
|
||||
)
|
||||
} else {
|
||||
(String::new(), String::new(), String::new())
|
||||
};
|
||||
let span = first.span.to(second.span);
|
||||
let Some(sugg) = std_or_core(cx) else { return };
|
||||
|
||||
lint_almost_swapped_note(span, what, sugg, lhs, rhs);
|
||||
}
|
||||
|
||||
if let StmtKind::Local(first) = w[0].kind
|
||||
&& let StmtKind::Semi(second) = w[1].kind
|
||||
&& first.span.ctxt() == second.span.ctxt()
|
||||
&& let Some(rhs0) = first.init
|
||||
&& let ExprKind::Path(QPath::Resolved(None, path_l)) = rhs0.kind
|
||||
&& let PatKind::Binding(_,_, ident_l,_) = first.pat.kind
|
||||
&& let ExprKind::Assign(lhs1, rhs1, _) = second.kind
|
||||
&& let ExprKind::Path(QPath::Resolved(None, lhs1_path)) = lhs1.kind
|
||||
&& let ExprKind::Path(QPath::Resolved(None, rhs1_path)) = rhs1.kind
|
||||
&& ident_l.name.as_str() == rhs1_path.segments.iter().map(|el| el.ident.to_string()).collect::<Vec<_>>().join("::")
|
||||
&& path_l.segments.iter().map(|el| el.ident.to_string()).collect::<Vec<_>>().join("::") == lhs1_path.segments.iter().map(|el| el.ident.to_string()).collect::<Vec<_>>().join("::")
|
||||
{
|
||||
let lhs1 = Sugg::hir_opt(cx, lhs1);
|
||||
let rhs1 = Sugg::hir_opt(cx, rhs1);
|
||||
let (what, lhs, rhs) = if let (Some(first),Some(second)) = (lhs1,rhs1) {
|
||||
(
|
||||
format!(" `{}` and `{}`", first, second),
|
||||
first.mut_addr().to_string(),
|
||||
second.mut_addr().to_string(),
|
||||
)
|
||||
} else {
|
||||
(String::new(), String::new(), String::new())
|
||||
};
|
||||
let span = first.span.to(second.span);
|
||||
let Some(sugg) = std_or_core(cx) else { return };
|
||||
|
||||
lint_almost_swapped_note(span, what, sugg, lhs, rhs);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
32
tests/ui/almost_swapped.rs
Normal file
32
tests/ui/almost_swapped.rs
Normal file
@ -0,0 +1,32 @@
|
||||
#![allow(clippy::needless_late_init, clippy::manual_swap)]
|
||||
#![allow(unused_variables, unused_assignments)]
|
||||
#![warn(clippy::almost_swapped)]
|
||||
|
||||
fn main() {
|
||||
let b = 1;
|
||||
let a = b;
|
||||
let b = a;
|
||||
|
||||
let mut c = 1;
|
||||
let mut d = 2;
|
||||
d = c;
|
||||
c = d;
|
||||
|
||||
let mut b = 1;
|
||||
let a = b;
|
||||
b = a;
|
||||
|
||||
let b = 1;
|
||||
let a = 2;
|
||||
|
||||
let t = b;
|
||||
let b = a;
|
||||
let a = t;
|
||||
|
||||
let mut b = 1;
|
||||
let mut a = 2;
|
||||
|
||||
let t = b;
|
||||
b = a;
|
||||
a = t;
|
||||
}
|
30
tests/ui/almost_swapped.stderr
Normal file
30
tests/ui/almost_swapped.stderr
Normal file
@ -0,0 +1,30 @@
|
||||
error: this looks like you are trying to swap `a` and `b`
|
||||
--> $DIR/almost_swapped.rs:7:5
|
||||
|
|
||||
LL | / let a = b;
|
||||
LL | | let b = a;
|
||||
| |______________^
|
||||
|
|
||||
= note: `-D clippy::almost-swapped` implied by `-D warnings`
|
||||
= note: maybe you could use `std::mem::swap(&mut a, &mut b)` or `std::mem::replace`?
|
||||
|
||||
error: this looks like you are trying to swap `d` and `c`
|
||||
--> $DIR/almost_swapped.rs:12:5
|
||||
|
|
||||
LL | / d = c;
|
||||
LL | | c = d;
|
||||
| |_________^ help: try: `std::mem::swap(&mut d, &mut c)`
|
||||
|
|
||||
= note: or maybe you should use `std::mem::replace`?
|
||||
|
||||
error: this looks like you are trying to swap `b` and `a`
|
||||
--> $DIR/almost_swapped.rs:16:5
|
||||
|
|
||||
LL | / let a = b;
|
||||
LL | | b = a;
|
||||
| |_________^
|
||||
|
|
||||
= note: maybe you could use `std::mem::swap(&mut b, &mut a)` or `std::mem::replace`?
|
||||
|
||||
error: aborting due to 3 previous errors
|
||||
|
Loading…
Reference in New Issue
Block a user