rust/src/librustdoc/visit_ast.rs

458 lines
17 KiB
Rust
Raw Normal View History

// Copyright 2012-2013 The Rust Project Developers. See the COPYRIGHT
// file at the top-level directory of this distribution and at
// http://rust-lang.org/COPYRIGHT.
//
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
// option. This file may not be copied, modified, or distributed
// except according to those terms.
2013-08-15 15:28:54 -05:00
//! Rust AST Visitor. Extracts useful information and massages it into a form
//! usable for clean
use std::collections::HashSet;
use std::mem;
use syntax::abi;
use syntax::ast;
use syntax::attr;
use syntax::attr::AttrMetaMethods;
2013-09-05 09:14:35 -05:00
use syntax::codemap::Span;
2013-08-15 15:28:54 -05:00
2016-03-29 00:50:44 -05:00
use rustc::hir::map as hir_map;
use rustc::middle::stability;
2016-03-29 00:50:44 -05:00
use rustc::hir;
2015-07-31 02:04:06 -05:00
use core;
use clean::{Clean, Attributes};
2013-08-15 15:28:54 -05:00
use doctree::*;
// looks to me like the first two of these are actually
// output parameters, maybe only mutated once; perhaps
// better simply to have the visit method return a tuple
// containing them?
// also, is there some reason that this doesn't use the 'visit'
// framework from syntax?
pub struct RustdocVisitor<'a, 'tcx: 'a> {
pub module: Module,
pub attrs: hir::HirVec<ast::Attribute>,
pub cx: &'a core::DocContext<'a, 'tcx>,
view_item_stack: HashSet<ast::NodeId>,
inlining_from_glob: bool,
2013-08-15 15:28:54 -05:00
}
impl<'a, 'tcx> RustdocVisitor<'a, 'tcx> {
pub fn new(cx: &'a core::DocContext<'a, 'tcx>) -> RustdocVisitor<'a, 'tcx> {
// If the root is reexported, terminate all recursion.
let mut stack = HashSet::new();
stack.insert(ast::CRATE_NODE_ID);
2013-08-15 15:28:54 -05:00
RustdocVisitor {
module: Module::new(None),
attrs: hir::HirVec::new(),
cx: cx,
view_item_stack: stack,
inlining_from_glob: false,
2013-08-15 15:28:54 -05:00
}
}
fn stability(&self, id: ast::NodeId) -> Option<attr::Stability> {
self.cx.tcx_opt().and_then(|tcx| {
self.cx.map.opt_local_def_id(id)
.and_then(|def_id| stability::lookup_stability(tcx, def_id))
.cloned()
})
}
2015-12-12 14:01:27 -06:00
fn deprecation(&self, id: ast::NodeId) -> Option<attr::Deprecation> {
self.cx.tcx_opt().and_then(|tcx| {
self.cx.map.opt_local_def_id(id)
.and_then(|def_id| stability::lookup_deprecation(tcx, def_id))
})
}
2015-07-31 02:04:06 -05:00
pub fn visit(&mut self, krate: &hir::Crate) {
self.attrs = krate.attrs.clone();
self.module = self.visit_mod_contents(krate.span,
krate.attrs.clone(),
2015-07-31 02:04:06 -05:00
hir::Public,
ast::CRATE_NODE_ID,
&krate.module,
None);
// attach the crate's exported macros to the top-level module:
self.module.macros = krate.exported_macros.iter()
.map(|def| self.visit_macro(def)).collect();
self.module.is_crate = true;
}
pub fn visit_variant_data(&mut self, item: &hir::Item,
name: ast::Name, sd: &hir::VariantData,
2015-07-31 02:04:06 -05:00
generics: &hir::Generics) -> Struct {
debug!("Visiting struct");
2014-05-16 12:15:33 -05:00
let struct_type = struct_type_from_def(&*sd);
Struct {
id: item.id,
struct_type: struct_type,
name: name,
vis: item.vis.clone(),
stab: self.stability(item.id),
2015-12-12 14:01:27 -06:00
depr: self.deprecation(item.id),
attrs: item.attrs.clone(),
generics: generics.clone(),
fields: sd.fields().iter().cloned().collect(),
whence: item.span
2013-08-15 15:28:54 -05:00
}
}
2013-08-15 15:28:54 -05:00
2015-07-31 02:04:06 -05:00
pub fn visit_enum_def(&mut self, it: &hir::Item,
2015-09-19 20:50:30 -05:00
name: ast::Name, def: &hir::EnumDef,
2015-07-31 02:04:06 -05:00
params: &hir::Generics) -> Enum {
debug!("Visiting enum");
Enum {
name: name,
variants: def.variants.iter().map(|v| Variant {
name: v.node.name,
attrs: v.node.attrs.clone(),
2015-10-09 19:28:40 -05:00
stab: self.stability(v.node.data.id()),
2015-12-12 14:01:27 -06:00
depr: self.deprecation(v.node.data.id()),
def: v.node.data.clone(),
whence: v.span,
}).collect(),
vis: it.vis.clone(),
stab: self.stability(it.id),
2015-12-12 14:01:27 -06:00
depr: self.deprecation(it.id),
generics: params.clone(),
attrs: it.attrs.clone(),
id: it.id,
whence: it.span,
2013-08-15 15:28:54 -05:00
}
}
2013-08-15 15:28:54 -05:00
2015-07-31 02:04:06 -05:00
pub fn visit_fn(&mut self, item: &hir::Item,
2015-09-19 20:50:30 -05:00
name: ast::Name, fd: &hir::FnDecl,
2015-07-31 02:04:06 -05:00
unsafety: &hir::Unsafety,
constness: hir::Constness,
abi: &abi::Abi,
2015-07-31 02:04:06 -05:00
gen: &hir::Generics) -> Function {
debug!("Visiting fn");
Function {
id: item.id,
vis: item.vis.clone(),
stab: self.stability(item.id),
2015-12-12 14:01:27 -06:00
depr: self.deprecation(item.id),
attrs: item.attrs.clone(),
decl: fd.clone(),
name: name,
whence: item.span,
generics: gen.clone(),
2014-12-09 09:36:46 -06:00
unsafety: *unsafety,
constness: constness,
abi: *abi,
2013-08-15 15:28:54 -05:00
}
}
2013-08-15 15:28:54 -05:00
pub fn visit_mod_contents(&mut self, span: Span, attrs: hir::HirVec<ast::Attribute>,
2015-07-31 02:04:06 -05:00
vis: hir::Visibility, id: ast::NodeId,
m: &hir::Mod,
2015-09-19 20:50:30 -05:00
name: Option<ast::Name>) -> Module {
let mut om = Module::new(name);
om.where_outer = span;
om.where_inner = m.inner;
om.attrs = attrs;
om.vis = vis.clone();
om.stab = self.stability(id);
2015-12-12 14:01:27 -06:00
om.depr = self.deprecation(id);
om.id = id;
for i in &m.item_ids {
let item = self.cx.map.expect_item(i.id);
self.visit_item(item, None, &mut om);
}
om
}
2015-07-31 02:04:06 -05:00
fn visit_view_path(&mut self, path: hir::ViewPath_,
om: &mut Module,
id: ast::NodeId,
2015-07-31 02:04:06 -05:00
please_inline: bool) -> Option<hir::ViewPath_> {
match path {
2015-07-31 02:04:06 -05:00
hir::ViewPathSimple(dst, base) => {
if self.maybe_inline_local(id, Some(dst), false, om, please_inline) {
None
} else {
2015-07-31 02:04:06 -05:00
Some(hir::ViewPathSimple(dst, base))
}
}
2015-07-31 02:04:06 -05:00
hir::ViewPathList(p, paths) => {
let mine = paths.into_iter().filter(|path| {
!self.maybe_inline_local(path.node.id(), None, false, om,
please_inline)
}).collect::<hir::HirVec<hir::PathListItem>>();
if mine.is_empty() {
None
} else {
2015-07-31 02:04:06 -05:00
Some(hir::ViewPathList(p, mine))
}
}
2015-07-31 02:04:06 -05:00
hir::ViewPathGlob(base) => {
if self.maybe_inline_local(id, None, true, om, please_inline) {
None
} else {
2015-07-31 02:04:06 -05:00
Some(hir::ViewPathGlob(base))
}
2013-08-15 15:28:54 -05:00
}
}
}
2013-08-15 15:28:54 -05:00
/// Tries to resolve the target of a `pub use` statement and inlines the
/// target if it is defined locally and would not be documented otherwise,
/// or when it is specifically requested with `please_inline`.
/// (the latter is the case when the import is marked `doc(inline)`)
///
/// Cross-crate inlining occurs later on during crate cleaning
/// and follows different rules.
///
/// Returns true if the target has been inlined.
fn maybe_inline_local(&mut self, id: ast::NodeId, renamed: Option<ast::Name>,
glob: bool, om: &mut Module, please_inline: bool) -> bool {
fn inherits_doc_hidden(cx: &core::DocContext, mut node: ast::NodeId) -> bool {
while let Some(id) = cx.map.get_enclosing_scope(node) {
node = id;
let attrs = cx.map.attrs(node).clean(cx);
if attrs.list("doc").has_word("hidden") {
return true;
}
if node == ast::CRATE_NODE_ID {
break;
}
}
false
}
let tcx = match self.cx.tcx_opt() {
Some(tcx) => tcx,
None => return false
};
let def = tcx.def_map.borrow()[&id].def_id();
let def_node_id = match tcx.map.as_local_node_id(def) {
Some(n) => n, None => return false
};
let use_attrs = tcx.map.attrs(id).clean(self.cx);
let is_private = !self.cx.access_levels.borrow().is_public(def);
let is_hidden = inherits_doc_hidden(self.cx, def_node_id);
let is_no_inline = use_attrs.list("doc").has_word("no_inline");
// Only inline if requested or if the item would otherwise be stripped
if (!please_inline && !is_private && !is_hidden) || is_no_inline {
return false
}
if !self.view_item_stack.insert(def_node_id) { return false }
let ret = match tcx.map.get(def_node_id) {
2015-07-31 02:04:06 -05:00
hir_map::NodeItem(it) => {
if glob {
let prev = mem::replace(&mut self.inlining_from_glob, true);
match it.node {
2015-07-31 02:04:06 -05:00
hir::ItemMod(ref m) => {
for i in &m.item_ids {
let i = self.cx.map.expect_item(i.id);
self.visit_item(i, None, om);
}
}
2015-07-31 02:04:06 -05:00
hir::ItemEnum(..) => {}
_ => { panic!("glob not mapped to a module or enum"); }
}
self.inlining_from_glob = prev;
} else {
self.visit_item(it, renamed, om);
}
true
2013-08-15 15:28:54 -05:00
}
_ => false,
};
self.view_item_stack.remove(&def_node_id);
return ret;
}
2013-08-15 15:28:54 -05:00
2015-07-31 02:04:06 -05:00
pub fn visit_item(&mut self, item: &hir::Item,
renamed: Option<ast::Name>, om: &mut Module) {
debug!("Visiting item {:?}", item);
let name = renamed.unwrap_or(item.name);
match item.node {
2015-07-31 02:04:06 -05:00
hir::ItemExternCrate(ref p) => {
om.extern_crates.push(ExternCrate {
name: name,
2016-02-28 05:11:13 -06:00
path: p.map(|x|x.to_string()),
vis: item.vis.clone(),
attrs: item.attrs.clone(),
whence: item.span,
})
}
2015-07-31 02:04:06 -05:00
hir::ItemUse(ref vpath) => {
let node = vpath.node.clone();
2015-07-31 02:04:06 -05:00
let node = if item.vis == hir::Public {
let please_inline = item.attrs.iter().any(|item| {
match item.meta_item_list() {
Some(list) if &item.name()[..] == "doc" => {
list.iter().any(|i| &i.name()[..] == "inline")
}
_ => false,
}
});
match self.visit_view_path(node, om, item.id, please_inline) {
None => return,
Some(p) => p
}
} else {
node
};
om.imports.push(Import {
id: item.id,
vis: item.vis.clone(),
attrs: item.attrs.clone(),
node: node,
whence: item.span,
});
}
2015-07-31 02:04:06 -05:00
hir::ItemMod(ref m) => {
om.mods.push(self.visit_mod_contents(item.span,
item.attrs.clone(),
item.vis.clone(),
item.id,
m,
Some(name)));
},
2015-07-31 02:04:06 -05:00
hir::ItemEnum(ref ed, ref gen) =>
om.enums.push(self.visit_enum_def(item, name, ed, gen)),
2015-07-31 02:04:06 -05:00
hir::ItemStruct(ref sd, ref gen) =>
om.structs.push(self.visit_variant_data(item, name, sd, gen)),
2015-07-31 02:04:06 -05:00
hir::ItemFn(ref fd, ref unsafety, constness, ref abi, ref gen, _) =>
om.fns.push(self.visit_fn(item, name, &**fd, unsafety,
constness, abi, gen)),
2015-07-31 02:04:06 -05:00
hir::ItemTy(ref ty, ref gen) => {
let t = Typedef {
ty: ty.clone(),
gen: gen.clone(),
name: name,
id: item.id,
attrs: item.attrs.clone(),
whence: item.span,
vis: item.vis.clone(),
stab: self.stability(item.id),
2015-12-12 14:01:27 -06:00
depr: self.deprecation(item.id),
};
om.typedefs.push(t);
},
2015-07-31 02:04:06 -05:00
hir::ItemStatic(ref ty, ref mut_, ref exp) => {
let s = Static {
type_: ty.clone(),
mutability: mut_.clone(),
expr: exp.clone(),
id: item.id,
name: name,
attrs: item.attrs.clone(),
whence: item.span,
vis: item.vis.clone(),
stab: self.stability(item.id),
2015-12-12 14:01:27 -06:00
depr: self.deprecation(item.id),
};
om.statics.push(s);
},
2015-07-31 02:04:06 -05:00
hir::ItemConst(ref ty, ref exp) => {
let s = Constant {
type_: ty.clone(),
expr: exp.clone(),
id: item.id,
name: name,
attrs: item.attrs.clone(),
whence: item.span,
vis: item.vis.clone(),
stab: self.stability(item.id),
2015-12-12 14:01:27 -06:00
depr: self.deprecation(item.id),
};
om.constants.push(s);
},
2015-07-31 02:04:06 -05:00
hir::ItemTrait(unsafety, ref gen, ref b, ref items) => {
let t = Trait {
unsafety: unsafety,
name: name,
items: items.clone(),
generics: gen.clone(),
bounds: b.iter().cloned().collect(),
id: item.id,
attrs: item.attrs.clone(),
whence: item.span,
vis: item.vis.clone(),
stab: self.stability(item.id),
2015-12-12 14:01:27 -06:00
depr: self.deprecation(item.id),
};
om.traits.push(t);
},
2015-07-31 02:04:06 -05:00
hir::ItemImpl(unsafety, polarity, ref gen, ref tr, ref ty, ref items) => {
let i = Impl {
unsafety: unsafety,
polarity: polarity,
generics: gen.clone(),
trait_: tr.clone(),
for_: ty.clone(),
items: items.clone(),
attrs: item.attrs.clone(),
id: item.id,
whence: item.span,
vis: item.vis.clone(),
stab: self.stability(item.id),
2015-12-12 14:01:27 -06:00
depr: self.deprecation(item.id),
};
// Don't duplicate impls when inlining glob imports, we'll pick
// them up regardless of where they're located.
if !self.inlining_from_glob {
om.impls.push(i);
}
},
2015-07-31 02:04:06 -05:00
hir::ItemDefaultImpl(unsafety, ref trait_ref) => {
2015-02-07 07:24:34 -06:00
let i = DefaultImpl {
2015-01-26 17:35:03 -06:00
unsafety: unsafety,
trait_: trait_ref.clone(),
id: item.id,
attrs: item.attrs.clone(),
whence: item.span,
2015-01-26 17:35:03 -06:00
};
// see comment above about ItemImpl
if !self.inlining_from_glob {
om.def_traits.push(i);
}
2015-01-26 17:35:03 -06:00
}
2015-07-31 02:04:06 -05:00
hir::ItemForeignMod(ref fm) => {
om.foreigns.push(fm.clone());
}
}
2013-08-15 15:28:54 -05:00
}
// convert each exported_macro into a doc item
2015-07-31 02:04:06 -05:00
fn visit_macro(&self, def: &hir::MacroDef) -> Macro {
2015-11-26 12:14:36 -06:00
// Extract the spans of all matchers. They represent the "interface" of the macro.
let matchers = def.body.chunks(4).map(|arm| arm[0].get_span()).collect();
Macro {
id: def.id,
attrs: def.attrs.clone(),
name: def.name,
whence: def.span,
2015-11-26 12:14:36 -06:00
matchers: matchers,
stab: self.stability(def.id),
2015-12-12 14:01:27 -06:00
depr: self.deprecation(def.id),
imported_from: def.imported_from,
}
}
2013-08-15 15:28:54 -05:00
}