2018-10-02 15:13:43 +02:00
|
|
|
use crate::utils::paths;
|
2018-11-27 21:14:15 +01:00
|
|
|
use crate::utils::{
|
2019-08-19 18:30:32 +02:00
|
|
|
is_copy, match_trait_method, match_type, remove_blocks, snippet_with_applicability, span_lint_and_sugg,
|
2018-11-27 21:14:15 +01:00
|
|
|
};
|
2018-10-02 15:13:43 +02:00
|
|
|
use if_chain::if_chain;
|
2020-01-11 12:37:08 +01:00
|
|
|
use rustc::lint::{LateContext, LateLintPass};
|
2019-01-15 07:09:47 +01:00
|
|
|
use rustc::ty;
|
2018-12-29 16:04:45 +01:00
|
|
|
use rustc_errors::Applicability;
|
2020-01-06 17:39:50 +01:00
|
|
|
use rustc_hir as hir;
|
2020-01-11 12:37:08 +01:00
|
|
|
use rustc_session::{declare_lint_pass, declare_tool_lint};
|
2020-01-04 11:00:00 +01:00
|
|
|
use rustc_span::source_map::Span;
|
2018-12-29 16:04:45 +01:00
|
|
|
use syntax::ast::Ident;
|
2018-10-02 15:13:43 +02:00
|
|
|
|
|
|
|
declare_clippy_lint! {
|
2019-03-05 17:50:33 +01:00
|
|
|
/// **What it does:** Checks for usage of `iterator.map(|x| x.clone())` and suggests
|
|
|
|
/// `iterator.cloned()` instead
|
|
|
|
///
|
|
|
|
/// **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 22:43:55 +02:00
|
|
|
declare_lint_pass!(MapClone => [MAP_CLONE]);
|
2018-10-02 15:13:43 +02:00
|
|
|
|
2019-04-08 22:43:55 +02:00
|
|
|
impl<'a, 'tcx> LateLintPass<'a, 'tcx> for MapClone {
|
2019-12-27 08:12:26 +01:00
|
|
|
fn check_expr(&mut self, cx: &LateContext<'_, '_>, e: &hir::Expr<'_>) {
|
2019-08-19 18:30:32 +02:00
|
|
|
if e.span.from_expansion() {
|
2018-10-02 15:13:43 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if_chain! {
|
2019-09-27 17:16:06 +02:00
|
|
|
if let hir::ExprKind::MethodCall(ref method, _, ref args) = e.kind;
|
2018-10-02 15:13:43 +02:00
|
|
|
if args.len() == 2;
|
|
|
|
if method.ident.as_str() == "map";
|
|
|
|
let ty = cx.tables.expr_ty(&args[0]);
|
2019-05-17 23:53:54 +02:00
|
|
|
if match_type(cx, ty, &paths::OPTION) || match_trait_method(cx, e, &paths::ITERATOR);
|
2019-09-27 17:16:06 +02:00
|
|
|
if let hir::ExprKind::Closure(_, _, body_id, _, _) = args[1].kind;
|
2018-12-08 01:56:03 +01:00
|
|
|
let closure_body = cx.tcx.hir().body(body_id);
|
2018-10-02 15:13:43 +02:00
|
|
|
let closure_expr = remove_blocks(&closure_body.value);
|
|
|
|
then {
|
2019-09-27 17:16:06 +02:00
|
|
|
match closure_body.params[0].pat.kind {
|
2018-11-27 21:14:15 +01:00
|
|
|
hir::PatKind::Ref(ref inner, _) => if let hir::PatKind::Binding(
|
2019-02-03 08:12:07 +01:00
|
|
|
hir::BindingAnnotation::Unannotated, .., name, None
|
2019-09-27 17:16:06 +02:00
|
|
|
) = inner.kind {
|
2019-01-15 07:09:47 +01:00
|
|
|
if ident_eq(name, closure_expr) {
|
2019-04-28 20:14:39 +02:00
|
|
|
lint(cx, e.span, args[0].span, true);
|
2019-01-15 07:09:47 +01:00
|
|
|
}
|
2018-10-02 15:13:43 +02:00
|
|
|
},
|
2019-02-03 08:12:07 +01:00
|
|
|
hir::PatKind::Binding(hir::BindingAnnotation::Unannotated, .., name, None) => {
|
2019-09-27 17:16:06 +02:00
|
|
|
match closure_expr.kind {
|
2018-11-27 21:14:15 +01:00
|
|
|
hir::ExprKind::Unary(hir::UnOp::UnDeref, ref inner) => {
|
2019-12-22 10:26:51 +01:00
|
|
|
if ident_eq(name, inner) {
|
|
|
|
if let ty::Ref(..) = cx.tables.expr_ty(inner).kind {
|
|
|
|
lint(cx, e.span, args[0].span, true);
|
|
|
|
}
|
2018-11-27 21:14:15 +01:00
|
|
|
}
|
|
|
|
},
|
|
|
|
hir::ExprKind::MethodCall(ref method, _, ref obj) => {
|
2019-01-15 07:09:47 +01:00
|
|
|
if ident_eq(name, &obj[0]) && method.ident.as_str() == "clone"
|
2019-05-17 23:53:54 +02:00
|
|
|
&& match_trait_method(cx, closure_expr, &paths::CLONE_TRAIT) {
|
2019-01-15 07:09:47 +01:00
|
|
|
|
|
|
|
let obj_ty = cx.tables.expr_ty(&obj[0]);
|
2019-09-26 11:03:36 +02:00
|
|
|
if let ty::Ref(_, ty, _) = obj_ty.kind {
|
2019-04-15 23:39:41 +02:00
|
|
|
let copy = is_copy(cx, ty);
|
2019-04-28 20:14:39 +02:00
|
|
|
lint(cx, e.span, args[0].span, copy);
|
2019-01-15 07:09:47 +01: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 08:12:26 +01:00
|
|
|
fn ident_eq(name: Ident, path: &hir::Expr<'_>) -> bool {
|
2019-09-27 17:16:06 +02:00
|
|
|
if let hir::ExprKind::Path(hir::QPath::Resolved(None, ref path)) = path.kind {
|
2019-01-15 07:09:47 +01: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 07:09:47 +01:00
|
|
|
|
|
|
|
fn lint_needless_cloning(cx: &LateContext<'_, '_>, root: Span, receiver: Span) {
|
|
|
|
span_lint_and_sugg(
|
|
|
|
cx,
|
|
|
|
MAP_CLONE,
|
|
|
|
root.trim_start(receiver).unwrap(),
|
|
|
|
"You are needlessly cloning iterator elements",
|
2020-01-06 07:30:43 +01:00
|
|
|
"Remove the `map` call",
|
2019-01-15 07:09:47 +01:00
|
|
|
String::new(),
|
|
|
|
Applicability::MachineApplicable,
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2019-04-15 23:32:39 +02:00
|
|
|
fn lint(cx: &LateContext<'_, '_>, replace: Span, root: Span, copied: bool) {
|
2019-01-15 07:09:47 +01:00
|
|
|
let mut applicability = Applicability::MachineApplicable;
|
2019-04-15 23:32:39 +02:00
|
|
|
if copied {
|
|
|
|
span_lint_and_sugg(
|
|
|
|
cx,
|
|
|
|
MAP_CLONE,
|
|
|
|
replace,
|
|
|
|
"You are using an explicit closure for copying elements",
|
|
|
|
"Consider calling the dedicated `copied` method",
|
|
|
|
format!(
|
|
|
|
"{}.copied()",
|
|
|
|
snippet_with_applicability(cx, root, "..", &mut applicability)
|
|
|
|
),
|
|
|
|
applicability,
|
|
|
|
)
|
|
|
|
} else {
|
|
|
|
span_lint_and_sugg(
|
|
|
|
cx,
|
|
|
|
MAP_CLONE,
|
|
|
|
replace,
|
|
|
|
"You are using an explicit closure for cloning elements",
|
|
|
|
"Consider calling the dedicated `cloned` method",
|
|
|
|
format!(
|
|
|
|
"{}.cloned()",
|
|
|
|
snippet_with_applicability(cx, root, "..", &mut applicability)
|
|
|
|
),
|
|
|
|
applicability,
|
|
|
|
)
|
|
|
|
}
|
2019-01-15 07:09:47 +01:00
|
|
|
}
|