rust/clippy_lints/src/map_clone.rs

150 lines
5.3 KiB
Rust
Raw Normal View History

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
};
use if_chain::if_chain;
2020-01-11 12:37:08 +01:00
use rustc::lint::{LateContext, LateLintPass};
use rustc::ty;
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};
use rustc_span::source_map::Span;
use syntax::ast::Ident;
declare_clippy_lint! {
/// **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();
/// ```
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]);
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() {
return;
}
if_chain! {
2019-09-27 17:16:06 +02:00
if let hir::ExprKind::MethodCall(ref method, _, ref args) = e.kind;
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;
let closure_body = cx.tcx.hir().body(body_id);
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(
hir::BindingAnnotation::Unannotated, .., name, None
2019-09-27 17:16:06 +02:00
) = inner.kind {
if ident_eq(name, closure_expr) {
lint(cx, e.span, args[0].span, true);
}
},
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) => {
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) => {
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) {
let obj_ty = cx.tables.expr_ty(&obj[0]);
if let ty::Ref(_, ty, _) = obj_ty.kind {
let copy = is_copy(cx, ty);
lint(cx, e.span, args[0].span, copy);
} else {
lint_needless_cloning(cx, e.span, args[0].span);
}
2018-11-27 21:14:15 +01: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 {
path.segments.len() == 1 && path.segments[0].ident == name
} else {
false
}
2018-10-02 15:18:56 +02: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",
String::new(),
Applicability::MachineApplicable,
)
}
fn lint(cx: &LateContext<'_, '_>, replace: Span, root: Span, copied: bool) {
let mut applicability = Applicability::MachineApplicable;
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,
)
}
}