rust-clippy/clippy_lints/src/format.rs

198 lines
7.6 KiB
Rust
Raw Normal View History

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;
use rustc::hir::*;
2019-02-24 05:30:08 +00:00
use rustc::lint::{LateContext, LateLintPass, LintArray, LintContext, LintPass};
use rustc::ty;
2019-04-08 20:43:55 +00:00
use rustc::{declare_lint_pass, declare_tool_lint};
use rustc_errors::Applicability;
use syntax::ast::LitKind;
2019-02-24 05:30:08 +00:00
use syntax::source_map::Span;
2018-03-28 13:24:26 +00:00
declare_clippy_lint! {
/// **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)
/// ```
pub USELESS_FORMAT,
2018-03-28 13:24:26 +00:00
complexity,
"useless use of `format!`"
}
2019-04-08 20:43:55 +00:00
declare_lint_pass!(UselessFormat => [USELESS_FORMAT]);
2019-04-08 20:43:55 +00:00
impl<'a, 'tcx> LateLintPass<'a, 'tcx> for UselessFormat {
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) {
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) => {
if_chain! {
2018-07-12 07:30:57 +00:00
if let ExprKind::Path(ref qpath) = fun.node;
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,
fun_def_id,
2019-05-17 21:53:54 +00:00
&paths::FMT_ARGUMENTS_NEWV1FORMATTED
);
if new_v1 || new_v1_fmt;
if check_single_piece(&args[0]);
if let Some(format_arg) = get_single_string_arg(cx, &args[1]);
if new_v1 || check_unformatted(&args[2]);
if let ExprKind::AddrOf(_, ref format_arg) = format_arg.node;
then {
let (message, sugg) = if_chain! {
if let ExprKind::MethodCall(ref path, _, _) = format_arg.node;
if path.ident.as_interned_str().as_symbol() == sym!(to_string);
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);
}
}
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() {
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 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 `&[""]`
fn check_single_piece(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; // [""]
if exprs.len() == 1;
2018-07-12 07:30:57 +00:00
if let ExprKind::Lit(ref lit) = exprs[0].node;
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
/// &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
/// ```
/// 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> {
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;
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;
if exprs.len() == 1;
2018-07-12 07:30:57 +00:00
if let ExprKind::Call(_, ref args) = exprs[0].node;
if args.len() == 2;
2018-07-12 07:30:57 +00:00
if let ExprKind::Path(ref qpath) = args[1].node;
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);
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 {
return Some(&values[0]);
}
}
}
}
None
}
2017-11-04 19:55:56 +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;
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));
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));
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);
then {
return true;
}
}
2016-02-20 20:15:05 +00:00
false
}