]> git.lizzy.rs Git - rust.git/blob - src/bootstrap/doc.rs
571396eb835bff3e247dd03a8e895d552c7b7173
[rust.git] / src / bootstrap / doc.rs
1 //! Documentation generation for rustbuilder.
2 //!
3 //! This module implements generation for all bits and pieces of documentation
4 //! for the Rust project. This notably includes suites like the rust book, the
5 //! nomicon, rust by example, standalone documentation, etc.
6 //!
7 //! Everything here is basically just a shim around calling either `rustbook` or
8 //! `rustdoc`.
9
10 use std::ffi::OsStr;
11 use std::fs;
12 use std::io;
13 use std::path::{Path, PathBuf};
14
15 use crate::builder::{Builder, Compiler, Kind, RunConfig, ShouldRun, Step};
16 use crate::cache::{Interned, INTERNER};
17 use crate::compile;
18 use crate::config::{Config, TargetSelection};
19 use crate::tool::{self, prepare_tool_cargo, SourceType, Tool};
20 use crate::util::{symlink_dir, t, up_to_date};
21 use crate::Mode;
22
23 macro_rules! submodule_helper {
24     ($path:expr, submodule) => {
25         $path
26     };
27     ($path:expr, submodule = $submodule:literal) => {
28         $submodule
29     };
30 }
31
32 macro_rules! book {
33     ($($name:ident, $path:expr, $book_name:expr $(, submodule $(= $submodule:literal)? )? ;)+) => {
34         $(
35             #[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)]
36         pub struct $name {
37             target: TargetSelection,
38         }
39
40         impl Step for $name {
41             type Output = ();
42             const DEFAULT: bool = true;
43
44             fn should_run(run: ShouldRun<'_>) -> ShouldRun<'_> {
45                 let builder = run.builder;
46                 run.path($path).default_condition(builder.config.docs)
47             }
48
49             fn make_run(run: RunConfig<'_>) {
50                 run.builder.ensure($name {
51                     target: run.target,
52                 });
53             }
54
55             fn run(self, builder: &Builder<'_>) {
56                 $(
57                     let path = Path::new(submodule_helper!( $path, submodule $( = $submodule )? ));
58                     builder.update_submodule(&path);
59                 )?
60                 builder.ensure(RustbookSrc {
61                     target: self.target,
62                     name: INTERNER.intern_str($book_name),
63                     src: INTERNER.intern_path(builder.src.join($path)),
64                 })
65             }
66         }
67         )+
68     }
69 }
70
71 // NOTE: When adding a book here, make sure to ALSO build the book by
72 // adding a build step in `src/bootstrap/builder.rs`!
73 // NOTE: Make sure to add the corresponding submodule when adding a new book.
74 // FIXME: Make checking for a submodule automatic somehow (maybe by having a list of all submodules
75 // and checking against it?).
76 book!(
77     CargoBook, "src/tools/cargo/src/doc", "cargo", submodule = "src/tools/cargo";
78     ClippyBook, "src/tools/clippy/book", "clippy";
79     EditionGuide, "src/doc/edition-guide", "edition-guide", submodule;
80     EmbeddedBook, "src/doc/embedded-book", "embedded-book", submodule;
81     Nomicon, "src/doc/nomicon", "nomicon", submodule;
82     Reference, "src/doc/reference", "reference", submodule;
83     RustByExample, "src/doc/rust-by-example", "rust-by-example", submodule;
84     RustdocBook, "src/doc/rustdoc", "rustdoc";
85     StyleGuide, "src/doc/style-guide", "style-guide";
86 );
87
88 // "library/std" -> ["library", "std"]
89 //
90 // Used for deciding whether a particular step is one requested by the user on
91 // the `x.py doc` command line, which determines whether `--open` will open that
92 // page.
93 pub(crate) fn components_simplified(path: &PathBuf) -> Vec<&str> {
94     path.iter().map(|component| component.to_str().unwrap_or("???")).collect()
95 }
96
97 #[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)]
98 pub struct UnstableBook {
99     target: TargetSelection,
100 }
101
102 impl Step for UnstableBook {
103     type Output = ();
104     const DEFAULT: bool = true;
105
106     fn should_run(run: ShouldRun<'_>) -> ShouldRun<'_> {
107         let builder = run.builder;
108         run.path("src/doc/unstable-book").default_condition(builder.config.docs)
109     }
110
111     fn make_run(run: RunConfig<'_>) {
112         run.builder.ensure(UnstableBook { target: run.target });
113     }
114
115     fn run(self, builder: &Builder<'_>) {
116         builder.ensure(UnstableBookGen { target: self.target });
117         builder.ensure(RustbookSrc {
118             target: self.target,
119             name: INTERNER.intern_str("unstable-book"),
120             src: INTERNER.intern_path(builder.md_doc_out(self.target).join("unstable-book")),
121         })
122     }
123 }
124
125 #[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)]
126 struct RustbookSrc {
127     target: TargetSelection,
128     name: Interned<String>,
129     src: Interned<PathBuf>,
130 }
131
132 impl Step for RustbookSrc {
133     type Output = ();
134
135     fn should_run(run: ShouldRun<'_>) -> ShouldRun<'_> {
136         run.never()
137     }
138
139     /// Invoke `rustbook` for `target` for the doc book `name` from the `src` path.
140     ///
141     /// This will not actually generate any documentation if the documentation has
142     /// already been generated.
143     fn run(self, builder: &Builder<'_>) {
144         let target = self.target;
145         let name = self.name;
146         let src = self.src;
147         let out = builder.doc_out(target);
148         t!(fs::create_dir_all(&out));
149
150         let out = out.join(name);
151         let index = out.join("index.html");
152         let rustbook = builder.tool_exe(Tool::Rustbook);
153         let mut rustbook_cmd = builder.tool_cmd(Tool::Rustbook);
154         if builder.config.dry_run() || up_to_date(&src, &index) && up_to_date(&rustbook, &index) {
155             return;
156         }
157         builder.info(&format!("Rustbook ({}) - {}", target, name));
158         let _ = fs::remove_dir_all(&out);
159
160         builder.run(rustbook_cmd.arg("build").arg(&src).arg("-d").arg(out));
161     }
162 }
163
164 #[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)]
165 pub struct TheBook {
166     compiler: Compiler,
167     target: TargetSelection,
168 }
169
170 impl Step for TheBook {
171     type Output = ();
172     const DEFAULT: bool = true;
173
174     fn should_run(run: ShouldRun<'_>) -> ShouldRun<'_> {
175         let builder = run.builder;
176         run.path("src/doc/book").default_condition(builder.config.docs)
177     }
178
179     fn make_run(run: RunConfig<'_>) {
180         run.builder.ensure(TheBook {
181             compiler: run.builder.compiler(run.builder.top_stage, run.builder.config.build),
182             target: run.target,
183         });
184     }
185
186     /// Builds the book and associated stuff.
187     ///
188     /// We need to build:
189     ///
190     /// * Book
191     /// * Older edition redirects
192     /// * Version info and CSS
193     /// * Index page
194     /// * Redirect pages
195     fn run(self, builder: &Builder<'_>) {
196         let relative_path = Path::new("src").join("doc").join("book");
197         builder.update_submodule(&relative_path);
198
199         let compiler = self.compiler;
200         let target = self.target;
201
202         // build book
203         builder.ensure(RustbookSrc {
204             target,
205             name: INTERNER.intern_str("book"),
206             src: INTERNER.intern_path(builder.src.join(&relative_path)),
207         });
208
209         // building older edition redirects
210         for edition in &["first-edition", "second-edition", "2018-edition"] {
211             builder.ensure(RustbookSrc {
212                 target,
213                 name: INTERNER.intern_string(format!("book/{}", edition)),
214                 src: INTERNER.intern_path(builder.src.join(&relative_path).join(edition)),
215             });
216         }
217
218         // build the version info page and CSS
219         let shared_assets = builder.ensure(SharedAssets { target });
220
221         // build the redirect pages
222         builder.info(&format!("Documenting book redirect pages ({})", target));
223         for file in t!(fs::read_dir(builder.src.join(&relative_path).join("redirects"))) {
224             let file = t!(file);
225             let path = file.path();
226             let path = path.to_str().unwrap();
227
228             invoke_rustdoc(builder, compiler, &shared_assets, target, path);
229         }
230
231         let out = builder.doc_out(target);
232         let index = out.join("book").join("index.html");
233         builder.maybe_open_in_browser::<Self>(index);
234     }
235 }
236
237 fn invoke_rustdoc(
238     builder: &Builder<'_>,
239     compiler: Compiler,
240     shared_assets: &SharedAssetsPaths,
241     target: TargetSelection,
242     markdown: &str,
243 ) {
244     let out = builder.doc_out(target);
245
246     let path = builder.src.join("src/doc").join(markdown);
247
248     let header = builder.src.join("src/doc/redirect.inc");
249     let footer = builder.src.join("src/doc/footer.inc");
250
251     let mut cmd = builder.rustdoc_cmd(compiler);
252
253     let out = out.join("book");
254
255     cmd.arg("--html-after-content")
256         .arg(&footer)
257         .arg("--html-before-content")
258         .arg(&shared_assets.version_info)
259         .arg("--html-in-header")
260         .arg(&header)
261         .arg("--markdown-no-toc")
262         .arg("--markdown-playground-url")
263         .arg("https://play.rust-lang.org/")
264         .arg("-o")
265         .arg(&out)
266         .arg(&path)
267         .arg("--markdown-css")
268         .arg("../rust.css");
269
270     if !builder.config.docs_minification {
271         cmd.arg("-Z").arg("unstable-options").arg("--disable-minification");
272     }
273
274     builder.run(&mut cmd);
275 }
276
277 #[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)]
278 pub struct Standalone {
279     compiler: Compiler,
280     target: TargetSelection,
281 }
282
283 impl Step for Standalone {
284     type Output = ();
285     const DEFAULT: bool = true;
286
287     fn should_run(run: ShouldRun<'_>) -> ShouldRun<'_> {
288         let builder = run.builder;
289         run.path("src/doc").alias("standalone").default_condition(builder.config.docs)
290     }
291
292     fn make_run(run: RunConfig<'_>) {
293         run.builder.ensure(Standalone {
294             compiler: run.builder.compiler(run.builder.top_stage, run.builder.config.build),
295             target: run.target,
296         });
297     }
298
299     /// Generates all standalone documentation as compiled by the rustdoc in `stage`
300     /// for the `target` into `out`.
301     ///
302     /// This will list all of `src/doc` looking for markdown files and appropriately
303     /// perform transformations like substituting `VERSION`, `SHORT_HASH`, and
304     /// `STAMP` along with providing the various header/footer HTML we've customized.
305     ///
306     /// In the end, this is just a glorified wrapper around rustdoc!
307     fn run(self, builder: &Builder<'_>) {
308         let target = self.target;
309         let compiler = self.compiler;
310         builder.info(&format!("Documenting standalone ({})", target));
311         let out = builder.doc_out(target);
312         t!(fs::create_dir_all(&out));
313
314         let version_info = builder.ensure(SharedAssets { target: self.target }).version_info;
315
316         let favicon = builder.src.join("src/doc/favicon.inc");
317         let footer = builder.src.join("src/doc/footer.inc");
318         let full_toc = builder.src.join("src/doc/full-toc.inc");
319
320         for file in t!(fs::read_dir(builder.src.join("src/doc"))) {
321             let file = t!(file);
322             let path = file.path();
323             let filename = path.file_name().unwrap().to_str().unwrap();
324             if !filename.ends_with(".md") || filename == "README.md" {
325                 continue;
326             }
327
328             let html = out.join(filename).with_extension("html");
329             let rustdoc = builder.rustdoc(compiler);
330             if up_to_date(&path, &html)
331                 && up_to_date(&footer, &html)
332                 && up_to_date(&favicon, &html)
333                 && up_to_date(&full_toc, &html)
334                 && (builder.config.dry_run() || up_to_date(&version_info, &html))
335                 && (builder.config.dry_run() || up_to_date(&rustdoc, &html))
336             {
337                 continue;
338             }
339
340             let mut cmd = builder.rustdoc_cmd(compiler);
341             // Needed for --index-page flag
342             cmd.arg("-Z").arg("unstable-options");
343
344             cmd.arg("--html-after-content")
345                 .arg(&footer)
346                 .arg("--html-before-content")
347                 .arg(&version_info)
348                 .arg("--html-in-header")
349                 .arg(&favicon)
350                 .arg("--markdown-no-toc")
351                 .arg("--index-page")
352                 .arg(&builder.src.join("src/doc/index.md"))
353                 .arg("--markdown-playground-url")
354                 .arg("https://play.rust-lang.org/")
355                 .arg("-o")
356                 .arg(&out)
357                 .arg(&path);
358
359             if !builder.config.docs_minification {
360                 cmd.arg("--disable-minification");
361             }
362
363             if filename == "not_found.md" {
364                 cmd.arg("--markdown-css").arg("https://doc.rust-lang.org/rust.css");
365             } else {
366                 cmd.arg("--markdown-css").arg("rust.css");
367             }
368             builder.run(&mut cmd);
369         }
370
371         // We open doc/index.html as the default if invoked as `x.py doc --open`
372         // with no particular explicit doc requested (e.g. library/core).
373         if builder.paths.is_empty() || builder.was_invoked_explicitly::<Self>(Kind::Doc) {
374             let index = out.join("index.html");
375             builder.open_in_browser(&index);
376         }
377     }
378 }
379
380 #[derive(Debug, Clone)]
381 pub struct SharedAssetsPaths {
382     pub version_info: PathBuf,
383 }
384
385 #[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)]
386 pub struct SharedAssets {
387     target: TargetSelection,
388 }
389
390 impl Step for SharedAssets {
391     type Output = SharedAssetsPaths;
392     const DEFAULT: bool = false;
393
394     fn should_run(run: ShouldRun<'_>) -> ShouldRun<'_> {
395         // Other tasks depend on this, no need to execute it on its own
396         run.never()
397     }
398
399     // Generate shared resources used by other pieces of documentation.
400     fn run(self, builder: &Builder<'_>) -> Self::Output {
401         let out = builder.doc_out(self.target);
402
403         let version_input = builder.src.join("src").join("doc").join("version_info.html.template");
404         let version_info = out.join("version_info.html");
405         if !builder.config.dry_run() && !up_to_date(&version_input, &version_info) {
406             let info = t!(fs::read_to_string(&version_input))
407                 .replace("VERSION", &builder.rust_release())
408                 .replace("SHORT_HASH", builder.rust_info().sha_short().unwrap_or(""))
409                 .replace("STAMP", builder.rust_info().sha().unwrap_or(""));
410             t!(fs::write(&version_info, &info));
411         }
412
413         builder.copy(&builder.src.join("src").join("doc").join("rust.css"), &out.join("rust.css"));
414
415         SharedAssetsPaths { version_info }
416     }
417 }
418
419 #[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)]
420 pub struct Std {
421     pub stage: u32,
422     pub target: TargetSelection,
423     pub format: DocumentationFormat,
424 }
425
426 impl Step for Std {
427     type Output = ();
428     const DEFAULT: bool = true;
429
430     fn should_run(run: ShouldRun<'_>) -> ShouldRun<'_> {
431         let builder = run.builder;
432         run.all_krates("test").path("library").default_condition(builder.config.docs)
433     }
434
435     fn make_run(run: RunConfig<'_>) {
436         run.builder.ensure(Std {
437             stage: run.builder.top_stage,
438             target: run.target,
439             format: if run.builder.config.cmd.json() {
440                 DocumentationFormat::JSON
441             } else {
442                 DocumentationFormat::HTML
443             },
444         });
445     }
446
447     /// Compile all standard library documentation.
448     ///
449     /// This will generate all documentation for the standard library and its
450     /// dependencies. This is largely just a wrapper around `cargo doc`.
451     fn run(self, builder: &Builder<'_>) {
452         let stage = self.stage;
453         let target = self.target;
454         let out = match self.format {
455             DocumentationFormat::HTML => builder.doc_out(target),
456             DocumentationFormat::JSON => builder.json_doc_out(target),
457         };
458
459         t!(fs::create_dir_all(&out));
460
461         builder.ensure(SharedAssets { target: self.target });
462
463         let index_page = builder.src.join("src/doc/index.md").into_os_string();
464         let mut extra_args = match self.format {
465             DocumentationFormat::HTML => vec![
466                 OsStr::new("--markdown-css"),
467                 OsStr::new("rust.css"),
468                 OsStr::new("--markdown-no-toc"),
469                 OsStr::new("--index-page"),
470                 &index_page,
471             ],
472             DocumentationFormat::JSON => vec![OsStr::new("--output-format"), OsStr::new("json")],
473         };
474
475         if !builder.config.docs_minification {
476             extra_args.push(OsStr::new("--disable-minification"));
477         }
478
479         let requested_crates = builder
480             .paths
481             .iter()
482             .map(components_simplified)
483             .filter_map(|path| {
484                 if path.len() >= 2 && path.get(0) == Some(&"library") {
485                     // single crate
486                     Some(path[1].to_owned())
487                 } else if !path.is_empty() {
488                     // ??
489                     Some(path[0].to_owned())
490                 } else {
491                     // all library crates
492                     None
493                 }
494             })
495             .collect::<Vec<_>>();
496
497         doc_std(builder, self.format, stage, target, &out, &extra_args, &requested_crates);
498
499         // Don't open if the format is json
500         if let DocumentationFormat::JSON = self.format {
501             return;
502         }
503
504         // Look for library/std, library/core etc in the `x.py doc` arguments and
505         // open the corresponding rendered docs.
506         for requested_crate in requested_crates {
507             if STD_PUBLIC_CRATES.iter().any(|k| *k == requested_crate.as_str()) {
508                 let index = out.join(requested_crate).join("index.html");
509                 builder.open_in_browser(index);
510             }
511         }
512     }
513 }
514
515 /// Name of the crates that are visible to consumers of the standard library.
516 /// Documentation for internal crates is handled by the rustc step, so internal crates will show
517 /// up there.
518 ///
519 /// Order here is important!
520 /// Crates need to be processed starting from the leaves, otherwise rustdoc will not
521 /// create correct links between crates because rustdoc depends on the
522 /// existence of the output directories to know if it should be a local
523 /// or remote link.
524 const STD_PUBLIC_CRATES: [&str; 5] = ["core", "alloc", "std", "proc_macro", "test"];
525
526 #[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)]
527 pub enum DocumentationFormat {
528     HTML,
529     JSON,
530 }
531
532 impl DocumentationFormat {
533     fn as_str(&self) -> &str {
534         match self {
535             DocumentationFormat::HTML => "HTML",
536             DocumentationFormat::JSON => "JSON",
537         }
538     }
539 }
540
541 /// Build the documentation for public standard library crates.
542 ///
543 /// `requested_crates` can be used to build only a subset of the crates. If empty, all crates will
544 /// be built.
545 fn doc_std(
546     builder: &Builder<'_>,
547     format: DocumentationFormat,
548     stage: u32,
549     target: TargetSelection,
550     out: &Path,
551     extra_args: &[&OsStr],
552     requested_crates: &[String],
553 ) {
554     builder.info(&format!(
555         "Documenting stage{} std ({}) in {} format",
556         stage,
557         target,
558         format.as_str()
559     ));
560     if builder.no_std(target) == Some(true) {
561         panic!(
562             "building std documentation for no_std target {target} is not supported\n\
563              Set `docs = false` in the config to disable documentation."
564         );
565     }
566     let compiler = builder.compiler(stage, builder.config.build);
567
568     let target_doc_dir_name = if format == DocumentationFormat::JSON { "json-doc" } else { "doc" };
569     let target_dir =
570         builder.stage_out(compiler, Mode::Std).join(target.triple).join(target_doc_dir_name);
571
572     // This is directory where the compiler will place the output of the command.
573     // We will then copy the files from this directory into the final `out` directory, the specified
574     // as a function parameter.
575     let out_dir = target_dir.join(target.triple).join("doc");
576
577     let run_cargo_rustdoc_for = |package: &str| {
578         let mut cargo = builder.cargo(compiler, Mode::Std, SourceType::InTree, target, "rustdoc");
579         compile::std_cargo(builder, target, compiler.stage, &mut cargo);
580         cargo
581             .arg("--target-dir")
582             .arg(&*target_dir.to_string_lossy())
583             .arg("-p")
584             .arg(package)
585             .arg("-Zskip-rustdoc-fingerprint")
586             .arg("--")
587             .arg("-Z")
588             .arg("unstable-options")
589             .arg("--resource-suffix")
590             .arg(&builder.version)
591             .args(extra_args);
592         builder.run(&mut cargo.into());
593     };
594
595     for krate in STD_PUBLIC_CRATES {
596         run_cargo_rustdoc_for(krate);
597         if requested_crates.iter().any(|p| p == krate) {
598             // No need to document more of the libraries if we have the one we want.
599             break;
600         }
601     }
602
603     builder.cp_r(&out_dir, &out);
604 }
605
606 #[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)]
607 pub struct Rustc {
608     pub stage: u32,
609     pub target: TargetSelection,
610 }
611
612 impl Step for Rustc {
613     type Output = ();
614     const DEFAULT: bool = true;
615     const ONLY_HOSTS: bool = true;
616
617     fn should_run(run: ShouldRun<'_>) -> ShouldRun<'_> {
618         let builder = run.builder;
619         run.crate_or_deps("rustc-main")
620             .path("compiler")
621             .default_condition(builder.config.compiler_docs)
622     }
623
624     fn make_run(run: RunConfig<'_>) {
625         run.builder.ensure(Rustc { stage: run.builder.top_stage, target: run.target });
626     }
627
628     /// Generates compiler documentation.
629     ///
630     /// This will generate all documentation for compiler and dependencies.
631     /// Compiler documentation is distributed separately, so we make sure
632     /// we do not merge it with the other documentation from std, test and
633     /// proc_macros. This is largely just a wrapper around `cargo doc`.
634     fn run(self, builder: &Builder<'_>) {
635         let stage = self.stage;
636         let target = self.target;
637
638         let paths = builder
639             .paths
640             .iter()
641             .filter(|path| {
642                 let components = components_simplified(path);
643                 components.len() >= 2 && components[0] == "compiler"
644             })
645             .collect::<Vec<_>>();
646
647         // This is the intended out directory for compiler documentation.
648         let out = builder.compiler_doc_out(target);
649         t!(fs::create_dir_all(&out));
650
651         // Build the standard library, so that proc-macros can use it.
652         // (Normally, only the metadata would be necessary, but proc-macros are special since they run at compile-time.)
653         let compiler = builder.compiler(stage, builder.config.build);
654         builder.ensure(compile::Std::new(compiler, builder.config.build));
655
656         builder.info(&format!("Documenting stage{} compiler ({})", stage, target));
657
658         // This uses a shared directory so that librustdoc documentation gets
659         // correctly built and merged with the rustc documentation. This is
660         // needed because rustdoc is built in a different directory from
661         // rustc. rustdoc needs to be able to see everything, for example when
662         // merging the search index, or generating local (relative) links.
663         let out_dir = builder.stage_out(compiler, Mode::Rustc).join(target.triple).join("doc");
664         t!(symlink_dir_force(&builder.config, &out, &out_dir));
665         // Cargo puts proc macros in `target/doc` even if you pass `--target`
666         // explicitly (https://github.com/rust-lang/cargo/issues/7677).
667         let proc_macro_out_dir = builder.stage_out(compiler, Mode::Rustc).join("doc");
668         t!(symlink_dir_force(&builder.config, &out, &proc_macro_out_dir));
669
670         // Build cargo command.
671         let mut cargo = builder.cargo(compiler, Mode::Rustc, SourceType::InTree, target, "doc");
672         cargo.rustdocflag("--document-private-items");
673         // Since we always pass --document-private-items, there's no need to warn about linking to private items.
674         cargo.rustdocflag("-Arustdoc::private-intra-doc-links");
675         cargo.rustdocflag("--enable-index-page");
676         cargo.rustdocflag("-Zunstable-options");
677         cargo.rustdocflag("-Znormalize-docs");
678         cargo.rustdocflag("--show-type-layout");
679         cargo.rustdocflag("--generate-link-to-definition");
680         compile::rustc_cargo(builder, &mut cargo, target);
681         cargo.arg("-Zunstable-options");
682         cargo.arg("-Zskip-rustdoc-fingerprint");
683
684         // Only include compiler crates, no dependencies of those, such as `libc`.
685         // Do link to dependencies on `docs.rs` however using `rustdoc-map`.
686         cargo.arg("--no-deps");
687         cargo.arg("-Zrustdoc-map");
688
689         // FIXME: `-Zrustdoc-map` does not yet correctly work for transitive dependencies,
690         // once this is no longer an issue the special case for `ena` can be removed.
691         cargo.rustdocflag("--extern-html-root-url");
692         cargo.rustdocflag("ena=https://docs.rs/ena/latest/");
693
694         let root_crates = if paths.is_empty() {
695             vec![
696                 INTERNER.intern_str("rustc_driver"),
697                 INTERNER.intern_str("rustc_codegen_llvm"),
698                 INTERNER.intern_str("rustc_codegen_ssa"),
699             ]
700         } else {
701             paths.into_iter().map(|p| builder.crate_paths[p]).collect()
702         };
703         // Find dependencies for top level crates.
704         let compiler_crates = root_crates.iter().flat_map(|krate| {
705             builder.in_tree_crates(krate, Some(target)).into_iter().map(|krate| krate.name)
706         });
707
708         let mut to_open = None;
709         for krate in compiler_crates {
710             // Create all crate output directories first to make sure rustdoc uses
711             // relative links.
712             // FIXME: Cargo should probably do this itself.
713             t!(fs::create_dir_all(out_dir.join(krate)));
714             cargo.arg("-p").arg(krate);
715             if to_open.is_none() {
716                 to_open = Some(krate);
717             }
718         }
719
720         builder.run(&mut cargo.into());
721         // Let's open the first crate documentation page:
722         if let Some(krate) = to_open {
723             let index = out.join(krate).join("index.html");
724             builder.open_in_browser(index);
725         }
726     }
727 }
728
729 macro_rules! tool_doc {
730     ($tool: ident, $should_run: literal, $path: literal, [$($krate: literal),+ $(,)?] $(,)?) => {
731         #[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)]
732         pub struct $tool {
733             target: TargetSelection,
734         }
735
736         impl Step for $tool {
737             type Output = ();
738             const DEFAULT: bool = true;
739             const ONLY_HOSTS: bool = true;
740
741             fn should_run(run: ShouldRun<'_>) -> ShouldRun<'_> {
742                 let builder = run.builder;
743                 run.crate_or_deps($should_run).default_condition(builder.config.compiler_docs)
744             }
745
746             fn make_run(run: RunConfig<'_>) {
747                 run.builder.ensure($tool { target: run.target });
748             }
749
750             /// Generates compiler documentation.
751             ///
752             /// This will generate all documentation for compiler and dependencies.
753             /// Compiler documentation is distributed separately, so we make sure
754             /// we do not merge it with the other documentation from std, test and
755             /// proc_macros. This is largely just a wrapper around `cargo doc`.
756             fn run(self, builder: &Builder<'_>) {
757                 let stage = builder.top_stage;
758                 let target = self.target;
759
760                 // This is the intended out directory for compiler documentation.
761                 let out = builder.compiler_doc_out(target);
762                 t!(fs::create_dir_all(&out));
763
764                 // Build rustc docs so that we generate relative links.
765                 builder.ensure(Rustc { stage, target });
766                 // Rustdoc needs the rustc sysroot available to build.
767                 // FIXME: is there a way to only ensure `check::Rustc` here? Last time I tried it failed
768                 // with strange errors, but only on a full bors test ...
769                 let compiler = builder.compiler(stage, builder.config.build);
770                 builder.ensure(compile::Rustc::new(compiler, target));
771
772                 builder.info(
773                     &format!(
774                         "Documenting stage{} {} ({})",
775                         stage,
776                         stringify!($tool).to_lowercase(),
777                         target,
778                     ),
779                 );
780
781                 // Symlink compiler docs to the output directory of rustdoc documentation.
782                 let out_dir = builder.stage_out(compiler, Mode::ToolRustc).join(target.triple).join("doc");
783                 t!(fs::create_dir_all(&out_dir));
784                 t!(symlink_dir_force(&builder.config, &out, &out_dir));
785
786                 // Build cargo command.
787                 let mut cargo = prepare_tool_cargo(
788                     builder,
789                     compiler,
790                     Mode::ToolRustc,
791                     target,
792                     "doc",
793                     $path,
794                     SourceType::InTree,
795                     &[],
796                 );
797
798                 cargo.arg("-Zskip-rustdoc-fingerprint");
799                 // Only include compiler crates, no dependencies of those, such as `libc`.
800                 cargo.arg("--no-deps");
801                 $(
802                     cargo.arg("-p").arg($krate);
803                 )+
804
805                 cargo.rustdocflag("--document-private-items");
806                 cargo.rustdocflag("--enable-index-page");
807                 cargo.rustdocflag("--show-type-layout");
808                 cargo.rustdocflag("--generate-link-to-definition");
809                 cargo.rustdocflag("-Zunstable-options");
810                 builder.run(&mut cargo.into());
811             }
812         }
813     }
814 }
815
816 tool_doc!(Rustdoc, "rustdoc-tool", "src/tools/rustdoc", ["rustdoc", "rustdoc-json-types"],);
817 tool_doc!(
818     Rustfmt,
819     "rustfmt-nightly",
820     "src/tools/rustfmt",
821     ["rustfmt-nightly", "rustfmt-config_proc_macro"],
822 );
823 tool_doc!(Clippy, "clippy", "src/tools/clippy", ["clippy_utils"]);
824 tool_doc!(Miri, "miri", "src/tools/miri", ["miri"]);
825
826 #[derive(Ord, PartialOrd, Debug, Copy, Clone, Hash, PartialEq, Eq)]
827 pub struct ErrorIndex {
828     pub target: TargetSelection,
829 }
830
831 impl Step for ErrorIndex {
832     type Output = ();
833     const DEFAULT: bool = true;
834     const ONLY_HOSTS: bool = true;
835
836     fn should_run(run: ShouldRun<'_>) -> ShouldRun<'_> {
837         let builder = run.builder;
838         run.path("src/tools/error_index_generator").default_condition(builder.config.docs)
839     }
840
841     fn make_run(run: RunConfig<'_>) {
842         let target = run.target;
843         run.builder.ensure(ErrorIndex { target });
844     }
845
846     /// Generates the HTML rendered error-index by running the
847     /// `error_index_generator` tool.
848     fn run(self, builder: &Builder<'_>) {
849         builder.info(&format!("Documenting error index ({})", self.target));
850         let out = builder.doc_out(self.target);
851         t!(fs::create_dir_all(&out));
852         let mut index = tool::ErrorIndex::command(builder);
853         index.arg("html");
854         index.arg(out);
855         index.arg(&builder.version);
856
857         builder.run(&mut index);
858     }
859 }
860
861 #[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)]
862 pub struct UnstableBookGen {
863     target: TargetSelection,
864 }
865
866 impl Step for UnstableBookGen {
867     type Output = ();
868     const DEFAULT: bool = true;
869     const ONLY_HOSTS: bool = true;
870
871     fn should_run(run: ShouldRun<'_>) -> ShouldRun<'_> {
872         let builder = run.builder;
873         run.path("src/tools/unstable-book-gen").default_condition(builder.config.docs)
874     }
875
876     fn make_run(run: RunConfig<'_>) {
877         run.builder.ensure(UnstableBookGen { target: run.target });
878     }
879
880     fn run(self, builder: &Builder<'_>) {
881         let target = self.target;
882
883         builder.info(&format!("Generating unstable book md files ({})", target));
884         let out = builder.md_doc_out(target).join("unstable-book");
885         builder.create_dir(&out);
886         builder.remove_dir(&out);
887         let mut cmd = builder.tool_cmd(Tool::UnstableBookGen);
888         cmd.arg(builder.src.join("library"));
889         cmd.arg(builder.src.join("compiler"));
890         cmd.arg(builder.src.join("src"));
891         cmd.arg(out);
892
893         builder.run(&mut cmd);
894     }
895 }
896
897 fn symlink_dir_force(config: &Config, src: &Path, dst: &Path) -> io::Result<()> {
898     if config.dry_run() {
899         return Ok(());
900     }
901     if let Ok(m) = fs::symlink_metadata(dst) {
902         if m.file_type().is_dir() {
903             fs::remove_dir_all(dst)?;
904         } else {
905             // handle directory junctions on windows by falling back to
906             // `remove_dir`.
907             fs::remove_file(dst).or_else(|_| fs::remove_dir(dst))?;
908         }
909     }
910
911     symlink_dir(config, src, dst)
912 }
913
914 #[derive(Ord, PartialOrd, Debug, Copy, Clone, Hash, PartialEq, Eq)]
915 pub struct RustcBook {
916     pub compiler: Compiler,
917     pub target: TargetSelection,
918     pub validate: bool,
919 }
920
921 impl Step for RustcBook {
922     type Output = ();
923     const DEFAULT: bool = true;
924     const ONLY_HOSTS: bool = true;
925
926     fn should_run(run: ShouldRun<'_>) -> ShouldRun<'_> {
927         let builder = run.builder;
928         run.path("src/doc/rustc").default_condition(builder.config.docs)
929     }
930
931     fn make_run(run: RunConfig<'_>) {
932         run.builder.ensure(RustcBook {
933             compiler: run.builder.compiler(run.builder.top_stage, run.builder.config.build),
934             target: run.target,
935             validate: false,
936         });
937     }
938
939     /// Builds the rustc book.
940     ///
941     /// The lints are auto-generated by a tool, and then merged into the book
942     /// in the "md-doc" directory in the build output directory. Then
943     /// "rustbook" is used to convert it to HTML.
944     fn run(self, builder: &Builder<'_>) {
945         let out_base = builder.md_doc_out(self.target).join("rustc");
946         t!(fs::create_dir_all(&out_base));
947         let out_listing = out_base.join("src/lints");
948         builder.cp_r(&builder.src.join("src/doc/rustc"), &out_base);
949         builder.info(&format!("Generating lint docs ({})", self.target));
950
951         let rustc = builder.rustc(self.compiler);
952         // The tool runs `rustc` for extracting output examples, so it needs a
953         // functional sysroot.
954         builder.ensure(compile::Std::new(self.compiler, self.target));
955         let mut cmd = builder.tool_cmd(Tool::LintDocs);
956         cmd.arg("--src");
957         cmd.arg(builder.src.join("compiler"));
958         cmd.arg("--out");
959         cmd.arg(&out_listing);
960         cmd.arg("--rustc");
961         cmd.arg(&rustc);
962         cmd.arg("--rustc-target").arg(&self.target.rustc_target_arg());
963         if builder.is_verbose() {
964             cmd.arg("--verbose");
965         }
966         if self.validate {
967             cmd.arg("--validate");
968         }
969         if !builder.unstable_features() {
970             // We need to validate nightly features, even on the stable channel.
971             cmd.env("RUSTC_BOOTSTRAP", "1");
972         }
973         // If the lib directories are in an unusual location (changed in
974         // config.toml), then this needs to explicitly update the dylib search
975         // path.
976         builder.add_rustc_lib_path(self.compiler, &mut cmd);
977         builder.run(&mut cmd);
978         // Run rustbook/mdbook to generate the HTML pages.
979         builder.ensure(RustbookSrc {
980             target: self.target,
981             name: INTERNER.intern_str("rustc"),
982             src: INTERNER.intern_path(out_base),
983         });
984
985         let out = builder.doc_out(self.target);
986         let index = out.join("rustc").join("index.html");
987         builder.maybe_open_in_browser::<Self>(index);
988     }
989 }