2021-03-15 19:55:45 -05:00
|
|
|
use clippy_utils::diagnostics::span_lint_and_sugg;
|
2021-03-16 11:06:34 -05:00
|
|
|
use clippy_utils::is_trait_method;
|
|
|
|
use clippy_utils::remove_blocks;
|
2021-03-14 18:17:44 -05:00
|
|
|
use clippy_utils::source::snippet_with_applicability;
|
2021-03-13 17:01:03 -06:00
|
|
|
use clippy_utils::ty::{is_copy, is_type_diagnostic_item};
|
2018-10-02 15:13:43 +02:00
|
|
|
use if_chain::if_chain;
|
2018-12-29 16:04:45 +01:00
|
|
|
use rustc_errors::Applicability;
|
2020-01-07 01:39:50 +09:00
|
|
|
use rustc_hir as hir;
|
2020-01-12 15:08:41 +09:00
|
|
|
use rustc_lint::{LateContext, LateLintPass};
|
2020-04-25 22:49:06 +02:00
|
|
|
use rustc_middle::mir::Mutability;
|
2020-03-30 11:02:14 +02:00
|
|
|
use rustc_middle::ty;
|
2020-11-23 13:51:04 +01:00
|
|
|
use rustc_middle::ty::adjustment::Adjust;
|
2020-01-11 20:37:08 +09:00
|
|
|
use rustc_session::{declare_lint_pass, declare_tool_lint};
|
2020-05-08 13:57:01 +02:00
|
|
|
use rustc_span::symbol::Ident;
|
2020-11-05 14:29:48 +01:00
|
|
|
use rustc_span::{sym, Span};
|
2018-10-02 15:13:43 +02:00
|
|
|
|
|
|
|
declare_clippy_lint! {
|
2020-11-23 13:51:04 +01:00
|
|
|
/// **What it does:** Checks for usage of `map(|x| x.clone())` or
|
|
|
|
/// dereferencing closures for `Copy` types, on `Iterator` or `Option`,
|
|
|
|
/// and suggests `cloned()` or `copied()` instead
|
2019-03-05 11:50:33 -05:00
|
|
|
///
|
|
|
|
/// **Why is this bad?** Readability, this can be written more concisely
|
|
|
|
///
|
|
|
|
/// **Known problems:** None
|
|
|
|
///
|
|
|
|
/// **Example:**
|
|
|
|
///
|
|
|
|
/// ```rust
|
|
|
|
/// let x = vec![42, 43];
|
|
|
|
/// let y = x.iter();
|
|
|
|
/// let z = y.map(|i| *i);
|
|
|
|
/// ```
|
|
|
|
///
|
|
|
|
/// The correct use would be:
|
|
|
|
///
|
|
|
|
/// ```rust
|
|
|
|
/// let x = vec![42, 43];
|
|
|
|
/// let y = x.iter();
|
|
|
|
/// let z = y.cloned();
|
|
|
|
/// ```
|
2018-10-02 15:13:43 +02:00
|
|
|
pub MAP_CLONE,
|
|
|
|
style,
|
|
|
|
"using `iterator.map(|x| x.clone())`, or dereferencing closures for `Copy` types"
|
|
|
|
}
|
|
|
|
|
2019-04-08 13:43:55 -07:00
|
|
|
declare_lint_pass!(MapClone => [MAP_CLONE]);
|
2018-10-02 15:13:43 +02:00
|
|
|
|
2020-06-25 23:41:36 +03:00
|
|
|
impl<'tcx> LateLintPass<'tcx> for MapClone {
|
|
|
|
fn check_expr(&mut self, cx: &LateContext<'_>, e: &hir::Expr<'_>) {
|
2019-08-19 09:30:32 -07:00
|
|
|
if e.span.from_expansion() {
|
2018-10-02 15:13:43 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if_chain! {
|
2021-04-02 17:35:32 -04:00
|
|
|
if let hir::ExprKind::MethodCall(method, _, args, _) = e.kind;
|
2018-10-02 15:13:43 +02:00
|
|
|
if args.len() == 2;
|
2021-01-15 10:56:44 +01:00
|
|
|
if method.ident.name == sym::map;
|
2020-07-17 08:47:04 +00:00
|
|
|
let ty = cx.typeck_results().expr_ty(&args[0]);
|
2021-03-13 02:09:19 +09:00
|
|
|
if is_type_diagnostic_item(cx, ty, sym::option_type) || is_trait_method(cx, e, sym::Iterator);
|
2019-09-27 17:16:06 +02:00
|
|
|
if let hir::ExprKind::Closure(_, _, body_id, _, _) = args[1].kind;
|
2018-10-02 15:13:43 +02:00
|
|
|
then {
|
2021-03-30 14:59:59 -05:00
|
|
|
let closure_body = cx.tcx.hir().body(body_id);
|
|
|
|
let closure_expr = remove_blocks(&closure_body.value);
|
2019-09-27 17:16:06 +02:00
|
|
|
match closure_body.params[0].pat.kind {
|
2021-04-02 17:35:32 -04:00
|
|
|
hir::PatKind::Ref(inner, hir::Mutability::Not) => if let hir::PatKind::Binding(
|
2019-02-03 09:12:07 +02:00
|
|
|
hir::BindingAnnotation::Unannotated, .., name, None
|
2019-09-27 17:16:06 +02:00
|
|
|
) = inner.kind {
|
2019-01-15 08:09:47 +02:00
|
|
|
if ident_eq(name, closure_expr) {
|
2019-04-28 11:14:39 -07:00
|
|
|
lint(cx, e.span, args[0].span, true);
|
2019-01-15 08:09:47 +02:00
|
|
|
}
|
2018-10-02 15:13:43 +02:00
|
|
|
},
|
2019-02-03 09:12:07 +02:00
|
|
|
hir::PatKind::Binding(hir::BindingAnnotation::Unannotated, .., name, None) => {
|
2019-09-27 17:16:06 +02:00
|
|
|
match closure_expr.kind {
|
2021-04-02 17:35:32 -04:00
|
|
|
hir::ExprKind::Unary(hir::UnOp::Deref, inner) => {
|
2019-12-22 11:26:51 +02:00
|
|
|
if ident_eq(name, inner) {
|
2020-08-04 00:18:29 +02:00
|
|
|
if let ty::Ref(.., Mutability::Not) = cx.typeck_results().expr_ty(inner).kind() {
|
2019-12-22 11:26:51 +02:00
|
|
|
lint(cx, e.span, args[0].span, true);
|
|
|
|
}
|
2018-11-27 21:14:15 +01:00
|
|
|
}
|
|
|
|
},
|
2021-04-02 17:35:32 -04:00
|
|
|
hir::ExprKind::MethodCall(method, _, [obj], _) => if_chain! {
|
2020-11-23 13:51:04 +01:00
|
|
|
if ident_eq(name, obj) && method.ident.name == sym::clone;
|
2021-03-01 22:55:26 -05:00
|
|
|
if let Some(fn_id) = cx.typeck_results().type_dependent_def_id(closure_expr.hir_id);
|
|
|
|
if let Some(trait_id) = cx.tcx.trait_of_item(fn_id);
|
2021-03-08 11:08:52 -05:00
|
|
|
if cx.tcx.lang_items().clone_trait().map_or(false, |id| id == trait_id);
|
2020-11-23 13:51:04 +01:00
|
|
|
// no autoderefs
|
|
|
|
if !cx.typeck_results().expr_adjustments(obj).iter()
|
|
|
|
.any(|a| matches!(a.kind, Adjust::Deref(Some(..))));
|
|
|
|
then {
|
|
|
|
let obj_ty = cx.typeck_results().expr_ty(obj);
|
|
|
|
if let ty::Ref(_, ty, mutability) = obj_ty.kind() {
|
|
|
|
if matches!(mutability, Mutability::Not) {
|
|
|
|
let copy = is_copy(cx, ty);
|
|
|
|
lint(cx, e.span, args[0].span, copy);
|
|
|
|
}
|
2019-01-15 08:09:47 +02:00
|
|
|
} else {
|
|
|
|
lint_needless_cloning(cx, e.span, args[0].span);
|
|
|
|
}
|
2018-11-27 21:14:15 +01:00
|
|
|
}
|
|
|
|
},
|
|
|
|
_ => {},
|
2018-10-02 15:13:43 +02:00
|
|
|
}
|
|
|
|
},
|
|
|
|
_ => {},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-12-27 16:12:26 +09:00
|
|
|
fn ident_eq(name: Ident, path: &hir::Expr<'_>) -> bool {
|
2021-04-02 17:35:32 -04:00
|
|
|
if let hir::ExprKind::Path(hir::QPath::Resolved(None, path)) = path.kind {
|
2019-01-15 08:09:47 +02:00
|
|
|
path.segments.len() == 1 && path.segments[0].ident == name
|
|
|
|
} else {
|
|
|
|
false
|
2018-10-02 15:13:43 +02:00
|
|
|
}
|
2018-10-02 15:18:56 +02:00
|
|
|
}
|
2019-01-15 08:09:47 +02:00
|
|
|
|
2020-06-25 23:41:36 +03:00
|
|
|
fn lint_needless_cloning(cx: &LateContext<'_>, root: Span, receiver: Span) {
|
2019-01-15 08:09:47 +02:00
|
|
|
span_lint_and_sugg(
|
|
|
|
cx,
|
|
|
|
MAP_CLONE,
|
|
|
|
root.trim_start(receiver).unwrap(),
|
2020-08-28 16:10:16 +02:00
|
|
|
"you are needlessly cloning iterator elements",
|
|
|
|
"remove the `map` call",
|
2019-01-15 08:09:47 +02:00
|
|
|
String::new(),
|
|
|
|
Applicability::MachineApplicable,
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2020-06-25 23:41:36 +03:00
|
|
|
fn lint(cx: &LateContext<'_>, replace: Span, root: Span, copied: bool) {
|
2019-01-15 08:09:47 +02:00
|
|
|
let mut applicability = Applicability::MachineApplicable;
|
2019-04-15 14:32:39 -07:00
|
|
|
if copied {
|
|
|
|
span_lint_and_sugg(
|
|
|
|
cx,
|
|
|
|
MAP_CLONE,
|
|
|
|
replace,
|
2020-08-28 16:10:16 +02:00
|
|
|
"you are using an explicit closure for copying elements",
|
|
|
|
"consider calling the dedicated `copied` method",
|
2019-04-15 14:32:39 -07:00
|
|
|
format!(
|
|
|
|
"{}.copied()",
|
|
|
|
snippet_with_applicability(cx, root, "..", &mut applicability)
|
|
|
|
),
|
|
|
|
applicability,
|
|
|
|
)
|
|
|
|
} else {
|
|
|
|
span_lint_and_sugg(
|
|
|
|
cx,
|
|
|
|
MAP_CLONE,
|
|
|
|
replace,
|
2020-08-28 16:10:16 +02:00
|
|
|
"you are using an explicit closure for cloning elements",
|
|
|
|
"consider calling the dedicated `cloned` method",
|
2019-04-15 14:32:39 -07:00
|
|
|
format!(
|
|
|
|
"{}.cloned()",
|
|
|
|
snippet_with_applicability(cx, root, "..", &mut applicability)
|
|
|
|
),
|
|
|
|
applicability,
|
|
|
|
)
|
|
|
|
}
|
2019-01-15 08:09:47 +02:00
|
|
|
}
|