]> git.lizzy.rs Git - rust.git/blob - src/librustdoc/passes/collect_intra_doc_links/early.rs
Auto merge of #94566 - yanganto:show-ignore-message, r=m-ou-se
[rust.git] / src / librustdoc / passes / collect_intra_doc_links / early.rs
1 use crate::clean;
2 use crate::core::ResolverCaches;
3 use crate::html::markdown::markdown_links;
4 use crate::passes::collect_intra_doc_links::preprocess_link;
5
6 use rustc_ast::visit::{self, AssocCtxt, Visitor};
7 use rustc_ast::{self as ast, ItemKind};
8 use rustc_ast_lowering::ResolverAstLowering;
9 use rustc_hir::def::Namespace::TypeNS;
10 use rustc_hir::def::{DefKind, Res};
11 use rustc_hir::def_id::{DefId, DefIdMap, DefIdSet, LocalDefId, CRATE_DEF_ID};
12 use rustc_hir::TraitCandidate;
13 use rustc_middle::ty::{DefIdTree, Visibility};
14 use rustc_resolve::{ParentScope, Resolver};
15 use rustc_session::config::Externs;
16 use rustc_span::SyntaxContext;
17
18 use std::collections::hash_map::Entry;
19 use std::mem;
20
21 crate fn early_resolve_intra_doc_links(
22     resolver: &mut Resolver<'_>,
23     krate: &ast::Crate,
24     externs: Externs,
25 ) -> ResolverCaches {
26     let mut loader = IntraLinkCrateLoader {
27         resolver,
28         current_mod: CRATE_DEF_ID,
29         visited_mods: Default::default(),
30         traits_in_scope: Default::default(),
31         all_traits: Default::default(),
32         all_trait_impls: Default::default(),
33     };
34
35     // Because of the `crate::` prefix, any doc comment can reference
36     // the crate root's set of in-scope traits. This line makes sure
37     // it's available.
38     loader.add_traits_in_scope(CRATE_DEF_ID.to_def_id());
39
40     // Overridden `visit_item` below doesn't apply to the crate root,
41     // so we have to visit its attributes and reexports separately.
42     loader.load_links_in_attrs(&krate.attrs);
43     loader.process_module_children_or_reexports(CRATE_DEF_ID.to_def_id());
44     visit::walk_crate(&mut loader, krate);
45     loader.add_foreign_traits_in_scope();
46
47     // FIXME: somehow rustdoc is still missing crates even though we loaded all
48     // the known necessary crates. Load them all unconditionally until we find a way to fix this.
49     // DO NOT REMOVE THIS without first testing on the reproducer in
50     // https://github.com/jyn514/objr/commit/edcee7b8124abf0e4c63873e8422ff81beb11ebb
51     for (extern_name, _) in externs.iter().filter(|(_, entry)| entry.add_prelude) {
52         loader.resolver.resolve_rustdoc_path(extern_name, TypeNS, CRATE_DEF_ID.to_def_id());
53     }
54
55     ResolverCaches {
56         traits_in_scope: loader.traits_in_scope,
57         all_traits: Some(loader.all_traits),
58         all_trait_impls: Some(loader.all_trait_impls),
59     }
60 }
61
62 struct IntraLinkCrateLoader<'r, 'ra> {
63     resolver: &'r mut Resolver<'ra>,
64     current_mod: LocalDefId,
65     visited_mods: DefIdSet,
66     traits_in_scope: DefIdMap<Vec<TraitCandidate>>,
67     all_traits: Vec<DefId>,
68     all_trait_impls: Vec<DefId>,
69 }
70
71 impl IntraLinkCrateLoader<'_, '_> {
72     fn add_traits_in_scope(&mut self, def_id: DefId) {
73         // Calls to `traits_in_scope` are expensive, so try to avoid them if only possible.
74         // Keys in the `traits_in_scope` cache are always module IDs.
75         if let Entry::Vacant(entry) = self.traits_in_scope.entry(def_id) {
76             let module = self.resolver.get_nearest_non_block_module(def_id);
77             let module_id = module.def_id();
78             let entry = if module_id == def_id {
79                 Some(entry)
80             } else if let Entry::Vacant(entry) = self.traits_in_scope.entry(module_id) {
81                 Some(entry)
82             } else {
83                 None
84             };
85             if let Some(entry) = entry {
86                 entry.insert(self.resolver.traits_in_scope(
87                     None,
88                     &ParentScope::module(module, self.resolver),
89                     SyntaxContext::root(),
90                     None,
91                 ));
92             }
93         }
94     }
95
96     fn add_traits_in_parent_scope(&mut self, def_id: DefId) {
97         if let Some(module_id) = self.resolver.parent(def_id) {
98             self.add_traits_in_scope(module_id);
99         }
100     }
101
102     /// Add traits in scope for links in impls collected by the `collect-intra-doc-links` pass.
103     /// That pass filters impls using type-based information, but we don't yet have such
104     /// information here, so we just conservatively calculate traits in scope for *all* modules
105     /// having impls in them.
106     fn add_foreign_traits_in_scope(&mut self) {
107         for cnum in Vec::from_iter(self.resolver.cstore().crates_untracked()) {
108             // FIXME: Due to #78696 rustdoc can query traits in scope for any crate root.
109             self.add_traits_in_scope(cnum.as_def_id());
110
111             let all_traits = Vec::from_iter(self.resolver.cstore().traits_in_crate_untracked(cnum));
112             let all_trait_impls =
113                 Vec::from_iter(self.resolver.cstore().trait_impls_in_crate_untracked(cnum));
114             let all_inherent_impls =
115                 Vec::from_iter(self.resolver.cstore().inherent_impls_in_crate_untracked(cnum));
116             let all_lang_items = Vec::from_iter(self.resolver.cstore().lang_items_untracked(cnum));
117
118             // Querying traits in scope is expensive so we try to prune the impl and traits lists
119             // using privacy, private traits and impls from other crates are never documented in
120             // the current crate, and links in their doc comments are not resolved.
121             for &def_id in &all_traits {
122                 if self.resolver.cstore().visibility_untracked(def_id) == Visibility::Public {
123                     self.add_traits_in_parent_scope(def_id);
124                 }
125             }
126             for &(trait_def_id, impl_def_id, simplified_self_ty) in &all_trait_impls {
127                 if self.resolver.cstore().visibility_untracked(trait_def_id) == Visibility::Public
128                     && simplified_self_ty.and_then(|ty| ty.def()).map_or(true, |ty_def_id| {
129                         self.resolver.cstore().visibility_untracked(ty_def_id) == Visibility::Public
130                     })
131                 {
132                     self.add_traits_in_parent_scope(impl_def_id);
133                 }
134             }
135             for (ty_def_id, impl_def_id) in all_inherent_impls {
136                 if self.resolver.cstore().visibility_untracked(ty_def_id) == Visibility::Public {
137                     self.add_traits_in_parent_scope(impl_def_id);
138                 }
139             }
140             for def_id in all_lang_items {
141                 self.add_traits_in_parent_scope(def_id);
142             }
143
144             self.all_traits.extend(all_traits);
145             self.all_trait_impls.extend(all_trait_impls.into_iter().map(|(_, def_id, _)| def_id));
146         }
147     }
148
149     fn load_links_in_attrs(&mut self, attrs: &[ast::Attribute]) {
150         // FIXME: this needs to consider reexport inlining.
151         let attrs = clean::Attributes::from_ast(attrs, None);
152         for (parent_module, doc) in attrs.collapsed_doc_value_by_module_level() {
153             let module_id = parent_module.unwrap_or(self.current_mod.to_def_id());
154
155             self.add_traits_in_scope(module_id);
156
157             for link in markdown_links(&doc.as_str()) {
158                 let path_str = if let Some(Ok(x)) = preprocess_link(&link) {
159                     x.path_str
160                 } else {
161                     continue;
162                 };
163                 self.resolver.resolve_rustdoc_path(&path_str, TypeNS, module_id);
164             }
165         }
166     }
167
168     /// When reexports are inlined, they are replaced with item which they refer to, those items
169     /// may have links in their doc comments, those links are resolved at the item definition site,
170     /// so we need to know traits in scope at that definition site.
171     fn process_module_children_or_reexports(&mut self, module_id: DefId) {
172         if !self.visited_mods.insert(module_id) {
173             return; // avoid infinite recursion
174         }
175
176         for child in self.resolver.module_children_or_reexports(module_id) {
177             if child.vis == Visibility::Public {
178                 if let Some(def_id) = child.res.opt_def_id() {
179                     self.add_traits_in_parent_scope(def_id);
180                 }
181                 if let Res::Def(DefKind::Mod, module_id) = child.res {
182                     self.process_module_children_or_reexports(module_id);
183                 }
184             }
185         }
186     }
187 }
188
189 impl Visitor<'_> for IntraLinkCrateLoader<'_, '_> {
190     fn visit_item(&mut self, item: &ast::Item) {
191         if let ItemKind::Mod(..) = item.kind {
192             let old_mod = mem::replace(&mut self.current_mod, self.resolver.local_def_id(item.id));
193
194             // A module written with a outline doc comments will resolve traits relative
195             // to the parent module. Make sure the parent module's traits-in-scope are
196             // loaded, even if the module itself has no doc comments.
197             self.add_traits_in_parent_scope(self.current_mod.to_def_id());
198
199             self.load_links_in_attrs(&item.attrs);
200             self.process_module_children_or_reexports(self.current_mod.to_def_id());
201             visit::walk_item(self, item);
202
203             self.current_mod = old_mod;
204         } else {
205             match item.kind {
206                 ItemKind::Trait(..) => {
207                     self.all_traits.push(self.resolver.local_def_id(item.id).to_def_id());
208                 }
209                 ItemKind::Impl(box ast::Impl { of_trait: Some(..), .. }) => {
210                     self.all_trait_impls.push(self.resolver.local_def_id(item.id).to_def_id());
211                 }
212                 _ => {}
213             }
214             self.load_links_in_attrs(&item.attrs);
215             visit::walk_item(self, item);
216         }
217     }
218
219     fn visit_assoc_item(&mut self, item: &ast::AssocItem, ctxt: AssocCtxt) {
220         self.load_links_in_attrs(&item.attrs);
221         visit::walk_assoc_item(self, item, ctxt)
222     }
223
224     fn visit_foreign_item(&mut self, item: &ast::ForeignItem) {
225         self.load_links_in_attrs(&item.attrs);
226         visit::walk_foreign_item(self, item)
227     }
228
229     fn visit_variant(&mut self, v: &ast::Variant) {
230         self.load_links_in_attrs(&v.attrs);
231         visit::walk_variant(self, v)
232     }
233
234     fn visit_field_def(&mut self, field: &ast::FieldDef) {
235         self.load_links_in_attrs(&field.attrs);
236         visit::walk_field_def(self, field)
237     }
238
239     // NOTE: if doc-comments are ever allowed on other nodes (e.g. function parameters),
240     // then this will have to implement other visitor methods too.
241 }