2021-04-08 10:50:13 -05:00
|
|
|
use clippy_utils::diagnostics::{span_lint_and_sugg, span_lint_and_then};
|
|
|
|
use clippy_utils::get_parent_node;
|
|
|
|
use clippy_utils::source::snippet_with_context;
|
2021-03-25 13:29:11 -05:00
|
|
|
use clippy_utils::sugg;
|
|
|
|
use clippy_utils::ty::is_copy;
|
2021-03-12 08:30:50 -06:00
|
|
|
use rustc_errors::Applicability;
|
2022-08-02 10:39:35 -05:00
|
|
|
use rustc_hir::{BindingAnnotation, Expr, ExprKind, MatchSource, Node, PatKind, QPath};
|
2021-03-12 08:30:50 -06:00
|
|
|
use rustc_lint::LateContext;
|
2021-04-08 10:50:13 -05:00
|
|
|
use rustc_middle::ty::{self, adjustment::Adjust};
|
2021-03-25 13:29:11 -05:00
|
|
|
use rustc_span::symbol::{sym, Symbol};
|
2021-03-12 08:30:50 -06:00
|
|
|
|
|
|
|
use super::CLONE_DOUBLE_REF;
|
|
|
|
use super::CLONE_ON_COPY;
|
|
|
|
|
|
|
|
/// Checks for the `CLONE_ON_COPY` lint.
|
2021-04-08 10:50:13 -05:00
|
|
|
#[allow(clippy::too_many_lines)]
|
|
|
|
pub(super) fn check(cx: &LateContext<'_>, expr: &Expr<'_>, method_name: Symbol, args: &[Expr<'_>]) {
|
|
|
|
let arg = match args {
|
|
|
|
[arg] if method_name == sym::clone => arg,
|
|
|
|
_ => return,
|
|
|
|
};
|
|
|
|
if cx
|
|
|
|
.typeck_results()
|
|
|
|
.type_dependent_def_id(expr.hir_id)
|
|
|
|
.and_then(|id| cx.tcx.trait_of_item(id))
|
|
|
|
.zip(cx.tcx.lang_items().clone_trait())
|
|
|
|
.map_or(true, |(x, y)| x != y)
|
|
|
|
{
|
2021-03-25 13:29:11 -05:00
|
|
|
return;
|
|
|
|
}
|
2021-04-08 10:50:13 -05:00
|
|
|
let arg_adjustments = cx.typeck_results().expr_adjustments(arg);
|
|
|
|
let arg_ty = arg_adjustments
|
|
|
|
.last()
|
|
|
|
.map_or_else(|| cx.typeck_results().expr_ty(arg), |a| a.target);
|
|
|
|
|
2021-03-12 08:30:50 -06:00
|
|
|
let ty = cx.typeck_results().expr_ty(expr);
|
|
|
|
if let ty::Ref(_, inner, _) = arg_ty.kind() {
|
|
|
|
if let ty::Ref(_, innermost, _) = inner.kind() {
|
|
|
|
span_lint_and_then(
|
|
|
|
cx,
|
|
|
|
CLONE_DOUBLE_REF,
|
|
|
|
expr.span,
|
|
|
|
&format!(
|
|
|
|
"using `clone` on a double-reference; \
|
|
|
|
this will copy the reference of type `{}` instead of cloning the inner type",
|
|
|
|
ty
|
|
|
|
),
|
|
|
|
|diag| {
|
|
|
|
if let Some(snip) = sugg::Sugg::hir_opt(cx, arg) {
|
|
|
|
let mut ty = innermost;
|
|
|
|
let mut n = 0;
|
|
|
|
while let ty::Ref(_, inner, _) = ty.kind() {
|
|
|
|
ty = inner;
|
|
|
|
n += 1;
|
|
|
|
}
|
2021-06-03 01:41:37 -05:00
|
|
|
let refs = "&".repeat(n + 1);
|
|
|
|
let derefs = "*".repeat(n);
|
2021-03-12 08:30:50 -06:00
|
|
|
let explicit = format!("<{}{}>::clone({})", refs, ty, snip);
|
|
|
|
diag.span_suggestion(
|
|
|
|
expr.span,
|
|
|
|
"try dereferencing it",
|
|
|
|
format!("{}({}{}).clone()", refs, derefs, snip.deref()),
|
|
|
|
Applicability::MaybeIncorrect,
|
|
|
|
);
|
|
|
|
diag.span_suggestion(
|
|
|
|
expr.span,
|
|
|
|
"or try being explicit if you are sure, that you want to clone a reference",
|
|
|
|
explicit,
|
|
|
|
Applicability::MaybeIncorrect,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
);
|
|
|
|
return; // don't report clone_on_copy
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if is_copy(cx, ty) {
|
2021-04-08 10:50:13 -05:00
|
|
|
let parent_is_suffix_expr = match get_parent_node(cx.tcx, expr.hir_id) {
|
|
|
|
Some(Node::Expr(parent)) => match parent.kind {
|
|
|
|
// &*x is a nop, &x.clone() is not
|
|
|
|
ExprKind::AddrOf(..) => return,
|
|
|
|
// (*x).func() is useless, x.clone().func() can work in case func borrows self
|
2021-12-01 11:17:50 -06:00
|
|
|
ExprKind::MethodCall(_, [self_arg, ..], _)
|
2021-04-08 10:50:13 -05:00
|
|
|
if expr.hir_id == self_arg.hir_id && ty != cx.typeck_results().expr_ty_adjusted(expr) =>
|
|
|
|
{
|
|
|
|
return;
|
2021-11-04 07:52:36 -05:00
|
|
|
},
|
2022-08-02 12:06:22 -05:00
|
|
|
// ? is a Call, makes sure not to rec *x?, but rather (*x)?
|
|
|
|
ExprKind::Call(hir_callee, _) => matches!(
|
|
|
|
hir_callee.kind,
|
|
|
|
ExprKind::Path(QPath::LangItem(rustc_hir::LangItem::TryTraitBranch, _, _))
|
|
|
|
),
|
2021-12-01 11:17:50 -06:00
|
|
|
ExprKind::MethodCall(_, [self_arg, ..], _) if expr.hir_id == self_arg.hir_id => true,
|
2021-04-08 10:50:13 -05:00
|
|
|
ExprKind::Match(_, _, MatchSource::TryDesugar | MatchSource::AwaitDesugar)
|
|
|
|
| ExprKind::Field(..)
|
|
|
|
| ExprKind::Index(..) => true,
|
|
|
|
_ => false,
|
|
|
|
},
|
|
|
|
// local binding capturing a reference
|
|
|
|
Some(Node::Local(l))
|
|
|
|
if matches!(
|
|
|
|
l.pat.kind,
|
|
|
|
PatKind::Binding(BindingAnnotation::Ref | BindingAnnotation::RefMut, ..)
|
|
|
|
) =>
|
|
|
|
{
|
|
|
|
return;
|
2021-11-04 07:52:36 -05:00
|
|
|
},
|
2021-04-08 10:50:13 -05:00
|
|
|
_ => false,
|
|
|
|
};
|
2021-03-12 08:30:50 -06:00
|
|
|
|
2021-04-08 10:50:13 -05:00
|
|
|
let mut app = Applicability::MachineApplicable;
|
|
|
|
let snip = snippet_with_context(cx, arg.span, expr.span.ctxt(), "_", &mut app).0;
|
|
|
|
|
|
|
|
let deref_count = arg_adjustments
|
|
|
|
.iter()
|
|
|
|
.take_while(|adj| matches!(adj.kind, Adjust::Deref(_)))
|
|
|
|
.count();
|
|
|
|
let (help, sugg) = if deref_count == 0 {
|
|
|
|
("try removing the `clone` call", snip.into())
|
|
|
|
} else if parent_is_suffix_expr {
|
|
|
|
("try dereferencing it", format!("({}{})", "*".repeat(deref_count), snip))
|
2021-03-12 08:30:50 -06:00
|
|
|
} else {
|
2021-04-08 10:50:13 -05:00
|
|
|
("try dereferencing it", format!("{}{}", "*".repeat(deref_count), snip))
|
|
|
|
};
|
|
|
|
|
|
|
|
span_lint_and_sugg(
|
2021-03-12 08:30:50 -06:00
|
|
|
cx,
|
|
|
|
CLONE_ON_COPY,
|
|
|
|
expr.span,
|
|
|
|
&format!("using `clone` on type `{}` which implements the `Copy` trait", ty),
|
2021-04-08 10:50:13 -05:00
|
|
|
help,
|
|
|
|
sugg,
|
|
|
|
app,
|
2021-03-12 08:30:50 -06:00
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|