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! {
|
2017-10-14 19:26:39 -05:00
|
|
|
pub EXPLICIT_WRITE,
|
2017-10-12 01:18:43 -05:00
|
|
|
Warn,
|
2017-10-14 19:46:19 -05:00
|
|
|
"using the `write!()` family of functions instead of the `print!()` family \
|
|
|
|
of 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 {
|
2017-10-14 19:26:39 -05:00
|
|
|
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,
|
2017-10-14 19:26:39 -05:00
|
|
|
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,
|
2017-10-14 19:26:39 -05:00
|
|
|
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,
|
|
|
|
)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}}
|
|
|
|
}
|
|
|
|
}
|