rust/clippy_lints/src/explicit_write.rs

102 lines
3.5 KiB
Rust
Raw Normal View History

2017-10-12 01:18:43 -05:00
use rustc::hir::*;
use rustc::lint::*;
use utils::{is_expn_of, match_def_path, resolve_node, span_lint};
use utils::opt_def_id;
/// **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_lint! {
pub EXPLICIT_WRITE,
2017-10-12 01:18:43 -05:00
Warn,
"using `write!()` family of functions instead of `print!()` family of \
2017-10-12 03:54:33 -05:00
functions, when using the latter would work"
2017-10-12 01:18:43 -05:00
}
#[derive(Copy, Clone, Debug)]
pub struct Pass;
impl LintPass for Pass {
fn get_lints(&self) -> LintArray {
lint_array!(EXPLICIT_WRITE)
2017-10-12 01:18:43 -05:00
}
}
impl<'a, 'tcx> LateLintPass<'a, 'tcx> for Pass {
fn check_expr(&mut self, cx: &LateContext<'a, 'tcx>, expr: &'tcx Expr) {
if_let_chain! {[
// match call to unwrap
let ExprMethodCall(ref unwrap_fun, _, ref unwrap_args) = expr.node,
unwrap_fun.name == "unwrap",
// match call to write_fmt
unwrap_args.len() > 0,
let ExprMethodCall(ref write_fun, _, ref write_args) =
unwrap_args[0].node,
write_fun.name == "write_fmt",
// match calls to std::io::stdout() / std::io::stderr ()
write_args.len() > 0,
let ExprCall(ref dest_fun, _) = write_args[0].node,
let ExprPath(ref qpath) = dest_fun.node,
let Some(dest_fun_id) =
opt_def_id(resolve_node(cx, qpath, dest_fun.hir_id)),
2017-10-12 03:35:13 -05:00
let Some(dest_name) = if match_def_path(cx.tcx, dest_fun_id, &["std", "io", "stdio", "stdout"]) {
2017-10-12 01:18:43 -05:00
Some("stdout")
2017-10-12 03:35:13 -05:00
} else if match_def_path(cx.tcx, dest_fun_id, &["std", "io", "stdio", "stderr"]) {
2017-10-12 01:18:43 -05:00
Some("stderr")
} else {
None
},
], {
2017-10-12 03:53:20 -05:00
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")
2017-10-12 01:18:43 -05:00
} else {
2017-10-12 03:53:20 -05:00
None
2017-10-12 01:18:43 -05:00
};
let prefix = if dest_name == "stderr" {
"e"
} else {
""
};
if let Some(macro_name) = calling_macro {
span_lint(
cx,
EXPLICIT_WRITE,
2017-10-12 03:53:20 -05:00
expr.span,
2017-10-12 01:18:43 -05:00
&format!(
2017-10-12 03:53:20 -05:00
"use of `{}!({}(), ...).unwrap()`. Consider using `{}{}!` instead",
2017-10-12 01:18:43 -05:00
macro_name,
dest_name,
prefix,
macro_name.replace("write", "print")
)
);
} else {
span_lint(
cx,
EXPLICIT_WRITE,
2017-10-12 03:53:20 -05:00
expr.span,
2017-10-12 01:18:43 -05:00
&format!(
2017-10-12 03:53:20 -05:00
"use of `{}().write_fmt(...).unwrap()`. Consider using `{}print!` instead",
2017-10-12 01:18:43 -05:00
dest_name,
prefix,
)
);
}
}}
}
}