rust/src/librustdoc/path_pass.rs

130 lines
3.3 KiB
Rust
Raw Normal View History

// 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.
//! Records the full path to items
use core::prelude::*;
use astsrv;
2012-09-18 16:48:40 -07:00
use doc::ItemUtils;
use doc;
use extract;
use fold::Fold;
use fold;
use pass::Pass;
2012-09-05 10:41:47 -07:00
use syntax::ast;
2012-11-19 18:00:12 -08:00
pub fn mk_pass() -> Pass {
Pass {
name: ~"path",
2012-02-27 18:07:16 -08:00
f: run
}
}
struct Ctxt {
2012-09-18 16:48:40 -07:00
srv: astsrv::Srv,
mut path: ~[~str]
}
impl Ctxt: Clone {
fn clone(&self) -> Ctxt { copy *self }
}
2012-08-01 13:35:33 -07:00
#[allow(non_implicitly_copyable_typarams)]
2012-11-19 18:48:46 -08:00
fn run(srv: astsrv::Srv, +doc: doc::Doc) -> doc::Doc {
let ctxt = Ctxt {
srv: srv,
mut path: ~[]
};
let fold = Fold {
fold_item: fold_item,
fold_mod: fold_mod,
2012-09-04 13:29:32 -07:00
fold_nmod: fold_nmod,
.. fold::default_any_fold(move ctxt)
};
(fold.fold_doc)(&fold, doc)
}
2012-11-19 18:48:46 -08:00
fn fold_item(fold: &fold::Fold<Ctxt>, +doc: doc::ItemDoc) -> doc::ItemDoc {
doc::ItemDoc {
2013-01-30 13:14:35 -08:00
path: copy fold.ctxt.path,
2012-09-04 13:29:32 -07:00
.. doc
}
}
2012-08-01 13:35:33 -07:00
#[allow(non_implicitly_copyable_typarams)]
2012-11-19 18:48:46 -08:00
fn fold_mod(fold: &fold::Fold<Ctxt>, +doc: doc::ModDoc) -> doc::ModDoc {
let is_topmod = doc.id() == ast::crate_node_id;
if !is_topmod { fold.ctxt.path.push(doc.name()); }
let doc = fold::default_any_fold_mod(fold, doc);
2012-09-27 22:20:47 -07:00
if !is_topmod { fold.ctxt.path.pop(); }
doc::ModDoc {
2013-01-30 13:14:35 -08:00
item: (fold.fold_item)(fold, copy doc.item),
.. doc
}
}
2012-11-19 18:48:46 -08:00
fn fold_nmod(fold: &fold::Fold<Ctxt>, +doc: doc::NmodDoc) -> doc::NmodDoc {
fold.ctxt.path.push(doc.name());
let doc = fold::default_seq_fold_nmod(fold, doc);
2012-09-27 22:20:47 -07:00
fold.ctxt.path.pop();
doc::NmodDoc {
2013-01-30 13:14:35 -08:00
item: (fold.fold_item)(fold, copy doc.item),
2012-09-04 13:29:32 -07:00
.. doc
}
}
#[test]
fn should_record_mod_paths() {
let source = ~"mod a { mod b { mod c { } } mod d { mod e { } } }";
2012-06-30 16:19:07 -07:00
do astsrv::from_str(source) |srv| {
let doc = extract::from_srv(srv, ~"");
let doc = run(srv, doc);
assert doc.cratemod().mods()[0].mods()[0].mods()[0].path()
== ~[~"a", ~"b"];
assert doc.cratemod().mods()[0].mods()[1].mods()[0].path()
== ~[~"a", ~"d"];
}
}
#[test]
fn should_record_fn_paths() {
let source = ~"mod a { fn b() { } }";
2012-06-30 16:19:07 -07:00
do astsrv::from_str(source) |srv| {
let doc = extract::from_srv(srv, ~"");
let doc = run(srv, doc);
assert doc.cratemod().mods()[0].fns()[0].path() == ~[~"a"];
}
}
#[test]
fn should_record_foreign_mod_paths() {
let source = ~"mod a { extern mod b { } }";
2012-06-30 16:19:07 -07:00
do astsrv::from_str(source) |srv| {
let doc = extract::from_srv(srv, ~"");
let doc = run(srv, doc);
assert doc.cratemod().mods()[0].nmods()[0].path() == ~[~"a"];
}
}
#[test]
fn should_record_foreign_fn_paths() {
let source = ~"extern mod a { fn b(); }";
2012-06-30 16:19:07 -07:00
do astsrv::from_str(source) |srv| {
let doc = extract::from_srv(srv, ~"");
let doc = run(srv, doc);
assert doc.cratemod().nmods()[0].fns[0].path() == ~[~"a"];
}
}