]> git.lizzy.rs Git - rust.git/blob - src/librustdoc/visit_ast.rs
rustc: desugar `use a::{b,c};` into `use a::b; use a::c;` in HIR.
[rust.git] / src / librustdoc / visit_ast.rs
1 // Copyright 2012-2013 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11 //! Rust AST Visitor. Extracts useful information and massages it into a form
12 //! usable for clean
13
14 use std::mem;
15
16 use syntax::abi;
17 use syntax::ast;
18 use syntax::attr;
19 use syntax_pos::Span;
20
21 use rustc::hir::map as hir_map;
22 use rustc::hir::def::Def;
23 use rustc::hir::def_id::LOCAL_CRATE;
24 use rustc::middle::cstore::LoadedMacro;
25 use rustc::middle::privacy::AccessLevel;
26 use rustc::util::nodemap::FxHashSet;
27
28 use rustc::hir;
29
30 use core;
31 use clean::{self, AttributesExt, NestedAttributesExt};
32 use doctree::*;
33
34 // looks to me like the first two of these are actually
35 // output parameters, maybe only mutated once; perhaps
36 // better simply to have the visit method return a tuple
37 // containing them?
38
39 // also, is there some reason that this doesn't use the 'visit'
40 // framework from syntax?
41
42 pub struct RustdocVisitor<'a, 'tcx: 'a> {
43     pub module: Module,
44     pub attrs: hir::HirVec<ast::Attribute>,
45     pub cx: &'a core::DocContext<'a, 'tcx>,
46     view_item_stack: FxHashSet<ast::NodeId>,
47     inlining: bool,
48     /// Is the current module and all of its parents public?
49     inside_public_path: bool,
50 }
51
52 impl<'a, 'tcx> RustdocVisitor<'a, 'tcx> {
53     pub fn new(cx: &'a core::DocContext<'a, 'tcx>) -> RustdocVisitor<'a, 'tcx> {
54         // If the root is reexported, terminate all recursion.
55         let mut stack = FxHashSet();
56         stack.insert(ast::CRATE_NODE_ID);
57         RustdocVisitor {
58             module: Module::new(None),
59             attrs: hir::HirVec::new(),
60             cx: cx,
61             view_item_stack: stack,
62             inlining: false,
63             inside_public_path: true,
64         }
65     }
66
67     fn stability(&self, id: ast::NodeId) -> Option<attr::Stability> {
68         self.cx.tcx.map.opt_local_def_id(id)
69             .and_then(|def_id| self.cx.tcx.lookup_stability(def_id)).cloned()
70     }
71
72     fn deprecation(&self, id: ast::NodeId) -> Option<attr::Deprecation> {
73         self.cx.tcx.map.opt_local_def_id(id)
74             .and_then(|def_id| self.cx.tcx.lookup_deprecation(def_id))
75     }
76
77     pub fn visit(&mut self, krate: &hir::Crate) {
78         self.attrs = krate.attrs.clone();
79
80         self.module = self.visit_mod_contents(krate.span,
81                                               krate.attrs.clone(),
82                                               hir::Public,
83                                               ast::CRATE_NODE_ID,
84                                               &krate.module,
85                                               None);
86         // attach the crate's exported macros to the top-level module:
87         let macro_exports: Vec<_> =
88             krate.exported_macros.iter().map(|def| self.visit_macro(def)).collect();
89         self.module.macros.extend(macro_exports);
90         self.module.is_crate = true;
91     }
92
93     pub fn visit_variant_data(&mut self, item: &hir::Item,
94                             name: ast::Name, sd: &hir::VariantData,
95                             generics: &hir::Generics) -> Struct {
96         debug!("Visiting struct");
97         let struct_type = struct_type_from_def(&*sd);
98         Struct {
99             id: item.id,
100             struct_type: struct_type,
101             name: name,
102             vis: item.vis.clone(),
103             stab: self.stability(item.id),
104             depr: self.deprecation(item.id),
105             attrs: item.attrs.clone(),
106             generics: generics.clone(),
107             fields: sd.fields().iter().cloned().collect(),
108             whence: item.span
109         }
110     }
111
112     pub fn visit_union_data(&mut self, item: &hir::Item,
113                             name: ast::Name, sd: &hir::VariantData,
114                             generics: &hir::Generics) -> Union {
115         debug!("Visiting union");
116         let struct_type = struct_type_from_def(&*sd);
117         Union {
118             id: item.id,
119             struct_type: struct_type,
120             name: name,
121             vis: item.vis.clone(),
122             stab: self.stability(item.id),
123             depr: self.deprecation(item.id),
124             attrs: item.attrs.clone(),
125             generics: generics.clone(),
126             fields: sd.fields().iter().cloned().collect(),
127             whence: item.span
128         }
129     }
130
131     pub fn visit_enum_def(&mut self, it: &hir::Item,
132                           name: ast::Name, def: &hir::EnumDef,
133                           params: &hir::Generics) -> Enum {
134         debug!("Visiting enum");
135         Enum {
136             name: name,
137             variants: def.variants.iter().map(|v| Variant {
138                 name: v.node.name,
139                 attrs: v.node.attrs.clone(),
140                 stab: self.stability(v.node.data.id()),
141                 depr: self.deprecation(v.node.data.id()),
142                 def: v.node.data.clone(),
143                 whence: v.span,
144             }).collect(),
145             vis: it.vis.clone(),
146             stab: self.stability(it.id),
147             depr: self.deprecation(it.id),
148             generics: params.clone(),
149             attrs: it.attrs.clone(),
150             id: it.id,
151             whence: it.span,
152         }
153     }
154
155     pub fn visit_fn(&mut self, item: &hir::Item,
156                     name: ast::Name, fd: &hir::FnDecl,
157                     unsafety: &hir::Unsafety,
158                     constness: hir::Constness,
159                     abi: &abi::Abi,
160                     gen: &hir::Generics) -> Function {
161         debug!("Visiting fn");
162         Function {
163             id: item.id,
164             vis: item.vis.clone(),
165             stab: self.stability(item.id),
166             depr: self.deprecation(item.id),
167             attrs: item.attrs.clone(),
168             decl: fd.clone(),
169             name: name,
170             whence: item.span,
171             generics: gen.clone(),
172             unsafety: *unsafety,
173             constness: constness,
174             abi: *abi,
175         }
176     }
177
178     pub fn visit_mod_contents(&mut self, span: Span, attrs: hir::HirVec<ast::Attribute>,
179                               vis: hir::Visibility, id: ast::NodeId,
180                               m: &hir::Mod,
181                               name: Option<ast::Name>) -> Module {
182         let mut om = Module::new(name);
183         om.where_outer = span;
184         om.where_inner = m.inner;
185         om.attrs = attrs;
186         om.vis = vis.clone();
187         om.stab = self.stability(id);
188         om.depr = self.deprecation(id);
189         om.id = id;
190         // Keep track of if there were any private modules in the path.
191         let orig_inside_public_path = self.inside_public_path;
192         self.inside_public_path &= vis == hir::Public;
193         for i in &m.item_ids {
194             let item = self.cx.tcx.map.expect_item(i.id);
195             self.visit_item(item, None, &mut om);
196         }
197         self.inside_public_path = orig_inside_public_path;
198         if let Some(exports) = self.cx.export_map.get(&id) {
199             for export in exports {
200                 if let Def::Macro(def_id) = export.def {
201                     if def_id.krate == LOCAL_CRATE {
202                         continue // These are `krate.exported_macros`, handled in `self.visit()`.
203                     }
204                     let def = match self.cx.sess().cstore.load_macro(def_id, self.cx.sess()) {
205                         LoadedMacro::MacroRules(macro_rules) => macro_rules,
206                         // FIXME(jseyfried): document proc macro reexports
207                         LoadedMacro::ProcMacro(..) => continue,
208                     };
209
210                     // FIXME(jseyfried) merge with `self.visit_macro()`
211                     let matchers = def.body.chunks(4).map(|arm| arm[0].get_span()).collect();
212                     om.macros.push(Macro {
213                         id: def.id,
214                         attrs: def.attrs.clone().into(),
215                         name: def.ident.name,
216                         whence: def.span,
217                         matchers: matchers,
218                         stab: self.stability(def.id),
219                         depr: self.deprecation(def.id),
220                         imported_from: def.imported_from.map(|ident| ident.name),
221                     })
222                 }
223             }
224         }
225         om
226     }
227
228     /// Tries to resolve the target of a `pub use` statement and inlines the
229     /// target if it is defined locally and would not be documented otherwise,
230     /// or when it is specifically requested with `please_inline`.
231     /// (the latter is the case when the import is marked `doc(inline)`)
232     ///
233     /// Cross-crate inlining occurs later on during crate cleaning
234     /// and follows different rules.
235     ///
236     /// Returns true if the target has been inlined.
237     fn maybe_inline_local(&mut self, id: ast::NodeId, renamed: Option<ast::Name>,
238                   glob: bool, om: &mut Module, please_inline: bool) -> bool {
239
240         fn inherits_doc_hidden(cx: &core::DocContext, mut node: ast::NodeId) -> bool {
241             while let Some(id) = cx.tcx.map.get_enclosing_scope(node) {
242                 node = id;
243                 if cx.tcx.map.attrs(node).lists("doc").has_word("hidden") {
244                     return true;
245                 }
246                 if node == ast::CRATE_NODE_ID {
247                     break;
248                 }
249             }
250             false
251         }
252
253         let tcx = self.cx.tcx;
254         let def = tcx.expect_def(id);
255         let def_did = def.def_id();
256
257         let use_attrs = tcx.map.attrs(id);
258         // Don't inline doc(hidden) imports so they can be stripped at a later stage.
259         let is_no_inline = use_attrs.lists("doc").has_word("no_inline") ||
260                            use_attrs.lists("doc").has_word("hidden");
261
262         // For cross-crate impl inlining we need to know whether items are
263         // reachable in documentation - a previously nonreachable item can be
264         // made reachable by cross-crate inlining which we're checking here.
265         // (this is done here because we need to know this upfront)
266         if !def_did.is_local() && !is_no_inline {
267             let attrs = clean::inline::load_attrs(self.cx, def_did);
268             let self_is_hidden = attrs.lists("doc").has_word("hidden");
269             match def {
270                 Def::Trait(did) |
271                 Def::Struct(did) |
272                 Def::Union(did) |
273                 Def::Enum(did) |
274                 Def::TyAlias(did) if !self_is_hidden => {
275                     self.cx.access_levels.borrow_mut().map.insert(did, AccessLevel::Public);
276                 },
277                 Def::Mod(did) => if !self_is_hidden {
278                     ::visit_lib::LibEmbargoVisitor::new(self.cx).visit_mod(did);
279                 },
280                 _ => {},
281             }
282             return false
283         }
284
285         let def_node_id = match tcx.map.as_local_node_id(def_did) {
286             Some(n) => n, None => return false
287         };
288
289         let is_private = !self.cx.access_levels.borrow().is_public(def_did);
290         let is_hidden = inherits_doc_hidden(self.cx, def_node_id);
291
292         // Only inline if requested or if the item would otherwise be stripped
293         if (!please_inline && !is_private && !is_hidden) || is_no_inline {
294             return false
295         }
296
297         if !self.view_item_stack.insert(def_node_id) { return false }
298
299         let ret = match tcx.map.get(def_node_id) {
300             hir_map::NodeItem(it) => {
301                 let prev = mem::replace(&mut self.inlining, true);
302                 if glob {
303                     match it.node {
304                         hir::ItemMod(ref m) => {
305                             for i in &m.item_ids {
306                                 let i = self.cx.tcx.map.expect_item(i.id);
307                                 self.visit_item(i, None, om);
308                             }
309                         }
310                         hir::ItemEnum(..) => {}
311                         _ => { panic!("glob not mapped to a module or enum"); }
312                     }
313                 } else {
314                     self.visit_item(it, renamed, om);
315                 }
316                 self.inlining = prev;
317                 true
318             }
319             _ => false,
320         };
321         self.view_item_stack.remove(&def_node_id);
322         ret
323     }
324
325     pub fn visit_item(&mut self, item: &hir::Item,
326                       renamed: Option<ast::Name>, om: &mut Module) {
327         debug!("Visiting item {:?}", item);
328         let name = renamed.unwrap_or(item.name);
329         match item.node {
330             hir::ItemForeignMod(ref fm) => {
331                 // If inlining we only want to include public functions.
332                 om.foreigns.push(if self.inlining {
333                     hir::ForeignMod {
334                         abi: fm.abi,
335                         items: fm.items.iter().filter(|i| i.vis == hir::Public).cloned().collect(),
336                     }
337                 } else {
338                     fm.clone()
339                 });
340             }
341             // If we're inlining, skip private items.
342             _ if self.inlining && item.vis != hir::Public => {}
343             hir::ItemExternCrate(ref p) => {
344                 let cstore = &self.cx.sess().cstore;
345                 om.extern_crates.push(ExternCrate {
346                     cnum: cstore.extern_mod_stmt_cnum(item.id)
347                                 .unwrap_or(LOCAL_CRATE),
348                     name: name,
349                     path: p.map(|x|x.to_string()),
350                     vis: item.vis.clone(),
351                     attrs: item.attrs.clone(),
352                     whence: item.span,
353                 })
354             }
355             hir::ItemUse(_, hir::UseKind::ListStem) => {}
356             hir::ItemUse(ref path, kind) => {
357                 let is_glob = kind == hir::UseKind::Glob;
358
359                 // If there was a private module in the current path then don't bother inlining
360                 // anything as it will probably be stripped anyway.
361                 if item.vis == hir::Public && self.inside_public_path {
362                     let please_inline = item.attrs.iter().any(|item| {
363                         match item.meta_item_list() {
364                             Some(list) if item.check_name("doc") => {
365                                 list.iter().any(|i| i.check_name("inline"))
366                             }
367                             _ => false,
368                         }
369                     });
370                     let name = if is_glob { None } else { Some(name) };
371                     if self.maybe_inline_local(item.id, name, is_glob, om, please_inline) {
372                         return;
373                     }
374                 }
375
376                 om.imports.push(Import {
377                     name: item.name,
378                     id: item.id,
379                     vis: item.vis.clone(),
380                     attrs: item.attrs.clone(),
381                     path: (**path).clone(),
382                     glob: is_glob,
383                     whence: item.span,
384                 });
385             }
386             hir::ItemMod(ref m) => {
387                 om.mods.push(self.visit_mod_contents(item.span,
388                                                      item.attrs.clone(),
389                                                      item.vis.clone(),
390                                                      item.id,
391                                                      m,
392                                                      Some(name)));
393             },
394             hir::ItemEnum(ref ed, ref gen) =>
395                 om.enums.push(self.visit_enum_def(item, name, ed, gen)),
396             hir::ItemStruct(ref sd, ref gen) =>
397                 om.structs.push(self.visit_variant_data(item, name, sd, gen)),
398             hir::ItemUnion(ref sd, ref gen) =>
399                 om.unions.push(self.visit_union_data(item, name, sd, gen)),
400             hir::ItemFn(ref fd, ref unsafety, constness, ref abi, ref gen, _) =>
401                 om.fns.push(self.visit_fn(item, name, &**fd, unsafety,
402                                           constness, abi, gen)),
403             hir::ItemTy(ref ty, ref gen) => {
404                 let t = Typedef {
405                     ty: ty.clone(),
406                     gen: gen.clone(),
407                     name: name,
408                     id: item.id,
409                     attrs: item.attrs.clone(),
410                     whence: item.span,
411                     vis: item.vis.clone(),
412                     stab: self.stability(item.id),
413                     depr: self.deprecation(item.id),
414                 };
415                 om.typedefs.push(t);
416             },
417             hir::ItemStatic(ref ty, ref mut_, ref exp) => {
418                 let s = Static {
419                     type_: ty.clone(),
420                     mutability: mut_.clone(),
421                     expr: exp.clone(),
422                     id: item.id,
423                     name: name,
424                     attrs: item.attrs.clone(),
425                     whence: item.span,
426                     vis: item.vis.clone(),
427                     stab: self.stability(item.id),
428                     depr: self.deprecation(item.id),
429                 };
430                 om.statics.push(s);
431             },
432             hir::ItemConst(ref ty, ref exp) => {
433                 let s = Constant {
434                     type_: ty.clone(),
435                     expr: exp.clone(),
436                     id: item.id,
437                     name: name,
438                     attrs: item.attrs.clone(),
439                     whence: item.span,
440                     vis: item.vis.clone(),
441                     stab: self.stability(item.id),
442                     depr: self.deprecation(item.id),
443                 };
444                 om.constants.push(s);
445             },
446             hir::ItemTrait(unsafety, ref gen, ref b, ref items) => {
447                 let t = Trait {
448                     unsafety: unsafety,
449                     name: name,
450                     items: items.clone(),
451                     generics: gen.clone(),
452                     bounds: b.iter().cloned().collect(),
453                     id: item.id,
454                     attrs: item.attrs.clone(),
455                     whence: item.span,
456                     vis: item.vis.clone(),
457                     stab: self.stability(item.id),
458                     depr: self.deprecation(item.id),
459                 };
460                 om.traits.push(t);
461             },
462
463             hir::ItemImpl(unsafety, polarity, ref gen, ref tr, ref ty, ref item_ids) => {
464                 // Don't duplicate impls when inlining, we'll pick them up
465                 // regardless of where they're located.
466                 if !self.inlining {
467                     let items = item_ids.iter()
468                                         .map(|ii| self.cx.tcx.map.impl_item(ii.id).clone())
469                                         .collect();
470                     let i = Impl {
471                         unsafety: unsafety,
472                         polarity: polarity,
473                         generics: gen.clone(),
474                         trait_: tr.clone(),
475                         for_: ty.clone(),
476                         items: items,
477                         attrs: item.attrs.clone(),
478                         id: item.id,
479                         whence: item.span,
480                         vis: item.vis.clone(),
481                         stab: self.stability(item.id),
482                         depr: self.deprecation(item.id),
483                     };
484                     om.impls.push(i);
485                 }
486             },
487             hir::ItemDefaultImpl(unsafety, ref trait_ref) => {
488                 // See comment above about ItemImpl.
489                 if !self.inlining {
490                     let i = DefaultImpl {
491                         unsafety: unsafety,
492                         trait_: trait_ref.clone(),
493                         id: item.id,
494                         attrs: item.attrs.clone(),
495                         whence: item.span,
496                     };
497                     om.def_traits.push(i);
498                 }
499             }
500         }
501     }
502
503     // convert each exported_macro into a doc item
504     fn visit_macro(&self, def: &hir::MacroDef) -> Macro {
505         // Extract the spans of all matchers. They represent the "interface" of the macro.
506         let matchers = def.body.chunks(4).map(|arm| arm[0].get_span()).collect();
507
508         Macro {
509             id: def.id,
510             attrs: def.attrs.clone(),
511             name: def.name,
512             whence: def.span,
513             matchers: matchers,
514             stab: self.stability(def.id),
515             depr: self.deprecation(def.id),
516             imported_from: def.imported_from,
517         }
518     }
519 }