]> git.lizzy.rs Git - rust.git/blobdiff - clippy_lints/src/format.rs
Merge branch 'macro-use' into HEAD
[rust.git] / clippy_lints / src / format.rs
index 518ce99c4e2d3ff1ba09dbe74e6c5beef9289f46..668ef3dbf6ef9630362ac2f2355cf0991c799a5c 100644 (file)
@@ -1,11 +1,12 @@
 use rustc::hir::*;
-use rustc::hir::map::Node::NodeItem;
 use rustc::lint::*;
-use rustc::ty::TypeVariants;
+use rustc::{declare_lint, lint_array};
+use if_chain::if_chain;
+use rustc::ty;
 use syntax::ast::LitKind;
-use syntax::symbol::InternedString;
-use utils::paths;
-use utils::{is_expn_of, match_def_path, match_type, resolve_node, span_lint, walk_ptrs_ty};
+use syntax_pos::Span;
+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};
 
 /// **What it does:** Checks for the use of `format!("string literal with no
 /// argument")` and `format!("{}", foo)` where `foo` is a string.
@@ -23,9 +24,9 @@
 /// format!("foo")
 /// format!("{}", foo)
 /// ```
-declare_lint! {
+declare_clippy_lint! {
     pub USELESS_FORMAT,
-    Warn,
+    complexity,
     "useless use of `format!`"
 }
 
@@ -41,27 +42,36 @@ fn get_lints(&self) -> LintArray {
 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") {
+            if in_macro(span) {
+                return;
+            }
             match expr.node {
+
                 // `format!("{}", foo)` expansion
-                ExprCall(ref fun, ref args) => {
-                    if_let_chain!{[
-                        let ExprPath(ref qpath) = fun.node,
-                        args.len() == 2,
-                        match_def_path(cx.tcx, resolve_node(cx, qpath, fun.id).def_id(), &paths::FMT_ARGUMENTS_NEWV1),
-                        // ensure the format string is `"{..}"` with only one argument and no text
-                        check_static_str(cx, &args[0]),
-                        // ensure the format argument is `{}` ie. Display with no fancy option
-                        check_arg_is_display(cx, &args[1])
-                    ], {
-                        span_lint(cx, USELESS_FORMAT, span, "useless use of `format!`");
-                    }}
+                ExprKind::Call(ref fun, ref args) => {
+                    if_chain! {
+                        if let ExprKind::Path(ref qpath) = fun.node;
+                        if args.len() == 3;
+                        if let Some(fun_def_id) = opt_def_id(resolve_node(cx, qpath, fun.hir_id));
+                        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]);
+                        then {
+                            let sugg = format!("{}.to_string()", snippet(cx, format_arg, "<arg>").into_owned());
+                            span_lint_and_then(cx, USELESS_FORMAT, span, "useless use of `format!`", |db| {
+                                db.span_suggestion(expr.span, "consider using .to_string()", sugg);
+                            });
+                        }
+                    }
                 },
                 // `format!("foo")` expansion contains `match () { () => [], }`
-                ExprMatch(ref matchee, _, _) => {
-                    if let ExprTup(ref tup) = matchee.node {
-                        if tup.is_empty() {
-                            span_lint(cx, USELESS_FORMAT, span, "useless use of `format!`");
-                        }
+                ExprKind::Match(ref matchee, _, _) => if let ExprKind::Tup(ref tup) = matchee.node {
+                    if tup.is_empty() {
+                        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);
+                        });
                     }
                 },
                 _ => (),
@@ -70,70 +80,84 @@ fn check_expr(&mut self, cx: &LateContext<'a, 'tcx>, expr: &'tcx Expr) {
     }
 }
 
-/// Returns the slice of format string parts in an `Arguments::new_v1` call.
-/// Public because it's shared with a lint in print.rs.
-pub fn get_argument_fmtstr_parts<'a, 'b>(cx: &LateContext<'a, 'b>, expr: &'a Expr) -> Option<Vec<InternedString>> {
-    if_let_chain! {[
-        let ExprBlock(ref block) = expr.node,
-        block.stmts.len() == 1,
-        let StmtDecl(ref decl, _) = block.stmts[0].node,
-        let DeclItem(ref decl) = decl.node,
-        let Some(NodeItem(decl)) = cx.tcx.hir.find(decl.id),
-        decl.name == "__STATIC_FMTSTR",
-        let ItemStatic(_, _, ref expr) = decl.node,
-        let ExprAddrOf(_, ref expr) = cx.tcx.hir.body(*expr).value.node, // &["…", "…", …]
-        let ExprArray(ref exprs) = expr.node,
-    ], {
-        let mut result = Vec::new();
-        for expr in exprs {
-            if let ExprLit(ref lit) = expr.node {
-                if let LitKind::Str(ref lit, _) = lit.node {
-                    result.push(lit.as_str());
-                }
-            }
+/// Checks if the expressions matches `&[""]`
+fn check_single_piece(expr: &Expr) -> bool {
+    if_chain! {
+        if let ExprKind::AddrOf(_, ref expr) = expr.node; // &[""]
+        if let ExprKind::Array(ref exprs) = expr.node; // [""]
+        if exprs.len() == 1;
+        if let ExprKind::Lit(ref lit) = exprs[0].node;
+        if let LitKind::Str(ref lit, _) = lit.node;
+        then {
+            return lit.as_str().is_empty();
         }
-        return Some(result);
-    }}
-    None
+    }
+
+    false
 }
 
 /// Checks if the expressions matches
-/// ```rust
-/// { static __STATIC_FMTSTR: s = &["a", "b", c]; __STATIC_FMTSTR }
+/// ```rust,ignore
+/// &match (&"arg",) {
+/// (__arg0,) => [::std::fmt::ArgumentV1::new(__arg0,
+/// ::std::fmt::Display::fmt)],
+/// }
 /// ```
-fn check_static_str(cx: &LateContext, expr: &Expr) -> bool {
-    if let Some(expr) = get_argument_fmtstr_parts(cx, expr) {
-        expr.len() == 1 && expr[0].is_empty()
-    } else {
-        false
+/// 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> {
+    if_chain! {
+        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;
+        if let ExprKind::Array(ref exprs) = arms[0].body.node;
+        if exprs.len() == 1;
+        if let ExprKind::Call(_, ref args) = exprs[0].node;
+        if args.len() == 2;
+        if let ExprKind::Path(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]));
+            if ty.sty == ty::TyStr || match_type(cx, ty, &paths::STRING) {
+                if let ExprKind::Tup(ref values) = match_expr.node {
+                    return Some(values[0].span);
+                }
+            }
+        }
     }
+
+    None
 }
 
-/// Checks if the expressions matches
+/// Checks if the expression matches
 /// ```rust,ignore
-/// &match (&42,) {
-///     (__arg0,) => [::std::fmt::ArgumentV1::new(__arg0, ::std::fmt::Display::fmt)],
-/// }
+/// &[_ {
+///    format: _ {
+///         width: _::Implied,
+///         ...
+///    },
+///    ...,
+/// }]
 /// ```
-fn check_arg_is_display(cx: &LateContext, expr: &Expr) -> bool {
-    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,
-        exprs.len() == 1,
-        let ExprCall(_, ref args) = exprs[0].node,
-        args.len() == 2,
-        let ExprPath(ref qpath) = args[1].node,
-        match_def_path(cx.tcx, resolve_node(cx, qpath, args[1].id).def_id(), &paths::DISPLAY_FMT_METHOD),
-    ], {
-        let ty = walk_ptrs_ty(cx.tables.pat_ty(&pat[0]));
-
-        return ty.sty == TypeVariants::TyStr || match_type(cx, ty, &paths::STRING);
-    }}
+fn check_unformatted(expr: &Expr) -> bool {
+    if_chain! {
+        if let ExprKind::AddrOf(_, ref expr) = expr.node;
+        if let ExprKind::Array(ref exprs) = expr.node;
+        if exprs.len() == 1;
+        if let ExprKind::Struct(_, ref fields, _) = exprs[0].node;
+        if let Some(format_field) = fields.iter().find(|f| f.ident.name == "format");
+        if let ExprKind::Struct(_, ref fields, _) = format_field.expr.node;
+        if let Some(align_field) = fields.iter().find(|f| f.ident.name == "width");
+        if let ExprKind::Path(ref qpath) = align_field.expr.node;
+        if last_path_segment(qpath).ident.name == "Implied";
+        then {
+            return true;
+        }
+    }
 
     false
 }