2016-04-14 11:13:15 -05:00
|
|
|
use rustc::hir::*;
|
2016-02-20 10:35:07 -06:00
|
|
|
use rustc::lint::*;
|
2017-06-10 21:57:25 -05:00
|
|
|
use rustc::ty;
|
2016-02-20 14:15:05 -06:00
|
|
|
use syntax::ast::LitKind;
|
2018-04-12 01:21:03 -05:00
|
|
|
use syntax_pos::Span;
|
2018-05-30 03:15:50 -05:00
|
|
|
use crate::utils::paths;
|
|
|
|
use crate::utils::{in_macro, is_expn_of, last_path_segment, match_def_path, match_type, opt_def_id, resolve_node, snippet, span_lint_and_then, walk_ptrs_ty};
|
2016-02-20 10:35:07 -06:00
|
|
|
|
2016-08-06 02:55:04 -05:00
|
|
|
/// **What it does:** Checks for the use of `format!("string literal with no
|
|
|
|
/// argument")` and `format!("{}", foo)` where `foo` is a string.
|
2016-02-20 10:35:07 -06:00
|
|
|
///
|
2016-08-06 02:55:04 -05:00
|
|
|
/// **Why is this bad?** There is no point of doing that. `format!("too")` can
|
|
|
|
/// be replaced by `"foo".to_owned()` if you really need a `String`. The even
|
|
|
|
/// worse `&format!("foo")` is often encountered in the wild. `format!("{}",
|
|
|
|
/// foo)` can be replaced by `foo.clone()` if `foo: String` or `foo.to_owned()`
|
2016-11-24 03:10:22 -06:00
|
|
|
/// if `foo: &str`.
|
2016-02-20 10:35:07 -06:00
|
|
|
///
|
|
|
|
/// **Known problems:** None.
|
|
|
|
///
|
2016-08-06 02:55:04 -05:00
|
|
|
/// **Examples:**
|
|
|
|
/// ```rust
|
|
|
|
/// format!("foo")
|
|
|
|
/// format!("{}", foo)
|
|
|
|
/// ```
|
2018-03-28 08:24:26 -05:00
|
|
|
declare_clippy_lint! {
|
2016-02-20 10:35:07 -06:00
|
|
|
pub USELESS_FORMAT,
|
2018-03-28 08:24:26 -05:00
|
|
|
complexity,
|
2016-02-20 10:35:07 -06:00
|
|
|
"useless use of `format!`"
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Copy, Clone, Debug)]
|
2016-06-10 09:17:20 -05:00
|
|
|
pub struct Pass;
|
2016-02-20 10:35:07 -06:00
|
|
|
|
2016-06-10 09:17:20 -05:00
|
|
|
impl LintPass for Pass {
|
2016-02-20 10:35:07 -06:00
|
|
|
fn get_lints(&self) -> LintArray {
|
|
|
|
lint_array![USELESS_FORMAT]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-12-07 06:13:40 -06:00
|
|
|
impl<'a, 'tcx> LateLintPass<'a, 'tcx> for Pass {
|
|
|
|
fn check_expr(&mut self, cx: &LateContext<'a, 'tcx>, expr: &'tcx Expr) {
|
2017-03-31 17:14:04 -05:00
|
|
|
if let Some(span) = is_expn_of(expr.span, "format") {
|
2018-04-05 00:52:26 -05:00
|
|
|
if in_macro(span) {
|
|
|
|
return;
|
|
|
|
}
|
2016-02-20 14:15:05 -06:00
|
|
|
match expr.node {
|
2018-04-12 01:21:03 -05:00
|
|
|
|
2016-02-20 14:15:05 -06:00
|
|
|
// `format!("{}", foo)` expansion
|
|
|
|
ExprCall(ref fun, ref args) => {
|
2017-10-23 14:18:02 -05:00
|
|
|
if_chain! {
|
|
|
|
if let ExprPath(ref qpath) = fun.node;
|
2018-04-12 01:21:03 -05:00
|
|
|
if args.len() == 3;
|
2017-10-23 14:18:02 -05:00
|
|
|
if let Some(fun_def_id) = opt_def_id(resolve_node(cx, qpath, fun.hir_id));
|
2018-04-12 01:21:03 -05:00
|
|
|
if match_def_path(cx.tcx, fun_def_id, &paths::FMT_ARGUMENTS_NEWV1FORMATTED);
|
|
|
|
if check_single_piece(&args[0]);
|
|
|
|
if let Some(format_arg) = get_single_string_arg(cx, &args[1]);
|
|
|
|
if check_unformatted(&args[2]);
|
2017-10-23 14:18:02 -05:00
|
|
|
then {
|
2018-04-12 01:21:03 -05:00
|
|
|
let sugg = format!("{}.to_string()", snippet(cx, format_arg, "<arg>").into_owned());
|
2018-03-17 00:58:56 -05:00
|
|
|
span_lint_and_then(cx, USELESS_FORMAT, span, "useless use of `format!`", |db| {
|
|
|
|
db.span_suggestion(expr.span, "consider using .to_string()", sugg);
|
|
|
|
});
|
2017-10-23 14:18:02 -05:00
|
|
|
}
|
|
|
|
}
|
2016-12-20 11:21:30 -06:00
|
|
|
},
|
2016-02-20 14:15:05 -06:00
|
|
|
// `format!("foo")` expansion contains `match () { () => [], }`
|
2017-09-05 04:33:04 -05:00
|
|
|
ExprMatch(ref matchee, _, _) => if let ExprTup(ref tup) = matchee.node {
|
|
|
|
if tup.is_empty() {
|
2018-03-17 00:58:56 -05:00
|
|
|
let sugg = format!("{}.to_string()", snippet(cx, expr.span, "<expr>").into_owned());
|
|
|
|
span_lint_and_then(cx, USELESS_FORMAT, span, "useless use of `format!`", |db| {
|
|
|
|
db.span_suggestion(span, "consider using .to_string()", sugg);
|
|
|
|
});
|
2016-02-20 14:15:05 -06:00
|
|
|
}
|
2016-12-20 11:21:30 -06:00
|
|
|
},
|
2016-02-20 14:15:05 -06:00
|
|
|
_ => (),
|
2016-02-20 10:35:07 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-02-20 14:15:05 -06:00
|
|
|
|
2017-09-29 11:36:03 -05:00
|
|
|
/// Checks if the expressions matches `&[""]`
|
2018-04-12 01:21:03 -05:00
|
|
|
fn check_single_piece(expr: &Expr) -> bool {
|
2017-10-23 14:18:02 -05:00
|
|
|
if_chain! {
|
|
|
|
if let ExprAddrOf(_, ref expr) = expr.node; // &[""]
|
|
|
|
if let ExprArray(ref exprs) = expr.node; // [""]
|
|
|
|
if exprs.len() == 1;
|
|
|
|
if let ExprLit(ref lit) = exprs[0].node;
|
|
|
|
if let LitKind::Str(ref lit, _) = lit.node;
|
|
|
|
then {
|
|
|
|
return lit.as_str().is_empty();
|
|
|
|
}
|
|
|
|
}
|
2017-09-29 11:36:03 -05:00
|
|
|
|
|
|
|
false
|
2016-02-20 14:15:05 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Checks if the expressions matches
|
2017-04-10 08:10:29 -05:00
|
|
|
/// ```rust,ignore
|
2018-04-12 01:21:03 -05:00
|
|
|
/// &match (&"arg",) {
|
2017-08-09 02:30:56 -05:00
|
|
|
/// (__arg0,) => [::std::fmt::ArgumentV1::new(__arg0,
|
|
|
|
/// ::std::fmt::Display::fmt)],
|
2017-04-10 08:10:29 -05:00
|
|
|
/// }
|
2016-02-20 14:15:05 -06:00
|
|
|
/// ```
|
2018-04-12 01:21:03 -05:00
|
|
|
/// and that type of `__arg0` is `&str` or `String`
|
|
|
|
/// then returns the span of first element of the matched tuple
|
|
|
|
fn get_single_string_arg(cx: &LateContext, expr: &Expr) -> Option<Span> {
|
2017-10-23 14:18:02 -05:00
|
|
|
if_chain! {
|
|
|
|
if let ExprAddrOf(_, ref expr) = expr.node;
|
2018-04-12 01:21:03 -05:00
|
|
|
if let ExprMatch(ref match_expr, ref arms, _) = expr.node;
|
2017-10-23 14:18:02 -05:00
|
|
|
if arms.len() == 1;
|
|
|
|
if arms[0].pats.len() == 1;
|
|
|
|
if let PatKind::Tuple(ref pat, None) = arms[0].pats[0].node;
|
|
|
|
if pat.len() == 1;
|
|
|
|
if let ExprArray(ref exprs) = arms[0].body.node;
|
|
|
|
if exprs.len() == 1;
|
|
|
|
if let ExprCall(_, ref args) = exprs[0].node;
|
|
|
|
if args.len() == 2;
|
|
|
|
if let ExprPath(ref qpath) = args[1].node;
|
|
|
|
if let Some(fun_def_id) = opt_def_id(resolve_node(cx, qpath, args[1].hir_id));
|
|
|
|
if match_def_path(cx.tcx, fun_def_id, &paths::DISPLAY_FMT_METHOD);
|
|
|
|
then {
|
|
|
|
let ty = walk_ptrs_ty(cx.tables.pat_ty(&pat[0]));
|
2018-04-12 01:21:03 -05:00
|
|
|
if ty.sty == ty::TyStr || match_type(cx, ty, &paths::STRING) {
|
|
|
|
if let ExprTup(ref values) = match_expr.node {
|
|
|
|
return Some(values[0].span);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
None
|
|
|
|
}
|
2017-11-04 14:55:56 -05:00
|
|
|
|
2018-04-12 01:21:03 -05:00
|
|
|
/// Checks if the expression matches
|
|
|
|
/// ```rust,ignore
|
|
|
|
/// &[_ {
|
|
|
|
/// format: _ {
|
|
|
|
/// width: _::Implied,
|
|
|
|
/// ...
|
|
|
|
/// },
|
|
|
|
/// ...,
|
|
|
|
/// }]
|
|
|
|
/// ```
|
|
|
|
fn check_unformatted(expr: &Expr) -> bool {
|
|
|
|
if_chain! {
|
|
|
|
if let ExprAddrOf(_, ref expr) = expr.node;
|
|
|
|
if let ExprArray(ref exprs) = expr.node;
|
|
|
|
if exprs.len() == 1;
|
|
|
|
if let ExprStruct(_, ref fields, _) = exprs[0].node;
|
2018-05-29 03:56:58 -05:00
|
|
|
if let Some(format_field) = fields.iter().find(|f| f.ident.name == "format");
|
2018-04-12 01:21:03 -05:00
|
|
|
if let ExprStruct(_, ref fields, _) = format_field.expr.node;
|
2018-05-29 03:56:58 -05:00
|
|
|
if let Some(align_field) = fields.iter().find(|f| f.ident.name == "width");
|
2018-04-12 01:21:03 -05:00
|
|
|
if let ExprPath(ref qpath) = align_field.expr.node;
|
|
|
|
if last_path_segment(qpath).name == "Implied";
|
|
|
|
then {
|
|
|
|
return true;
|
2017-10-23 14:18:02 -05:00
|
|
|
}
|
|
|
|
}
|
2016-02-20 14:15:05 -06:00
|
|
|
|
|
|
|
false
|
|
|
|
}
|