rust-clippy/clippy_lints/src/format.rs

116 lines
4 KiB
Rust
Raw Normal View History

2016-04-14 16:13:15 +00:00
use rustc::hir::*;
use rustc::lint::*;
use rustc::ty;
2016-02-20 20:15:05 +00:00
use syntax::ast::LitKind;
2016-04-14 16:13:15 +00:00
use utils::paths;
2017-09-12 12:26:40 +00:00
use utils::{is_expn_of, match_def_path, match_type, resolve_node, span_lint, walk_ptrs_ty, opt_def_id};
/// **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!("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 09:10:22 +00:00
/// if `foo: &str`.
///
/// **Known problems:** None.
///
/// **Examples:**
/// ```rust
/// format!("foo")
/// format!("{}", foo)
/// ```
declare_lint! {
pub USELESS_FORMAT,
Warn,
"useless use of `format!`"
}
#[derive(Copy, Clone, Debug)]
2016-06-10 14:17:20 +00:00
pub struct Pass;
2016-06-10 14:17:20 +00:00
impl LintPass for Pass {
fn get_lints(&self) -> LintArray {
lint_array![USELESS_FORMAT]
}
}
impl<'a, 'tcx> LateLintPass<'a, 'tcx> for Pass {
fn check_expr(&mut self, cx: &LateContext<'a, 'tcx>, expr: &'tcx Expr) {
if let Some(span) = is_expn_of(expr.span, "format") {
2016-02-20 20:15:05 +00:00
match expr.node {
// `format!("{}", foo)` expansion
ExprCall(ref fun, ref args) => {
if_let_chain!{[
let ExprPath(ref qpath) = fun.node,
2016-02-20 20:15:05 +00:00
args.len() == 2,
2017-09-12 12:26:40 +00:00
let Some(fun_def_id) = opt_def_id(resolve_node(cx, qpath, fun.hir_id)),
match_def_path(cx.tcx, fun_def_id, &paths::FMT_ARGUMENTS_NEWV1),
2016-02-20 20:15:05 +00:00
// ensure the format string is `"{..}"` with only one argument and no text
2017-09-29 16:36:03 +00:00
check_static_str(&args[0]),
2016-02-20 20:15:05 +00:00
// ensure the format argument is `{}` ie. Display with no fancy option
2017-09-29 16:36:03 +00:00
// and that the argument is a string
check_arg_is_display(cx, &args[1])
2016-02-20 20:15:05 +00:00
], {
2016-02-20 20:20:56 +00:00
span_lint(cx, USELESS_FORMAT, span, "useless use of `format!`");
2016-02-20 20:15:05 +00:00
}}
2016-12-20 17:21:30 +00:00
},
2016-02-20 20:15:05 +00:00
// `format!("foo")` expansion contains `match () { () => [], }`
2017-09-05 09:33:04 +00:00
ExprMatch(ref matchee, _, _) => if let ExprTup(ref tup) = matchee.node {
if tup.is_empty() {
span_lint(cx, USELESS_FORMAT, span, "useless use of `format!`");
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
2017-09-29 16:36:03 +00:00
/// Checks if the expressions matches `&[""]`
fn check_static_str(expr: &Expr) -> bool {
if_let_chain! {[
let ExprAddrOf(_, ref expr) = expr.node, // &[""]
let ExprArray(ref exprs) = expr.node, // [""]
exprs.len() == 1,
let ExprLit(ref lit) = exprs[0].node,
let LitKind::Str(ref lit, _) = lit.node,
], {
return lit.as_str().is_empty();
}}
false
2016-02-20 20:15:05 +00:00
}
/// Checks if the expressions matches
2017-04-10 13:10:29 +00:00
/// ```rust,ignore
2016-02-20 20:15:05 +00:00
/// &match (&42,) {
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
/// ```
fn check_arg_is_display(cx: &LateContext, expr: &Expr) -> bool {
2016-02-20 20:15:05 +00:00
if_let_chain! {[
let ExprAddrOf(_, ref expr) = expr.node,
let ExprMatch(_, ref arms, _) = expr.node,
arms.len() == 1,
arms[0].pats.len() == 1,
let PatKind::Tuple(ref pat, None) = arms[0].pats[0].node,
pat.len() == 1,
let ExprArray(ref exprs) = arms[0].body.node,
2016-02-20 20:15:05 +00:00
exprs.len() == 1,
let ExprCall(_, ref args) = exprs[0].node,
args.len() == 2,
let ExprPath(ref qpath) = args[1].node,
2017-09-12 12:26:40 +00:00
let Some(fun_def_id) = opt_def_id(resolve_node(cx, qpath, args[1].hir_id)),
match_def_path(cx.tcx, fun_def_id, &paths::DISPLAY_FMT_METHOD),
2016-02-20 20:15:05 +00:00
], {
2017-01-13 16:04:56 +00:00
let ty = walk_ptrs_ty(cx.tables.pat_ty(&pat[0]));
return ty.sty == ty::TyStr || match_type(cx, ty, &paths::STRING);
2016-02-20 20:15:05 +00:00
}}
false
}