rust/src/librustdoc/rustdoc.rc

148 lines
3.9 KiB
Plaintext
Raw Normal View History

//! Rustdoc - The Rust documentation generator
2012-01-15 23:28:10 +01:00
#[link(name = "rustdoc",
2012-10-13 01:41:25 +02:00
vers = "0.5",
2012-01-15 23:28:10 +01:00
uuid = "f8abd014-b281-484d-a0c3-26e3de8e2412",
url = "https://github.com/mozilla/rust/tree/master/src/rustdoc")];
2012-01-15 23:28:10 +01:00
#[comment = "The Rust documentation generator"];
2012-01-15 23:28:10 +01:00
#[license = "MIT"];
#[crate_type = "lib"];
2012-04-06 02:30:26 +02:00
#[no_core];
#[legacy_modes];
2012-09-22 02:10:46 +02:00
#[allow(vecs_implicitly_copyable)];
#[allow(non_implicitly_copyable_typarams)];
#[allow(deprecated_mode)];
#[allow(deprecated_pattern)];
2012-10-13 01:41:25 +02:00
extern mod core(vers = "0.5");
extern mod std(vers = "0.5");
extern mod rustc(vers = "0.5");
extern mod syntax(vers = "0.5");
2012-04-06 02:30:26 +02:00
use core::*;
use std::par;
2012-01-18 02:22:03 +01:00
2012-09-22 02:10:46 +02:00
mod pass;
mod config;
mod parse;
mod extract;
mod attr_parser;
mod doc;
2012-03-03 00:17:13 +01:00
mod markdown_index_pass;
mod markdown_pass;
mod markdown_writer;
mod fold;
mod path_pass;
mod attr_pass;
mod tystr_pass;
2012-03-07 23:49:52 +01:00
mod prune_hidden_pass;
mod desc_to_brief_pass;
2012-03-09 02:00:03 +01:00
mod text_pass;
mod unindent_pass;
mod trim_pass;
mod astsrv;
mod demo;
2012-02-03 21:00:49 +01:00
mod sort_pass;
mod sort_item_name_pass;
2012-02-21 01:10:54 +01:00
mod sort_item_type_pass;
mod page_pass;
2012-03-16 20:20:29 +01:00
mod sectionalize_pass;
mod escape_pass;
mod prune_private_pass;
mod util;
2012-11-19 02:56:50 +01:00
use doc::ItemUtils;
use doc::Item;
use pass::Pass;
use config::Config;
fn main() {
let args = os::args();
if args.contains(&~"-h") || args.contains(&~"--help") {
config::usage();
return;
}
let config = match config::parse_config(args) {
Ok(config) => config,
Err(err) => {
io::println(fmt!("error: %s", err));
return;
}
};
run(config);
}
/// Runs rustdoc over the given file
fn run(config: Config) {
let source_file = config.input_crate;
// Create an AST service from the source code
do astsrv::from_file(source_file.to_str()) |srv| {
// Just time how long it takes for the AST to become available
do time(~"wait_ast") {
do astsrv::exec(srv) |_ctxt| { }
};
// Extract the initial doc tree from the AST. This contains
// just names and node ids.
let doc = time(~"extract", || {
let default_name = source_file;
extract::from_srv(srv, default_name.to_str())
});
// Refine and publish the document
pass::run_passes(srv, doc, ~[
// Generate type and signature strings
tystr_pass::mk_pass(),
// Record the full paths to various nodes
path_pass::mk_pass(),
// Extract the docs attributes and attach them to doc nodes
attr_pass::mk_pass(),
// Perform various text escaping
escape_pass::mk_pass(),
// Remove things marked doc(hidden)
prune_hidden_pass::mk_pass(),
// Remove things that are private
// XXX enable this after 'export' is removed in favor of 'pub'
// prune_private_pass::mk_pass(),
// Extract brief documentation from the full descriptions
desc_to_brief_pass::mk_pass(),
// Massage the text to remove extra indentation
unindent_pass::mk_pass(),
// Split text into multiple sections according to headers
sectionalize_pass::mk_pass(),
// Trim extra spaces from text
trim_pass::mk_pass(),
// Sort items by name
sort_item_name_pass::mk_pass(),
// Sort items again by kind
sort_item_type_pass::mk_pass(),
// Create indexes appropriate for markdown
markdown_index_pass::mk_pass(config),
// Break the document into pages if required by the
// output format
page_pass::mk_pass(config.output_style),
// Render
markdown_pass::mk_pass(
markdown_writer::make_writer_factory(config)
)
]);
}
}
fn time<T>(what: ~str, f: fn() -> T) -> T {
let start = std::time::precise_time_s();
let rv = f();
let end = std::time::precise_time_s();
info!("time: %3.3f s %s", end - start, what);
move rv
}