2014-08-31 12:07:27 -05:00
|
|
|
// Copyright 2012-2014 The Rust Project Developers. See the COPYRIGHT
|
2013-09-12 20:10:51 -05:00
|
|
|
// 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.
|
2014-11-06 02:05:53 -06:00
|
|
|
pub use self::MaybeTyped::*;
|
2013-09-12 20:10:51 -05:00
|
|
|
|
2015-02-25 05:44:44 -06:00
|
|
|
use rustc_lint;
|
2016-01-20 18:19:20 -06:00
|
|
|
use rustc_driver::{driver, target_features, abort_on_err};
|
2016-01-29 14:07:04 -06:00
|
|
|
use rustc::dep_graph::DepGraph;
|
2015-01-03 21:42:21 -06:00
|
|
|
use rustc::session::{self, config};
|
2016-08-31 06:00:29 -05:00
|
|
|
use rustc::hir::def_id::{CrateNum, DefId};
|
2016-09-01 02:21:12 -05:00
|
|
|
use rustc::hir::def::Def;
|
2015-11-19 05:16:35 -06:00
|
|
|
use rustc::middle::privacy::AccessLevels;
|
2016-03-22 10:30:57 -05:00
|
|
|
use rustc::ty::{self, TyCtxt};
|
2016-03-29 00:50:44 -05:00
|
|
|
use rustc::hir::map as hir_map;
|
2014-06-01 17:58:06 -05:00
|
|
|
use rustc::lint;
|
2016-08-24 03:55:03 -05:00
|
|
|
use rustc::util::nodemap::{FnvHashMap, FnvHashSet};
|
2014-11-15 19:30:33 -06:00
|
|
|
use rustc_trans::back::link;
|
2015-01-10 20:03:34 -06:00
|
|
|
use rustc_resolve as resolve;
|
2015-11-24 17:23:22 -06:00
|
|
|
use rustc_metadata::cstore::CStore;
|
2013-08-15 15:28:54 -05:00
|
|
|
|
2016-09-01 02:21:12 -05:00
|
|
|
use syntax::{ast, codemap};
|
2015-06-17 19:48:16 -05:00
|
|
|
use syntax::feature_gate::UnstableFeatures;
|
2016-06-21 17:08:13 -05:00
|
|
|
use errors;
|
|
|
|
use errors::emitter::ColorConfig;
|
2013-08-15 15:28:54 -05:00
|
|
|
|
2015-04-13 18:23:32 -05:00
|
|
|
use std::cell::{RefCell, Cell};
|
2016-09-01 02:21:12 -05:00
|
|
|
use std::mem;
|
2015-11-22 13:02:04 -06:00
|
|
|
use std::rc::Rc;
|
2013-08-15 15:28:54 -05:00
|
|
|
|
|
|
|
use visit_ast::RustdocVisitor;
|
|
|
|
use clean;
|
|
|
|
use clean::Clean;
|
2016-04-06 22:59:02 -05:00
|
|
|
use html::render::RenderInfo;
|
2013-08-15 15:28:54 -05:00
|
|
|
|
2015-01-17 23:23:05 -06:00
|
|
|
pub use rustc::session::config::Input;
|
|
|
|
pub use rustc::session::search_paths::SearchPaths;
|
|
|
|
|
2014-06-26 13:37:39 -05:00
|
|
|
/// Are we generating documentation (`Typed`) or tests (`NotTyped`)?
|
2015-06-13 20:50:23 -05:00
|
|
|
pub enum MaybeTyped<'a, 'tcx: 'a> {
|
2016-05-02 21:23:22 -05:00
|
|
|
Typed(TyCtxt<'a, 'tcx, 'tcx>),
|
2015-09-28 19:18:05 -05:00
|
|
|
NotTyped(&'a session::Session)
|
2014-03-05 08:36:01 -06:00
|
|
|
}
|
|
|
|
|
2016-08-24 03:55:03 -05:00
|
|
|
pub type ExternalPaths = FnvHashMap<DefId, (Vec<String>, clean::TypeKind)>;
|
2014-05-09 15:52:17 -05:00
|
|
|
|
2015-06-13 20:50:23 -05:00
|
|
|
pub struct DocContext<'a, 'tcx: 'a> {
|
2015-09-02 15:11:32 -05:00
|
|
|
pub map: &'a hir_map::Map<'tcx>,
|
2015-06-13 20:50:23 -05:00
|
|
|
pub maybe_typed: MaybeTyped<'a, 'tcx>,
|
2015-01-17 23:02:31 -06:00
|
|
|
pub input: Input,
|
2016-08-31 06:00:29 -05:00
|
|
|
pub populated_crate_impls: RefCell<FnvHashSet<CrateNum>>,
|
2016-04-15 09:34:48 -05:00
|
|
|
pub deref_trait_did: Cell<Option<DefId>>,
|
2016-09-04 11:35:35 -05:00
|
|
|
pub deref_mut_trait_did: Cell<Option<DefId>>,
|
2016-04-15 09:34:48 -05:00
|
|
|
// Note that external items for which `doc(hidden)` applies to are shown as
|
|
|
|
// non-reachable while local items aren't. This is because we're reusing
|
|
|
|
// the access levels from crateanalysis.
|
|
|
|
/// Later on moved into `clean::Crate`
|
2016-04-06 22:59:02 -05:00
|
|
|
pub access_levels: RefCell<AccessLevels<DefId>>,
|
2016-04-15 09:34:48 -05:00
|
|
|
/// Later on moved into `html::render::CACHE_KEY`
|
2016-04-06 22:59:02 -05:00
|
|
|
pub renderinfo: RefCell<RenderInfo>,
|
2016-04-15 09:34:48 -05:00
|
|
|
/// Later on moved through `clean::Crate` into `html::render::CACHE_KEY`
|
2016-08-24 03:55:03 -05:00
|
|
|
pub external_traits: RefCell<FnvHashMap<DefId, clean::Trait>>,
|
2016-09-01 02:21:12 -05:00
|
|
|
|
|
|
|
// The current set of type and lifetime substitutions,
|
|
|
|
// for expanding type aliases at the HIR level:
|
|
|
|
|
|
|
|
/// Table type parameter definition -> substituted type
|
|
|
|
pub ty_substs: RefCell<FnvHashMap<Def, clean::Type>>,
|
|
|
|
/// Table node id of lifetime parameter definition -> substituted lifetime
|
|
|
|
pub lt_substs: RefCell<FnvHashMap<ast::NodeId, clean::Lifetime>>,
|
2014-03-05 08:36:01 -06:00
|
|
|
}
|
|
|
|
|
2015-06-13 20:50:23 -05:00
|
|
|
impl<'b, 'tcx> DocContext<'b, 'tcx> {
|
2014-05-18 08:56:13 -05:00
|
|
|
pub fn sess<'a>(&'a self) -> &'a session::Session {
|
2014-03-05 08:36:01 -06:00
|
|
|
match self.maybe_typed {
|
2015-06-13 20:50:23 -05:00
|
|
|
Typed(tcx) => &tcx.sess,
|
2014-03-05 08:36:01 -06:00
|
|
|
NotTyped(ref sess) => sess
|
|
|
|
}
|
|
|
|
}
|
2014-06-26 13:37:39 -05:00
|
|
|
|
2016-05-02 21:23:22 -05:00
|
|
|
pub fn tcx_opt<'a>(&'a self) -> Option<TyCtxt<'a, 'tcx, 'tcx>> {
|
2014-06-26 13:37:39 -05:00
|
|
|
match self.maybe_typed {
|
2015-06-13 20:50:23 -05:00
|
|
|
Typed(tcx) => Some(tcx),
|
2014-06-26 13:37:39 -05:00
|
|
|
NotTyped(_) => None
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-05-02 21:23:22 -05:00
|
|
|
pub fn tcx<'a>(&'a self) -> TyCtxt<'a, 'tcx, 'tcx> {
|
2014-06-26 13:37:39 -05:00
|
|
|
let tcx_opt = self.tcx_opt();
|
|
|
|
tcx_opt.expect("tcx not present")
|
|
|
|
}
|
2016-09-01 02:21:12 -05:00
|
|
|
|
|
|
|
/// Call the closure with the given parameters set as
|
|
|
|
/// the substitutions for a type alias' RHS.
|
|
|
|
pub fn enter_alias<F, R>(&self,
|
|
|
|
ty_substs: FnvHashMap<Def, clean::Type>,
|
|
|
|
lt_substs: FnvHashMap<ast::NodeId, clean::Lifetime>,
|
|
|
|
f: F) -> R
|
|
|
|
where F: FnOnce() -> R {
|
|
|
|
let (old_tys, old_lts) =
|
|
|
|
(mem::replace(&mut *self.ty_substs.borrow_mut(), ty_substs),
|
|
|
|
mem::replace(&mut *self.lt_substs.borrow_mut(), lt_substs));
|
|
|
|
let r = f();
|
|
|
|
*self.ty_substs.borrow_mut() = old_tys;
|
|
|
|
*self.lt_substs.borrow_mut() = old_lts;
|
|
|
|
r
|
|
|
|
}
|
2013-08-15 15:28:54 -05:00
|
|
|
}
|
|
|
|
|
2016-04-17 01:54:48 -05:00
|
|
|
pub trait DocAccessLevels {
|
|
|
|
fn is_doc_reachable(&self, DefId) -> bool;
|
|
|
|
}
|
|
|
|
|
|
|
|
impl DocAccessLevels for AccessLevels<DefId> {
|
|
|
|
fn is_doc_reachable(&self, did: DefId) -> bool {
|
|
|
|
self.is_public(did)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-07-20 01:02:14 -05:00
|
|
|
|
2016-04-06 22:59:02 -05:00
|
|
|
pub fn run_core(search_paths: SearchPaths,
|
|
|
|
cfgs: Vec<String>,
|
2016-08-02 15:53:58 -05:00
|
|
|
externs: config::Externs,
|
2016-04-06 22:59:02 -05:00
|
|
|
input: Input,
|
|
|
|
triple: Option<String>) -> (clean::Crate, RenderInfo)
|
|
|
|
{
|
2014-05-18 08:56:13 -05:00
|
|
|
// Parse, resolve, and typecheck the given crate.
|
|
|
|
|
2015-01-17 23:02:31 -06:00
|
|
|
let cpath = match input {
|
|
|
|
Input::File(ref p) => Some(p.clone()),
|
|
|
|
_ => None
|
|
|
|
};
|
2013-08-15 15:28:54 -05:00
|
|
|
|
2014-06-13 15:13:05 -05:00
|
|
|
let warning_lint = lint::builtin::WARNINGS.name_lower();
|
2014-06-04 16:35:58 -05:00
|
|
|
|
2014-05-18 08:56:13 -05:00
|
|
|
let sessopts = config::Options {
|
2014-11-18 17:56:12 -06:00
|
|
|
maybe_sysroot: None,
|
2014-12-16 16:32:02 -06:00
|
|
|
search_paths: search_paths,
|
2014-05-18 08:56:13 -05:00
|
|
|
crate_types: vec!(config::CrateTypeRlib),
|
2014-06-04 16:35:58 -05:00
|
|
|
lint_opts: vec!((warning_lint, lint::Allow)),
|
2015-11-02 17:44:53 -06:00
|
|
|
lint_cap: Some(lint::Allow),
|
2014-07-20 01:02:14 -05:00
|
|
|
externs: externs,
|
2014-11-15 19:30:33 -06:00
|
|
|
target_triple: triple.unwrap_or(config::host_triple().to_string()),
|
Preliminary feature staging
This partially implements the feature staging described in the
[release channel RFC][rc]. It does not yet fully conform to the RFC as
written, but does accomplish its goals sufficiently for the 1.0 alpha
release.
It has three primary user-visible effects:
* On the nightly channel, use of unstable APIs generates a warning.
* On the beta channel, use of unstable APIs generates a warning.
* On the beta channel, use of feature gates generates a warning.
Code that does not trigger these warnings is considered 'stable',
modulo pre-1.0 bugs.
Disabling the warnings for unstable APIs continues to be done in the
existing (i.e. old) style, via `#[allow(...)]`, not that specified in
the RFC. I deem this marginally acceptable since any code that must do
this is not using the stable dialect of Rust.
Use of feature gates is itself gated with the new 'unstable_features'
lint, on nightly set to 'allow', and on beta 'warn'.
The attribute scheme used here corresponds to an older version of the
RFC, with the `#[staged_api]` crate attribute toggling the staging
behavior of the stability attributes, but the user impact is only
in-tree so I'm not concerned about having to make design changes later
(and I may ultimately prefer the scheme here after all, with the
`#[staged_api]` crate attribute).
Since the Rust codebase itself makes use of unstable features the
compiler and build system to a midly elaborate dance to allow it to
bootstrap while disobeying these lints (which would otherwise be
errors because Rust builds with `-D warnings`).
This patch includes one significant hack that causes a
regression. Because the `format_args!` macro emits calls to unstable
APIs it would trigger the lint. I added a hack to the lint to make it
not trigger, but this in turn causes arguments to `println!` not to be
checked for feature gates. I don't presently understand macro
expansion well enough to fix. This is bug #20661.
Closes #16678
[rc]: https://github.com/rust-lang/rfcs/blob/master/text/0507-release-channels.md
2015-01-06 08:26:08 -06:00
|
|
|
// Ensure that rustdoc works even if rustc is feature-staged
|
2015-06-17 19:48:16 -05:00
|
|
|
unstable_features: UnstableFeatures::Allow,
|
2014-05-18 08:56:13 -05:00
|
|
|
..config::basic_options().clone()
|
2013-08-15 15:28:54 -05:00
|
|
|
};
|
|
|
|
|
2015-12-13 16:17:55 -06:00
|
|
|
let codemap = Rc::new(codemap::CodeMap::new());
|
2016-01-04 19:35:22 -06:00
|
|
|
let diagnostic_handler = errors::Handler::with_tty_emitter(ColorConfig::Auto,
|
|
|
|
true,
|
|
|
|
false,
|
2016-07-05 14:24:23 -05:00
|
|
|
Some(codemap.clone()));
|
2013-08-15 15:28:54 -05:00
|
|
|
|
2016-03-29 12:19:37 -05:00
|
|
|
let dep_graph = DepGraph::new(false);
|
|
|
|
let _ignore = dep_graph.in_ignore();
|
2016-07-11 04:42:31 -05:00
|
|
|
let cstore = Rc::new(CStore::new(&dep_graph));
|
2016-03-29 12:19:37 -05:00
|
|
|
let sess = session::build_session_(sessopts, &dep_graph, cpath, diagnostic_handler,
|
2015-12-11 15:07:11 -06:00
|
|
|
codemap, cstore.clone());
|
2015-02-25 05:44:44 -06:00
|
|
|
rustc_lint::register_builtins(&mut sess.lint_store.borrow_mut(), Some(&sess));
|
2013-08-15 15:28:54 -05:00
|
|
|
|
2016-08-09 07:44:11 -05:00
|
|
|
let mut cfg = config::build_configuration(&sess, config::parse_cfgspecs(cfgs));
|
2015-07-14 17:49:03 -05:00
|
|
|
target_features::add_configuration(&mut cfg, &sess);
|
2013-08-15 15:28:54 -05:00
|
|
|
|
2016-02-13 11:05:16 -06:00
|
|
|
let krate = panictry!(driver::phase_1_parse_input(&sess, cfg, &input));
|
2014-06-06 15:21:18 -05:00
|
|
|
|
2016-05-27 02:02:19 -05:00
|
|
|
let name = link::find_crate_name(Some(&sess), &krate.attrs, &input);
|
2014-06-06 15:21:18 -05:00
|
|
|
|
2016-05-27 02:02:19 -05:00
|
|
|
let driver::ExpansionResult { defs, analysis, resolutions, mut hir_forest, .. } = {
|
2016-06-27 20:45:54 -05:00
|
|
|
driver::phase_2_configure_and_expand(
|
2016-09-03 22:22:56 -05:00
|
|
|
&sess, &cstore, krate, None, &name, None, resolve::MakeGlobMap::No, |_| Ok(()),
|
2016-06-27 20:45:54 -05:00
|
|
|
).expect("phase_2_configure_and_expand aborted in rustdoc!")
|
2016-05-07 23:18:55 -05:00
|
|
|
};
|
|
|
|
|
2015-01-26 06:38:33 -06:00
|
|
|
let arenas = ty::CtxtArenas::new();
|
2016-04-17 17:30:55 -05:00
|
|
|
let hir_map = hir_map::map_crate(&mut hir_forest, defs);
|
2014-06-10 16:03:19 -05:00
|
|
|
|
2016-04-06 22:59:02 -05:00
|
|
|
abort_on_err(driver::phase_3_run_analysis_passes(&sess,
|
2016-01-20 18:19:20 -06:00
|
|
|
hir_map,
|
2016-05-07 23:18:55 -05:00
|
|
|
analysis,
|
|
|
|
resolutions,
|
2016-01-20 18:19:20 -06:00
|
|
|
&arenas,
|
|
|
|
&name,
|
2016-08-19 06:23:36 -05:00
|
|
|
|tcx, _, analysis, _, result| {
|
2016-02-08 23:09:25 -06:00
|
|
|
if let Err(_) = result {
|
2016-05-17 18:08:45 -05:00
|
|
|
sess.fatal("Compilation failed, aborting rustdoc");
|
2016-02-08 23:09:25 -06:00
|
|
|
}
|
|
|
|
|
2015-11-19 05:16:35 -06:00
|
|
|
let ty::CrateAnalysis { access_levels, .. } = analysis;
|
2015-06-13 20:50:23 -05:00
|
|
|
|
2015-09-04 12:52:28 -05:00
|
|
|
// Convert from a NodeId set to a DefId set since we don't always have easy access
|
|
|
|
// to the map from defid -> nodeid
|
2015-11-19 05:16:35 -06:00
|
|
|
let access_levels = AccessLevels {
|
|
|
|
map: access_levels.map.into_iter()
|
|
|
|
.map(|(k, v)| (tcx.map.local_def_id(k), v))
|
|
|
|
.collect()
|
|
|
|
};
|
2015-09-04 12:52:28 -05:00
|
|
|
|
2015-06-13 20:50:23 -05:00
|
|
|
let ctxt = DocContext {
|
2015-09-02 15:11:32 -05:00
|
|
|
map: &tcx.map,
|
2015-06-13 20:50:23 -05:00
|
|
|
maybe_typed: Typed(tcx),
|
|
|
|
input: input,
|
2016-09-01 02:21:12 -05:00
|
|
|
populated_crate_impls: Default::default(),
|
2015-06-13 20:50:23 -05:00
|
|
|
deref_trait_did: Cell::new(None),
|
2016-09-04 11:35:35 -05:00
|
|
|
deref_mut_trait_did: Cell::new(None),
|
2016-04-06 22:59:02 -05:00
|
|
|
access_levels: RefCell::new(access_levels),
|
2016-09-01 02:21:12 -05:00
|
|
|
external_traits: Default::default(),
|
|
|
|
renderinfo: Default::default(),
|
|
|
|
ty_substs: Default::default(),
|
|
|
|
lt_substs: Default::default(),
|
2015-06-13 20:50:23 -05:00
|
|
|
};
|
2015-09-02 15:11:32 -05:00
|
|
|
debug!("crate: {:?}", ctxt.map.krate());
|
2015-06-13 20:50:23 -05:00
|
|
|
|
|
|
|
let krate = {
|
2016-04-06 22:59:02 -05:00
|
|
|
let mut v = RustdocVisitor::new(&ctxt);
|
2015-09-02 15:11:32 -05:00
|
|
|
v.visit(ctxt.map.krate());
|
2015-06-13 20:50:23 -05:00
|
|
|
v.clean(&ctxt)
|
|
|
|
};
|
|
|
|
|
2016-05-17 18:08:45 -05:00
|
|
|
(krate, ctxt.renderinfo.into_inner())
|
|
|
|
}), &sess)
|
2013-08-15 15:28:54 -05:00
|
|
|
}
|