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