]> git.proxmox.com Git - rustc.git/blame - src/tools/clippy/clippy_lints/src/explicit_write.rs
New upstream version 1.55.0+dfsg1
[rustc.git] / src / tools / clippy / clippy_lints / src / explicit_write.rs
CommitLineData
136023e0
XL
1use clippy_utils::diagnostics::{span_lint_and_help, span_lint_and_sugg};
2use clippy_utils::higher::FormatArgsExpn;
cdc7bbd5 3use clippy_utils::{is_expn_of, match_function_call, paths};
f20569fa 4use if_chain::if_chain;
f20569fa 5use rustc_errors::Applicability;
136023e0 6use rustc_hir::{Expr, ExprKind};
f20569fa
XL
7use rustc_lint::{LateContext, LateLintPass};
8use rustc_session::{declare_lint_pass, declare_tool_lint};
9use rustc_span::sym;
10
11declare_clippy_lint! {
12 /// **What it does:** Checks for usage of `write!()` / `writeln()!` which can be
13 /// replaced with `(e)print!()` / `(e)println!()`
14 ///
15 /// **Why is this bad?** Using `(e)println! is clearer and more concise
16 ///
17 /// **Known problems:** None.
18 ///
19 /// **Example:**
20 /// ```rust
21 /// # use std::io::Write;
22 /// # let bar = "furchtbar";
23 /// // this would be clearer as `eprintln!("foo: {:?}", bar);`
24 /// writeln!(&mut std::io::stderr(), "foo: {:?}", bar).unwrap();
25 /// ```
26 pub EXPLICIT_WRITE,
27 complexity,
28 "using the `write!()` family of functions instead of the `print!()` family of functions, when using the latter would work"
29}
30
31declare_lint_pass!(ExplicitWrite => [EXPLICIT_WRITE]);
32
33impl<'tcx> LateLintPass<'tcx> for ExplicitWrite {
34 fn check_expr(&mut self, cx: &LateContext<'tcx>, expr: &'tcx Expr<'_>) {
35 if_chain! {
36 // match call to unwrap
136023e0 37 if let ExprKind::MethodCall(unwrap_fun, _, [write_call], _) = expr.kind;
f20569fa
XL
38 if unwrap_fun.ident.name == sym::unwrap;
39 // match call to write_fmt
136023e0 40 if let ExprKind::MethodCall(write_fun, _, [write_recv, write_arg], _) = write_call.kind;
f20569fa
XL
41 if write_fun.ident.name == sym!(write_fmt);
42 // match calls to std::io::stdout() / std::io::stderr ()
136023e0 43 if let Some(dest_name) = if match_function_call(cx, write_recv, &paths::STDOUT).is_some() {
f20569fa 44 Some("stdout")
136023e0 45 } else if match_function_call(cx, write_recv, &paths::STDERR).is_some() {
f20569fa
XL
46 Some("stderr")
47 } else {
48 None
49 };
136023e0 50 if let Some(format_args) = FormatArgsExpn::parse(write_arg);
f20569fa 51 then {
f20569fa
XL
52 let calling_macro =
53 // ordering is important here, since `writeln!` uses `write!` internally
136023e0 54 if is_expn_of(write_call.span, "writeln").is_some() {
f20569fa 55 Some("writeln")
136023e0 56 } else if is_expn_of(write_call.span, "write").is_some() {
f20569fa
XL
57 Some("write")
58 } else {
59 None
60 };
61 let prefix = if dest_name == "stderr" {
62 "e"
63 } else {
64 ""
65 };
66
67 // We need to remove the last trailing newline from the string because the
68 // underlying `fmt::write` function doesn't know whether `println!` or `print!` was
69 // used.
136023e0
XL
70 let (used, sugg_mac) = if let Some(macro_name) = calling_macro {
71 (
72 format!("{}!({}(), ...)", macro_name, dest_name),
73 macro_name.replace("write", "print"),
74 )
75 } else {
76 (
77 format!("{}().write_fmt(...)", dest_name),
78 "print".into(),
79 )
80 };
81 let msg = format!("use of `{}.unwrap()`", used);
82 if let [write_output] = *format_args.format_string_symbols {
83 let mut write_output = write_output.to_string();
f20569fa
XL
84 if write_output.ends_with('\n') {
85 write_output.pop();
86 }
87
136023e0
XL
88 let sugg = format!("{}{}!(\"{}\")", prefix, sugg_mac, write_output.escape_default());
89 span_lint_and_sugg(
90 cx,
91 EXPLICIT_WRITE,
92 expr.span,
93 &msg,
94 "try this",
95 sugg,
96 Applicability::MachineApplicable
97 );
f20569fa
XL
98 } else {
99 // We don't have a proper suggestion
136023e0
XL
100 let help = format!("consider using `{}{}!` instead", prefix, sugg_mac);
101 span_lint_and_help(cx, EXPLICIT_WRITE, expr.span, &msg, None, &help);
f20569fa 102 }
f20569fa
XL
103 }
104 }
105 }
106}