@@ -7,6 +7,43 @@ use walkdir::WalkDir;
7
7
8
8
mod groups;
9
9
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
+
10
47
pub struct LintExtractor < ' a > {
11
48
/// Path to the `src` directory, where it will scan for `.rs` files to
12
49
/// find lint declarations.
@@ -126,6 +163,7 @@ impl<'a> LintExtractor<'a> {
126
163
)
127
164
} ) ?;
128
165
}
166
+ add_renamed_lints ( & mut lints) ;
129
167
self . save_lints_markdown ( & lints) ?;
130
168
self . generate_group_docs ( & lints) ?;
131
169
Ok ( ( ) )
@@ -482,6 +520,7 @@ impl<'a> LintExtractor<'a> {
482
520
}
483
521
result. push ( '\n' ) ;
484
522
}
523
+ add_rename_redirect ( level, & mut result) ;
485
524
let out_path = self . out_path . join ( "listing" ) . join ( level. doc_filename ( ) ) ;
486
525
// Delete the output because rustbuild uses hard links in its copies.
487
526
let _ = fs:: remove_file ( & out_path) ;
@@ -491,6 +530,56 @@ impl<'a> LintExtractor<'a> {
491
530
}
492
531
}
493
532
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
+
494
583
/// Extracts the lint name (removing the visibility modifier, and checking validity).
495
584
fn lint_name ( line : & str ) -> Result < String , & ' static str > {
496
585
// Skip over any potential `pub` visibility.
0 commit comments