2014-08-31 19:07:27 +02:00
|
|
|
// Copyright 2012-2014 The Rust Project Developers. See the COPYRIGHT
|
2013-09-12 21:10:51 -04: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.
|
|
|
|
|
2015-02-25 22:44:44 +11:00
|
|
|
use rustc_lint;
|
2018-01-22 07:29:24 -08:00
|
|
|
use rustc_driver::{self, driver, target_features, abort_on_err};
|
2015-01-03 22:42:21 -05:00
|
|
|
use rustc::session::{self, config};
|
Generate documentation for auto-trait impls
A new section is added to both both struct and trait doc pages.
On struct/enum pages, a new 'Auto Trait Implementations' section displays any
synthetic implementations for auto traits. Currently, this is only done
for Send and Sync.
On trait pages, a new 'Auto Implementors' section displays all types
which automatically implement the trait. Effectively, this is a list of
all public types in the standard library.
Synthesized impls for a particular auto trait ('synthetic impls') take
into account generic bounds. For example, a type 'struct Foo<T>(T)' will
have 'impl<T> Send for Foo<T> where T: Send' generated for it.
Manual implementations of auto traits are also taken into account. If we have
the following types:
'struct Foo<T>(T)'
'struct Wrapper<T>(Foo<T>)'
'unsafe impl<T> Send for Wrapper<T>' // pretend that Wrapper<T> makes
this sound somehow
Then Wrapper will have the following impl generated:
'impl<T> Send for Wrapper<T>'
reflecting the fact that 'T: Send' need not hold for 'Wrapper<T>: Send'
to hold
Lifetimes, HRTBS, and projections (e.g. '<T as Iterator>::Item') are
taken into account by synthetic impls
However, if a type can *never* implement a particular auto trait
(e.g. 'struct MyStruct<T>(*const T)'), then a negative impl will be
generated (in this case, 'impl<T> !Send for MyStruct<T>')
All of this means that a user should be able to copy-paste a synthetic
impl into their code, without any observable changes in behavior
(assuming the rest of the program remains unchanged).
2017-11-22 16:16:55 -05:00
|
|
|
use rustc::hir::def_id::{DefId, CrateNum};
|
2017-03-23 14:18:25 -04:00
|
|
|
use rustc::hir::def::Def;
|
Generate documentation for auto-trait impls
A new section is added to both both struct and trait doc pages.
On struct/enum pages, a new 'Auto Trait Implementations' section displays any
synthetic implementations for auto traits. Currently, this is only done
for Send and Sync.
On trait pages, a new 'Auto Implementors' section displays all types
which automatically implement the trait. Effectively, this is a list of
all public types in the standard library.
Synthesized impls for a particular auto trait ('synthetic impls') take
into account generic bounds. For example, a type 'struct Foo<T>(T)' will
have 'impl<T> Send for Foo<T> where T: Send' generated for it.
Manual implementations of auto traits are also taken into account. If we have
the following types:
'struct Foo<T>(T)'
'struct Wrapper<T>(Foo<T>)'
'unsafe impl<T> Send for Wrapper<T>' // pretend that Wrapper<T> makes
this sound somehow
Then Wrapper will have the following impl generated:
'impl<T> Send for Wrapper<T>'
reflecting the fact that 'T: Send' need not hold for 'Wrapper<T>: Send'
to hold
Lifetimes, HRTBS, and projections (e.g. '<T as Iterator>::Item') are
taken into account by synthetic impls
However, if a type can *never* implement a particular auto trait
(e.g. 'struct MyStruct<T>(*const T)'), then a negative impl will be
generated (in this case, 'impl<T> !Send for MyStruct<T>')
All of this means that a user should be able to copy-paste a synthetic
impl into their code, without any observable changes in behavior
(assuming the rest of the program remains unchanged).
2017-11-22 16:16:55 -05:00
|
|
|
use rustc::middle::cstore::CrateStore;
|
2015-11-19 14:16:35 +03:00
|
|
|
use rustc::middle::privacy::AccessLevels;
|
2017-12-03 13:57:25 +01:00
|
|
|
use rustc::ty::{self, TyCtxt, AllArenas};
|
2016-03-29 08:50:44 +03:00
|
|
|
use rustc::hir::map as hir_map;
|
2018-06-04 23:44:35 +02:00
|
|
|
use rustc::lint::{self, LintPass};
|
2018-04-01 00:09:00 +02:00
|
|
|
use rustc::session::config::ErrorOutputType;
|
Generate documentation for auto-trait impls
A new section is added to both both struct and trait doc pages.
On struct/enum pages, a new 'Auto Trait Implementations' section displays any
synthetic implementations for auto traits. Currently, this is only done
for Send and Sync.
On trait pages, a new 'Auto Implementors' section displays all types
which automatically implement the trait. Effectively, this is a list of
all public types in the standard library.
Synthesized impls for a particular auto trait ('synthetic impls') take
into account generic bounds. For example, a type 'struct Foo<T>(T)' will
have 'impl<T> Send for Foo<T> where T: Send' generated for it.
Manual implementations of auto traits are also taken into account. If we have
the following types:
'struct Foo<T>(T)'
'struct Wrapper<T>(Foo<T>)'
'unsafe impl<T> Send for Wrapper<T>' // pretend that Wrapper<T> makes
this sound somehow
Then Wrapper will have the following impl generated:
'impl<T> Send for Wrapper<T>'
reflecting the fact that 'T: Send' need not hold for 'Wrapper<T>: Send'
to hold
Lifetimes, HRTBS, and projections (e.g. '<T as Iterator>::Item') are
taken into account by synthetic impls
However, if a type can *never* implement a particular auto trait
(e.g. 'struct MyStruct<T>(*const T)'), then a negative impl will be
generated (in this case, 'impl<T> !Send for MyStruct<T>')
All of this means that a user should be able to copy-paste a synthetic
impl into their code, without any observable changes in behavior
(assuming the rest of the program remains unchanged).
2017-11-22 16:16:55 -05:00
|
|
|
use rustc::util::nodemap::{FxHashMap, FxHashSet};
|
2015-01-11 15:03:34 +13:00
|
|
|
use rustc_resolve as resolve;
|
2017-12-21 15:16:29 -06:00
|
|
|
use rustc_metadata::creader::CrateLoader;
|
2015-11-25 01:23:22 +02:00
|
|
|
use rustc_metadata::cstore::CStore;
|
2017-12-08 21:18:21 +02:00
|
|
|
use rustc_target::spec::TargetTriple;
|
2013-08-15 16:28:54 -04:00
|
|
|
|
2018-01-01 13:01:19 +05:30
|
|
|
use syntax::ast::NodeId;
|
2017-08-15 17:05:25 +02:00
|
|
|
use syntax::codemap;
|
2018-03-27 16:31:19 +02:00
|
|
|
use syntax::edition::Edition;
|
2015-06-17 17:48:16 -07:00
|
|
|
use syntax::feature_gate::UnstableFeatures;
|
2018-04-01 00:09:00 +02:00
|
|
|
use syntax::json::JsonEmitter;
|
2016-06-21 18:08:13 -04:00
|
|
|
use errors;
|
2018-04-01 00:09:00 +02:00
|
|
|
use errors::emitter::{Emitter, EmitterWriter};
|
2013-08-15 16:28:54 -04:00
|
|
|
|
2015-04-13 16:23:32 -07:00
|
|
|
use std::cell::{RefCell, Cell};
|
2016-09-01 10:21:12 +03:00
|
|
|
use std::mem;
|
2018-03-03 06:20:26 +01:00
|
|
|
use rustc_data_structures::sync::{self, Lrc};
|
2015-11-22 21:02:04 +02:00
|
|
|
use std::rc::Rc;
|
2016-09-19 15:56:38 -05:00
|
|
|
use std::path::PathBuf;
|
2013-08-15 16:28:54 -04:00
|
|
|
|
|
|
|
use visit_ast::RustdocVisitor;
|
|
|
|
use clean;
|
|
|
|
use clean::Clean;
|
2016-04-07 05:59:02 +02:00
|
|
|
use html::render::RenderInfo;
|
2013-08-15 16:28:54 -04:00
|
|
|
|
2018-04-12 13:12:53 -05:00
|
|
|
pub use rustc::session::config::{Input, CodegenOptions};
|
2015-01-17 21:23:05 -08:00
|
|
|
pub use rustc::session::search_paths::SearchPaths;
|
|
|
|
|
2016-11-08 14:02:55 +11:00
|
|
|
pub type ExternalPaths = FxHashMap<DefId, (Vec<String>, clean::TypeKind)>;
|
2014-05-09 13:52:17 -07:00
|
|
|
|
2017-12-25 14:34:56 +05:30
|
|
|
pub struct DocContext<'a, 'tcx: 'a, 'rcx: 'a> {
|
2016-11-20 03:42:54 +02:00
|
|
|
pub tcx: TyCtxt<'a, 'tcx, 'tcx>,
|
2017-12-25 14:34:56 +05:30
|
|
|
pub resolver: &'a RefCell<resolve::Resolver<'rcx>>,
|
2018-01-01 13:01:19 +05:30
|
|
|
/// The stack of module NodeIds up till this point
|
|
|
|
pub mod_ids: RefCell<Vec<NodeId>>,
|
Generate documentation for auto-trait impls
A new section is added to both both struct and trait doc pages.
On struct/enum pages, a new 'Auto Trait Implementations' section displays any
synthetic implementations for auto traits. Currently, this is only done
for Send and Sync.
On trait pages, a new 'Auto Implementors' section displays all types
which automatically implement the trait. Effectively, this is a list of
all public types in the standard library.
Synthesized impls for a particular auto trait ('synthetic impls') take
into account generic bounds. For example, a type 'struct Foo<T>(T)' will
have 'impl<T> Send for Foo<T> where T: Send' generated for it.
Manual implementations of auto traits are also taken into account. If we have
the following types:
'struct Foo<T>(T)'
'struct Wrapper<T>(Foo<T>)'
'unsafe impl<T> Send for Wrapper<T>' // pretend that Wrapper<T> makes
this sound somehow
Then Wrapper will have the following impl generated:
'impl<T> Send for Wrapper<T>'
reflecting the fact that 'T: Send' need not hold for 'Wrapper<T>: Send'
to hold
Lifetimes, HRTBS, and projections (e.g. '<T as Iterator>::Item') are
taken into account by synthetic impls
However, if a type can *never* implement a particular auto trait
(e.g. 'struct MyStruct<T>(*const T)'), then a negative impl will be
generated (in this case, 'impl<T> !Send for MyStruct<T>')
All of this means that a user should be able to copy-paste a synthetic
impl into their code, without any observable changes in behavior
(assuming the rest of the program remains unchanged).
2017-11-22 16:16:55 -05:00
|
|
|
pub crate_name: Option<String>,
|
|
|
|
pub cstore: Rc<CrateStore>,
|
2016-09-19 23:49:01 +03:00
|
|
|
pub populated_all_crate_impls: Cell<bool>,
|
2016-04-15 16:34:48 +02: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-07 05:59:02 +02:00
|
|
|
pub access_levels: RefCell<AccessLevels<DefId>>,
|
2016-04-15 16:34:48 +02:00
|
|
|
/// Later on moved into `html::render::CACHE_KEY`
|
2016-04-07 05:59:02 +02:00
|
|
|
pub renderinfo: RefCell<RenderInfo>,
|
2016-04-15 16:34:48 +02:00
|
|
|
/// Later on moved through `clean::Crate` into `html::render::CACHE_KEY`
|
2016-11-08 14:02:55 +11:00
|
|
|
pub external_traits: RefCell<FxHashMap<DefId, clean::Trait>>,
|
2018-02-21 18:33:42 -06:00
|
|
|
/// Used while populating `external_traits` to ensure we don't process the same trait twice at
|
|
|
|
/// the same time.
|
|
|
|
pub active_extern_traits: RefCell<Vec<DefId>>,
|
2016-09-01 10:21:12 +03:00
|
|
|
// The current set of type and lifetime substitutions,
|
|
|
|
// for expanding type aliases at the HIR level:
|
|
|
|
|
|
|
|
/// Table type parameter definition -> substituted type
|
2016-11-08 14:02:55 +11:00
|
|
|
pub ty_substs: RefCell<FxHashMap<Def, clean::Type>>,
|
2016-09-01 10:21:12 +03:00
|
|
|
/// Table node id of lifetime parameter definition -> substituted lifetime
|
2017-08-15 17:05:25 +02:00
|
|
|
pub lt_substs: RefCell<FxHashMap<DefId, clean::Lifetime>>,
|
2018-03-24 14:12:08 +09:00
|
|
|
/// Table DefId of `impl Trait` in argument position -> bounds
|
2018-06-14 12:08:58 +01:00
|
|
|
pub impl_trait_bounds: RefCell<FxHashMap<DefId, Vec<clean::GenericBound>>>,
|
Generate documentation for auto-trait impls
A new section is added to both both struct and trait doc pages.
On struct/enum pages, a new 'Auto Trait Implementations' section displays any
synthetic implementations for auto traits. Currently, this is only done
for Send and Sync.
On trait pages, a new 'Auto Implementors' section displays all types
which automatically implement the trait. Effectively, this is a list of
all public types in the standard library.
Synthesized impls for a particular auto trait ('synthetic impls') take
into account generic bounds. For example, a type 'struct Foo<T>(T)' will
have 'impl<T> Send for Foo<T> where T: Send' generated for it.
Manual implementations of auto traits are also taken into account. If we have
the following types:
'struct Foo<T>(T)'
'struct Wrapper<T>(Foo<T>)'
'unsafe impl<T> Send for Wrapper<T>' // pretend that Wrapper<T> makes
this sound somehow
Then Wrapper will have the following impl generated:
'impl<T> Send for Wrapper<T>'
reflecting the fact that 'T: Send' need not hold for 'Wrapper<T>: Send'
to hold
Lifetimes, HRTBS, and projections (e.g. '<T as Iterator>::Item') are
taken into account by synthetic impls
However, if a type can *never* implement a particular auto trait
(e.g. 'struct MyStruct<T>(*const T)'), then a negative impl will be
generated (in this case, 'impl<T> !Send for MyStruct<T>')
All of this means that a user should be able to copy-paste a synthetic
impl into their code, without any observable changes in behavior
(assuming the rest of the program remains unchanged).
2017-11-22 16:16:55 -05:00
|
|
|
pub send_trait: Option<DefId>,
|
|
|
|
pub fake_def_ids: RefCell<FxHashMap<CrateNum, DefId>>,
|
|
|
|
pub all_fake_def_ids: RefCell<FxHashSet<DefId>>,
|
|
|
|
/// Maps (type_id, trait_id) -> auto trait impl
|
|
|
|
pub generated_synthetics: RefCell<FxHashSet<(DefId, DefId)>>
|
2014-03-05 16:36:01 +02:00
|
|
|
}
|
|
|
|
|
2017-12-21 15:16:29 -06:00
|
|
|
impl<'a, 'tcx, 'rcx> DocContext<'a, 'tcx, 'rcx> {
|
2016-11-20 03:42:54 +02:00
|
|
|
pub fn sess(&self) -> &session::Session {
|
|
|
|
&self.tcx.sess
|
2014-06-26 11:37:39 -07:00
|
|
|
}
|
2016-09-01 10:21:12 +03:00
|
|
|
|
|
|
|
/// Call the closure with the given parameters set as
|
|
|
|
/// the substitutions for a type alias' RHS.
|
|
|
|
pub fn enter_alias<F, R>(&self,
|
2016-11-08 14:02:55 +11:00
|
|
|
ty_substs: FxHashMap<Def, clean::Type>,
|
2017-08-15 17:05:25 +02:00
|
|
|
lt_substs: FxHashMap<DefId, clean::Lifetime>,
|
2016-09-01 10:21:12 +03:00
|
|
|
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 16:28:54 -04:00
|
|
|
}
|
|
|
|
|
2016-04-17 08:54:48 +02:00
|
|
|
pub trait DocAccessLevels {
|
2017-05-02 05:55:20 +02:00
|
|
|
fn is_doc_reachable(&self, did: DefId) -> bool;
|
2016-04-17 08:54:48 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
impl DocAccessLevels for AccessLevels<DefId> {
|
|
|
|
fn is_doc_reachable(&self, did: DefId) -> bool {
|
|
|
|
self.is_public(did)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-04-24 18:29:04 -05:00
|
|
|
/// Creates a new diagnostic `Handler` that can be used to emit warnings and errors.
|
|
|
|
///
|
|
|
|
/// If the given `error_format` is `ErrorOutputType::Json` and no `CodeMap` is given, a new one
|
|
|
|
/// will be created for the handler.
|
|
|
|
pub fn new_handler(error_format: ErrorOutputType, codemap: Option<Lrc<codemap::CodeMap>>)
|
|
|
|
-> errors::Handler
|
|
|
|
{
|
|
|
|
// rustdoc doesn't override (or allow to override) anything from this that is relevant here, so
|
|
|
|
// stick to the defaults
|
|
|
|
let sessopts = config::basic_options();
|
|
|
|
let emitter: Box<dyn Emitter + sync::Send> = match error_format {
|
|
|
|
ErrorOutputType::HumanReadable(color_config) => Box::new(
|
|
|
|
EmitterWriter::stderr(
|
|
|
|
color_config,
|
|
|
|
codemap.map(|cm| cm as _),
|
|
|
|
false,
|
|
|
|
sessopts.debugging_opts.teach,
|
|
|
|
).ui_testing(sessopts.debugging_opts.ui_testing)
|
|
|
|
),
|
|
|
|
ErrorOutputType::Json(pretty) => {
|
|
|
|
let codemap = codemap.unwrap_or_else(
|
|
|
|
|| Lrc::new(codemap::CodeMap::new(sessopts.file_path_mapping())));
|
|
|
|
Box::new(
|
|
|
|
JsonEmitter::stderr(
|
|
|
|
None,
|
|
|
|
codemap,
|
|
|
|
pretty,
|
|
|
|
).ui_testing(sessopts.debugging_opts.ui_testing)
|
|
|
|
)
|
|
|
|
},
|
|
|
|
ErrorOutputType::Short(color_config) => Box::new(
|
|
|
|
EmitterWriter::stderr(
|
|
|
|
color_config,
|
|
|
|
codemap.map(|cm| cm as _),
|
|
|
|
true,
|
|
|
|
false)
|
|
|
|
),
|
|
|
|
};
|
|
|
|
|
|
|
|
errors::Handler::with_emitter_and_flags(
|
|
|
|
emitter,
|
|
|
|
errors::HandlerFlags {
|
|
|
|
can_emit_warnings: true,
|
|
|
|
treat_err_as_bug: false,
|
|
|
|
external_macro_backtrace: false,
|
|
|
|
..Default::default()
|
|
|
|
},
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2016-04-07 05:59:02 +02:00
|
|
|
pub fn run_core(search_paths: SearchPaths,
|
|
|
|
cfgs: Vec<String>,
|
2016-08-02 16:53:58 -04:00
|
|
|
externs: config::Externs,
|
2016-04-07 05:59:02 +02:00
|
|
|
input: Input,
|
2018-03-14 15:27:06 +01:00
|
|
|
triple: Option<TargetTriple>,
|
2017-05-01 17:47:39 +02:00
|
|
|
maybe_sysroot: Option<PathBuf>,
|
2017-06-21 17:59:10 +01:00
|
|
|
allow_warnings: bool,
|
Generate documentation for auto-trait impls
A new section is added to both both struct and trait doc pages.
On struct/enum pages, a new 'Auto Trait Implementations' section displays any
synthetic implementations for auto traits. Currently, this is only done
for Send and Sync.
On trait pages, a new 'Auto Implementors' section displays all types
which automatically implement the trait. Effectively, this is a list of
all public types in the standard library.
Synthesized impls for a particular auto trait ('synthetic impls') take
into account generic bounds. For example, a type 'struct Foo<T>(T)' will
have 'impl<T> Send for Foo<T> where T: Send' generated for it.
Manual implementations of auto traits are also taken into account. If we have
the following types:
'struct Foo<T>(T)'
'struct Wrapper<T>(Foo<T>)'
'unsafe impl<T> Send for Wrapper<T>' // pretend that Wrapper<T> makes
this sound somehow
Then Wrapper will have the following impl generated:
'impl<T> Send for Wrapper<T>'
reflecting the fact that 'T: Send' need not hold for 'Wrapper<T>: Send'
to hold
Lifetimes, HRTBS, and projections (e.g. '<T as Iterator>::Item') are
taken into account by synthetic impls
However, if a type can *never* implement a particular auto trait
(e.g. 'struct MyStruct<T>(*const T)'), then a negative impl will be
generated (in this case, 'impl<T> !Send for MyStruct<T>')
All of this means that a user should be able to copy-paste a synthetic
impl into their code, without any observable changes in behavior
(assuming the rest of the program remains unchanged).
2017-11-22 16:16:55 -05:00
|
|
|
crate_name: Option<String>,
|
2018-03-27 16:31:19 +02:00
|
|
|
force_unstable_if_unmarked: bool,
|
2018-04-12 13:12:53 -05:00
|
|
|
edition: Edition,
|
2018-04-01 00:09:00 +02:00
|
|
|
cg: CodegenOptions,
|
2018-06-23 15:09:21 +02:00
|
|
|
error_format: ErrorOutputType,
|
|
|
|
cmd_lints: Vec<(String, lint::Level)>,
|
|
|
|
lint_cap: Option<lint::Level>,
|
|
|
|
describe_lints: bool) -> (clean::Crate, RenderInfo)
|
2016-04-07 05:59:02 +02:00
|
|
|
{
|
2014-05-18 16:56:13 +03:00
|
|
|
// Parse, resolve, and typecheck the given crate.
|
|
|
|
|
2015-01-17 21:02:31 -08:00
|
|
|
let cpath = match input {
|
|
|
|
Input::File(ref p) => Some(p.clone()),
|
|
|
|
_ => None
|
|
|
|
};
|
2013-08-15 16:28:54 -04:00
|
|
|
|
2018-06-13 21:17:15 +02:00
|
|
|
let intra_link_resolution_failure_name = lint::builtin::INTRA_DOC_LINK_RESOLUTION_FAILURE.name;
|
2018-06-04 23:44:35 +02:00
|
|
|
let warnings_lint_name = lint::builtin::WARNINGS.name;
|
2018-07-05 20:06:33 +02:00
|
|
|
let missing_docs = rustc_lint::builtin::MISSING_DOCS.name;
|
2018-06-04 23:44:35 +02:00
|
|
|
let lints = lint::builtin::HardwiredLints.get_lints()
|
2018-06-21 09:04:50 +02:00
|
|
|
.into_iter()
|
|
|
|
.chain(rustc_lint::SoftLints.get_lints().into_iter())
|
2018-06-04 23:44:35 +02:00
|
|
|
.filter_map(|lint| {
|
2018-06-09 17:20:58 +02:00
|
|
|
if lint.name == warnings_lint_name ||
|
|
|
|
lint.name == intra_link_resolution_failure_name {
|
2018-06-04 23:44:35 +02:00
|
|
|
None
|
|
|
|
} else {
|
2018-06-09 17:20:58 +02:00
|
|
|
Some((lint.name_lower(), lint::Allow))
|
2018-06-04 23:44:35 +02:00
|
|
|
}
|
|
|
|
})
|
2018-06-23 15:09:21 +02:00
|
|
|
.chain(cmd_lints.into_iter())
|
2018-06-04 23:44:35 +02:00
|
|
|
.collect::<Vec<_>>();
|
2014-06-04 14:35:58 -07:00
|
|
|
|
2018-03-14 15:27:06 +01:00
|
|
|
let host_triple = TargetTriple::from_triple(config::host_triple());
|
2018-04-01 00:09:00 +02:00
|
|
|
// plays with error output here!
|
2014-05-18 16:56:13 +03:00
|
|
|
let sessopts = config::Options {
|
2017-08-06 22:54:09 -07:00
|
|
|
maybe_sysroot,
|
|
|
|
search_paths,
|
2016-10-29 22:54:04 +01:00
|
|
|
crate_types: vec![config::CrateTypeRlib],
|
2018-06-04 23:44:35 +02:00
|
|
|
lint_opts: if !allow_warnings {
|
|
|
|
lints
|
|
|
|
} else {
|
|
|
|
vec![]
|
|
|
|
},
|
2018-06-23 15:09:21 +02:00
|
|
|
lint_cap: Some(lint_cap.unwrap_or_else(|| lint::Forbid)),
|
2018-04-12 13:12:53 -05:00
|
|
|
cg,
|
2017-08-06 22:54:09 -07:00
|
|
|
externs,
|
2018-03-14 15:27:06 +01:00
|
|
|
target_triple: triple.unwrap_or(host_triple),
|
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 06:26:08 -08:00
|
|
|
// Ensure that rustdoc works even if rustc is feature-staged
|
2015-06-17 17:48:16 -07:00
|
|
|
unstable_features: UnstableFeatures::Allow,
|
2016-09-29 19:10:29 -07:00
|
|
|
actually_rustdoc: true,
|
2017-06-21 17:59:10 +01:00
|
|
|
debugging_opts: config::DebuggingOptions {
|
2017-08-06 22:54:09 -07:00
|
|
|
force_unstable_if_unmarked,
|
2017-06-21 17:59:10 +01:00
|
|
|
..config::basic_debugging_options()
|
|
|
|
},
|
2018-04-01 00:09:00 +02:00
|
|
|
error_format,
|
2018-04-20 14:47:23 -07:00
|
|
|
edition,
|
2018-06-23 15:09:21 +02:00
|
|
|
describe_lints,
|
2018-04-24 18:29:04 -05:00
|
|
|
..config::basic_options()
|
2013-08-15 16:28:54 -04:00
|
|
|
};
|
2018-04-26 00:49:52 +02:00
|
|
|
driver::spawn_thread_pool(sessopts, move |sessopts| {
|
|
|
|
let codemap = Lrc::new(codemap::CodeMap::new(sessopts.file_path_mapping()));
|
2018-04-24 18:29:04 -05:00
|
|
|
let diagnostic_handler = new_handler(error_format, Some(codemap.clone()));
|
2018-04-26 00:49:52 +02:00
|
|
|
|
|
|
|
let mut sess = session::build_session_(
|
|
|
|
sessopts, cpath, diagnostic_handler, codemap,
|
|
|
|
);
|
2018-07-01 00:27:44 +02:00
|
|
|
|
2018-07-05 20:06:33 +02:00
|
|
|
lint::builtin::HardwiredLints.get_lints()
|
|
|
|
.into_iter()
|
|
|
|
.chain(rustc_lint::SoftLints.get_lints().into_iter())
|
|
|
|
.filter_map(|lint| {
|
2018-07-09 18:10:08 +02:00
|
|
|
// We don't want to whitelist *all* lints so let's
|
|
|
|
// ignore those ones.
|
2018-07-05 20:06:33 +02:00
|
|
|
if lint.name == warnings_lint_name ||
|
|
|
|
lint.name == intra_link_resolution_failure_name ||
|
|
|
|
lint.name == missing_docs {
|
|
|
|
None
|
|
|
|
} else {
|
|
|
|
Some(lint)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
.for_each(|l| {
|
|
|
|
sess.driver_lint_caps.insert(lint::LintId::of(l),
|
|
|
|
lint::Allow);
|
|
|
|
});
|
2018-07-01 00:27:44 +02:00
|
|
|
|
2018-05-08 16:10:16 +03:00
|
|
|
let codegen_backend = rustc_driver::get_codegen_backend(&sess);
|
|
|
|
let cstore = Rc::new(CStore::new(codegen_backend.metadata_loader()));
|
2018-04-26 00:49:52 +02:00
|
|
|
rustc_lint::register_builtins(&mut sess.lint_store.borrow_mut(), Some(&sess));
|
|
|
|
|
|
|
|
let mut cfg = config::build_configuration(&sess, config::parse_cfgspecs(cfgs));
|
2018-05-08 16:10:16 +03:00
|
|
|
target_features::add_configuration(&mut cfg, &sess, &*codegen_backend);
|
2018-04-26 00:49:52 +02:00
|
|
|
sess.parse_sess.config = cfg;
|
|
|
|
|
|
|
|
let control = &driver::CompileController::basic();
|
|
|
|
|
|
|
|
let krate = panictry!(driver::phase_1_parse_input(control, &sess, &input));
|
|
|
|
|
2018-05-31 22:08:31 +02:00
|
|
|
let name = match crate_name {
|
|
|
|
Some(ref crate_name) => crate_name.clone(),
|
|
|
|
None => ::rustc_codegen_utils::link::find_crate_name(Some(&sess), &krate.attrs, &input),
|
|
|
|
};
|
2018-04-26 00:49:52 +02:00
|
|
|
|
|
|
|
let mut crate_loader = CrateLoader::new(&sess, &cstore, &name);
|
|
|
|
|
|
|
|
let resolver_arenas = resolve::Resolver::arenas();
|
|
|
|
let result = driver::phase_2_configure_and_expand_inner(&sess,
|
|
|
|
&cstore,
|
|
|
|
krate,
|
|
|
|
None,
|
|
|
|
&name,
|
|
|
|
None,
|
|
|
|
resolve::MakeGlobMap::No,
|
|
|
|
&resolver_arenas,
|
|
|
|
&mut crate_loader,
|
|
|
|
|_| Ok(()));
|
|
|
|
let driver::InnerExpansionResult {
|
|
|
|
mut hir_forest,
|
2018-05-10 20:13:25 +02:00
|
|
|
mut resolver,
|
2018-04-26 00:49:52 +02:00
|
|
|
..
|
|
|
|
} = abort_on_err(result, &sess);
|
|
|
|
|
2018-05-10 20:13:25 +02:00
|
|
|
resolver.ignore_extern_prelude_feature = true;
|
|
|
|
|
2018-04-26 00:49:52 +02:00
|
|
|
// We need to hold on to the complete resolver, so we clone everything
|
|
|
|
// for the analysis passes to use. Suboptimal, but necessary in the
|
|
|
|
// current architecture.
|
|
|
|
let defs = resolver.definitions.clone();
|
|
|
|
let resolutions = ty::Resolutions {
|
|
|
|
freevars: resolver.freevars.clone(),
|
|
|
|
export_map: resolver.export_map.clone(),
|
|
|
|
trait_map: resolver.trait_map.clone(),
|
|
|
|
maybe_unused_trait_imports: resolver.maybe_unused_trait_imports.clone(),
|
|
|
|
maybe_unused_extern_crates: resolver.maybe_unused_extern_crates.clone(),
|
2018-02-10 14:34:46 -05:00
|
|
|
};
|
2018-04-26 00:49:52 +02:00
|
|
|
let analysis = ty::CrateAnalysis {
|
|
|
|
access_levels: Lrc::new(AccessLevels::default()),
|
|
|
|
name: name.to_string(),
|
|
|
|
glob_map: if resolver.make_glob_map { Some(resolver.glob_map.clone()) } else { None },
|
2015-06-14 04:50:23 +03:00
|
|
|
};
|
|
|
|
|
2018-04-26 00:49:52 +02:00
|
|
|
let arenas = AllArenas::new();
|
|
|
|
let hir_map = hir_map::map_crate(&sess, &*cstore, &mut hir_forest, &defs);
|
|
|
|
let output_filenames = driver::build_output_filenames(&input,
|
|
|
|
&None,
|
|
|
|
&None,
|
|
|
|
&[],
|
|
|
|
&sess);
|
|
|
|
|
|
|
|
let resolver = RefCell::new(resolver);
|
2018-05-08 16:10:16 +03:00
|
|
|
abort_on_err(driver::phase_3_run_analysis_passes(&*codegen_backend,
|
2018-04-26 00:49:52 +02:00
|
|
|
control,
|
|
|
|
&sess,
|
|
|
|
&*cstore,
|
|
|
|
hir_map,
|
|
|
|
analysis,
|
|
|
|
resolutions,
|
|
|
|
&arenas,
|
|
|
|
&name,
|
|
|
|
&output_filenames,
|
|
|
|
|tcx, analysis, _, result| {
|
|
|
|
if let Err(_) = result {
|
|
|
|
sess.fatal("Compilation failed, aborting rustdoc");
|
|
|
|
}
|
|
|
|
|
|
|
|
let ty::CrateAnalysis { access_levels, .. } = analysis;
|
|
|
|
|
|
|
|
// Convert from a NodeId set to a DefId set since we don't always have easy access
|
|
|
|
// to the map from defid -> nodeid
|
|
|
|
let access_levels = AccessLevels {
|
|
|
|
map: access_levels.map.iter()
|
|
|
|
.map(|(&k, &v)| (tcx.hir.local_def_id(k), v))
|
|
|
|
.collect()
|
|
|
|
};
|
|
|
|
|
|
|
|
let send_trait = if crate_name == Some("core".to_string()) {
|
|
|
|
clean::get_trait_def_id(&tcx, &["marker", "Send"], true)
|
|
|
|
} else {
|
|
|
|
clean::get_trait_def_id(&tcx, &["core", "marker", "Send"], false)
|
|
|
|
};
|
|
|
|
|
|
|
|
let ctxt = DocContext {
|
|
|
|
tcx,
|
|
|
|
resolver: &resolver,
|
|
|
|
crate_name,
|
|
|
|
cstore: cstore.clone(),
|
|
|
|
populated_all_crate_impls: Cell::new(false),
|
|
|
|
access_levels: RefCell::new(access_levels),
|
|
|
|
external_traits: Default::default(),
|
|
|
|
active_extern_traits: Default::default(),
|
|
|
|
renderinfo: Default::default(),
|
|
|
|
ty_substs: Default::default(),
|
|
|
|
lt_substs: Default::default(),
|
|
|
|
impl_trait_bounds: Default::default(),
|
|
|
|
mod_ids: Default::default(),
|
|
|
|
send_trait: send_trait,
|
|
|
|
fake_def_ids: RefCell::new(FxHashMap()),
|
|
|
|
all_fake_def_ids: RefCell::new(FxHashSet()),
|
|
|
|
generated_synthetics: RefCell::new(FxHashSet()),
|
|
|
|
};
|
|
|
|
debug!("crate: {:?}", tcx.hir.krate());
|
|
|
|
|
|
|
|
let krate = {
|
|
|
|
let mut v = RustdocVisitor::new(&*cstore, &ctxt);
|
|
|
|
v.visit(tcx.hir.krate());
|
|
|
|
v.clean(&ctxt)
|
|
|
|
};
|
|
|
|
|
|
|
|
(krate, ctxt.renderinfo.into_inner())
|
|
|
|
}), &sess)
|
|
|
|
})
|
2013-08-15 16:28:54 -04:00
|
|
|
}
|