2022-02-10 11:40:06 -06:00
|
|
|
use clippy_utils::diagnostics::span_lint_and_sugg;
|
2023-04-11 08:31:08 -05:00
|
|
|
use clippy_utils::macros::{find_format_args, format_args_inputs_span};
|
2022-02-10 11:40:06 -06:00
|
|
|
use clippy_utils::source::snippet_with_applicability;
|
2021-03-25 13:29:11 -05:00
|
|
|
use clippy_utils::{is_expn_of, match_function_call, paths};
|
2018-11-27 14:14:15 -06:00
|
|
|
use if_chain::if_chain;
|
2018-12-29 09:04:45 -06:00
|
|
|
use rustc_errors::Applicability;
|
2022-05-22 19:39:44 -05:00
|
|
|
use rustc_hir::def::Res;
|
|
|
|
use rustc_hir::{BindingAnnotation, Block, BlockCheckMode, Expr, ExprKind, Node, PatKind, QPath, Stmt, StmtKind};
|
2020-01-12 00:08:41 -06:00
|
|
|
use rustc_lint::{LateContext, LateLintPass};
|
2020-01-11 05:37:08 -06:00
|
|
|
use rustc_session::{declare_lint_pass, declare_tool_lint};
|
2023-04-11 08:31:08 -05:00
|
|
|
use rustc_span::{sym, ExpnId};
|
2017-10-12 01:18:43 -05:00
|
|
|
|
2018-03-28 08:24:26 -05:00
|
|
|
declare_clippy_lint! {
|
2021-07-29 05:16:06 -05:00
|
|
|
/// ### What it does
|
|
|
|
/// Checks for usage of `write!()` / `writeln()!` which can be
|
2019-03-05 10:50:33 -06:00
|
|
|
/// replaced with `(e)print!()` / `(e)println!()`
|
|
|
|
///
|
2021-07-29 05:16:06 -05:00
|
|
|
/// ### Why is this bad?
|
|
|
|
/// Using `(e)println! is clearer and more concise
|
2019-03-05 10:50:33 -06:00
|
|
|
///
|
2021-07-29 05:16:06 -05:00
|
|
|
/// ### Example
|
2019-03-05 10:50:33 -06:00
|
|
|
/// ```rust
|
2019-08-02 01:13:54 -05:00
|
|
|
/// # use std::io::Write;
|
|
|
|
/// # let bar = "furchtbar";
|
|
|
|
/// writeln!(&mut std::io::stderr(), "foo: {:?}", bar).unwrap();
|
2022-06-04 06:34:07 -05:00
|
|
|
/// writeln!(&mut std::io::stdout(), "foo: {:?}", bar).unwrap();
|
|
|
|
/// ```
|
|
|
|
///
|
|
|
|
/// Use instead:
|
|
|
|
/// ```rust
|
|
|
|
/// # use std::io::Write;
|
|
|
|
/// # let bar = "furchtbar";
|
|
|
|
/// eprintln!("foo: {:?}", bar);
|
|
|
|
/// println!("foo: {:?}", bar);
|
2019-03-05 10:50:33 -06:00
|
|
|
/// ```
|
2021-12-06 05:33:31 -06:00
|
|
|
#[clippy::version = "pre 1.29.0"]
|
2018-11-27 14:49:09 -06:00
|
|
|
pub EXPLICIT_WRITE,
|
|
|
|
complexity,
|
|
|
|
"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
|
|
|
}
|
|
|
|
|
2019-04-08 15:43:55 -05:00
|
|
|
declare_lint_pass!(ExplicitWrite => [EXPLICIT_WRITE]);
|
2017-10-12 01:18:43 -05:00
|
|
|
|
2020-06-25 15:41:36 -05:00
|
|
|
impl<'tcx> LateLintPass<'tcx> for ExplicitWrite {
|
|
|
|
fn check_expr(&mut self, cx: &LateContext<'tcx>, expr: &'tcx Expr<'_>) {
|
2023-04-11 08:31:08 -05:00
|
|
|
// match call to unwrap
|
|
|
|
if let ExprKind::MethodCall(unwrap_fun, write_call, [], _) = expr.kind
|
|
|
|
&& unwrap_fun.ident.name == sym::unwrap
|
2017-10-12 01:18:43 -05:00
|
|
|
// match call to write_fmt
|
2023-04-11 08:31:08 -05:00
|
|
|
&& let ExprKind::MethodCall(write_fun, write_recv, [write_arg], _) = look_in_block(cx, &write_call.kind)
|
|
|
|
&& write_fun.ident.name == sym!(write_fmt)
|
2017-10-12 01:18:43 -05:00
|
|
|
// match calls to std::io::stdout() / std::io::stderr ()
|
2023-04-11 08:31:08 -05:00
|
|
|
&& let Some(dest_name) = if match_function_call(cx, write_recv, &paths::STDOUT).is_some() {
|
2017-10-12 01:18:43 -05:00
|
|
|
Some("stdout")
|
2021-07-15 03:44:10 -05:00
|
|
|
} else if match_function_call(cx, write_recv, &paths::STDERR).is_some() {
|
2017-10-12 01:18:43 -05:00
|
|
|
Some("stderr")
|
|
|
|
} else {
|
|
|
|
None
|
2023-04-11 08:31:08 -05:00
|
|
|
}
|
|
|
|
{
|
|
|
|
find_format_args(cx, write_arg, ExpnId::root(), |format_args| {
|
2017-10-23 14:18:02 -05:00
|
|
|
let calling_macro =
|
|
|
|
// ordering is important here, since `writeln!` uses `write!` internally
|
2021-07-15 03:44:10 -05:00
|
|
|
if is_expn_of(write_call.span, "writeln").is_some() {
|
2017-10-23 14:18:02 -05:00
|
|
|
Some("writeln")
|
2021-07-15 03:44:10 -05:00
|
|
|
} else if is_expn_of(write_call.span, "write").is_some() {
|
2017-10-23 14:18:02 -05:00
|
|
|
Some("write")
|
|
|
|
} else {
|
|
|
|
None
|
|
|
|
};
|
|
|
|
let prefix = if dest_name == "stderr" {
|
|
|
|
"e"
|
2017-10-12 01:18:43 -05:00
|
|
|
} else {
|
2017-10-23 14:18:02 -05:00
|
|
|
""
|
2017-10-12 01:18:43 -05:00
|
|
|
};
|
2018-11-23 01:18:23 -06:00
|
|
|
|
|
|
|
// We need to remove the last trailing newline from the string because the
|
2018-11-29 01:15:44 -06:00
|
|
|
// underlying `fmt::write` function doesn't know whether `println!` or `print!` was
|
2018-11-23 01:18:23 -06:00
|
|
|
// used.
|
2021-07-15 03:44:10 -05:00
|
|
|
let (used, sugg_mac) = if let Some(macro_name) = calling_macro {
|
|
|
|
(
|
2022-10-06 02:44:38 -05:00
|
|
|
format!("{macro_name}!({dest_name}(), ...)"),
|
2021-07-15 03:44:10 -05:00
|
|
|
macro_name.replace("write", "print"),
|
|
|
|
)
|
|
|
|
} else {
|
|
|
|
(
|
2022-10-06 02:44:38 -05:00
|
|
|
format!("{dest_name}().write_fmt(...)"),
|
2021-07-15 03:44:10 -05:00
|
|
|
"print".into(),
|
|
|
|
)
|
|
|
|
};
|
2022-02-10 11:40:06 -06:00
|
|
|
let mut applicability = Applicability::MachineApplicable;
|
|
|
|
let inputs_snippet = snippet_with_applicability(
|
|
|
|
cx,
|
2023-04-11 08:31:08 -05:00
|
|
|
format_args_inputs_span(format_args),
|
2022-02-10 11:40:06 -06:00
|
|
|
"..",
|
|
|
|
&mut applicability,
|
|
|
|
);
|
|
|
|
span_lint_and_sugg(
|
|
|
|
cx,
|
|
|
|
EXPLICIT_WRITE,
|
|
|
|
expr.span,
|
2022-10-06 02:44:38 -05:00
|
|
|
&format!("use of `{used}.unwrap()`"),
|
2023-07-17 03:19:29 -05:00
|
|
|
"try",
|
2022-10-06 02:44:38 -05:00
|
|
|
format!("{prefix}{sugg_mac}!({inputs_snippet})"),
|
2022-02-10 11:40:06 -06:00
|
|
|
applicability,
|
2023-04-11 08:31:08 -05:00
|
|
|
);
|
|
|
|
});
|
2017-10-23 14:18:02 -05:00
|
|
|
}
|
2017-10-12 01:18:43 -05:00
|
|
|
}
|
|
|
|
}
|
2022-05-22 19:39:44 -05:00
|
|
|
|
|
|
|
/// If `kind` is a block that looks like `{ let result = $expr; result }` then
|
|
|
|
/// returns $expr. Otherwise returns `kind`.
|
|
|
|
fn look_in_block<'tcx, 'hir>(cx: &LateContext<'tcx>, kind: &'tcx ExprKind<'hir>) -> &'tcx ExprKind<'hir> {
|
|
|
|
if_chain! {
|
|
|
|
if let ExprKind::Block(block, _label @ None) = kind;
|
|
|
|
if let Block {
|
|
|
|
stmts: [Stmt { kind: StmtKind::Local(local), .. }],
|
|
|
|
expr: Some(expr_end_of_block),
|
|
|
|
rules: BlockCheckMode::DefaultBlock,
|
|
|
|
..
|
|
|
|
} = block;
|
|
|
|
|
|
|
|
// Find id of the local that expr_end_of_block resolves to
|
|
|
|
if let ExprKind::Path(QPath::Resolved(None, expr_path)) = expr_end_of_block.kind;
|
|
|
|
if let Res::Local(expr_res) = expr_path.res;
|
2022-06-28 13:15:30 -05:00
|
|
|
if let Some(Node::Pat(res_pat)) = cx.tcx.hir().find(expr_res);
|
2022-05-22 19:39:44 -05:00
|
|
|
|
|
|
|
// Find id of the local we found in the block
|
2022-08-30 17:36:53 -05:00
|
|
|
if let PatKind::Binding(BindingAnnotation::NONE, local_hir_id, _ident, None) = local.pat.kind;
|
2022-05-22 19:39:44 -05:00
|
|
|
|
|
|
|
// If those two are the same hir id
|
|
|
|
if res_pat.hir_id == local_hir_id;
|
|
|
|
|
|
|
|
if let Some(init) = local.init;
|
|
|
|
then {
|
|
|
|
return &init.kind;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
kind
|
|
|
|
}
|