]> git.lizzy.rs Git - rust.git/blob - clippy_lints/src/format.rs
Auto merge of #3926 - flip1995:def_path_uplift, r=phansch
[rust.git] / clippy_lints / src / format.rs
1 use crate::utils::paths;
2 use crate::utils::{
3     in_macro, is_expn_of, last_path_segment, match_type, resolve_node, snippet, span_lint_and_then, walk_ptrs_ty,
4 };
5 use if_chain::if_chain;
6 use rustc::hir::*;
7 use rustc::lint::{LateContext, LateLintPass, LintArray, LintContext, LintPass};
8 use rustc::ty;
9 use rustc::{declare_tool_lint, lint_array};
10 use rustc_errors::Applicability;
11 use syntax::ast::LitKind;
12 use syntax::source_map::Span;
13
14 declare_clippy_lint! {
15     /// **What it does:** Checks for the use of `format!("string literal with no
16     /// argument")` and `format!("{}", foo)` where `foo` is a string.
17     ///
18     /// **Why is this bad?** There is no point of doing that. `format!("foo")` can
19     /// be replaced by `"foo".to_owned()` if you really need a `String`. The even
20     /// worse `&format!("foo")` is often encountered in the wild. `format!("{}",
21     /// foo)` can be replaced by `foo.clone()` if `foo: String` or `foo.to_owned()`
22     /// if `foo: &str`.
23     ///
24     /// **Known problems:** None.
25     ///
26     /// **Examples:**
27     /// ```rust
28     /// format!("foo")
29     /// format!("{}", foo)
30     /// ```
31     pub USELESS_FORMAT,
32     complexity,
33     "useless use of `format!`"
34 }
35
36 #[derive(Copy, Clone, Debug)]
37 pub struct Pass;
38
39 impl LintPass for Pass {
40     fn get_lints(&self) -> LintArray {
41         lint_array![USELESS_FORMAT]
42     }
43
44     fn name(&self) -> &'static str {
45         "UselessFormat"
46     }
47 }
48
49 impl<'a, 'tcx> LateLintPass<'a, 'tcx> for Pass {
50     fn check_expr(&mut self, cx: &LateContext<'a, 'tcx>, expr: &'tcx Expr) {
51         if let Some(span) = is_expn_of(expr.span, "format") {
52             if in_macro(span) {
53                 return;
54             }
55             match expr.node {
56                 // `format!("{}", foo)` expansion
57                 ExprKind::Call(ref fun, ref args) => {
58                     if_chain! {
59                         if let ExprKind::Path(ref qpath) = fun.node;
60                         if let Some(fun_def_id) = resolve_node(cx, qpath, fun.hir_id).opt_def_id();
61                         let new_v1 = cx.match_def_path(fun_def_id, &paths::FMT_ARGUMENTS_NEWV1);
62                         let new_v1_fmt = cx.match_def_path(
63                             fun_def_id,
64                             &paths::FMT_ARGUMENTS_NEWV1FORMATTED
65                         );
66                         if new_v1 || new_v1_fmt;
67                         if check_single_piece(&args[0]);
68                         if let Some(format_arg) = get_single_string_arg(cx, &args[1]);
69                         if new_v1 || check_unformatted(&args[2]);
70                         if let ExprKind::AddrOf(_, ref format_arg) = format_arg.node;
71                         then {
72                             let (message, sugg) = if_chain! {
73                                 if let ExprKind::MethodCall(ref path, _, _) = format_arg.node;
74                                 if path.ident.as_interned_str() == "to_string";
75                                 then {
76                                     ("`to_string()` is enough",
77                                     snippet(cx, format_arg.span, "<arg>").to_string())
78                                 } else {
79                                     ("consider using .to_string()",
80                                     format!("{}.to_string()", snippet(cx, format_arg.span, "<arg>")))
81                                 }
82                             };
83
84                             span_useless_format(cx, span, message, sugg);
85                         }
86                     }
87                 },
88                 // `format!("foo")` expansion contains `match () { () => [], }`
89                 ExprKind::Match(ref matchee, _, _) => {
90                     if let ExprKind::Tup(ref tup) = matchee.node {
91                         if tup.is_empty() {
92                             let actual_snippet = snippet(cx, expr.span, "<expr>").to_string();
93                             let actual_snippet = actual_snippet.replace("{{}}", "{}");
94                             let sugg = format!("{}.to_string()", actual_snippet);
95                             span_useless_format(cx, span, "consider using .to_string()", sugg);
96                         }
97                     }
98                 },
99                 _ => (),
100             }
101         }
102     }
103 }
104
105 fn span_useless_format<'a, 'tcx: 'a, T: LintContext<'tcx>>(cx: &'a T, span: Span, help: &str, mut sugg: String) {
106     let to_replace = span.source_callsite();
107
108     // The callsite span contains the statement semicolon for some reason.
109     let snippet = snippet(cx, to_replace, "..");
110     if snippet.ends_with(';') {
111         sugg.push(';');
112     }
113
114     span_lint_and_then(cx, USELESS_FORMAT, span, "useless use of `format!`", |db| {
115         db.span_suggestion(
116             to_replace,
117             help,
118             sugg,
119             Applicability::MachineApplicable, // snippet
120         );
121     });
122 }
123
124 /// Checks if the expressions matches `&[""]`
125 fn check_single_piece(expr: &Expr) -> bool {
126     if_chain! {
127         if let ExprKind::AddrOf(_, ref expr) = expr.node; // &[""]
128         if let ExprKind::Array(ref exprs) = expr.node; // [""]
129         if exprs.len() == 1;
130         if let ExprKind::Lit(ref lit) = exprs[0].node;
131         if let LitKind::Str(ref lit, _) = lit.node;
132         then {
133             return lit.as_str().is_empty();
134         }
135     }
136
137     false
138 }
139
140 /// Checks if the expressions matches
141 /// ```rust,ignore
142 /// &match (&"arg",) {
143 /// (__arg0,) => [::std::fmt::ArgumentV1::new(__arg0,
144 /// ::std::fmt::Display::fmt)],
145 /// }
146 /// ```
147 /// and that the type of `__arg0` is `&str` or `String`,
148 /// then returns the span of first element of the matched tuple.
149 fn get_single_string_arg<'a>(cx: &LateContext<'_, '_>, expr: &'a Expr) -> Option<&'a Expr> {
150     if_chain! {
151         if let ExprKind::AddrOf(_, ref expr) = expr.node;
152         if let ExprKind::Match(ref match_expr, ref arms, _) = expr.node;
153         if arms.len() == 1;
154         if arms[0].pats.len() == 1;
155         if let PatKind::Tuple(ref pat, None) = arms[0].pats[0].node;
156         if pat.len() == 1;
157         if let ExprKind::Array(ref exprs) = arms[0].body.node;
158         if exprs.len() == 1;
159         if let ExprKind::Call(_, ref args) = exprs[0].node;
160         if args.len() == 2;
161         if let ExprKind::Path(ref qpath) = args[1].node;
162         if let Some(fun_def_id) = resolve_node(cx, qpath, args[1].hir_id).opt_def_id();
163         if cx.match_def_path(fun_def_id, &paths::DISPLAY_FMT_METHOD);
164         then {
165             let ty = walk_ptrs_ty(cx.tables.pat_ty(&pat[0]));
166             if ty.sty == ty::Str || match_type(cx, ty, &paths::STRING) {
167                 if let ExprKind::Tup(ref values) = match_expr.node {
168                     return Some(&values[0]);
169                 }
170             }
171         }
172     }
173
174     None
175 }
176
177 /// Checks if the expression matches
178 /// ```rust,ignore
179 /// &[_ {
180 ///    format: _ {
181 ///         width: _::Implied,
182 ///         ...
183 ///    },
184 ///    ...,
185 /// }]
186 /// ```
187 fn check_unformatted(expr: &Expr) -> bool {
188     if_chain! {
189         if let ExprKind::AddrOf(_, ref expr) = expr.node;
190         if let ExprKind::Array(ref exprs) = expr.node;
191         if exprs.len() == 1;
192         if let ExprKind::Struct(_, ref fields, _) = exprs[0].node;
193         if let Some(format_field) = fields.iter().find(|f| f.ident.name == "format");
194         if let ExprKind::Struct(_, ref fields, _) = format_field.expr.node;
195         if let Some(width_field) = fields.iter().find(|f| f.ident.name == "width");
196         if let ExprKind::Path(ref width_qpath) = width_field.expr.node;
197         if last_path_segment(width_qpath).ident.name == "Implied";
198         if let Some(precision_field) = fields.iter().find(|f| f.ident.name == "precision");
199         if let ExprKind::Path(ref precision_path) = precision_field.expr.node;
200         if last_path_segment(precision_path).ident.name == "Implied";
201         then {
202             return true;
203         }
204     }
205
206     false
207 }