mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-24 05:33:27 +00:00
refactor: improve code re-use in InstantSubtraction lint pass
This commit is contained in:
parent
a566eb3765
commit
80e3553f29
1 changed files with 46 additions and 31 deletions
|
@ -1,6 +1,8 @@
|
||||||
use clippy_utils::{
|
use clippy_utils::{
|
||||||
diagnostics::{self, span_lint_and_sugg},
|
diagnostics::{self, span_lint_and_sugg},
|
||||||
meets_msrv, msrvs, source, ty,
|
meets_msrv, msrvs, source,
|
||||||
|
sugg::Sugg,
|
||||||
|
ty,
|
||||||
};
|
};
|
||||||
use rustc_errors::Applicability;
|
use rustc_errors::Applicability;
|
||||||
use rustc_hir::{BinOpKind, Expr, ExprKind};
|
use rustc_hir::{BinOpKind, Expr, ExprKind};
|
||||||
|
@ -78,45 +80,41 @@ impl_lint_pass!(InstantSubtraction => [MANUAL_INSTANT_ELAPSED, UNCHECKED_DURATIO
|
||||||
|
|
||||||
impl LateLintPass<'_> for InstantSubtraction {
|
impl LateLintPass<'_> for InstantSubtraction {
|
||||||
fn check_expr(&mut self, cx: &LateContext<'_>, expr: &'_ Expr<'_>) {
|
fn check_expr(&mut self, cx: &LateContext<'_>, expr: &'_ Expr<'_>) {
|
||||||
if let ExprKind::Binary(Spanned {node: BinOpKind::Sub, ..}, lhs, rhs) = expr.kind
|
if let ExprKind::Binary(
|
||||||
&& check_instant_now_call(cx, lhs)
|
Spanned {
|
||||||
&& let ty_resolved = cx.typeck_results().expr_ty(rhs)
|
node: BinOpKind::Sub, ..
|
||||||
&& let rustc_middle::ty::Adt(def, _) = ty_resolved.kind()
|
},
|
||||||
&& clippy_utils::match_def_path(cx, def.did(), &clippy_utils::paths::INSTANT)
|
lhs,
|
||||||
&& let Some(sugg) = clippy_utils::sugg::Sugg::hir_opt(cx, rhs)
|
rhs,
|
||||||
|
) = expr.kind
|
||||||
{
|
{
|
||||||
span_lint_and_sugg(
|
if_chain! {
|
||||||
cx,
|
if is_instant_now_call(cx, lhs);
|
||||||
MANUAL_INSTANT_ELAPSED,
|
|
||||||
expr.span,
|
|
||||||
"manual implementation of `Instant::elapsed`",
|
|
||||||
"try",
|
|
||||||
format!("{}.elapsed()", sugg.maybe_par()),
|
|
||||||
Applicability::MachineApplicable,
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
if expr.span.from_expansion() || !meets_msrv(self.msrv, msrvs::TRY_FROM) {
|
if is_an_instant(cx, rhs);
|
||||||
return;
|
if let Some(sugg) = Sugg::hir_opt(cx, rhs);
|
||||||
}
|
|
||||||
|
|
||||||
if_chain! {
|
then {
|
||||||
if let ExprKind::Binary(op, lhs, rhs) = expr.kind;
|
print_manual_instant_elapsed_sugg(cx, expr, sugg)
|
||||||
|
} else {
|
||||||
|
if_chain! {
|
||||||
|
if !expr.span.from_expansion();
|
||||||
|
if meets_msrv(self.msrv, msrvs::TRY_FROM);
|
||||||
|
|
||||||
if let BinOpKind::Sub = op.node;
|
if is_an_instant(cx, lhs);
|
||||||
|
if is_a_duration(cx, rhs);
|
||||||
|
|
||||||
// get types of left and right side
|
then {
|
||||||
if is_an_instant(cx, lhs);
|
print_unchecked_duration_subtraction_sugg(cx, lhs, rhs, expr)
|
||||||
if is_a_duration(cx, rhs);
|
}
|
||||||
|
}
|
||||||
then {
|
}
|
||||||
print_lint_and_sugg(cx, lhs, rhs, expr)
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
fn check_instant_now_call(cx: &LateContext<'_>, expr_block: &'_ Expr<'_>) -> bool {
|
fn is_instant_now_call(cx: &LateContext<'_>, expr_block: &'_ Expr<'_>) -> bool {
|
||||||
if let ExprKind::Call(fn_expr, []) = expr_block.kind
|
if let ExprKind::Call(fn_expr, []) = expr_block.kind
|
||||||
&& let Some(fn_id) = clippy_utils::path_def_id(cx, fn_expr)
|
&& let Some(fn_id) = clippy_utils::path_def_id(cx, fn_expr)
|
||||||
&& clippy_utils::match_def_path(cx, fn_id, &clippy_utils::paths::INSTANT_NOW)
|
&& clippy_utils::match_def_path(cx, fn_id, &clippy_utils::paths::INSTANT_NOW)
|
||||||
|
@ -141,7 +139,24 @@ fn is_a_duration(cx: &LateContext<'_>, expr: &Expr<'_>) -> bool {
|
||||||
ty::is_type_diagnostic_item(cx, expr_ty, sym::Duration)
|
ty::is_type_diagnostic_item(cx, expr_ty, sym::Duration)
|
||||||
}
|
}
|
||||||
|
|
||||||
fn print_lint_and_sugg(cx: &LateContext<'_>, left_expr: &Expr<'_>, right_expr: &Expr<'_>, expr: &Expr<'_>) {
|
fn print_manual_instant_elapsed_sugg(cx: &LateContext<'_>, expr: &Expr<'_>, sugg: Sugg<'_>) {
|
||||||
|
span_lint_and_sugg(
|
||||||
|
cx,
|
||||||
|
MANUAL_INSTANT_ELAPSED,
|
||||||
|
expr.span,
|
||||||
|
"manual implementation of `Instant::elapsed`",
|
||||||
|
"try",
|
||||||
|
format!("{}.elapsed()", sugg.maybe_par()),
|
||||||
|
Applicability::MachineApplicable,
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
fn print_unchecked_duration_subtraction_sugg(
|
||||||
|
cx: &LateContext<'_>,
|
||||||
|
left_expr: &Expr<'_>,
|
||||||
|
right_expr: &Expr<'_>,
|
||||||
|
expr: &Expr<'_>,
|
||||||
|
) {
|
||||||
let mut applicability = Applicability::MachineApplicable;
|
let mut applicability = Applicability::MachineApplicable;
|
||||||
|
|
||||||
let left_expr =
|
let left_expr =
|
||||||
|
|
Loading…
Reference in a new issue