rust/clippy_lints/src/dbg_macro.rs

118 lines
4.2 KiB
Rust
Raw Normal View History

2022-02-11 14:45:56 +00:00
use clippy_utils::diagnostics::span_lint_and_sugg;
use clippy_utils::macros::root_macro_call_first_node;
use clippy_utils::source::snippet_with_applicability;
2022-05-18 00:37:12 +09:00
use clippy_utils::{is_in_cfg_test, is_in_test_function};
use rustc_errors::Applicability;
use rustc_hir::{Expr, ExprKind, Node, Stmt, StmtKind};
use rustc_lint::{LateContext, LateLintPass, LintContext};
2022-05-27 01:30:44 +09:00
use rustc_session::{declare_tool_lint, impl_lint_pass};
use rustc_span::{sym, Span};
2019-01-31 02:39:38 +09:00
declare_clippy_lint! {
/// ### What it does
2023-01-01 02:41:45 -05:00
/// Checks for usage of the [`dbg!`](https://doc.rust-lang.org/std/macro.dbg.html) macro.
///
/// ### Why is this bad?
2023-01-01 02:41:45 -05:00
/// The `dbg!` macro is intended as a debugging tool. It should not be present in released
/// software or committed to a version control system.
///
/// ### Example
/// ```rust,ignore
/// dbg!(true)
2022-06-05 15:24:41 -04:00
/// ```
///
2022-06-05 15:24:41 -04:00
/// Use instead:
/// ```rust,ignore
/// true
/// ```
Added `clippy::version` attribute to all normal lints So, some context for this, well, more a story. I'm not used to scripting, I've never really scripted anything, even if it's a valuable skill. I just never really needed it. Now, `@flip1995` correctly suggested using a script for this in `rust-clippy#7813`... And I decided to write a script using nushell because why not? This was a mistake... I spend way more time on this than I would like to admit. It has definitely been more than 4 hours. It shouldn't take that long, but me being new to scripting and nushell just wasn't a good mixture... Anyway, here is the script that creates another script which adds the versions. Fun... Just execute this on the `gh-pages` branch and the resulting `replacer.sh` in `clippy_lints` and it should all work. ```nu mv v0.0.212 rust-1.00.0; mv beta rust-1.57.0; mv master rust-1.58.0; let paths = (open ./rust-1.58.0/lints.json | select id id_span | flatten | select id path); let versions = ( ls | where name =~ "rust-" | select name | format {name}/lints.json | each { open $it | select id | insert version $it | str substring "5,11" version} | group-by id | rotate counter-clockwise id version | update version {get version | first 1} | flatten | select id version); $paths | each { |row| let version = ($versions | where id == ($row.id) | format {version}) let idu = ($row.id | str upcase) $"sed -i '0,/($idu),/{s/pub ($idu),/#[clippy::version = "($version)"]\n pub ($idu),/}' ($row.path)" } | str collect ";" | str find-replace --all '1.00.0' 'pre 1.29.0' | save "replacer.sh"; ``` And this still has some problems, but at this point I just want to be done -.-
2021-10-21 21:06:26 +02:00
#[clippy::version = "1.34.0"]
2019-01-31 02:39:38 +09:00
pub DBG_MACRO,
2019-02-01 09:23:40 +09:00
restriction,
2019-01-31 02:39:38 +09:00
"`dbg!` macro is intended as a debugging tool"
}
fn span_including_semi(cx: &LateContext<'_>, span: Span) -> Span {
let span = cx.sess().source_map().span_extend_to_next_char(span, ';', true);
span.with_hi(span.hi() + rustc_span::BytePos(1))
}
2022-05-27 01:30:44 +09:00
#[derive(Copy, Clone)]
pub struct DbgMacro {
allow_dbg_in_tests: bool,
}
impl_lint_pass!(DbgMacro => [DBG_MACRO]);
impl DbgMacro {
pub fn new(allow_dbg_in_tests: bool) -> Self {
DbgMacro { allow_dbg_in_tests }
}
}
2019-01-31 02:39:38 +09:00
2022-02-11 14:45:56 +00:00
impl LateLintPass<'_> for DbgMacro {
fn check_expr(&mut self, cx: &LateContext<'_>, expr: &Expr<'_>) {
let Some(macro_call) = root_macro_call_first_node(cx, expr) else { return };
if cx.tcx.is_diagnostic_item(sym::dbg_macro, macro_call.def_id) {
2022-05-27 01:30:44 +09:00
// allows `dbg!` in test code if allow-dbg-in-test is set to true in clippy.toml
if self.allow_dbg_in_tests
&& (is_in_test_function(cx.tcx, expr.hir_id) || is_in_cfg_test(cx.tcx, expr.hir_id))
{
2022-03-03 19:28:05 +01:00
return;
}
2022-02-11 14:45:56 +00:00
let mut applicability = Applicability::MachineApplicable;
let (sugg_span, suggestion) = match expr.peel_drop_temps().kind {
ExprKind::Block(..) => match cx.tcx.hir().find_parent(expr.hir_id) {
// dbg!() as a standalone statement, suggest removing the whole statement entirely
Some(Node::Stmt(
stmt @ Stmt {
kind: StmtKind::Semi(_),
..
},
)) => (span_including_semi(cx, stmt.span.source_callsite()), String::new()),
// empty dbg!() in arbitrary position (e.g. `foo(dbg!())`), suggest replacing with `foo(())`
_ => (macro_call.span, String::from("()")),
2022-02-11 14:45:56 +00:00
},
// dbg!(1)
ExprKind::Match(val, ..) => (
macro_call.span,
snippet_with_applicability(cx, val.span.source_callsite(), "..", &mut applicability).to_string(),
),
2022-02-11 14:45:56 +00:00
// dbg!(2, 3)
ExprKind::Tup(
[
Expr {
kind: ExprKind::Match(first, ..),
..
},
..,
Expr {
kind: ExprKind::Match(last, ..),
..
},
],
) => {
let snippet = snippet_with_applicability(
cx,
first.span.source_callsite().to(last.span.source_callsite()),
"..",
&mut applicability,
);
(macro_call.span, format!("({snippet})"))
2022-02-11 14:45:56 +00:00
},
_ => return,
};
span_lint_and_sugg(
cx,
DBG_MACRO,
sugg_span,
2023-01-01 02:41:45 -05:00
"the `dbg!` macro is intended as a debugging tool",
"remove the invocation before committing it to a version control system",
2022-02-11 14:45:56 +00:00
suggestion,
applicability,
);
2019-01-31 02:39:38 +09:00
}
}
}