]> git.lizzy.rs Git - rust.git/blob - src/librustdoc/lib.rs
Rollup merge of #63055 - Mark-Simulacrum:save-analysis-clean-2, r=Xanewok
[rust.git] / src / librustdoc / lib.rs
1 #![doc(html_root_url = "https://doc.rust-lang.org/nightly/",
2        html_playground_url = "https://play.rust-lang.org/")]
3
4 #![feature(bind_by_move_pattern_guards)]
5 #![feature(rustc_private)]
6 #![feature(arbitrary_self_types)]
7 #![feature(box_patterns)]
8 #![feature(box_syntax)]
9 #![feature(in_band_lifetimes)]
10 #![feature(nll)]
11 #![feature(set_stdio)]
12 #![feature(test)]
13 #![feature(vec_remove_item)]
14 #![feature(ptr_offset_from)]
15 #![feature(crate_visibility_modifier)]
16 #![feature(const_fn)]
17 #![feature(drain_filter)]
18 #![feature(inner_deref)]
19 #![feature(never_type)]
20 #![feature(mem_take)]
21 #![feature(unicode_internals)]
22
23 #![recursion_limit="256"]
24
25 extern crate getopts;
26 extern crate env_logger;
27 extern crate rustc;
28 extern crate rustc_data_structures;
29 extern crate rustc_driver;
30 extern crate rustc_resolve;
31 extern crate rustc_lint;
32 extern crate rustc_interface;
33 extern crate rustc_metadata;
34 extern crate rustc_target;
35 extern crate rustc_typeck;
36 extern crate serialize;
37 extern crate syntax;
38 extern crate syntax_pos;
39 extern crate test as testing;
40 #[macro_use] extern crate log;
41 extern crate rustc_errors as errors;
42
43 use std::default::Default;
44 use std::env;
45 use std::panic;
46 use std::process;
47 use std::sync::mpsc::channel;
48
49 use rustc::session::{early_warn, early_error};
50 use rustc::session::config::{ErrorOutputType, RustcOptGroup};
51
52 #[macro_use]
53 mod externalfiles;
54
55 mod clean;
56 mod config;
57 mod core;
58 mod docfs;
59 mod doctree;
60 mod fold;
61 pub mod html {
62     crate mod highlight;
63     crate mod escape;
64     crate mod item_type;
65     crate mod format;
66     crate mod layout;
67     pub mod markdown;
68     crate mod render;
69     crate mod static_files;
70     crate mod toc;
71 }
72 mod markdown;
73 mod passes;
74 mod visit_ast;
75 mod visit_lib;
76 mod test;
77 mod theme;
78
79 struct Output {
80     krate: clean::Crate,
81     renderinfo: html::render::RenderInfo,
82     renderopts: config::RenderOptions,
83     passes: Vec<String>,
84 }
85
86 pub fn main() {
87     let thread_stack_size: usize = if cfg!(target_os = "haiku") {
88         16_000_000 // 16MB on Haiku
89     } else {
90         32_000_000 // 32MB on other platforms
91     };
92     rustc_driver::set_sigpipe_handler();
93     env_logger::init();
94     let res = std::thread::Builder::new().stack_size(thread_stack_size).spawn(move || {
95         get_args().map(|args| main_args(&args)).unwrap_or(1)
96     }).unwrap().join().unwrap_or(rustc_driver::EXIT_FAILURE);
97     process::exit(res);
98 }
99
100 fn get_args() -> Option<Vec<String>> {
101     env::args_os().enumerate()
102         .map(|(i, arg)| arg.into_string().map_err(|arg| {
103              early_warn(ErrorOutputType::default(),
104                         &format!("Argument {} is not valid Unicode: {:?}", i, arg));
105         }).ok())
106         .collect()
107 }
108
109 fn stable<F>(name: &'static str, f: F) -> RustcOptGroup
110     where F: Fn(&mut getopts::Options) -> &mut getopts::Options + 'static
111 {
112     RustcOptGroup::stable(name, f)
113 }
114
115 fn unstable<F>(name: &'static str, f: F) -> RustcOptGroup
116     where F: Fn(&mut getopts::Options) -> &mut getopts::Options + 'static
117 {
118     RustcOptGroup::unstable(name, f)
119 }
120
121 fn opts() -> Vec<RustcOptGroup> {
122     vec![
123         stable("h", |o| o.optflag("h", "help", "show this help message")),
124         stable("V", |o| o.optflag("V", "version", "print rustdoc's version")),
125         stable("v", |o| o.optflag("v", "verbose", "use verbose output")),
126         stable("r", |o| {
127             o.optopt("r", "input-format", "the input type of the specified file",
128                      "[rust]")
129         }),
130         stable("w", |o| {
131             o.optopt("w", "output-format", "the output type to write", "[html]")
132         }),
133         stable("o", |o| o.optopt("o", "output", "where to place the output", "PATH")),
134         stable("crate-name", |o| {
135             o.optopt("", "crate-name", "specify the name of this crate", "NAME")
136         }),
137         stable("L", |o| {
138             o.optmulti("L", "library-path", "directory to add to crate search path",
139                        "DIR")
140         }),
141         stable("cfg", |o| o.optmulti("", "cfg", "pass a --cfg to rustc", "")),
142         stable("extern", |o| {
143             o.optmulti("", "extern", "pass an --extern to rustc", "NAME=PATH")
144         }),
145         unstable("extern-html-root-url", |o| {
146             o.optmulti("", "extern-html-root-url",
147                        "base URL to use for dependencies", "NAME=URL")
148         }),
149         stable("plugin-path", |o| {
150             o.optmulti("", "plugin-path", "removed", "DIR")
151         }),
152         stable("C", |o| {
153             o.optmulti("C", "codegen", "pass a codegen option to rustc", "OPT[=VALUE]")
154         }),
155         stable("passes", |o| {
156             o.optmulti("", "passes",
157                        "list of passes to also run, you might want \
158                         to pass it multiple times; a value of `list` \
159                         will print available passes",
160                        "PASSES")
161         }),
162         stable("plugins", |o| {
163             o.optmulti("", "plugins", "removed",
164                        "PLUGINS")
165         }),
166         stable("no-default", |o| {
167             o.optflag("", "no-defaults", "don't run the default passes")
168         }),
169         stable("document-private-items", |o| {
170             o.optflag("", "document-private-items", "document private items")
171         }),
172         stable("test", |o| o.optflag("", "test", "run code examples as tests")),
173         stable("test-args", |o| {
174             o.optmulti("", "test-args", "arguments to pass to the test runner",
175                        "ARGS")
176         }),
177         stable("target", |o| o.optopt("", "target", "target triple to document", "TRIPLE")),
178         stable("markdown-css", |o| {
179             o.optmulti("", "markdown-css",
180                        "CSS files to include via <link> in a rendered Markdown file",
181                        "FILES")
182         }),
183         stable("html-in-header", |o|  {
184             o.optmulti("", "html-in-header",
185                        "files to include inline in the <head> section of a rendered Markdown file \
186                         or generated documentation",
187                        "FILES")
188         }),
189         stable("html-before-content", |o| {
190             o.optmulti("", "html-before-content",
191                        "files to include inline between <body> and the content of a rendered \
192                         Markdown file or generated documentation",
193                        "FILES")
194         }),
195         stable("html-after-content", |o| {
196             o.optmulti("", "html-after-content",
197                        "files to include inline between the content and </body> of a rendered \
198                         Markdown file or generated documentation",
199                        "FILES")
200         }),
201         unstable("markdown-before-content", |o| {
202             o.optmulti("", "markdown-before-content",
203                        "files to include inline between <body> and the content of a rendered \
204                         Markdown file or generated documentation",
205                        "FILES")
206         }),
207         unstable("markdown-after-content", |o| {
208             o.optmulti("", "markdown-after-content",
209                        "files to include inline between the content and </body> of a rendered \
210                         Markdown file or generated documentation",
211                        "FILES")
212         }),
213         stable("markdown-playground-url", |o| {
214             o.optopt("", "markdown-playground-url",
215                      "URL to send code snippets to", "URL")
216         }),
217         stable("markdown-no-toc", |o| {
218             o.optflag("", "markdown-no-toc", "don't include table of contents")
219         }),
220         stable("e", |o| {
221             o.optopt("e", "extend-css",
222                      "To add some CSS rules with a given file to generate doc with your \
223                       own theme. However, your theme might break if the rustdoc's generated HTML \
224                       changes, so be careful!", "PATH")
225         }),
226         unstable("Z", |o| {
227             o.optmulti("Z", "",
228                        "internal and debugging options (only on nightly build)", "FLAG")
229         }),
230         stable("sysroot", |o| {
231             o.optopt("", "sysroot", "Override the system root", "PATH")
232         }),
233         unstable("playground-url", |o| {
234             o.optopt("", "playground-url",
235                      "URL to send code snippets to, may be reset by --markdown-playground-url \
236                       or `#![doc(html_playground_url=...)]`",
237                      "URL")
238         }),
239         unstable("display-warnings", |o| {
240             o.optflag("", "display-warnings", "to print code warnings when testing doc")
241         }),
242         unstable("crate-version", |o| {
243             o.optopt("", "crate-version", "crate version to print into documentation", "VERSION")
244         }),
245         unstable("linker", |o| {
246             o.optopt("", "linker", "linker used for building executable test code", "PATH")
247         }),
248         unstable("sort-modules-by-appearance", |o| {
249             o.optflag("", "sort-modules-by-appearance", "sort modules by where they appear in the \
250                                                          program, rather than alphabetically")
251         }),
252         unstable("themes", |o| {
253             o.optmulti("", "themes",
254                        "additional themes which will be added to the generated docs",
255                        "FILES")
256         }),
257         unstable("theme-checker", |o| {
258             o.optmulti("", "theme-checker",
259                        "check if given theme is valid",
260                        "FILES")
261         }),
262         unstable("resource-suffix", |o| {
263             o.optopt("",
264                      "resource-suffix",
265                      "suffix to add to CSS and JavaScript files, e.g., \"light.css\" will become \
266                       \"light-suffix.css\"",
267                      "PATH")
268         }),
269         stable("edition", |o| {
270             o.optopt("", "edition",
271                      "edition to use when compiling rust code (default: 2015)",
272                      "EDITION")
273         }),
274         stable("color", |o| {
275             o.optopt("",
276                      "color",
277                      "Configure coloring of output:
278                                           auto   = colorize, if output goes to a tty (default);
279                                           always = always colorize output;
280                                           never  = never colorize output",
281                      "auto|always|never")
282         }),
283         stable("error-format", |o| {
284             o.optopt("",
285                      "error-format",
286                      "How errors and other messages are produced",
287                      "human|json|short")
288         }),
289         unstable("disable-minification", |o| {
290              o.optflag("",
291                        "disable-minification",
292                        "Disable minification applied on JS files")
293         }),
294         stable("warn", |o| {
295             o.optmulti("W", "warn", "Set lint warnings", "OPT")
296         }),
297         stable("allow", |o| {
298             o.optmulti("A", "allow", "Set lint allowed", "OPT")
299         }),
300         stable("deny", |o| {
301             o.optmulti("D", "deny", "Set lint denied", "OPT")
302         }),
303         stable("forbid", |o| {
304             o.optmulti("F", "forbid", "Set lint forbidden", "OPT")
305         }),
306         stable("cap-lints", |o| {
307             o.optmulti(
308                 "",
309                 "cap-lints",
310                 "Set the most restrictive lint level. \
311                  More restrictive lints are capped at this \
312                  level. By default, it is at `forbid` level.",
313                 "LEVEL",
314             )
315         }),
316         unstable("index-page", |o| {
317              o.optopt("",
318                       "index-page",
319                       "Markdown file to be used as index page",
320                       "PATH")
321         }),
322         unstable("enable-index-page", |o| {
323              o.optflag("",
324                        "enable-index-page",
325                        "To enable generation of the index page")
326         }),
327         unstable("static-root-path", |o| {
328             o.optopt("",
329                      "static-root-path",
330                      "Path string to force loading static files from in output pages. \
331                       If not set, uses combinations of '../' to reach the documentation root.",
332                      "PATH")
333         }),
334         unstable("disable-per-crate-search", |o| {
335             o.optflag("",
336                       "disable-per-crate-search",
337                       "disables generating the crate selector on the search box")
338         }),
339         unstable("persist-doctests", |o| {
340              o.optopt("",
341                        "persist-doctests",
342                        "Directory to persist doctest executables into",
343                        "PATH")
344         }),
345         unstable("generate-redirect-pages", |o| {
346             o.optflag("",
347                       "generate-redirect-pages",
348                       "Generate extra pages to support legacy URLs and tool links")
349         }),
350         unstable("show-coverage", |o| {
351             o.optflag("",
352                       "show-coverage",
353                       "calculate percentage of public items with documentation")
354         }),
355     ]
356 }
357
358 fn usage(argv0: &str) {
359     let mut options = getopts::Options::new();
360     for option in opts() {
361         (option.apply)(&mut options);
362     }
363     println!("{}", options.usage(&format!("{} [options] <input>", argv0)));
364 }
365
366 fn main_args(args: &[String]) -> i32 {
367     let mut options = getopts::Options::new();
368     for option in opts() {
369         (option.apply)(&mut options);
370     }
371     let matches = match options.parse(&args[1..]) {
372         Ok(m) => m,
373         Err(err) => {
374             early_error(ErrorOutputType::default(), &err.to_string());
375         }
376     };
377     let options = match config::Options::from_matches(&matches) {
378         Ok(opts) => opts,
379         Err(code) => return code,
380     };
381     rustc_interface::interface::default_thread_pool(options.edition, move || {
382         main_options(options)
383     })
384 }
385
386 fn main_options(options: config::Options) -> i32 {
387     let diag = core::new_handler(options.error_format,
388                                  None,
389                                  options.debugging_options.treat_err_as_bug,
390                                  options.debugging_options.ui_testing);
391
392     match (options.should_test, options.markdown_input()) {
393         (true, true) => return markdown::test(options, &diag),
394         (true, false) => return test::run(options),
395         (false, true) => return markdown::render(options.input,
396                                                  options.render_options,
397                                                  &diag,
398                                                  options.edition),
399         (false, false) => {}
400     }
401
402     // need to move these items separately because we lose them by the time the closure is called,
403     // but we can't crates the Handler ahead of time because it's not Send
404     let diag_opts = (options.error_format,
405                      options.debugging_options.treat_err_as_bug,
406                      options.debugging_options.ui_testing,
407                      options.edition);
408     let show_coverage = options.show_coverage;
409     rust_input(options, move |out| {
410         if show_coverage {
411             // if we ran coverage, bail early, we don't need to also generate docs at this point
412             // (also we didn't load in any of the useful passes)
413             return rustc_driver::EXIT_SUCCESS;
414         }
415
416         let Output { krate, passes, renderinfo, renderopts } = out;
417         info!("going to format");
418         let (error_format, treat_err_as_bug, ui_testing, edition) = diag_opts;
419         let diag = core::new_handler(error_format, None, treat_err_as_bug, ui_testing);
420         match html::render::run(
421             krate,
422             renderopts,
423             passes.into_iter().collect(),
424             renderinfo,
425             &diag,
426             edition,
427         ) {
428             Ok(_) => rustc_driver::EXIT_SUCCESS,
429             Err(e) => {
430                 diag.struct_err(&format!("couldn't generate documentation: {}", e.error))
431                     .note(&format!("failed to create or modify \"{}\"", e.file.display()))
432                     .emit();
433                 rustc_driver::EXIT_FAILURE
434             }
435         }
436     })
437 }
438
439 /// Interprets the input file as a rust source file, passing it through the
440 /// compiler all the way through the analysis passes. The rustdoc output is then
441 /// generated from the cleaned AST of the crate.
442 ///
443 /// This form of input will run all of the plug/cleaning passes
444 fn rust_input<R, F>(options: config::Options, f: F) -> R
445 where R: 'static + Send,
446       F: 'static + Send + FnOnce(Output) -> R
447 {
448     // First, parse the crate and extract all relevant information.
449     info!("starting to run rustc");
450
451     let (tx, rx) = channel();
452
453     let result = rustc_driver::report_ices_to_stderr_if_any(move || {
454         let crate_name = options.crate_name.clone();
455         let crate_version = options.crate_version.clone();
456         let (mut krate, renderinfo, renderopts, passes) = core::run_core(options);
457
458         info!("finished with rustc");
459
460         if let Some(name) = crate_name {
461             krate.name = name
462         }
463
464         krate.version = crate_version;
465
466         tx.send(f(Output {
467             krate: krate,
468             renderinfo: renderinfo,
469             renderopts,
470             passes: passes
471         })).unwrap();
472     });
473
474     match result {
475         Ok(()) => rx.recv().unwrap(),
476         Err(_) => panic::resume_unwind(Box::new(errors::FatalErrorMarker)),
477     }
478 }