2013-09-12 20:10:51 -05:00
|
|
|
// 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 syntax::abi::AbiSet;
|
2013-12-22 13:23:04 -06:00
|
|
|
use syntax::ast;
|
2014-01-07 20:46:16 -06:00
|
|
|
use syntax::ast_util;
|
|
|
|
use syntax::ast_map;
|
2013-09-05 09:14:35 -05:00
|
|
|
use syntax::codemap::Span;
|
2013-08-15 15:28:54 -05:00
|
|
|
|
2014-01-07 20:46:16 -06:00
|
|
|
use core;
|
2013-08-15 15:28:54 -05:00
|
|
|
use doctree::*;
|
|
|
|
|
2014-01-07 20:46:16 -06:00
|
|
|
pub struct RustdocVisitor<'a> {
|
2014-03-28 12:27:24 -05:00
|
|
|
pub module: Module,
|
|
|
|
pub attrs: Vec<ast::Attribute>,
|
|
|
|
pub cx: &'a core::DocContext,
|
|
|
|
pub analysis: Option<&'a core::CrateAnalysis>,
|
2013-08-15 15:28:54 -05:00
|
|
|
}
|
|
|
|
|
2014-01-07 20:46:16 -06:00
|
|
|
impl<'a> RustdocVisitor<'a> {
|
|
|
|
pub fn new<'b>(cx: &'b core::DocContext,
|
|
|
|
analysis: Option<&'b core::CrateAnalysis>) -> RustdocVisitor<'b> {
|
2013-08-15 15:28:54 -05:00
|
|
|
RustdocVisitor {
|
|
|
|
module: Module::new(None),
|
2014-03-05 17:28:08 -06:00
|
|
|
attrs: Vec::new(),
|
2014-01-07 20:46:16 -06:00
|
|
|
cx: cx,
|
|
|
|
analysis: analysis,
|
2013-08-15 15:28:54 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-02-05 15:15:24 -06:00
|
|
|
pub fn visit(&mut self, krate: &ast::Crate) {
|
2014-02-28 19:46:09 -06:00
|
|
|
self.attrs = krate.attrs.iter().map(|x| (*x).clone()).collect();
|
2014-01-07 20:46:16 -06:00
|
|
|
|
2014-02-28 19:46:09 -06:00
|
|
|
self.module = self.visit_mod_contents(krate.span,
|
|
|
|
krate.attrs
|
|
|
|
.iter()
|
|
|
|
.map(|x| *x)
|
|
|
|
.collect(),
|
|
|
|
ast::Public,
|
|
|
|
ast::CRATE_NODE_ID,
|
|
|
|
&krate.module,
|
|
|
|
None);
|
2014-02-28 15:33:45 -06:00
|
|
|
self.module.is_crate = true;
|
2014-01-07 20:46:16 -06:00
|
|
|
}
|
|
|
|
|
2014-01-09 07:05:33 -06:00
|
|
|
pub fn visit_struct_def(&mut self, item: &ast::Item, sd: @ast::StructDef,
|
|
|
|
generics: &ast::Generics) -> Struct {
|
2014-01-07 20:46:16 -06:00
|
|
|
debug!("Visiting struct");
|
|
|
|
let struct_type = struct_type_from_def(sd);
|
|
|
|
Struct {
|
|
|
|
id: item.id,
|
|
|
|
struct_type: struct_type,
|
|
|
|
name: item.ident,
|
|
|
|
vis: item.vis,
|
2014-02-28 19:46:09 -06:00
|
|
|
attrs: item.attrs.iter().map(|x| *x).collect(),
|
2014-01-07 20:46:16 -06:00
|
|
|
generics: generics.clone(),
|
2014-02-28 19:46:09 -06:00
|
|
|
fields: sd.fields.iter().map(|x| (*x).clone()).collect(),
|
2014-01-07 20:46:16 -06:00
|
|
|
where: item.span
|
2013-08-15 15:28:54 -05:00
|
|
|
}
|
2014-01-07 20:46:16 -06:00
|
|
|
}
|
2013-08-15 15:28:54 -05:00
|
|
|
|
2014-01-09 07:05:33 -06:00
|
|
|
pub fn visit_enum_def(&mut self, it: &ast::Item, def: &ast::EnumDef,
|
|
|
|
params: &ast::Generics) -> Enum {
|
2014-01-07 20:46:16 -06:00
|
|
|
debug!("Visiting enum");
|
2014-03-05 17:28:08 -06:00
|
|
|
let mut vars: Vec<Variant> = Vec::new();
|
2014-01-07 20:46:16 -06:00
|
|
|
for x in def.variants.iter() {
|
|
|
|
vars.push(Variant {
|
|
|
|
name: x.node.name,
|
2014-02-28 19:46:09 -06:00
|
|
|
attrs: x.node.attrs.iter().map(|x| *x).collect(),
|
2014-01-07 20:46:16 -06:00
|
|
|
vis: x.node.vis,
|
|
|
|
id: x.node.id,
|
|
|
|
kind: x.node.kind.clone(),
|
|
|
|
where: x.span,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
Enum {
|
|
|
|
name: it.ident,
|
|
|
|
variants: vars,
|
|
|
|
vis: it.vis,
|
|
|
|
generics: params.clone(),
|
2014-02-28 19:46:09 -06:00
|
|
|
attrs: it.attrs.iter().map(|x| *x).collect(),
|
2014-01-07 20:46:16 -06:00
|
|
|
id: it.id,
|
|
|
|
where: it.span,
|
2013-08-15 15:28:54 -05:00
|
|
|
}
|
2014-01-07 20:46:16 -06:00
|
|
|
}
|
2013-08-15 15:28:54 -05:00
|
|
|
|
2014-01-09 07:05:33 -06:00
|
|
|
pub fn visit_fn(&mut self, item: &ast::Item, fd: &ast::FnDecl,
|
|
|
|
purity: &ast::Purity, _abi: &AbiSet,
|
2014-01-07 20:46:16 -06:00
|
|
|
gen: &ast::Generics) -> Function {
|
|
|
|
debug!("Visiting fn");
|
|
|
|
Function {
|
|
|
|
id: item.id,
|
|
|
|
vis: item.vis,
|
2014-02-28 19:46:09 -06:00
|
|
|
attrs: item.attrs.iter().map(|x| *x).collect(),
|
2014-01-07 20:46:16 -06:00
|
|
|
decl: fd.clone(),
|
|
|
|
name: item.ident,
|
|
|
|
where: item.span,
|
|
|
|
generics: gen.clone(),
|
|
|
|
purity: *purity,
|
2013-08-15 15:28:54 -05:00
|
|
|
}
|
2014-01-07 20:46:16 -06:00
|
|
|
}
|
2013-08-15 15:28:54 -05:00
|
|
|
|
2014-03-05 17:28:08 -06:00
|
|
|
pub fn visit_mod_contents(&mut self, span: Span, attrs: Vec<ast::Attribute> ,
|
2014-01-09 07:05:33 -06:00
|
|
|
vis: ast::Visibility, id: ast::NodeId,
|
|
|
|
m: &ast::Mod,
|
2013-12-22 13:23:04 -06:00
|
|
|
name: Option<ast::Ident>) -> Module {
|
2014-01-07 20:46:16 -06:00
|
|
|
let mut om = Module::new(name);
|
|
|
|
for item in m.view_items.iter() {
|
|
|
|
self.visit_view_item(item, &mut om);
|
|
|
|
}
|
|
|
|
om.where = span;
|
|
|
|
om.attrs = attrs;
|
|
|
|
om.vis = vis;
|
|
|
|
om.id = id;
|
|
|
|
for i in m.items.iter() {
|
|
|
|
self.visit_item(*i, &mut om);
|
|
|
|
}
|
|
|
|
om
|
|
|
|
}
|
|
|
|
|
2014-01-09 14:25:09 -06:00
|
|
|
pub fn visit_view_item(&mut self, item: &ast::ViewItem, om: &mut Module) {
|
|
|
|
if item.vis != ast::Public {
|
2014-01-07 20:46:16 -06:00
|
|
|
return om.view_items.push(item.clone());
|
|
|
|
}
|
|
|
|
let item = match item.node {
|
2014-01-09 14:25:09 -06:00
|
|
|
ast::ViewItemUse(ref paths) => {
|
2014-01-07 20:46:16 -06:00
|
|
|
// rustc no longer supports "use foo, bar;"
|
|
|
|
assert_eq!(paths.len(), 1);
|
2014-02-28 19:46:09 -06:00
|
|
|
match self.visit_view_path(*paths.get(0), om) {
|
2014-01-07 20:46:16 -06:00
|
|
|
None => return,
|
|
|
|
Some(path) => {
|
2014-01-09 14:25:09 -06:00
|
|
|
ast::ViewItem {
|
2014-02-28 19:46:09 -06:00
|
|
|
node: ast::ViewItemUse(vec!(path)),
|
2014-01-07 20:46:16 -06:00
|
|
|
.. item.clone()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2014-03-07 01:57:45 -06:00
|
|
|
ast::ViewItemExternCrate(..) => item.clone()
|
2014-01-07 20:46:16 -06:00
|
|
|
};
|
|
|
|
om.view_items.push(item);
|
|
|
|
}
|
|
|
|
|
2014-01-09 14:25:09 -06:00
|
|
|
fn visit_view_path(&mut self, path: @ast::ViewPath,
|
|
|
|
om: &mut Module) -> Option<@ast::ViewPath> {
|
2014-01-07 20:46:16 -06:00
|
|
|
match path.node {
|
2014-01-09 14:25:09 -06:00
|
|
|
ast::ViewPathSimple(_, _, id) => {
|
2014-01-07 20:46:16 -06:00
|
|
|
if self.resolve_id(id, false, om) { return None }
|
|
|
|
}
|
2014-01-09 14:25:09 -06:00
|
|
|
ast::ViewPathList(ref p, ref paths, ref b) => {
|
2014-02-28 19:46:09 -06:00
|
|
|
let mut mine = Vec::new();
|
2014-01-07 20:46:16 -06:00
|
|
|
for path in paths.iter() {
|
|
|
|
if !self.resolve_id(path.node.id, false, om) {
|
|
|
|
mine.push(path.clone());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if mine.len() == 0 { return None }
|
|
|
|
return Some(@::syntax::codemap::Spanned {
|
2014-01-09 14:25:09 -06:00
|
|
|
node: ast::ViewPathList(p.clone(), mine, b.clone()),
|
2014-01-07 20:46:16 -06:00
|
|
|
span: path.span,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
// these are feature gated anyway
|
2014-01-09 14:25:09 -06:00
|
|
|
ast::ViewPathGlob(_, id) => {
|
2014-01-07 20:46:16 -06:00
|
|
|
if self.resolve_id(id, true, om) { return None }
|
2013-08-15 15:28:54 -05:00
|
|
|
}
|
|
|
|
}
|
2014-01-07 20:46:16 -06:00
|
|
|
return Some(path);
|
|
|
|
}
|
2013-08-15 15:28:54 -05:00
|
|
|
|
2014-01-07 20:46:16 -06:00
|
|
|
fn resolve_id(&mut self, id: ast::NodeId, glob: bool,
|
|
|
|
om: &mut Module) -> bool {
|
2014-03-05 08:36:01 -06:00
|
|
|
let tcx = match self.cx.maybe_typed {
|
|
|
|
core::Typed(ref tcx) => tcx,
|
|
|
|
core::NotTyped(_) => return false
|
2014-01-07 20:46:16 -06:00
|
|
|
};
|
2014-03-20 23:52:59 -05:00
|
|
|
let def = ast_util::def_id_of_def(*tcx.def_map.borrow().get(&id));
|
2014-01-07 20:46:16 -06:00
|
|
|
if !ast_util::is_local(def) { return false }
|
|
|
|
let analysis = match self.analysis {
|
|
|
|
Some(analysis) => analysis, None => return false
|
|
|
|
};
|
|
|
|
if analysis.public_items.contains(&def.node) { return false }
|
|
|
|
|
2014-03-05 08:36:01 -06:00
|
|
|
match tcx.map.get(def.node) {
|
2014-02-13 23:07:09 -06:00
|
|
|
ast_map::NodeItem(it) => {
|
2014-01-07 20:46:16 -06:00
|
|
|
if glob {
|
|
|
|
match it.node {
|
2014-01-09 07:05:33 -06:00
|
|
|
ast::ItemMod(ref m) => {
|
2014-01-07 20:46:16 -06:00
|
|
|
for vi in m.view_items.iter() {
|
|
|
|
self.visit_view_item(vi, om);
|
|
|
|
}
|
|
|
|
for i in m.items.iter() {
|
|
|
|
self.visit_item(*i, om);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
_ => { fail!("glob not mapped to a module"); }
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
self.visit_item(it, om);
|
2013-09-26 13:57:25 -05:00
|
|
|
}
|
2014-01-07 20:46:16 -06:00
|
|
|
true
|
2013-08-15 15:28:54 -05:00
|
|
|
}
|
2014-01-07 20:46:16 -06:00
|
|
|
_ => false,
|
2013-08-15 15:28:54 -05:00
|
|
|
}
|
2014-01-07 20:46:16 -06:00
|
|
|
}
|
2013-08-15 15:28:54 -05:00
|
|
|
|
2014-01-09 07:05:33 -06:00
|
|
|
pub fn visit_item(&mut self, item: &ast::Item, om: &mut Module) {
|
2014-01-07 20:46:16 -06:00
|
|
|
debug!("Visiting item {:?}", item);
|
|
|
|
match item.node {
|
2014-01-09 07:05:33 -06:00
|
|
|
ast::ItemMod(ref m) => {
|
2014-02-28 19:46:09 -06:00
|
|
|
om.mods.push(self.visit_mod_contents(item.span,
|
|
|
|
item.attrs
|
|
|
|
.iter()
|
|
|
|
.map(|x| *x)
|
|
|
|
.collect(),
|
|
|
|
item.vis,
|
|
|
|
item.id,
|
|
|
|
m,
|
|
|
|
Some(item.ident)));
|
2014-01-07 20:46:16 -06:00
|
|
|
},
|
2014-01-09 07:05:33 -06:00
|
|
|
ast::ItemEnum(ref ed, ref gen) =>
|
2014-01-07 20:46:16 -06:00
|
|
|
om.enums.push(self.visit_enum_def(item, ed, gen)),
|
2014-01-09 07:05:33 -06:00
|
|
|
ast::ItemStruct(sd, ref gen) =>
|
2014-01-07 20:46:16 -06:00
|
|
|
om.structs.push(self.visit_struct_def(item, sd, gen)),
|
2014-01-09 07:05:33 -06:00
|
|
|
ast::ItemFn(fd, ref pur, ref abi, ref gen, _) =>
|
2014-01-07 20:46:16 -06:00
|
|
|
om.fns.push(self.visit_fn(item, fd, pur, abi, gen)),
|
2014-01-09 07:05:33 -06:00
|
|
|
ast::ItemTy(ty, ref gen) => {
|
2014-01-07 20:46:16 -06:00
|
|
|
let t = Typedef {
|
|
|
|
ty: ty,
|
|
|
|
gen: gen.clone(),
|
|
|
|
name: item.ident,
|
|
|
|
id: item.id,
|
2014-02-28 19:46:09 -06:00
|
|
|
attrs: item.attrs.iter().map(|x| *x).collect(),
|
2014-01-07 20:46:16 -06:00
|
|
|
where: item.span,
|
|
|
|
vis: item.vis,
|
|
|
|
};
|
|
|
|
om.typedefs.push(t);
|
|
|
|
},
|
2014-01-09 07:05:33 -06:00
|
|
|
ast::ItemStatic(ty, ref mut_, ref exp) => {
|
2014-01-07 20:46:16 -06:00
|
|
|
let s = Static {
|
|
|
|
type_: ty,
|
|
|
|
mutability: mut_.clone(),
|
|
|
|
expr: exp.clone(),
|
|
|
|
id: item.id,
|
|
|
|
name: item.ident,
|
2014-02-28 19:46:09 -06:00
|
|
|
attrs: item.attrs.iter().map(|x| *x).collect(),
|
2014-01-07 20:46:16 -06:00
|
|
|
where: item.span,
|
|
|
|
vis: item.vis,
|
|
|
|
};
|
|
|
|
om.statics.push(s);
|
|
|
|
},
|
2014-01-09 07:05:33 -06:00
|
|
|
ast::ItemTrait(ref gen, ref tr, ref met) => {
|
2014-01-07 20:46:16 -06:00
|
|
|
let t = Trait {
|
|
|
|
name: item.ident,
|
2014-02-28 19:46:09 -06:00
|
|
|
methods: met.iter().map(|x| (*x).clone()).collect(),
|
2014-01-07 20:46:16 -06:00
|
|
|
generics: gen.clone(),
|
2014-02-28 19:46:09 -06:00
|
|
|
parents: tr.iter().map(|x| (*x).clone()).collect(),
|
2014-01-07 20:46:16 -06:00
|
|
|
id: item.id,
|
2014-02-28 19:46:09 -06:00
|
|
|
attrs: item.attrs.iter().map(|x| *x).collect(),
|
2014-01-07 20:46:16 -06:00
|
|
|
where: item.span,
|
|
|
|
vis: item.vis,
|
|
|
|
};
|
|
|
|
om.traits.push(t);
|
|
|
|
},
|
2014-01-09 07:05:33 -06:00
|
|
|
ast::ItemImpl(ref gen, ref tr, ty, ref meths) => {
|
2014-01-07 20:46:16 -06:00
|
|
|
let i = Impl {
|
|
|
|
generics: gen.clone(),
|
|
|
|
trait_: tr.clone(),
|
|
|
|
for_: ty,
|
2014-02-28 19:46:09 -06:00
|
|
|
methods: meths.iter().map(|x| *x).collect(),
|
|
|
|
attrs: item.attrs.iter().map(|x| *x).collect(),
|
2014-01-07 20:46:16 -06:00
|
|
|
id: item.id,
|
|
|
|
where: item.span,
|
|
|
|
vis: item.vis,
|
|
|
|
};
|
|
|
|
om.impls.push(i);
|
|
|
|
},
|
2014-01-09 07:05:33 -06:00
|
|
|
ast::ItemForeignMod(ref fm) => {
|
2014-01-07 20:46:16 -06:00
|
|
|
om.foreigns.push(fm.clone());
|
|
|
|
}
|
2014-02-16 23:40:26 -06:00
|
|
|
ast::ItemMac(ref _m) => {
|
|
|
|
om.macros.push(Macro {
|
|
|
|
id: item.id,
|
2014-02-28 19:46:09 -06:00
|
|
|
attrs: item.attrs.iter().map(|x| *x).collect(),
|
2014-02-16 23:40:26 -06:00
|
|
|
name: item.ident,
|
|
|
|
where: item.span,
|
|
|
|
})
|
|
|
|
}
|
2014-01-07 20:46:16 -06:00
|
|
|
}
|
2013-08-15 15:28:54 -05:00
|
|
|
}
|
|
|
|
}
|