]> git.lizzy.rs Git - rust.git/blob - clippy_lints/src/write.rs
Auto merge of #3706 - robamler:patch-1, r=phansch
[rust.git] / clippy_lints / src / write.rs
1 use crate::utils::{snippet_with_applicability, span_lint, span_lint_and_sugg};
2 use rustc::lint::{EarlyContext, EarlyLintPass, LintArray, LintPass};
3 use rustc::{declare_tool_lint, lint_array};
4 use rustc_errors::Applicability;
5 use std::borrow::Cow;
6 use syntax::ast::*;
7 use syntax::parse::{parser, token};
8 use syntax::tokenstream::TokenStream;
9
10 /// **What it does:** This lint warns when you use `println!("")` to
11 /// print a newline.
12 ///
13 /// **Why is this bad?** You should use `println!()`, which is simpler.
14 ///
15 /// **Known problems:** None.
16 ///
17 /// **Example:**
18 /// ```rust
19 /// println!("");
20 /// ```
21 declare_clippy_lint! {
22     pub PRINTLN_EMPTY_STRING,
23     style,
24     "using `println!(\"\")` with an empty string"
25 }
26
27 /// **What it does:** This lint warns when you use `print!()` with a format
28 /// string that
29 /// ends in a newline.
30 ///
31 /// **Why is this bad?** You should use `println!()` instead, which appends the
32 /// newline.
33 ///
34 /// **Known problems:** None.
35 ///
36 /// **Example:**
37 /// ```rust
38 /// print!("Hello {}!\n", name);
39 /// ```
40 /// use println!() instead
41 /// ```rust
42 /// println!("Hello {}!", name);
43 /// ```
44 declare_clippy_lint! {
45     pub PRINT_WITH_NEWLINE,
46     style,
47     "using `print!()` with a format string that ends in a single newline"
48 }
49
50 /// **What it does:** Checks for printing on *stdout*. The purpose of this lint
51 /// is to catch debugging remnants.
52 ///
53 /// **Why is this bad?** People often print on *stdout* while debugging an
54 /// application and might forget to remove those prints afterward.
55 ///
56 /// **Known problems:** Only catches `print!` and `println!` calls.
57 ///
58 /// **Example:**
59 /// ```rust
60 /// println!("Hello world!");
61 /// ```
62 declare_clippy_lint! {
63     pub PRINT_STDOUT,
64     restriction,
65     "printing on stdout"
66 }
67
68 /// **What it does:** Checks for use of `Debug` formatting. The purpose of this
69 /// lint is to catch debugging remnants.
70 ///
71 /// **Why is this bad?** The purpose of the `Debug` trait is to facilitate
72 /// debugging Rust code. It should not be used in in user-facing output.
73 ///
74 /// **Example:**
75 /// ```rust
76 /// println!("{:?}", foo);
77 /// ```
78 declare_clippy_lint! {
79     pub USE_DEBUG,
80     restriction,
81     "use of `Debug`-based formatting"
82 }
83
84 /// **What it does:** This lint warns about the use of literals as `print!`/`println!` args.
85 ///
86 /// **Why is this bad?** Using literals as `println!` args is inefficient
87 /// (c.f., https://github.com/matthiaskrgr/rust-str-bench) and unnecessary
88 /// (i.e., just put the literal in the format string)
89 ///
90 /// **Known problems:** Will also warn with macro calls as arguments that expand to literals
91 /// -- e.g., `println!("{}", env!("FOO"))`.
92 ///
93 /// **Example:**
94 /// ```rust
95 /// println!("{}", "foo");
96 /// ```
97 /// use the literal without formatting:
98 /// ```rust
99 /// println!("foo");
100 /// ```
101 declare_clippy_lint! {
102     pub PRINT_LITERAL,
103     style,
104     "printing a literal with a format string"
105 }
106
107 /// **What it does:** This lint warns when you use `writeln!(buf, "")` to
108 /// print a newline.
109 ///
110 /// **Why is this bad?** You should use `writeln!(buf)`, which is simpler.
111 ///
112 /// **Known problems:** None.
113 ///
114 /// **Example:**
115 /// ```rust
116 /// writeln!("");
117 /// ```
118 declare_clippy_lint! {
119     pub WRITELN_EMPTY_STRING,
120     style,
121     "using `writeln!(\"\")` with an empty string"
122 }
123
124 /// **What it does:** This lint warns when you use `write!()` with a format
125 /// string that
126 /// ends in a newline.
127 ///
128 /// **Why is this bad?** You should use `writeln!()` instead, which appends the
129 /// newline.
130 ///
131 /// **Known problems:** None.
132 ///
133 /// **Example:**
134 /// ```rust
135 /// write!(buf, "Hello {}!\n", name);
136 /// ```
137 declare_clippy_lint! {
138     pub WRITE_WITH_NEWLINE,
139     style,
140     "using `write!()` with a format string that ends in a single newline"
141 }
142
143 /// **What it does:** This lint warns about the use of literals as `write!`/`writeln!` args.
144 ///
145 /// **Why is this bad?** Using literals as `writeln!` args is inefficient
146 /// (c.f., https://github.com/matthiaskrgr/rust-str-bench) and unnecessary
147 /// (i.e., just put the literal in the format string)
148 ///
149 /// **Known problems:** Will also warn with macro calls as arguments that expand to literals
150 /// -- e.g., `writeln!(buf, "{}", env!("FOO"))`.
151 ///
152 /// **Example:**
153 /// ```rust
154 /// writeln!(buf, "{}", "foo");
155 /// ```
156 declare_clippy_lint! {
157     pub WRITE_LITERAL,
158     style,
159     "writing a literal with a format string"
160 }
161
162 #[derive(Copy, Clone, Debug)]
163 pub struct Pass;
164
165 impl LintPass for Pass {
166     fn get_lints(&self) -> LintArray {
167         lint_array!(
168             PRINT_WITH_NEWLINE,
169             PRINTLN_EMPTY_STRING,
170             PRINT_STDOUT,
171             USE_DEBUG,
172             PRINT_LITERAL,
173             WRITE_WITH_NEWLINE,
174             WRITELN_EMPTY_STRING,
175             WRITE_LITERAL
176         )
177     }
178
179     fn name(&self) -> &'static str {
180         "Write"
181     }
182 }
183
184 impl EarlyLintPass for Pass {
185     fn check_mac(&mut self, cx: &EarlyContext<'_>, mac: &Mac) {
186         if mac.node.path == "println" {
187             span_lint(cx, PRINT_STDOUT, mac.span, "use of `println!`");
188             if let Some(fmtstr) = check_tts(cx, &mac.node.tts, false).0 {
189                 if fmtstr == "" {
190                     span_lint_and_sugg(
191                         cx,
192                         PRINTLN_EMPTY_STRING,
193                         mac.span,
194                         "using `println!(\"\")`",
195                         "replace it with",
196                         "println!()".to_string(),
197                         Applicability::MachineApplicable,
198                     );
199                 }
200             }
201         } else if mac.node.path == "print" {
202             span_lint(cx, PRINT_STDOUT, mac.span, "use of `print!`");
203             if let Some(fmtstr) = check_tts(cx, &mac.node.tts, false).0 {
204                 if check_newlines(&fmtstr) {
205                     span_lint(
206                         cx,
207                         PRINT_WITH_NEWLINE,
208                         mac.span,
209                         "using `print!()` with a format string that ends in a \
210                          single newline, consider using `println!()` instead",
211                     );
212                 }
213             }
214         } else if mac.node.path == "write" {
215             if let Some(fmtstr) = check_tts(cx, &mac.node.tts, true).0 {
216                 if check_newlines(&fmtstr) {
217                     span_lint(
218                         cx,
219                         WRITE_WITH_NEWLINE,
220                         mac.span,
221                         "using `write!()` with a format string that ends in a \
222                          single newline, consider using `writeln!()` instead",
223                     );
224                 }
225             }
226         } else if mac.node.path == "writeln" {
227             let check_tts = check_tts(cx, &mac.node.tts, true);
228             if let Some(fmtstr) = check_tts.0 {
229                 if fmtstr == "" {
230                     let mut applicability = Applicability::MachineApplicable;
231                     let suggestion = check_tts.1.map_or_else(
232                         move || {
233                             applicability = Applicability::HasPlaceholders;
234                             Cow::Borrowed("v")
235                         },
236                         move |expr| snippet_with_applicability(cx, expr.span, "v", &mut applicability),
237                     );
238
239                     span_lint_and_sugg(
240                         cx,
241                         WRITELN_EMPTY_STRING,
242                         mac.span,
243                         format!("using `writeln!({}, \"\")`", suggestion).as_str(),
244                         "replace it with",
245                         format!("writeln!({})", suggestion),
246                         applicability,
247                     );
248                 }
249             }
250         }
251     }
252 }
253
254 /// Checks the arguments of `print[ln]!` and `write[ln]!` calls. It will return a tuple of two
255 /// options. The first part of the tuple is `format_str` of the macros. The second part of the tuple
256 /// is in the `write[ln]!` case the expression the `format_str` should be written to.
257 ///
258 /// Example:
259 ///
260 /// Calling this function on
261 /// ```rust,ignore
262 /// writeln!(buf, "string to write: {}", something)
263 /// ```
264 /// will return
265 /// ```rust,ignore
266 /// (Some("string to write: {}"), Some(buf))
267 /// ```
268 fn check_tts<'a>(cx: &EarlyContext<'a>, tts: &TokenStream, is_write: bool) -> (Option<String>, Option<Expr>) {
269     use fmt_macros::*;
270     let tts = tts.clone();
271     let mut parser = parser::Parser::new(&cx.sess.parse_sess, tts, None, false, false);
272     let mut expr: Option<Expr> = None;
273     if is_write {
274         expr = match parser.parse_expr().map_err(|mut err| err.cancel()) {
275             Ok(p) => Some(p.into_inner()),
276             Err(_) => return (None, None),
277         };
278         // might be `writeln!(foo)`
279         if parser.expect(&token::Comma).map_err(|mut err| err.cancel()).is_err() {
280             return (None, expr);
281         }
282     }
283
284     let fmtstr = match parser.parse_str().map_err(|mut err| err.cancel()) {
285         Ok(token) => token.0.to_string(),
286         Err(_) => return (None, expr),
287     };
288     let tmp = fmtstr.clone();
289     let mut args = vec![];
290     let mut fmt_parser = Parser::new(&tmp, None, Vec::new(), false);
291     while let Some(piece) = fmt_parser.next() {
292         if !fmt_parser.errors.is_empty() {
293             return (None, expr);
294         }
295         if let Piece::NextArgument(arg) = piece {
296             if arg.format.ty == "?" {
297                 // FIXME: modify rustc's fmt string parser to give us the current span
298                 span_lint(cx, USE_DEBUG, parser.prev_span, "use of `Debug`-based formatting");
299             }
300             args.push(arg);
301         }
302     }
303     let lint = if is_write { WRITE_LITERAL } else { PRINT_LITERAL };
304     let mut idx = 0;
305     loop {
306         const SIMPLE: FormatSpec<'_> = FormatSpec {
307             fill: None,
308             align: AlignUnknown,
309             flags: 0,
310             precision: CountImplied,
311             width: CountImplied,
312             ty: "",
313         };
314         if !parser.eat(&token::Comma) {
315             return (Some(fmtstr), expr);
316         }
317         let token_expr = match parser.parse_expr().map_err(|mut err| err.cancel()) {
318             Ok(expr) => expr,
319             Err(_) => return (Some(fmtstr), None),
320         };
321         match &token_expr.node {
322             ExprKind::Lit(_) => {
323                 let mut all_simple = true;
324                 let mut seen = false;
325                 for arg in &args {
326                     match arg.position {
327                         ArgumentImplicitlyIs(n) | ArgumentIs(n) => {
328                             if n == idx {
329                                 all_simple &= arg.format == SIMPLE;
330                                 seen = true;
331                             }
332                         },
333                         ArgumentNamed(_) => {},
334                     }
335                 }
336                 if all_simple && seen {
337                     span_lint(cx, lint, token_expr.span, "literal with an empty format string");
338                 }
339                 idx += 1;
340             },
341             ExprKind::Assign(lhs, rhs) => {
342                 if let ExprKind::Lit(_) = rhs.node {
343                     if let ExprKind::Path(_, p) = &lhs.node {
344                         let mut all_simple = true;
345                         let mut seen = false;
346                         for arg in &args {
347                             match arg.position {
348                                 ArgumentImplicitlyIs(_) | ArgumentIs(_) => {},
349                                 ArgumentNamed(name) => {
350                                     if *p == name {
351                                         seen = true;
352                                         all_simple &= arg.format == SIMPLE;
353                                     }
354                                 },
355                             }
356                         }
357                         if all_simple && seen {
358                             span_lint(cx, lint, rhs.span, "literal with an empty format string");
359                         }
360                     }
361                 }
362             },
363             _ => idx += 1,
364         }
365     }
366 }
367
368 // Checks if `s` constains a single newline that terminates it
369 fn check_newlines(s: &str) -> bool {
370     if s.len() < 2 {
371         return false;
372     }
373
374     let bytes = s.as_bytes();
375     if bytes[bytes.len() - 2] != b'\\' || bytes[bytes.len() - 1] != b'n' {
376         return false;
377     }
378
379     let mut escaping = false;
380     for (index, &byte) in bytes.iter().enumerate() {
381         if escaping {
382             if byte == b'n' {
383                 return index == bytes.len() - 1;
384             }
385             escaping = false;
386         } else if byte == b'\\' {
387             escaping = true;
388         }
389     }
390
391     false
392 }