2018-09-15 02:21:58 -05:00
|
|
|
use crate::rustc::lint::{LateContext, LateLintPass, LintArray, LintPass};
|
|
|
|
use crate::rustc::{declare_tool_lint, lint_array};
|
|
|
|
use crate::rustc::hir::*;
|
|
|
|
use crate::syntax::ast::NodeId;
|
2018-05-30 03:15:50 -05:00
|
|
|
use crate::utils::{in_macro, match_def_path, match_trait_method, same_tys, snippet, span_lint_and_then};
|
|
|
|
use crate::utils::{opt_def_id, paths, resolve_node};
|
2017-02-04 22:41:09 -06:00
|
|
|
|
2018-07-29 23:02:05 -05:00
|
|
|
/// **What it does:** Checks for always-identical `Into`/`From`/`IntoIter` conversions.
|
2017-02-04 22:41:09 -06:00
|
|
|
///
|
|
|
|
/// **Why is this bad?** Redundant code.
|
|
|
|
///
|
|
|
|
/// **Known problems:** None.
|
|
|
|
///
|
|
|
|
/// **Example:**
|
|
|
|
/// ```rust
|
|
|
|
/// // format!() returns a `String`
|
|
|
|
/// let s: String = format!("hello").into();
|
|
|
|
/// ```
|
2018-03-28 08:24:26 -05:00
|
|
|
declare_clippy_lint! {
|
2017-02-04 22:41:09 -06:00
|
|
|
pub IDENTITY_CONVERSION,
|
2018-03-28 08:24:26 -05:00
|
|
|
complexity,
|
2018-07-29 23:02:05 -05:00
|
|
|
"using always-identical `Into`/`From`/`IntoIter` conversions"
|
2017-02-04 22:41:09 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Default)]
|
|
|
|
pub struct IdentityConversion {
|
|
|
|
try_desugar_arm: Vec<NodeId>,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl LintPass for IdentityConversion {
|
|
|
|
fn get_lints(&self) -> LintArray {
|
|
|
|
lint_array!(IDENTITY_CONVERSION)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<'a, 'tcx> LateLintPass<'a, 'tcx> for IdentityConversion {
|
|
|
|
fn check_expr(&mut self, cx: &LateContext<'a, 'tcx>, e: &'tcx Expr) {
|
|
|
|
if in_macro(e.span) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if Some(&e.id) == self.try_desugar_arm.last() {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
match e.node {
|
2018-07-12 02:30:57 -05:00
|
|
|
ExprKind::Match(_, ref arms, MatchSource::TryDesugar) => {
|
2017-02-04 22:41:09 -06:00
|
|
|
let e = match arms[0].body.node {
|
2018-07-12 02:30:57 -05:00
|
|
|
ExprKind::Ret(Some(ref e)) | ExprKind::Break(_, Some(ref e)) => e,
|
2017-02-04 22:41:09 -06:00
|
|
|
_ => return,
|
|
|
|
};
|
2018-07-12 02:30:57 -05:00
|
|
|
if let ExprKind::Call(_, ref args) = e.node {
|
2017-02-04 22:41:09 -06:00
|
|
|
self.try_desugar_arm.push(args[0].id);
|
|
|
|
} else {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2018-07-12 02:30:57 -05:00
|
|
|
ExprKind::MethodCall(ref name, .., ref args) => {
|
2018-06-28 08:46:58 -05:00
|
|
|
if match_trait_method(cx, e, &paths::INTO[..]) && &*name.ident.as_str() == "into" {
|
2017-02-04 22:41:09 -06:00
|
|
|
let a = cx.tables.expr_ty(e);
|
|
|
|
let b = cx.tables.expr_ty(&args[0]);
|
|
|
|
if same_tys(cx, a, b) {
|
|
|
|
let sugg = snippet(cx, args[0].span, "<expr>").into_owned();
|
|
|
|
span_lint_and_then(cx, IDENTITY_CONVERSION, e.span, "identical conversion", |db| {
|
|
|
|
db.span_suggestion(e.span, "consider removing `.into()`", sugg);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
2018-07-29 23:02:05 -05:00
|
|
|
if match_trait_method(cx, e, &paths::INTO_ITERATOR) && &*name.ident.as_str() == "into_iter" {
|
|
|
|
let a = cx.tables.expr_ty(e);
|
|
|
|
let b = cx.tables.expr_ty(&args[0]);
|
|
|
|
if same_tys(cx, a, b) {
|
|
|
|
let sugg = snippet(cx, args[0].span, "<expr>").into_owned();
|
|
|
|
span_lint_and_then(cx, IDENTITY_CONVERSION, e.span, "identical conversion", |db| {
|
|
|
|
db.span_suggestion(e.span, "consider removing `.into_iter()`", sugg);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
2017-02-04 22:41:09 -06:00
|
|
|
},
|
|
|
|
|
2018-07-12 02:30:57 -05:00
|
|
|
ExprKind::Call(ref path, ref args) => if let ExprKind::Path(ref qpath) = path.node {
|
2017-02-04 22:41:09 -06:00
|
|
|
if let Some(def_id) = opt_def_id(resolve_node(cx, qpath, path.hir_id)) {
|
|
|
|
if match_def_path(cx.tcx, def_id, &paths::FROM_FROM[..]) {
|
|
|
|
let a = cx.tables.expr_ty(e);
|
|
|
|
let b = cx.tables.expr_ty(&args[0]);
|
|
|
|
if same_tys(cx, a, b) {
|
2018-08-06 22:37:11 -05:00
|
|
|
let sugg = snippet(cx, args[0].span.source_callsite(), "<expr>").into_owned();
|
2017-02-04 22:41:09 -06:00
|
|
|
let sugg_msg = format!("consider removing `{}()`", snippet(cx, path.span, "From::from"));
|
|
|
|
span_lint_and_then(cx, IDENTITY_CONVERSION, e.span, "identical conversion", |db| {
|
|
|
|
db.span_suggestion(e.span, &sugg_msg, sugg);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
_ => {},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn check_expr_post(&mut self, _: &LateContext<'a, 'tcx>, e: &'tcx Expr) {
|
|
|
|
if Some(&e.id) == self.try_desugar_arm.last() {
|
|
|
|
self.try_desugar_arm.pop();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|