Skip to content

Commit 871c3e3

Browse files
authored
Rollup merge of #123986 - ehuss:lint-renamed, r=Mark-Simulacrum
lint-docs: Add redirects for renamed lints. This updates the lint docs to include a redirect for renamed lints to the new name. This helps ensure that links to the old name will still be valid. Note that this currently uses a hard-coded list. As mentioned in the comment, a future enhancement may gather this information in a better way. Unblocks #123680
2 parents a73aabf + 232eb59 commit 871c3e3

File tree

1 file changed

+89
-0
lines changed

1 file changed

+89
-0
lines changed

src/tools/lint-docs/src/lib.rs

+89
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,43 @@ use walkdir::WalkDir;
77

88
mod groups;
99

10+
/// List of lints which have been renamed.
11+
///
12+
/// These will get redirects in the output to the new name. The
13+
/// format is `(level, [(old_name, new_name), ...])`.
14+
///
15+
/// Note: This hard-coded list is a temporary hack. The intent is in the
16+
/// future to have `rustc` expose this information in some way (like a `-Z`
17+
/// flag spitting out JSON). Also, this does not yet support changing the
18+
/// level of the lint, which will be more difficult to support, since rustc
19+
/// currently does not track that historical information.
20+
static RENAMES: &[(Level, &[(&str, &str)])] = &[
21+
(
22+
Level::Allow,
23+
&[
24+
("single-use-lifetime", "single-use-lifetimes"),
25+
("elided-lifetime-in-path", "elided-lifetimes-in-paths"),
26+
("async-idents", "keyword-idents"),
27+
("disjoint-capture-migration", "rust-2021-incompatible-closure-captures"),
28+
("or-patterns-back-compat", "rust-2021-incompatible-or-patterns"),
29+
],
30+
),
31+
(
32+
Level::Warn,
33+
&[
34+
("bare-trait-object", "bare-trait-objects"),
35+
("unstable-name-collision", "unstable-name-collisions"),
36+
("unused-doc-comment", "unused-doc-comments"),
37+
("redundant-semicolon", "redundant-semicolons"),
38+
("overlapping-patterns", "overlapping-range-endpoints"),
39+
("non-fmt-panic", "non-fmt-panics"),
40+
("unused-tuple-struct-fields", "dead-code"),
41+
("static-mut-ref", "static-mut-refs"),
42+
],
43+
),
44+
(Level::Deny, &[("exceeding-bitshifts", "arithmetic-overflow")]),
45+
];
46+
1047
pub struct LintExtractor<'a> {
1148
/// Path to the `src` directory, where it will scan for `.rs` files to
1249
/// find lint declarations.
@@ -126,6 +163,7 @@ impl<'a> LintExtractor<'a> {
126163
)
127164
})?;
128165
}
166+
add_renamed_lints(&mut lints);
129167
self.save_lints_markdown(&lints)?;
130168
self.generate_group_docs(&lints)?;
131169
Ok(())
@@ -482,6 +520,7 @@ impl<'a> LintExtractor<'a> {
482520
}
483521
result.push('\n');
484522
}
523+
add_rename_redirect(level, &mut result);
485524
let out_path = self.out_path.join("listing").join(level.doc_filename());
486525
// Delete the output because rustbuild uses hard links in its copies.
487526
let _ = fs::remove_file(&out_path);
@@ -491,6 +530,56 @@ impl<'a> LintExtractor<'a> {
491530
}
492531
}
493532

533+
/// Adds `Lint`s that have been renamed.
534+
fn add_renamed_lints(lints: &mut Vec<Lint>) {
535+
for (level, names) in RENAMES {
536+
for (from, to) in *names {
537+
lints.push(Lint {
538+
name: from.to_string(),
539+
doc: vec![format!("The lint `{from}` has been renamed to [`{to}`](#{to}).")],
540+
level: *level,
541+
path: PathBuf::new(),
542+
lineno: 0,
543+
});
544+
}
545+
}
546+
}
547+
548+
// This uses DOMContentLoaded instead of running immediately because for some
549+
// reason on Firefox (124 of this writing) doesn't update the `target` CSS
550+
// selector if only the hash changes.
551+
static RENAME_START: &str = "
552+
<script>
553+
document.addEventListener(\"DOMContentLoaded\", (event) => {
554+
var fragments = {
555+
";
556+
557+
static RENAME_END: &str = "\
558+
};
559+
var target = fragments[window.location.hash];
560+
if (target) {
561+
var url = window.location.toString();
562+
var base = url.substring(0, url.lastIndexOf('/'));
563+
window.location.replace(base + \"/\" + target);
564+
}
565+
});
566+
</script>
567+
";
568+
569+
/// Adds the javascript redirection code to the given markdown output.
570+
fn add_rename_redirect(level: Level, output: &mut String) {
571+
for (rename_level, names) in RENAMES {
572+
if *rename_level == level {
573+
let filename = level.doc_filename().replace(".md", ".html");
574+
output.push_str(RENAME_START);
575+
for (from, to) in *names {
576+
write!(output, " \"#{from}\": \"{filename}#{to}\",\n").unwrap();
577+
}
578+
output.push_str(RENAME_END);
579+
}
580+
}
581+
}
582+
494583
/// Extracts the lint name (removing the visibility modifier, and checking validity).
495584
fn lint_name(line: &str) -> Result<String, &'static str> {
496585
// Skip over any potential `pub` visibility.

0 commit comments

Comments
 (0)