1use std::sync::{Arc, LazyLock};
2use std::{io, mem};
3
4use rustc_data_structures::fx::{FxHashMap, FxHashSet, FxIndexMap};
5use rustc_data_structures::unord::UnordSet;
6use rustc_driver::USING_INTERNAL_FEATURES;
7use rustc_errors::TerminalUrl;
8use rustc_errors::annotate_snippet_emitter_writer::AnnotateSnippetEmitter;
9use rustc_errors::codes::*;
10use rustc_errors::emitter::{DynEmitter, HumanReadableErrorType, OutputTheme, stderr_destination};
11use rustc_errors::json::JsonEmitter;
12use rustc_feature::UnstableFeatures;
13use rustc_hir::def::Res;
14use rustc_hir::def_id::{DefId, DefIdMap, DefIdSet, LocalDefId};
15use rustc_hir::intravisit::{self, Visitor};
16use rustc_hir::{HirId, Path};
17use rustc_lint::{MissingDoc, late_lint_mod};
18use rustc_middle::hir::nested_filter;
19use rustc_middle::ty::{self, ParamEnv, Ty, TyCtxt};
20use rustc_session::config::{
21 self, CrateType, ErrorOutputType, Input, OutputType, OutputTypes, ResolveDocLinks,
22};
23pub(crate) use rustc_session::config::{Options, UnstableOptions};
24use rustc_session::{Session, lint};
25use rustc_span::source_map;
26use rustc_span::symbol::sym;
27use tracing::{debug, info};
28
29use crate::clean::inline::build_trait;
30use crate::clean::{self, ItemId};
31use crate::config::{Options as RustdocOptions, OutputFormat, RenderOptions};
32use crate::formats::cache::Cache;
33use crate::html::macro_expansion::{ExpandedCode, source_macro_expansion};
34use crate::passes;
35use crate::passes::Condition::*;
36use crate::passes::collect_intra_doc_links::LinkCollector;
37
38pub(crate) struct DocContext<'tcx> {
39 pub(crate) tcx: TyCtxt<'tcx>,
40 pub(crate) param_env: ParamEnv<'tcx>,
44 pub(crate) external_traits: FxIndexMap<DefId, clean::Trait>,
46 pub(crate) active_extern_traits: DefIdSet,
49 pub(crate) args: DefIdMap<clean::GenericArg>,
56 pub(crate) current_type_aliases: DefIdMap<usize>,
57 pub(crate) impl_trait_bounds: FxHashMap<ImplTraitParam, Vec<clean::GenericBound>>,
59 pub(crate) generated_synthetics: FxHashSet<(Ty<'tcx>, DefId)>,
62 pub(crate) auto_traits: Vec<DefId>,
63 pub(crate) cache: Cache,
65 pub(crate) inlined: FxHashSet<ItemId>,
67 pub(crate) output_format: OutputFormat,
69 pub(crate) show_coverage: bool,
71}
72
73impl<'tcx> DocContext<'tcx> {
74 pub(crate) fn sess(&self) -> &'tcx Session {
75 self.tcx.sess
76 }
77
78 pub(crate) fn with_param_env<T, F: FnOnce(&mut Self) -> T>(
79 &mut self,
80 def_id: DefId,
81 f: F,
82 ) -> T {
83 let old_param_env = mem::replace(&mut self.param_env, self.tcx.param_env(def_id));
84 let ret = f(self);
85 self.param_env = old_param_env;
86 ret
87 }
88
89 pub(crate) fn typing_env(&self) -> ty::TypingEnv<'tcx> {
90 ty::TypingEnv::new(self.param_env, ty::TypingMode::non_body_analysis())
91 }
92
93 pub(crate) fn enter_alias<F, R>(
96 &mut self,
97 args: DefIdMap<clean::GenericArg>,
98 def_id: DefId,
99 f: F,
100 ) -> R
101 where
102 F: FnOnce(&mut Self) -> R,
103 {
104 let old_args = mem::replace(&mut self.args, args);
105 *self.current_type_aliases.entry(def_id).or_insert(0) += 1;
106 let r = f(self);
107 self.args = old_args;
108 if let Some(count) = self.current_type_aliases.get_mut(&def_id) {
109 *count -= 1;
110 if *count == 0 {
111 self.current_type_aliases.remove(&def_id);
112 }
113 }
114 r
115 }
116
117 pub(crate) fn as_local_hir_id(tcx: TyCtxt<'_>, item_id: ItemId) -> Option<HirId> {
120 match item_id {
121 ItemId::DefId(real_id) => {
122 real_id.as_local().map(|def_id| tcx.local_def_id_to_hir_id(def_id))
123 }
124 _ => None,
126 }
127 }
128
129 pub(crate) fn is_json_output(&self) -> bool {
133 self.output_format.is_json() && !self.show_coverage
134 }
135
136 pub(crate) fn document_private(&self) -> bool {
138 self.cache.document_private
139 }
140
141 pub(crate) fn document_hidden(&self) -> bool {
143 self.cache.document_hidden
144 }
145}
146
147pub(crate) fn new_dcx(
152 error_format: ErrorOutputType,
153 source_map: Option<Arc<source_map::SourceMap>>,
154 diagnostic_width: Option<usize>,
155 unstable_opts: &UnstableOptions,
156) -> rustc_errors::DiagCtxt {
157 let emitter: Box<DynEmitter> = match error_format {
158 ErrorOutputType::HumanReadable { kind, color_config } => match kind {
159 HumanReadableErrorType { short, unicode } => Box::new(
160 AnnotateSnippetEmitter::new(stderr_destination(color_config))
161 .sm(source_map.map(|sm| sm as _))
162 .short_message(short)
163 .diagnostic_width(diagnostic_width)
164 .track_diagnostics(unstable_opts.track_diagnostics)
165 .theme(if unicode { OutputTheme::Unicode } else { OutputTheme::Ascii })
166 .ui_testing(unstable_opts.ui_testing),
167 ),
168 },
169 ErrorOutputType::Json { pretty, json_rendered, color_config } => {
170 let source_map = source_map.unwrap_or_else(|| {
171 Arc::new(source_map::SourceMap::new(source_map::FilePathMapping::empty()))
172 });
173 Box::new(
174 JsonEmitter::new(
175 Box::new(io::BufWriter::new(io::stderr())),
176 Some(source_map),
177 pretty,
178 json_rendered,
179 color_config,
180 )
181 .ui_testing(unstable_opts.ui_testing)
182 .diagnostic_width(diagnostic_width)
183 .track_diagnostics(unstable_opts.track_diagnostics)
184 .terminal_url(TerminalUrl::No),
185 )
186 }
187 };
188
189 rustc_errors::DiagCtxt::new(emitter).with_flags(unstable_opts.dcx_flags(true))
190}
191
192pub(crate) fn create_config(
194 input: Input,
195 RustdocOptions {
196 crate_name,
197 proc_macro_crate,
198 error_format,
199 diagnostic_width,
200 libs,
201 externs,
202 mut cfgs,
203 check_cfgs,
204 codegen_options,
205 unstable_opts,
206 target,
207 edition,
208 sysroot,
209 lint_opts,
210 describe_lints,
211 lint_cap,
212 scrape_examples_options,
213 remap_path_prefix,
214 target_modifiers,
215 ..
216 }: RustdocOptions,
217 render_options: &RenderOptions,
218) -> rustc_interface::Config {
219 cfgs.push("doc".to_string());
221
222 let mut lints_to_show = vec![
225 rustc_lint::builtin::MISSING_DOCS.name.to_string(),
227 rustc_lint::builtin::INVALID_DOC_ATTRIBUTES.name.to_string(),
228 rustc_lint::builtin::RENAMED_AND_REMOVED_LINTS.name.to_string(),
230 rustc_lint::builtin::UNKNOWN_LINTS.name.to_string(),
231 rustc_lint::builtin::UNEXPECTED_CFGS.name.to_string(),
232 rustc_lint::builtin::DUPLICATE_FEATURES.name.to_string(),
233 rustc_lint::builtin::UNUSED_FEATURES.name.to_string(),
234 rustc_lint::builtin::STABLE_FEATURES.name.to_string(),
235 rustc_lint::builtin::UNFULFILLED_LINT_EXPECTATIONS.name.to_string(),
237 ];
238 lints_to_show.extend(crate::lint::RUSTDOC_LINTS.iter().map(|lint| lint.name.to_string()));
239
240 let (lint_opts, lint_caps) = crate::lint::init_lints(lints_to_show, lint_opts, |lint| {
241 Some((lint.name_lower(), lint::Allow))
242 });
243
244 let crate_types =
245 if proc_macro_crate { vec![CrateType::ProcMacro] } else { vec![CrateType::Rlib] };
246 let resolve_doc_links = if render_options.document_private {
247 ResolveDocLinks::All
248 } else {
249 ResolveDocLinks::Exported
250 };
251 let test = scrape_examples_options.map(|opts| opts.scrape_tests).unwrap_or(false);
252 let sessopts = config::Options {
254 sysroot,
255 search_paths: libs,
256 crate_types,
257 lint_opts,
258 lint_cap,
259 cg: codegen_options,
260 externs,
261 target_triple: target,
262 unstable_features: UnstableFeatures::from_environment(crate_name.as_deref()),
263 actually_rustdoc: true,
264 resolve_doc_links,
265 unstable_opts,
266 error_format,
267 diagnostic_width,
268 edition,
269 describe_lints,
270 crate_name,
271 test,
272 remap_path_prefix,
273 output_types: if let Some(file) = render_options.dep_info() {
274 OutputTypes::new(&[(OutputType::DepInfo, file.cloned())])
275 } else {
276 OutputTypes::new(&[])
277 },
278 target_modifiers,
279 ..Options::default()
280 };
281
282 rustc_interface::Config {
283 opts: sessopts,
284 crate_cfg: cfgs,
285 crate_check_cfg: check_cfgs,
286 input,
287 output_file: None,
288 output_dir: if render_options.output_to_stdout {
289 None
290 } else {
291 Some(render_options.output.clone())
292 },
293 file_loader: None,
294 lint_caps,
295 psess_created: None,
296 track_state: None,
297 register_lints: Some(Box::new(crate::lint::register_lints)),
298 override_queries: Some(|_sess, providers| {
299 providers.queries.lint_mod =
302 |tcx, module_def_id| late_lint_mod(tcx, module_def_id, MissingDoc);
303 providers.queries.used_trait_imports = |_, _| {
305 static EMPTY_SET: LazyLock<UnordSet<LocalDefId>> = LazyLock::new(UnordSet::default);
306 &EMPTY_SET
307 };
308 providers.queries.typeck_root = move |tcx, def_id| {
310 assert!(!tcx.is_typeck_child(def_id.to_def_id()));
312
313 let body = tcx.hir_body_owned_by(def_id);
314 debug!("visiting body for {def_id:?}");
315 EmitIgnoredResolutionErrors::new(tcx).visit_body(body);
316 (rustc_interface::DEFAULT_QUERY_PROVIDERS.queries.typeck_root)(tcx, def_id)
317 };
318 }),
319 extra_symbols: Vec::new(),
320 make_codegen_backend: None,
321 ice_file: None,
322 using_internal_features: &USING_INTERNAL_FEATURES,
323 }
324}
325
326pub(crate) fn run_global_ctxt(
327 tcx: TyCtxt<'_>,
328 show_coverage: bool,
329 render_options: RenderOptions,
330 output_format: OutputFormat,
331) -> (clean::Crate, RenderOptions, Cache, FxHashMap<rustc_span::BytePos, Vec<ExpandedCode>>) {
332 let expanded_macros = {
337 let (_resolver, krate) = &*tcx.resolver_for_lowering().borrow();
340
341 source_macro_expansion(&krate, &render_options, output_format, tcx.sess.source_map())
342 };
343
344 tcx.sess.time("wf_checking", || tcx.ensure_ok().check_type_wf(()));
350
351 tcx.dcx().abort_if_errors();
352
353 tcx.sess.time("missing_docs", || rustc_lint::check_crate(tcx));
354 tcx.sess.time("check_mod_attrs", || {
355 tcx.hir_for_each_module(|module| tcx.ensure_ok().check_mod_attrs(module))
356 });
357 rustc_passes::stability::check_unused_or_stable_features(tcx);
358
359 let auto_traits =
360 tcx.visible_traits().filter(|&trait_def_id| tcx.trait_is_auto(trait_def_id)).collect();
361
362 let mut ctxt = DocContext {
363 tcx,
364 param_env: ParamEnv::empty(),
365 external_traits: Default::default(),
366 active_extern_traits: Default::default(),
367 args: Default::default(),
368 current_type_aliases: Default::default(),
369 impl_trait_bounds: Default::default(),
370 generated_synthetics: Default::default(),
371 auto_traits,
372 cache: Cache::new(render_options.document_private, render_options.document_hidden),
373 inlined: FxHashSet::default(),
374 output_format,
375 show_coverage,
376 };
377
378 for cnum in tcx.crates(()) {
379 crate::visit_lib::lib_embargo_visit_item(&mut ctxt, cnum.as_def_id());
380 }
381
382 if let Some(sized_trait_did) = ctxt.tcx.lang_items().sized_trait() {
386 let sized_trait = build_trait(&mut ctxt, sized_trait_did);
387 ctxt.external_traits.insert(sized_trait_did, sized_trait);
388 }
389
390 let mut krate = tcx.sess.time("clean_crate", || clean::krate(&mut ctxt));
391
392 if krate.module.doc_value().is_empty() {
393 let help = format!(
394 "The following guide may be of use:\n\
395 {}/rustdoc/how-to-write-documentation.html",
396 crate::DOC_RUST_LANG_ORG_VERSION
397 );
398 tcx.emit_node_lint(
399 crate::lint::MISSING_CRATE_LEVEL_DOCS,
400 DocContext::as_local_hir_id(tcx, krate.module.item_id).unwrap(),
401 rustc_errors::DiagDecorator(|lint| {
402 if let Some(local_def_id) = krate.module.item_id.as_local_def_id() {
403 lint.span(tcx.def_span(local_def_id));
404 }
405 lint.primary_message("no documentation found for this crate's top-level module");
406 lint.help(help);
407 }),
408 );
409 }
410
411 info!("Executing passes");
412
413 let mut visited = FxHashMap::default();
414 let mut ambiguous = FxIndexMap::default();
415
416 for p in passes::defaults(show_coverage) {
417 let run = match p.condition {
418 Always => true,
419 WhenDocumentPrivate => ctxt.document_private(),
420 WhenNotDocumentPrivate => !ctxt.document_private(),
421 WhenNotDocumentHidden => !ctxt.document_hidden(),
422 };
423 if run {
424 debug!("running pass {}", p.pass.name);
425 if let Some(run_fn) = p.pass.run {
426 krate = tcx.sess.time(p.pass.name, || run_fn(krate, &mut ctxt));
427 } else {
428 let (k, LinkCollector { visited_links, ambiguous_links, .. }) =
429 passes::collect_intra_doc_links::collect_intra_doc_links(krate, &mut ctxt);
430 krate = k;
431 visited = visited_links;
432 ambiguous = ambiguous_links;
433 }
434 }
435 }
436
437 tcx.sess.time("check_lint_expectations", || tcx.check_expectations(Some(sym::rustdoc)));
438
439 krate =
440 tcx.sess.time("create_format_cache", || Cache::populate(&mut ctxt, krate, &render_options));
441
442 let mut collector =
443 LinkCollector { cx: &mut ctxt, visited_links: visited, ambiguous_links: ambiguous };
444 collector.resolve_ambiguities();
445
446 tcx.dcx().abort_if_errors();
447
448 (krate, render_options, ctxt.cache, expanded_macros)
449}
450
451struct EmitIgnoredResolutionErrors<'tcx> {
456 tcx: TyCtxt<'tcx>,
457}
458
459impl<'tcx> EmitIgnoredResolutionErrors<'tcx> {
460 fn new(tcx: TyCtxt<'tcx>) -> Self {
461 Self { tcx }
462 }
463}
464
465impl<'tcx> Visitor<'tcx> for EmitIgnoredResolutionErrors<'tcx> {
466 type NestedFilter = nested_filter::OnlyBodies;
467
468 fn maybe_tcx(&mut self) -> Self::MaybeTyCtxt {
469 self.tcx
472 }
473
474 fn visit_path(&mut self, path: &Path<'tcx>, _id: HirId) {
475 debug!("visiting path {path:?}");
476 if path.res == Res::Err {
477 let label = format!(
481 "could not resolve path `{}`",
482 path.segments
483 .iter()
484 .map(|segment| segment.ident.as_str())
485 .intersperse("::")
486 .collect::<String>()
487 );
488 rustc_errors::struct_span_code_err!(
489 self.tcx.dcx(),
490 path.span,
491 E0433,
492 "failed to resolve: {label}",
493 )
494 .with_span_label(path.span, label)
495 .with_note("this error was originally ignored because you are running `rustdoc`")
496 .with_note("try running again with `rustc` or `cargo check` and you may get a more detailed error")
497 .emit();
498 }
499 intravisit::walk_path(self, path);
503 }
504}
505
506#[derive(Clone, Copy, PartialEq, Eq, Hash)]
509pub(crate) enum ImplTraitParam {
510 DefId(DefId),
511 ParamIndex(u32),
512}
513
514impl From<DefId> for ImplTraitParam {
515 fn from(did: DefId) -> Self {
516 ImplTraitParam::DefId(did)
517 }
518}
519
520impl From<u32> for ImplTraitParam {
521 fn from(idx: u32) -> Self {
522 ImplTraitParam::ParamIndex(idx)
523 }
524}