]> git.lizzy.rs Git - rust.git/blob - src/bootstrap/doc.rs
address review comment
[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 }
424
425 impl Step for Std {
426     type Output = ();
427     const DEFAULT: bool = true;
428
429     fn should_run(run: ShouldRun<'_>) -> ShouldRun<'_> {
430         let builder = run.builder;
431         run.all_krates("test").path("library").default_condition(builder.config.docs)
432     }
433
434     fn make_run(run: RunConfig<'_>) {
435         run.builder.ensure(Std { stage: run.builder.top_stage, target: run.target });
436     }
437
438     /// Compile all standard library documentation.
439     ///
440     /// This will generate all documentation for the standard library and its
441     /// dependencies. This is largely just a wrapper around `cargo doc`.
442     fn run(self, builder: &Builder<'_>) {
443         let stage = self.stage;
444         let target = self.target;
445         let out = builder.doc_out(target);
446         t!(fs::create_dir_all(&out));
447
448         builder.ensure(SharedAssets { target: self.target });
449
450         let index_page = builder.src.join("src/doc/index.md").into_os_string();
451         let mut extra_args = vec![
452             OsStr::new("--markdown-css"),
453             OsStr::new("rust.css"),
454             OsStr::new("--markdown-no-toc"),
455             OsStr::new("--index-page"),
456             &index_page,
457         ];
458
459         if !builder.config.docs_minification {
460             extra_args.push(OsStr::new("--disable-minification"));
461         }
462
463         let requested_crates = builder
464             .paths
465             .iter()
466             .map(components_simplified)
467             .filter_map(|path| {
468                 if path.len() >= 2 && path.get(0) == Some(&"library") {
469                     // single crate
470                     Some(path[1].to_owned())
471                 } else if !path.is_empty() {
472                     // ??
473                     Some(path[0].to_owned())
474                 } else {
475                     // all library crates
476                     None
477                 }
478             })
479             .collect::<Vec<_>>();
480
481         doc_std(
482             builder,
483             DocumentationFormat::HTML,
484             stage,
485             target,
486             &out,
487             &extra_args,
488             &requested_crates,
489         );
490
491         // Look for library/std, library/core etc in the `x.py doc` arguments and
492         // open the corresponding rendered docs.
493         for requested_crate in requested_crates {
494             if STD_PUBLIC_CRATES.iter().any(|k| *k == requested_crate.as_str()) {
495                 let index = out.join(requested_crate).join("index.html");
496                 builder.open_in_browser(index);
497             }
498         }
499     }
500 }
501
502 #[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)]
503 pub struct JsonStd {
504     pub stage: u32,
505     pub target: TargetSelection,
506 }
507
508 impl Step for JsonStd {
509     type Output = ();
510     const DEFAULT: bool = false;
511
512     fn should_run(run: ShouldRun<'_>) -> ShouldRun<'_> {
513         let default = run.builder.config.docs && run.builder.config.cmd.json();
514         run.all_krates("test").path("library").default_condition(default)
515     }
516
517     fn make_run(run: RunConfig<'_>) {
518         run.builder.ensure(Std { stage: run.builder.top_stage, target: run.target });
519     }
520
521     /// Build JSON documentation for the standard library crates.
522     ///
523     /// This is largely just a wrapper around `cargo doc`.
524     fn run(self, builder: &Builder<'_>) {
525         let stage = self.stage;
526         let target = self.target;
527         let out = builder.json_doc_out(target);
528         t!(fs::create_dir_all(&out));
529         let extra_args = [OsStr::new("--output-format"), OsStr::new("json")];
530         doc_std(builder, DocumentationFormat::JSON, stage, target, &out, &extra_args, &[])
531     }
532 }
533
534 /// Name of the crates that are visible to consumers of the standard library.
535 /// Documentation for internal crates is handled by the rustc step, so internal crates will show
536 /// up there.
537 ///
538 /// Order here is important!
539 /// Crates need to be processed starting from the leaves, otherwise rustdoc will not
540 /// create correct links between crates because rustdoc depends on the
541 /// existence of the output directories to know if it should be a local
542 /// or remote link.
543 const STD_PUBLIC_CRATES: [&str; 5] = ["core", "alloc", "std", "proc_macro", "test"];
544
545 #[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)]
546 enum DocumentationFormat {
547     HTML,
548     JSON,
549 }
550
551 impl DocumentationFormat {
552     fn as_str(&self) -> &str {
553         match self {
554             DocumentationFormat::HTML => "HTML",
555             DocumentationFormat::JSON => "JSON",
556         }
557     }
558 }
559
560 /// Build the documentation for public standard library crates.
561 ///
562 /// `requested_crates` can be used to build only a subset of the crates. If empty, all crates will
563 /// be built.
564 fn doc_std(
565     builder: &Builder<'_>,
566     format: DocumentationFormat,
567     stage: u32,
568     target: TargetSelection,
569     out: &Path,
570     extra_args: &[&OsStr],
571     requested_crates: &[String],
572 ) {
573     builder.info(&format!(
574         "Documenting stage{} std ({}) in {} format",
575         stage,
576         target,
577         format.as_str()
578     ));
579     if builder.no_std(target) == Some(true) {
580         panic!(
581             "building std documentation for no_std target {target} is not supported\n\
582              Set `docs = false` in the config to disable documentation."
583         );
584     }
585     let compiler = builder.compiler(stage, builder.config.build);
586     // This is directory where the compiler will place the output of the command.
587     // We will then copy the files from this directory into the final `out` directory, the specified
588     // as a function parameter.
589     let out_dir = builder.stage_out(compiler, Mode::Std).join(target.triple).join("doc");
590     // `cargo` uses the same directory for both JSON docs and HTML docs.
591     // This could lead to cross-contamination when copying files into the specified `out` directory.
592     // For example:
593     // ```bash
594     // x doc std
595     // x doc std --json
596     // ```
597     // could lead to HTML docs being copied into the JSON docs output directory.
598     // To avoid this issue, we clean the doc folder before invoking `cargo`.
599     if out_dir.exists() {
600         builder.remove_dir(&out_dir);
601     }
602
603     let run_cargo_rustdoc_for = |package: &str| {
604         let mut cargo = builder.cargo(compiler, Mode::Std, SourceType::InTree, target, "rustdoc");
605         compile::std_cargo(builder, target, compiler.stage, &mut cargo);
606         cargo
607             .arg("-p")
608             .arg(package)
609             .arg("-Zskip-rustdoc-fingerprint")
610             .arg("--")
611             .arg("-Z")
612             .arg("unstable-options")
613             .arg("--resource-suffix")
614             .arg(&builder.version)
615             .args(extra_args);
616         builder.run(&mut cargo.into());
617     };
618
619     for krate in STD_PUBLIC_CRATES {
620         run_cargo_rustdoc_for(krate);
621         if requested_crates.iter().any(|p| p == krate) {
622             // No need to document more of the libraries if we have the one we want.
623             break;
624         }
625     }
626
627     builder.cp_r(&out_dir, &out);
628 }
629
630 #[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)]
631 pub struct Rustc {
632     pub stage: u32,
633     pub target: TargetSelection,
634 }
635
636 impl Step for Rustc {
637     type Output = ();
638     const DEFAULT: bool = true;
639     const ONLY_HOSTS: bool = true;
640
641     fn should_run(run: ShouldRun<'_>) -> ShouldRun<'_> {
642         let builder = run.builder;
643         run.crate_or_deps("rustc-main")
644             .path("compiler")
645             .default_condition(builder.config.compiler_docs)
646     }
647
648     fn make_run(run: RunConfig<'_>) {
649         run.builder.ensure(Rustc { stage: run.builder.top_stage, target: run.target });
650     }
651
652     /// Generates compiler documentation.
653     ///
654     /// This will generate all documentation for compiler and dependencies.
655     /// Compiler documentation is distributed separately, so we make sure
656     /// we do not merge it with the other documentation from std, test and
657     /// proc_macros. This is largely just a wrapper around `cargo doc`.
658     fn run(self, builder: &Builder<'_>) {
659         let stage = self.stage;
660         let target = self.target;
661
662         let paths = builder
663             .paths
664             .iter()
665             .filter(|path| {
666                 let components = components_simplified(path);
667                 components.len() >= 2 && components[0] == "compiler"
668             })
669             .collect::<Vec<_>>();
670
671         // This is the intended out directory for compiler documentation.
672         let out = builder.compiler_doc_out(target);
673         t!(fs::create_dir_all(&out));
674
675         // Build the standard library, so that proc-macros can use it.
676         // (Normally, only the metadata would be necessary, but proc-macros are special since they run at compile-time.)
677         let compiler = builder.compiler(stage, builder.config.build);
678         builder.ensure(compile::Std::new(compiler, builder.config.build));
679
680         builder.info(&format!("Documenting stage{} compiler ({})", stage, target));
681
682         // This uses a shared directory so that librustdoc documentation gets
683         // correctly built and merged with the rustc documentation. This is
684         // needed because rustdoc is built in a different directory from
685         // rustc. rustdoc needs to be able to see everything, for example when
686         // merging the search index, or generating local (relative) links.
687         let out_dir = builder.stage_out(compiler, Mode::Rustc).join(target.triple).join("doc");
688         t!(symlink_dir_force(&builder.config, &out, &out_dir));
689         // Cargo puts proc macros in `target/doc` even if you pass `--target`
690         // explicitly (https://github.com/rust-lang/cargo/issues/7677).
691         let proc_macro_out_dir = builder.stage_out(compiler, Mode::Rustc).join("doc");
692         t!(symlink_dir_force(&builder.config, &out, &proc_macro_out_dir));
693
694         // Build cargo command.
695         let mut cargo = builder.cargo(compiler, Mode::Rustc, SourceType::InTree, target, "doc");
696         cargo.rustdocflag("--document-private-items");
697         // Since we always pass --document-private-items, there's no need to warn about linking to private items.
698         cargo.rustdocflag("-Arustdoc::private-intra-doc-links");
699         cargo.rustdocflag("--enable-index-page");
700         cargo.rustdocflag("-Zunstable-options");
701         cargo.rustdocflag("-Znormalize-docs");
702         cargo.rustdocflag("--show-type-layout");
703         cargo.rustdocflag("--generate-link-to-definition");
704         compile::rustc_cargo(builder, &mut cargo, target);
705         cargo.arg("-Zunstable-options");
706         cargo.arg("-Zskip-rustdoc-fingerprint");
707
708         // Only include compiler crates, no dependencies of those, such as `libc`.
709         // Do link to dependencies on `docs.rs` however using `rustdoc-map`.
710         cargo.arg("--no-deps");
711         cargo.arg("-Zrustdoc-map");
712
713         // FIXME: `-Zrustdoc-map` does not yet correctly work for transitive dependencies,
714         // once this is no longer an issue the special case for `ena` can be removed.
715         cargo.rustdocflag("--extern-html-root-url");
716         cargo.rustdocflag("ena=https://docs.rs/ena/latest/");
717
718         let root_crates = if paths.is_empty() {
719             vec![
720                 INTERNER.intern_str("rustc_driver"),
721                 INTERNER.intern_str("rustc_codegen_llvm"),
722                 INTERNER.intern_str("rustc_codegen_ssa"),
723             ]
724         } else {
725             paths.into_iter().map(|p| builder.crate_paths[p]).collect()
726         };
727         // Find dependencies for top level crates.
728         let compiler_crates = root_crates.iter().flat_map(|krate| {
729             builder.in_tree_crates(krate, Some(target)).into_iter().map(|krate| krate.name)
730         });
731
732         let mut to_open = None;
733         for krate in compiler_crates {
734             // Create all crate output directories first to make sure rustdoc uses
735             // relative links.
736             // FIXME: Cargo should probably do this itself.
737             t!(fs::create_dir_all(out_dir.join(krate)));
738             cargo.arg("-p").arg(krate);
739             if to_open.is_none() {
740                 to_open = Some(krate);
741             }
742         }
743
744         builder.run(&mut cargo.into());
745         // Let's open the first crate documentation page:
746         if let Some(krate) = to_open {
747             let index = out.join(krate).join("index.html");
748             builder.open_in_browser(index);
749         }
750     }
751 }
752
753 macro_rules! tool_doc {
754     ($tool: ident, $should_run: literal, $path: literal, [$($krate: literal),+ $(,)?] $(,)?) => {
755         #[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)]
756         pub struct $tool {
757             target: TargetSelection,
758         }
759
760         impl Step for $tool {
761             type Output = ();
762             const DEFAULT: bool = true;
763             const ONLY_HOSTS: bool = true;
764
765             fn should_run(run: ShouldRun<'_>) -> ShouldRun<'_> {
766                 let builder = run.builder;
767                 run.crate_or_deps($should_run).default_condition(builder.config.compiler_docs)
768             }
769
770             fn make_run(run: RunConfig<'_>) {
771                 run.builder.ensure($tool { target: run.target });
772             }
773
774             /// Generates compiler documentation.
775             ///
776             /// This will generate all documentation for compiler and dependencies.
777             /// Compiler documentation is distributed separately, so we make sure
778             /// we do not merge it with the other documentation from std, test and
779             /// proc_macros. This is largely just a wrapper around `cargo doc`.
780             fn run(self, builder: &Builder<'_>) {
781                 let stage = builder.top_stage;
782                 let target = self.target;
783
784                 // This is the intended out directory for compiler documentation.
785                 let out = builder.compiler_doc_out(target);
786                 t!(fs::create_dir_all(&out));
787
788                 // Build rustc docs so that we generate relative links.
789                 builder.ensure(Rustc { stage, target });
790                 // Rustdoc needs the rustc sysroot available to build.
791                 // FIXME: is there a way to only ensure `check::Rustc` here? Last time I tried it failed
792                 // with strange errors, but only on a full bors test ...
793                 let compiler = builder.compiler(stage, builder.config.build);
794                 builder.ensure(compile::Rustc::new(compiler, target));
795
796                 builder.info(
797                     &format!(
798                         "Documenting stage{} {} ({})",
799                         stage,
800                         stringify!($tool).to_lowercase(),
801                         target,
802                     ),
803                 );
804
805                 // Symlink compiler docs to the output directory of rustdoc documentation.
806                 let out_dir = builder.stage_out(compiler, Mode::ToolRustc).join(target.triple).join("doc");
807                 t!(fs::create_dir_all(&out_dir));
808                 t!(symlink_dir_force(&builder.config, &out, &out_dir));
809
810                 // Build cargo command.
811                 let mut cargo = prepare_tool_cargo(
812                     builder,
813                     compiler,
814                     Mode::ToolRustc,
815                     target,
816                     "doc",
817                     $path,
818                     SourceType::InTree,
819                     &[],
820                 );
821
822                 cargo.arg("-Zskip-rustdoc-fingerprint");
823                 // Only include compiler crates, no dependencies of those, such as `libc`.
824                 cargo.arg("--no-deps");
825                 $(
826                     cargo.arg("-p").arg($krate);
827                 )+
828
829                 cargo.rustdocflag("--document-private-items");
830                 cargo.rustdocflag("--enable-index-page");
831                 cargo.rustdocflag("--show-type-layout");
832                 cargo.rustdocflag("--generate-link-to-definition");
833                 cargo.rustdocflag("-Zunstable-options");
834                 builder.run(&mut cargo.into());
835             }
836         }
837     }
838 }
839
840 tool_doc!(Rustdoc, "rustdoc-tool", "src/tools/rustdoc", ["rustdoc", "rustdoc-json-types"],);
841 tool_doc!(
842     Rustfmt,
843     "rustfmt-nightly",
844     "src/tools/rustfmt",
845     ["rustfmt-nightly", "rustfmt-config_proc_macro"],
846 );
847 tool_doc!(Clippy, "clippy", "src/tools/clippy", ["clippy_utils"]);
848 tool_doc!(Miri, "miri", "src/tools/miri", ["miri"]);
849
850 #[derive(Ord, PartialOrd, Debug, Copy, Clone, Hash, PartialEq, Eq)]
851 pub struct ErrorIndex {
852     pub target: TargetSelection,
853 }
854
855 impl Step for ErrorIndex {
856     type Output = ();
857     const DEFAULT: bool = true;
858     const ONLY_HOSTS: bool = true;
859
860     fn should_run(run: ShouldRun<'_>) -> ShouldRun<'_> {
861         let builder = run.builder;
862         run.path("src/tools/error_index_generator").default_condition(builder.config.docs)
863     }
864
865     fn make_run(run: RunConfig<'_>) {
866         let target = run.target;
867         run.builder.ensure(ErrorIndex { target });
868     }
869
870     /// Generates the HTML rendered error-index by running the
871     /// `error_index_generator` tool.
872     fn run(self, builder: &Builder<'_>) {
873         builder.info(&format!("Documenting error index ({})", self.target));
874         let out = builder.doc_out(self.target);
875         t!(fs::create_dir_all(&out));
876         let mut index = tool::ErrorIndex::command(builder);
877         index.arg("html");
878         index.arg(out);
879         index.arg(&builder.version);
880
881         builder.run(&mut index);
882     }
883 }
884
885 #[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)]
886 pub struct UnstableBookGen {
887     target: TargetSelection,
888 }
889
890 impl Step for UnstableBookGen {
891     type Output = ();
892     const DEFAULT: bool = true;
893     const ONLY_HOSTS: bool = true;
894
895     fn should_run(run: ShouldRun<'_>) -> ShouldRun<'_> {
896         let builder = run.builder;
897         run.path("src/tools/unstable-book-gen").default_condition(builder.config.docs)
898     }
899
900     fn make_run(run: RunConfig<'_>) {
901         run.builder.ensure(UnstableBookGen { target: run.target });
902     }
903
904     fn run(self, builder: &Builder<'_>) {
905         let target = self.target;
906
907         builder.info(&format!("Generating unstable book md files ({})", target));
908         let out = builder.md_doc_out(target).join("unstable-book");
909         builder.create_dir(&out);
910         builder.remove_dir(&out);
911         let mut cmd = builder.tool_cmd(Tool::UnstableBookGen);
912         cmd.arg(builder.src.join("library"));
913         cmd.arg(builder.src.join("compiler"));
914         cmd.arg(builder.src.join("src"));
915         cmd.arg(out);
916
917         builder.run(&mut cmd);
918     }
919 }
920
921 fn symlink_dir_force(config: &Config, src: &Path, dst: &Path) -> io::Result<()> {
922     if config.dry_run {
923         return Ok(());
924     }
925     if let Ok(m) = fs::symlink_metadata(dst) {
926         if m.file_type().is_dir() {
927             fs::remove_dir_all(dst)?;
928         } else {
929             // handle directory junctions on windows by falling back to
930             // `remove_dir`.
931             fs::remove_file(dst).or_else(|_| fs::remove_dir(dst))?;
932         }
933     }
934
935     symlink_dir(config, src, dst)
936 }
937
938 #[derive(Ord, PartialOrd, Debug, Copy, Clone, Hash, PartialEq, Eq)]
939 pub struct RustcBook {
940     pub compiler: Compiler,
941     pub target: TargetSelection,
942     pub validate: bool,
943 }
944
945 impl Step for RustcBook {
946     type Output = ();
947     const DEFAULT: bool = true;
948     const ONLY_HOSTS: bool = true;
949
950     fn should_run(run: ShouldRun<'_>) -> ShouldRun<'_> {
951         let builder = run.builder;
952         run.path("src/doc/rustc").default_condition(builder.config.docs)
953     }
954
955     fn make_run(run: RunConfig<'_>) {
956         run.builder.ensure(RustcBook {
957             compiler: run.builder.compiler(run.builder.top_stage, run.builder.config.build),
958             target: run.target,
959             validate: false,
960         });
961     }
962
963     /// Builds the rustc book.
964     ///
965     /// The lints are auto-generated by a tool, and then merged into the book
966     /// in the "md-doc" directory in the build output directory. Then
967     /// "rustbook" is used to convert it to HTML.
968     fn run(self, builder: &Builder<'_>) {
969         let out_base = builder.md_doc_out(self.target).join("rustc");
970         t!(fs::create_dir_all(&out_base));
971         let out_listing = out_base.join("src/lints");
972         builder.cp_r(&builder.src.join("src/doc/rustc"), &out_base);
973         builder.info(&format!("Generating lint docs ({})", self.target));
974
975         let rustc = builder.rustc(self.compiler);
976         // The tool runs `rustc` for extracting output examples, so it needs a
977         // functional sysroot.
978         builder.ensure(compile::Std::new(self.compiler, self.target));
979         let mut cmd = builder.tool_cmd(Tool::LintDocs);
980         cmd.arg("--src");
981         cmd.arg(builder.src.join("compiler"));
982         cmd.arg("--out");
983         cmd.arg(&out_listing);
984         cmd.arg("--rustc");
985         cmd.arg(&rustc);
986         cmd.arg("--rustc-target").arg(&self.target.rustc_target_arg());
987         if builder.config.verbose() {
988             cmd.arg("--verbose");
989         }
990         if self.validate {
991             cmd.arg("--validate");
992         }
993         if !builder.unstable_features() {
994             // We need to validate nightly features, even on the stable channel.
995             cmd.env("RUSTC_BOOTSTRAP", "1");
996         }
997         // If the lib directories are in an unusual location (changed in
998         // config.toml), then this needs to explicitly update the dylib search
999         // path.
1000         builder.add_rustc_lib_path(self.compiler, &mut cmd);
1001         builder.run(&mut cmd);
1002         // Run rustbook/mdbook to generate the HTML pages.
1003         builder.ensure(RustbookSrc {
1004             target: self.target,
1005             name: INTERNER.intern_str("rustc"),
1006             src: INTERNER.intern_path(out_base),
1007         });
1008
1009         let out = builder.doc_out(self.target);
1010         let index = out.join("rustc").join("index.html");
1011         builder.maybe_open_in_browser::<Self>(index);
1012     }
1013 }