rust/src/librustdoc/attr_pass.rs

320 lines
8.1 KiB
Rust

// Copyright 2012 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.
/*!
The attribute parsing pass
Traverses the document tree, pulling relevant documention out of the
corresponding AST nodes. The information gathered here is the basis
of the natural-language documentation for a crate.
*/
use astsrv;
use attr_parser;
use doc::ItemUtils;
use doc;
use extract::to_str;
use fold::Fold;
use fold;
use core::option;
use core::vec;
use syntax::ast;
use syntax::ast_map;
use std::map::HashMap;
use std::par;
pub fn mk_pass() -> Pass {
{
name: ~"attr",
f: run
}
}
fn run(
srv: astsrv::Srv,
+doc: doc::Doc
) -> doc::Doc {
let fold = Fold {
fold_crate: fold_crate,
fold_item: fold_item,
fold_enum: fold_enum,
fold_trait: fold_trait,
fold_impl: fold_impl,
.. fold::default_any_fold(srv)
};
(fold.fold_doc)(&fold, doc)
}
fn fold_crate(
fold: &fold::Fold<astsrv::Srv>,
+doc: doc::CrateDoc
) -> doc::CrateDoc {
let srv = fold.ctxt;
let doc = fold::default_seq_fold_crate(fold, doc);
let attrs = do astsrv::exec(srv) |ctxt| {
let attrs = ctxt.ast.node.attrs;
attr_parser::parse_crate(attrs)
};
{
topmod: doc::ModDoc_({
item: {
name: option::get_default(attrs.name, doc.topmod.name()),
.. doc.topmod.item
},
.. *doc.topmod
})
}
}
#[test]
fn should_replace_top_module_name_with_crate_name() {
let doc = test::mk_doc(~"#[link(name = \"bond\")];");
assert doc.cratemod().name() == ~"bond";
}
fn fold_item(
fold: &fold::Fold<astsrv::Srv>,
+doc: doc::ItemDoc
) -> doc::ItemDoc {
let srv = fold.ctxt;
let doc = fold::default_seq_fold_item(fold, doc);
let desc = if doc.id == ast::crate_node_id {
// This is the top-level mod, use the crate attributes
do astsrv::exec(srv) |ctxt| {
attr_parser::parse_desc(ctxt.ast.node.attrs)
}
} else {
parse_item_attrs(srv, doc.id, attr_parser::parse_desc)
};
{
desc: desc,
.. doc
}
}
fn parse_item_attrs<T:Owned>(
srv: astsrv::Srv,
id: doc::AstId,
+parse_attrs: fn~(+a: ~[ast::attribute]) -> T) -> T {
do astsrv::exec(srv) |move parse_attrs, ctxt| {
let attrs = match ctxt.ast_map.get(id) {
ast_map::node_item(item, _) => item.attrs,
ast_map::node_foreign_item(item, _, _) => item.attrs,
_ => fail ~"parse_item_attrs: not an item"
};
parse_attrs(attrs)
}
}
#[test]
fn should_should_extract_mod_attributes() {
let doc = test::mk_doc(~"#[doc = \"test\"] mod a { }");
assert doc.cratemod().mods()[0].desc() == Some(~"test");
}
#[test]
fn should_extract_top_mod_attributes() {
let doc = test::mk_doc(~"#[doc = \"test\"];");
assert doc.cratemod().desc() == Some(~"test");
}
#[test]
fn should_extract_foreign_mod_attributes() {
let doc = test::mk_doc(~"#[doc = \"test\"] extern mod a { }");
assert doc.cratemod().nmods()[0].desc() == Some(~"test");
}
#[test]
fn should_extract_foreign_fn_attributes() {
let doc = test::mk_doc(~"extern mod a { #[doc = \"test\"] fn a(); }");
assert doc.cratemod().nmods()[0].fns[0].desc() == Some(~"test");
}
#[test]
fn should_extract_fn_attributes() {
let doc = test::mk_doc(~"#[doc = \"test\"] fn a() -> int { }");
assert doc.cratemod().fns()[0].desc() == Some(~"test");
}
fn fold_enum(
fold: &fold::Fold<astsrv::Srv>,
+doc: doc::EnumDoc
) -> doc::EnumDoc {
let srv = fold.ctxt;
let doc_id = doc.id();
let doc = fold::default_seq_fold_enum(fold, doc);
{
variants: do par::map(doc.variants) |variant| {
let variant = *variant;
let desc = do astsrv::exec(srv) |ctxt| {
match ctxt.ast_map.get(doc_id) {
ast_map::node_item(@{
node: ast::item_enum(enum_definition, _), _
}, _) => {
let ast_variant = option::get(
vec::find(enum_definition.variants, |v| {
to_str(v.node.name) == variant.name
}));
attr_parser::parse_desc(ast_variant.node.attrs)
}
_ => fail fmt!("Enum variant %s has id that's not bound \
to an enum item", variant.name)
}
};
{
desc: desc,
.. variant
}
},
.. doc
}
}
#[test]
fn should_extract_enum_docs() {
let doc = test::mk_doc(~"#[doc = \"b\"]\
enum a { v }");
assert doc.cratemod().enums()[0].desc() == Some(~"b");
}
#[test]
fn should_extract_variant_docs() {
let doc = test::mk_doc(~"enum a { #[doc = \"c\"] v }");
assert doc.cratemod().enums()[0].variants[0].desc == Some(~"c");
}
fn fold_trait(
fold: &fold::Fold<astsrv::Srv>,
+doc: doc::TraitDoc
) -> doc::TraitDoc {
let srv = fold.ctxt;
let doc = fold::default_seq_fold_trait(fold, doc);
{
methods: merge_method_attrs(srv, doc.id(), doc.methods),
.. doc
}
}
fn merge_method_attrs(
srv: astsrv::Srv,
item_id: doc::AstId,
docs: ~[doc::MethodDoc]
) -> ~[doc::MethodDoc] {
// Create an assoc list from method name to attributes
let attrs: ~[(~str, Option<~str>)] = do astsrv::exec(srv) |ctxt| {
match ctxt.ast_map.get(item_id) {
ast_map::node_item(@{
node: ast::item_trait(_, _, methods), _
}, _) => {
vec::map(methods, |method| {
match *method {
ast::required(ty_m) => {
(to_str(ty_m.ident), attr_parser::parse_desc(ty_m.attrs))
}
ast::provided(m) => {
(to_str(m.ident), attr_parser::parse_desc(m.attrs))
}
}
})
}
ast_map::node_item(@{
node: ast::item_impl(_, _, _, methods), _
}, _) => {
vec::map(methods, |method| {
(to_str(method.ident),
attr_parser::parse_desc(method.attrs))
})
}
_ => fail ~"unexpected item"
}
};
do vec::map2(docs, attrs) |doc, attrs| {
assert doc.name == attrs.first();
let desc = attrs.second();
{
desc: desc,
..*doc
}
}
}
#[test]
fn should_extract_trait_docs() {
let doc = test::mk_doc(~"#[doc = \"whatever\"] trait i { fn a(); }");
assert doc.cratemod().traits()[0].desc() == Some(~"whatever");
}
#[test]
fn should_extract_trait_method_docs() {
let doc = test::mk_doc(
~"trait i {\
#[doc = \"desc\"]\
fn f(a: bool) -> bool;\
}");
assert doc.cratemod().traits()[0].methods[0].desc == Some(~"desc");
}
fn fold_impl(
fold: &fold::Fold<astsrv::Srv>,
+doc: doc::ImplDoc
) -> doc::ImplDoc {
let srv = fold.ctxt;
let doc = fold::default_seq_fold_impl(fold, doc);
{
methods: merge_method_attrs(srv, doc.id(), doc.methods),
.. doc
}
}
#[test]
fn should_extract_impl_docs() {
let doc = test::mk_doc(
~"#[doc = \"whatever\"] impl int { fn a() { } }");
assert doc.cratemod().impls()[0].desc() == Some(~"whatever");
}
#[test]
fn should_extract_impl_method_docs() {
let doc = test::mk_doc(
~"impl int {\
#[doc = \"desc\"]\
fn f(a: bool) -> bool { }\
}");
assert doc.cratemod().impls()[0].methods[0].desc == Some(~"desc");
}
#[cfg(test)]
mod test {
#[legacy_exports];
fn mk_doc(source: ~str) -> doc::Doc {
do astsrv::from_str(source) |srv| {
let doc = extract::from_srv(srv, ~"");
run(srv, doc)
}
}
}