2018-05-30 08:15:50 +00:00
|
|
|
use crate::utils::paths;
|
2018-11-27 20:14:15 +00:00
|
|
|
use crate::utils::{
|
2019-05-14 08:06:21 +00:00
|
|
|
in_macro_or_desugar, is_expn_of, last_path_segment, match_def_path, match_type, resolve_node, snippet,
|
|
|
|
span_lint_and_then, walk_ptrs_ty,
|
2018-11-27 20:14:15 +00:00
|
|
|
};
|
|
|
|
use if_chain::if_chain;
|
2018-12-29 15:04:45 +00:00
|
|
|
use rustc::hir::*;
|
2019-02-24 05:30:08 +00:00
|
|
|
use rustc::lint::{LateContext, LateLintPass, LintArray, LintContext, LintPass};
|
2018-12-29 15:04:45 +00:00
|
|
|
use rustc::ty;
|
2019-04-08 20:43:55 +00:00
|
|
|
use rustc::{declare_lint_pass, declare_tool_lint};
|
2018-12-29 15:04:45 +00:00
|
|
|
use rustc_errors::Applicability;
|
|
|
|
use syntax::ast::LitKind;
|
2019-02-24 05:30:08 +00:00
|
|
|
use syntax::source_map::Span;
|
2016-02-20 16:35:07 +00:00
|
|
|
|
2018-03-28 13:24:26 +00:00
|
|
|
declare_clippy_lint! {
|
2019-03-05 16:50:33 +00:00
|
|
|
/// **What it does:** Checks for the use of `format!("string literal with no
|
|
|
|
/// argument")` and `format!("{}", foo)` where `foo` is a string.
|
|
|
|
///
|
|
|
|
/// **Why is this bad?** There is no point of doing that. `format!("foo")` 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()`
|
|
|
|
/// if `foo: &str`.
|
|
|
|
///
|
|
|
|
/// **Known problems:** None.
|
|
|
|
///
|
|
|
|
/// **Examples:**
|
|
|
|
/// ```rust
|
|
|
|
/// format!("foo")
|
|
|
|
/// format!("{}", foo)
|
|
|
|
/// ```
|
2016-02-20 16:35:07 +00:00
|
|
|
pub USELESS_FORMAT,
|
2018-03-28 13:24:26 +00:00
|
|
|
complexity,
|
2016-02-20 16:35:07 +00:00
|
|
|
"useless use of `format!`"
|
|
|
|
}
|
|
|
|
|
2019-04-08 20:43:55 +00:00
|
|
|
declare_lint_pass!(UselessFormat => [USELESS_FORMAT]);
|
2016-02-20 16:35:07 +00:00
|
|
|
|
2019-04-08 20:43:55 +00:00
|
|
|
impl<'a, 'tcx> LateLintPass<'a, 'tcx> for UselessFormat {
|
2016-12-07 12:13:40 +00:00
|
|
|
fn check_expr(&mut self, cx: &LateContext<'a, 'tcx>, expr: &'tcx Expr) {
|
2019-05-17 21:53:54 +00:00
|
|
|
if let Some(span) = is_expn_of(expr.span, "format") {
|
2019-05-12 03:40:05 +00:00
|
|
|
if in_macro_or_desugar(span) {
|
2018-04-05 05:52:26 +00:00
|
|
|
return;
|
|
|
|
}
|
2016-02-20 20:15:05 +00:00
|
|
|
match expr.node {
|
|
|
|
// `format!("{}", foo)` expansion
|
2018-07-12 07:30:57 +00:00
|
|
|
ExprKind::Call(ref fun, ref args) => {
|
2017-10-23 19:18:02 +00:00
|
|
|
if_chain! {
|
2018-07-12 07:30:57 +00:00
|
|
|
if let ExprKind::Path(ref qpath) = fun.node;
|
2019-03-08 13:14:41 +00:00
|
|
|
if let Some(fun_def_id) = resolve_node(cx, qpath, fun.hir_id).opt_def_id();
|
2019-05-17 21:53:54 +00:00
|
|
|
let new_v1 = match_def_path(cx, fun_def_id, &paths::FMT_ARGUMENTS_NEWV1);
|
2019-05-13 23:34:08 +00:00
|
|
|
let new_v1_fmt = match_def_path(cx,
|
2019-01-19 12:13:06 +00:00
|
|
|
fun_def_id,
|
2019-05-17 21:53:54 +00:00
|
|
|
&paths::FMT_ARGUMENTS_NEWV1FORMATTED
|
2019-01-19 12:13:06 +00:00
|
|
|
);
|
|
|
|
if new_v1 || new_v1_fmt;
|
2018-04-12 06:21:03 +00:00
|
|
|
if check_single_piece(&args[0]);
|
|
|
|
if let Some(format_arg) = get_single_string_arg(cx, &args[1]);
|
2019-01-19 12:13:06 +00:00
|
|
|
if new_v1 || check_unformatted(&args[2]);
|
2018-10-03 18:59:59 +00:00
|
|
|
if let ExprKind::AddrOf(_, ref format_arg) = format_arg.node;
|
2017-10-23 19:18:02 +00:00
|
|
|
then {
|
2018-10-03 18:59:59 +00:00
|
|
|
let (message, sugg) = if_chain! {
|
2018-10-04 14:34:41 +00:00
|
|
|
if let ExprKind::MethodCall(ref path, _, _) = format_arg.node;
|
2019-05-22 04:58:27 +00:00
|
|
|
if path.ident.as_interned_str().as_symbol() == sym!(to_string);
|
2018-10-03 18:59:59 +00:00
|
|
|
then {
|
|
|
|
("`to_string()` is enough",
|
|
|
|
snippet(cx, format_arg.span, "<arg>").to_string())
|
|
|
|
} else {
|
|
|
|
("consider using .to_string()",
|
|
|
|
format!("{}.to_string()", snippet(cx, format_arg.span, "<arg>")))
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2019-02-24 05:30:08 +00:00
|
|
|
span_useless_format(cx, span, message, sugg);
|
2017-10-23 19:18:02 +00:00
|
|
|
}
|
|
|
|
}
|
2016-12-20 17:21:30 +00:00
|
|
|
},
|
2016-02-20 20:15:05 +00:00
|
|
|
// `format!("foo")` expansion contains `match () { () => [], }`
|
2018-11-27 20:14:15 +00:00
|
|
|
ExprKind::Match(ref matchee, _, _) => {
|
|
|
|
if let ExprKind::Tup(ref tup) = matchee.node {
|
|
|
|
if tup.is_empty() {
|
2019-04-09 14:15:48 +00:00
|
|
|
let actual_snippet = snippet(cx, expr.span, "<expr>").to_string();
|
|
|
|
let actual_snippet = actual_snippet.replace("{{}}", "{}");
|
|
|
|
let sugg = format!("{}.to_string()", actual_snippet);
|
2019-02-24 05:30:08 +00:00
|
|
|
span_useless_format(cx, span, "consider using .to_string()", sugg);
|
2018-11-27 20:14:15 +00:00
|
|
|
}
|
2016-02-20 20:15:05 +00:00
|
|
|
}
|
2016-12-20 17:21:30 +00:00
|
|
|
},
|
2016-02-20 20:15:05 +00:00
|
|
|
_ => (),
|
2016-02-20 16:35:07 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-02-20 20:15:05 +00:00
|
|
|
|
2019-06-12 03:07:48 +00:00
|
|
|
fn span_useless_format<T: LintContext>(cx: &T, span: Span, help: &str, mut sugg: String) {
|
2019-02-24 05:30:08 +00:00
|
|
|
let to_replace = span.source_callsite();
|
|
|
|
|
|
|
|
// The callsite span contains the statement semicolon for some reason.
|
|
|
|
let snippet = snippet(cx, to_replace, "..");
|
|
|
|
if snippet.ends_with(';') {
|
|
|
|
sugg.push(';');
|
|
|
|
}
|
|
|
|
|
|
|
|
span_lint_and_then(cx, USELESS_FORMAT, span, "useless use of `format!`", |db| {
|
|
|
|
db.span_suggestion(
|
|
|
|
to_replace,
|
|
|
|
help,
|
|
|
|
sugg,
|
|
|
|
Applicability::MachineApplicable, // snippet
|
|
|
|
);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2017-09-29 16:36:03 +00:00
|
|
|
/// Checks if the expressions matches `&[""]`
|
2018-04-12 06:21:03 +00:00
|
|
|
fn check_single_piece(expr: &Expr) -> bool {
|
2017-10-23 19:18:02 +00:00
|
|
|
if_chain! {
|
2018-07-12 07:30:57 +00:00
|
|
|
if let ExprKind::AddrOf(_, ref expr) = expr.node; // &[""]
|
|
|
|
if let ExprKind::Array(ref exprs) = expr.node; // [""]
|
2017-10-23 19:18:02 +00:00
|
|
|
if exprs.len() == 1;
|
2018-07-12 07:30:57 +00:00
|
|
|
if let ExprKind::Lit(ref lit) = exprs[0].node;
|
2017-10-23 19:18:02 +00:00
|
|
|
if let LitKind::Str(ref lit, _) = lit.node;
|
|
|
|
then {
|
|
|
|
return lit.as_str().is_empty();
|
|
|
|
}
|
|
|
|
}
|
2017-09-29 16:36:03 +00:00
|
|
|
|
|
|
|
false
|
2016-02-20 20:15:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Checks if the expressions matches
|
2017-04-10 13:10:29 +00:00
|
|
|
/// ```rust,ignore
|
2018-04-12 06:21:03 +00:00
|
|
|
/// &match (&"arg",) {
|
2017-08-09 07:30:56 +00:00
|
|
|
/// (__arg0,) => [::std::fmt::ArgumentV1::new(__arg0,
|
|
|
|
/// ::std::fmt::Display::fmt)],
|
2017-04-10 13:10:29 +00:00
|
|
|
/// }
|
2016-02-20 20:15:05 +00:00
|
|
|
/// ```
|
2018-10-03 18:59:59 +00:00
|
|
|
/// and that the type of `__arg0` is `&str` or `String`,
|
|
|
|
/// then returns the span of first element of the matched tuple.
|
|
|
|
fn get_single_string_arg<'a>(cx: &LateContext<'_, '_>, expr: &'a Expr) -> Option<&'a Expr> {
|
2017-10-23 19:18:02 +00:00
|
|
|
if_chain! {
|
2018-07-12 07:30:57 +00:00
|
|
|
if let ExprKind::AddrOf(_, ref expr) = expr.node;
|
|
|
|
if let ExprKind::Match(ref match_expr, ref arms, _) = expr.node;
|
2017-10-23 19:18:02 +00: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;
|
2018-07-12 07:30:57 +00:00
|
|
|
if let ExprKind::Array(ref exprs) = arms[0].body.node;
|
2017-10-23 19:18:02 +00:00
|
|
|
if exprs.len() == 1;
|
2018-07-12 07:30:57 +00:00
|
|
|
if let ExprKind::Call(_, ref args) = exprs[0].node;
|
2017-10-23 19:18:02 +00:00
|
|
|
if args.len() == 2;
|
2018-07-12 07:30:57 +00:00
|
|
|
if let ExprKind::Path(ref qpath) = args[1].node;
|
2019-03-08 13:14:41 +00:00
|
|
|
if let Some(fun_def_id) = resolve_node(cx, qpath, args[1].hir_id).opt_def_id();
|
2019-05-17 21:53:54 +00:00
|
|
|
if match_def_path(cx, fun_def_id, &paths::DISPLAY_FMT_METHOD);
|
2017-10-23 19:18:02 +00:00
|
|
|
then {
|
|
|
|
let ty = walk_ptrs_ty(cx.tables.pat_ty(&pat[0]));
|
2019-05-17 21:53:54 +00:00
|
|
|
if ty.sty == ty::Str || match_type(cx, ty, &paths::STRING) {
|
2018-07-12 07:30:57 +00:00
|
|
|
if let ExprKind::Tup(ref values) = match_expr.node {
|
2018-10-03 18:59:59 +00:00
|
|
|
return Some(&values[0]);
|
2018-04-12 06:21:03 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
None
|
|
|
|
}
|
2017-11-04 19:55:56 +00:00
|
|
|
|
2018-04-12 06:21:03 +00:00
|
|
|
/// Checks if the expression matches
|
|
|
|
/// ```rust,ignore
|
|
|
|
/// &[_ {
|
|
|
|
/// format: _ {
|
|
|
|
/// width: _::Implied,
|
|
|
|
/// ...
|
|
|
|
/// },
|
|
|
|
/// ...,
|
|
|
|
/// }]
|
|
|
|
/// ```
|
|
|
|
fn check_unformatted(expr: &Expr) -> bool {
|
|
|
|
if_chain! {
|
2018-07-12 07:30:57 +00:00
|
|
|
if let ExprKind::AddrOf(_, ref expr) = expr.node;
|
|
|
|
if let ExprKind::Array(ref exprs) = expr.node;
|
2018-04-12 06:21:03 +00:00
|
|
|
if exprs.len() == 1;
|
2018-07-12 07:30:57 +00:00
|
|
|
if let ExprKind::Struct(_, ref fields, _) = exprs[0].node;
|
2019-05-17 21:53:54 +00:00
|
|
|
if let Some(format_field) = fields.iter().find(|f| f.ident.name == sym!(format));
|
2018-07-12 07:30:57 +00:00
|
|
|
if let ExprKind::Struct(_, ref fields, _) = format_field.expr.node;
|
2019-05-17 21:53:54 +00:00
|
|
|
if let Some(width_field) = fields.iter().find(|f| f.ident.name == sym!(width));
|
2018-10-02 21:55:25 +00:00
|
|
|
if let ExprKind::Path(ref width_qpath) = width_field.expr.node;
|
2019-05-17 21:53:54 +00:00
|
|
|
if last_path_segment(width_qpath).ident.name == sym!(Implied);
|
|
|
|
if let Some(precision_field) = fields.iter().find(|f| f.ident.name == sym!(precision));
|
2018-10-02 21:55:25 +00:00
|
|
|
if let ExprKind::Path(ref precision_path) = precision_field.expr.node;
|
2019-05-17 21:53:54 +00:00
|
|
|
if last_path_segment(precision_path).ident.name == sym!(Implied);
|
2018-04-12 06:21:03 +00:00
|
|
|
then {
|
|
|
|
return true;
|
2017-10-23 19:18:02 +00:00
|
|
|
}
|
|
|
|
}
|
2016-02-20 20:15:05 +00:00
|
|
|
|
|
|
|
false
|
|
|
|
}
|