rust/src/librustdoc/core.rs

104 lines
3.4 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};
2013-12-25 12:10:33 -06:00
use rustc::metadata::creader::Loader;
use rustc::middle::privacy;
2013-08-15 15:28:54 -05:00
use syntax::ast;
use syntax::parse::token;
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 collections::HashSet;
2013-08-15 15:28:54 -05:00
use visit_ast::RustdocVisitor;
use clean;
use clean::Clean;
pub struct DocContext {
krate: 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,
public_items: privacy::PublicItems,
}
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::{FileInput, build_configuration,
phase_1_parse_input,
phase_2_configure_and_expand,
phase_3_run_analysis_passes};
2013-08-15 15:28:54 -05:00
2014-02-06 16:38:33 -06:00
let parsesess = parse::new_parse_sess();
let input = FileInput(cpath.clone());
2013-08-15 15:28:54 -05:00
let sessopts = @driver::session::Options {
maybe_sysroot: Some(@os::self_exe_path().unwrap().dir_path()),
addl_lib_search_paths: @RefCell::new(libs),
Redesign output flags for rustc This commit removes the -c, --emit-llvm, -s, --rlib, --dylib, --staticlib, --lib, and --bin flags from rustc, adding the following flags: * --emit=[asm,ir,bc,obj,link] * --crate-type=[dylib,rlib,staticlib,bin,lib] The -o option has also been redefined to be used for *all* flavors of outputs. This means that we no longer ignore it for libraries. The --out-dir remains the same as before. The new logic for files that rustc emits is as follows: 1. Output types are dictated by the --emit flag. The default value is --emit=link, and this option can be passed multiple times and have all options stacked on one another. 2. Crate types are dictated by the --crate-type flag and the #[crate_type] attribute. The flags can be passed many times and stack with the crate attribute. 3. If the -o flag is specified, and only one output type is specified, the output will be emitted at this location. If more than one output type is specified, then the filename of -o is ignored, and all output goes in the directory that -o specifies. The -o option always ignores the --out-dir option. 4. If the --out-dir flag is specified, all output goes in this directory. 5. If -o and --out-dir are both not present, all output goes in the current directory of the process. 6. When multiple output types are specified, the filestem of all output is the same as the name of the CrateId (derived from a crate attribute or from the filestem of the crate file). Closes #7791 Closes #11056 Closes #11667
2014-02-03 17:27:54 -06:00
crate_types: ~[driver::session::CrateTypeDylib],
2013-08-15 15:28:54 -05:00
.. (*rustc::driver::session::basic_options()).clone()
};
let diagnostic_handler = syntax::diagnostic::default_handler();
2013-08-15 15:28:54 -05:00
let span_diagnostic_handler =
syntax::diagnostic::mk_span_handler(diagnostic_handler, parsesess.cm);
let sess = driver::driver::build_session_(sessopts,
Some(cpath.clone()),
parsesess.cm,
span_diagnostic_handler);
2013-08-15 15:28:54 -05:00
let mut cfg = build_configuration(sess);
for cfg_ in cfgs.move_iter() {
let cfg_ = token::intern_and_get_ident(cfg_);
cfg.push(@dummy_spanned(ast::MetaWord(cfg_)));
}
2013-08-15 15:28:54 -05:00
let krate = phase_1_parse_input(sess, cfg, &input);
2013-12-25 12:10:33 -06:00
let loader = &mut Loader::new(sess);
let (krate, ast_map) = phase_2_configure_and_expand(sess, loader, krate);
let driver::driver::CrateAnalysis {
exported_items, public_items, ty_cx, ..
} = phase_3_run_analysis_passes(sess, &krate, ast_map);
debug!("crate: {:?}", krate);
return (DocContext { krate: krate, tycx: Some(ty_cx), sess: sess },
CrateAnalysis {
exported_items: exported_items,
public_items: public_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);
let krate = {
let mut v = RustdocVisitor::new(ctxt, Some(&analysis));
v.visit(&ctxt.krate);
v.clean()
};
2013-08-15 15:28:54 -05:00
(krate, analysis)
2013-08-15 15:28:54 -05:00
}