167 lines
6.8 KiB
Rust
167 lines
6.8 KiB
Rust
// Copyright 2014-2018 The Rust Project Developers. See the COPYRIGHT
|
|
// file at the top-level directory of this distribution.
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
// option. This file may not be copied, modified, or distributed
|
|
// except according to those terms.
|
|
|
|
use crate::rustc::hir::*;
|
|
use crate::rustc::lint::{LateContext, LateLintPass, LintArray, LintPass};
|
|
use crate::rustc::{declare_tool_lint, lint_array};
|
|
use crate::rustc_errors::Applicability;
|
|
use crate::syntax::ast::LitKind;
|
|
use crate::utils::{is_expn_of, match_def_path, opt_def_id, resolve_node, span_lint, span_lint_and_sugg};
|
|
use if_chain::if_chain;
|
|
|
|
/// **What it does:** Checks for usage of `write!()` / `writeln()!` which can be
|
|
/// replaced with `(e)print!()` / `(e)println!()`
|
|
///
|
|
/// **Why is this bad?** Using `(e)println! is clearer and more concise
|
|
///
|
|
/// **Known problems:** None.
|
|
///
|
|
/// **Example:**
|
|
/// ```rust
|
|
/// // this would be clearer as `eprintln!("foo: {:?}", bar);`
|
|
/// writeln!(&mut io::stderr(), "foo: {:?}", bar).unwrap();
|
|
/// ```
|
|
declare_clippy_lint! {
|
|
pub EXPLICIT_WRITE,
|
|
complexity,
|
|
"using the `write!()` family of functions instead of the `print!()` family of functions, when using the latter would work"
|
|
}
|
|
|
|
#[derive(Copy, Clone, Debug)]
|
|
pub struct Pass;
|
|
|
|
impl LintPass for Pass {
|
|
fn get_lints(&self) -> LintArray {
|
|
lint_array!(EXPLICIT_WRITE)
|
|
}
|
|
}
|
|
|
|
impl<'a, 'tcx> LateLintPass<'a, 'tcx> for Pass {
|
|
fn check_expr(&mut self, cx: &LateContext<'a, 'tcx>, expr: &'tcx Expr) {
|
|
if_chain! {
|
|
// match call to unwrap
|
|
if let ExprKind::MethodCall(ref unwrap_fun, _, ref unwrap_args) = expr.node;
|
|
if unwrap_fun.ident.name == "unwrap";
|
|
// match call to write_fmt
|
|
if unwrap_args.len() > 0;
|
|
if let ExprKind::MethodCall(ref write_fun, _, ref write_args) =
|
|
unwrap_args[0].node;
|
|
if write_fun.ident.name == "write_fmt";
|
|
// match calls to std::io::stdout() / std::io::stderr ()
|
|
if write_args.len() > 0;
|
|
if let ExprKind::Call(ref dest_fun, _) = write_args[0].node;
|
|
if let ExprKind::Path(ref qpath) = dest_fun.node;
|
|
if let Some(dest_fun_id) =
|
|
opt_def_id(resolve_node(cx, qpath, dest_fun.hir_id));
|
|
if let Some(dest_name) = if match_def_path(cx.tcx, dest_fun_id, &["std", "io", "stdio", "stdout"]) {
|
|
Some("stdout")
|
|
} else if match_def_path(cx.tcx, dest_fun_id, &["std", "io", "stdio", "stderr"]) {
|
|
Some("stderr")
|
|
} else {
|
|
None
|
|
};
|
|
then {
|
|
let write_span = unwrap_args[0].span;
|
|
let calling_macro =
|
|
// ordering is important here, since `writeln!` uses `write!` internally
|
|
if is_expn_of(write_span, "writeln").is_some() {
|
|
Some("writeln")
|
|
} else if is_expn_of(write_span, "write").is_some() {
|
|
Some("write")
|
|
} else {
|
|
None
|
|
};
|
|
let prefix = if dest_name == "stderr" {
|
|
"e"
|
|
} else {
|
|
""
|
|
};
|
|
|
|
// We need to remove the last trailing newline from the string because the
|
|
// underlying `fmt::write` function doesn't know whether `println!` or `print!` was
|
|
// used.
|
|
if let Some(mut write_output) = write_output_string(write_args) {
|
|
if write_output.ends_with('\n') {
|
|
write_output.pop();
|
|
}
|
|
|
|
if let Some(macro_name) = calling_macro {
|
|
span_lint_and_sugg(
|
|
cx,
|
|
EXPLICIT_WRITE,
|
|
expr.span,
|
|
&format!(
|
|
"use of `{}!({}(), ...).unwrap()`",
|
|
macro_name,
|
|
dest_name
|
|
),
|
|
"try this",
|
|
format!("{}{}!(\"{}\")", prefix, macro_name.replace("write", "print"), write_output.escape_default()),
|
|
Applicability::MachineApplicable
|
|
);
|
|
} else {
|
|
span_lint_and_sugg(
|
|
cx,
|
|
EXPLICIT_WRITE,
|
|
expr.span,
|
|
&format!("use of `{}().write_fmt(...).unwrap()`", dest_name),
|
|
"try this",
|
|
format!("{}print!(\"{}\")", prefix, write_output.escape_default()),
|
|
Applicability::MachineApplicable
|
|
);
|
|
}
|
|
} else {
|
|
// We don't have a proper suggestion
|
|
if let Some(macro_name) = calling_macro {
|
|
span_lint(
|
|
cx,
|
|
EXPLICIT_WRITE,
|
|
expr.span,
|
|
&format!(
|
|
"use of `{}!({}(), ...).unwrap()`. Consider using `{}{}!` instead",
|
|
macro_name,
|
|
dest_name,
|
|
prefix,
|
|
macro_name.replace("write", "print")
|
|
)
|
|
);
|
|
} else {
|
|
span_lint(
|
|
cx,
|
|
EXPLICIT_WRITE,
|
|
expr.span,
|
|
&format!("use of `{}().write_fmt(...).unwrap()`. Consider using `{}print!` instead", dest_name, prefix),
|
|
);
|
|
}
|
|
}
|
|
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
// Extract the output string from the given `write_args`.
|
|
fn write_output_string(write_args: &HirVec<Expr>) -> Option<String> {
|
|
if_chain! {
|
|
// Obtain the string that should be printed
|
|
if write_args.len() > 1;
|
|
if let ExprKind::Call(_, ref output_args) = write_args[1].node;
|
|
if output_args.len() > 0;
|
|
if let ExprKind::AddrOf(_, ref output_string_expr) = output_args[0].node;
|
|
if let ExprKind::Array(ref string_exprs) = output_string_expr.node;
|
|
if string_exprs.len() > 0;
|
|
if let ExprKind::Lit(ref lit) = string_exprs[0].node;
|
|
if let LitKind::Str(ref write_output, _) = lit.node;
|
|
then {
|
|
return Some(write_output.to_string())
|
|
}
|
|
}
|
|
None
|
|
}
|