rust/src/librustdoc/core.rs

96 lines
3.2 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
use rustc;
use rustc::{driver, middle};
use rustc::middle::privacy;
2013-08-15 15:28:54 -05:00
use syntax::ast;
use syntax::diagnostic;
use syntax::parse;
use syntax;
2013-08-15 15:28:54 -05:00
use std::cell::RefCell;
2013-08-15 15:28:54 -05:00
use std::os;
use std::local_data;
use std::hashmap::{HashSet};
2013-08-15 15:28:54 -05:00
use visit_ast::RustdocVisitor;
use clean;
use clean::Clean;
pub struct DocContext {
2013-09-27 21:46:09 -05:00
crate: ast::Crate,
tycx: Option<middle::ty::ctxt>,
2013-08-15 15:28:54 -05:00
sess: driver::session::Session
}
pub struct CrateAnalysis {
exported_items: privacy::ExportedItems,
}
2013-08-15 15:28:54 -05:00
/// Parses, resolves, and typechecks the given crate
fn get_ast_and_resolve(cpath: &Path,
libs: HashSet<Path>, cfgs: ~[~str]) -> (DocContext, CrateAnalysis) {
2013-08-15 15:28:54 -05:00
use syntax::codemap::dummy_spanned;
use rustc::driver::driver::{file_input, build_configuration,
phase_1_parse_input,
phase_2_configure_and_expand,
phase_3_run_analysis_passes};
2013-08-15 15:28:54 -05:00
let parsesess = parse::new_parse_sess(None);
let input = file_input(cpath.clone());
let sessopts = @driver::session::options {
2013-12-26 23:48:35 -06:00
binary: ~"rustdoc",
maybe_sysroot: Some(@os::self_exe_path().unwrap().dir_path()),
addl_lib_search_paths: @RefCell::new(libs),
outputs: ~[driver::session::OutputDylib],
2013-08-15 15:28:54 -05:00
.. (*rustc::driver::session::basic_options()).clone()
};
let diagnostic_handler = syntax::diagnostic::mk_handler(None);
let span_diagnostic_handler =
syntax::diagnostic::mk_span_handler(diagnostic_handler, parsesess.cm);
let sess = driver::driver::build_session_(sessopts,
parsesess.cm,
@diagnostic::DefaultEmitter as
@diagnostic::Emitter,
span_diagnostic_handler);
2013-08-15 15:28:54 -05:00
let mut cfg = build_configuration(sess);
for cfg_ in cfgs.move_iter() {
cfg.push(@dummy_spanned(ast::MetaWord(cfg_.to_managed())));
}
2013-08-15 15:28:54 -05:00
2014-01-06 06:00:46 -06:00
let crate = phase_1_parse_input(sess, cfg.clone(), &input);
let (crate, ast_map) = phase_2_configure_and_expand(sess, cfg, crate);
let driver::driver::CrateAnalysis {
2013-11-28 14:22:53 -06:00
exported_items, ty_cx, ..
2014-01-06 06:00:46 -06:00
} = phase_3_run_analysis_passes(sess, &crate, ast_map);
debug!("crate: {:?}", crate);
return (DocContext { crate: crate, tycx: Some(ty_cx), sess: sess },
CrateAnalysis { exported_items: exported_items });
2013-08-15 15:28:54 -05:00
}
pub fn run_core (libs: HashSet<Path>, cfgs: ~[~str], path: &Path) -> (clean::Crate, CrateAnalysis) {
let (ctxt, analysis) = get_ast_and_resolve(path, libs, cfgs);
let ctxt = @ctxt;
2013-08-15 15:28:54 -05:00
local_data::set(super::ctxtkey, ctxt);
2013-12-30 19:17:45 -06:00
let mut v = RustdocVisitor::new();
2013-09-27 21:46:09 -05:00
v.visit(&ctxt.crate);
2013-08-15 15:28:54 -05:00
(v.clean(), analysis)
2013-08-15 15:28:54 -05:00
}