2018-10-02 13:13:43 +00:00
|
|
|
use crate::utils::paths;
|
2018-11-27 20:14:15 +00:00
|
|
|
use crate::utils::{
|
|
|
|
in_macro, match_trait_method, match_type, remove_blocks, snippet_with_applicability, span_lint_and_sugg,
|
|
|
|
};
|
2018-10-02 13:13:43 +00:00
|
|
|
use if_chain::if_chain;
|
2018-12-29 15:04:45 +00:00
|
|
|
use rustc::hir;
|
|
|
|
use rustc::lint::{LateContext, LateLintPass, LintArray, LintPass};
|
|
|
|
use rustc::{declare_tool_lint, lint_array};
|
|
|
|
use rustc_errors::Applicability;
|
|
|
|
use syntax::ast::Ident;
|
|
|
|
use syntax::source_map::Span;
|
2018-10-02 13:13:43 +00:00
|
|
|
|
|
|
|
#[derive(Clone)]
|
|
|
|
pub struct Pass;
|
|
|
|
|
|
|
|
/// **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
|
|
|
|
///
|
2018-01-17 18:40:47 +00:00
|
|
|
/// **Known problems:** Sometimes `.cloned()` requires stricter trait
|
|
|
|
/// bound than `.map(|e| e.clone())` (which works because of the coercion).
|
|
|
|
/// See [#498](https://github.com/rust-lang-nursery/rust-clippy/issues/498).
|
2018-10-02 13:13:43 +00:00
|
|
|
///
|
|
|
|
/// **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();
|
|
|
|
/// ```
|
|
|
|
declare_clippy_lint! {
|
|
|
|
pub MAP_CLONE,
|
|
|
|
style,
|
|
|
|
"using `iterator.map(|x| x.clone())`, or dereferencing closures for `Copy` types"
|
|
|
|
}
|
|
|
|
|
|
|
|
impl LintPass for Pass {
|
|
|
|
fn get_lints(&self) -> LintArray {
|
|
|
|
lint_array!(MAP_CLONE)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<'a, 'tcx> LateLintPass<'a, 'tcx> for Pass {
|
|
|
|
fn check_expr(&mut self, cx: &LateContext<'_, '_>, e: &hir::Expr) {
|
|
|
|
if in_macro(e.span) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if_chain! {
|
|
|
|
if let hir::ExprKind::MethodCall(ref method, _, ref args) = e.node;
|
|
|
|
if args.len() == 2;
|
|
|
|
if method.ident.as_str() == "map";
|
|
|
|
let ty = cx.tables.expr_ty(&args[0]);
|
|
|
|
if match_type(cx, ty, &paths::OPTION) || match_trait_method(cx, e, &paths::ITERATOR);
|
|
|
|
if let hir::ExprKind::Closure(_, _, body_id, _, _) = args[1].node;
|
2018-12-08 00:56:03 +00:00
|
|
|
let closure_body = cx.tcx.hir().body(body_id);
|
2018-10-02 13:13:43 +00:00
|
|
|
let closure_expr = remove_blocks(&closure_body.value);
|
|
|
|
then {
|
|
|
|
match closure_body.arguments[0].pat.node {
|
2018-11-27 20:14:15 +00:00
|
|
|
hir::PatKind::Ref(ref inner, _) => if let hir::PatKind::Binding(
|
|
|
|
hir::BindingAnnotation::Unannotated, _, name, None
|
|
|
|
) = inner.node {
|
2018-10-02 13:13:43 +00:00
|
|
|
lint(cx, e.span, args[0].span, name, closure_expr);
|
|
|
|
},
|
2018-11-27 20:14:15 +00:00
|
|
|
hir::PatKind::Binding(hir::BindingAnnotation::Unannotated, _, name, None) => {
|
|
|
|
match closure_expr.node {
|
|
|
|
hir::ExprKind::Unary(hir::UnOp::UnDeref, ref inner) => {
|
2018-11-27 20:49:09 +00:00
|
|
|
if !cx.tables.expr_ty(inner).is_box() {
|
2018-11-27 20:14:15 +00:00
|
|
|
lint(cx, e.span, args[0].span, name, inner);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
hir::ExprKind::MethodCall(ref method, _, ref obj) => {
|
|
|
|
if method.ident.as_str() == "clone"
|
|
|
|
&& match_trait_method(cx, closure_expr, &paths::CLONE_TRAIT) {
|
|
|
|
lint(cx, e.span, args[0].span, name, &obj[0]);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
_ => {},
|
2018-10-02 13:13:43 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
_ => {},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn lint(cx: &LateContext<'_, '_>, replace: Span, root: Span, name: Ident, path: &hir::Expr) {
|
|
|
|
if let hir::ExprKind::Path(hir::QPath::Resolved(None, ref path)) = path.node {
|
|
|
|
if path.segments.len() == 1 && path.segments[0].ident == name {
|
2018-11-27 14:13:57 +00:00
|
|
|
let mut applicability = Applicability::MachineApplicable;
|
2018-10-02 13:13:43 +00:00
|
|
|
span_lint_and_sugg(
|
|
|
|
cx,
|
|
|
|
MAP_CLONE,
|
|
|
|
replace,
|
|
|
|
"You are using an explicit closure for cloning elements",
|
|
|
|
"Consider calling the dedicated `cloned` method",
|
2018-11-27 20:14:15 +00:00
|
|
|
format!(
|
|
|
|
"{}.cloned()",
|
|
|
|
snippet_with_applicability(cx, root, "..", &mut applicability)
|
|
|
|
),
|
2018-11-27 14:13:57 +00:00
|
|
|
applicability,
|
2018-10-02 13:13:43 +00:00
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
2018-10-02 13:18:56 +00:00
|
|
|
}
|