2014-01-10 08:05:54 -06:00
|
|
|
// Copyright 2012-2014 The Rust Project Developers. See the COPYRIGHT
|
2012-12-03 18:48:01 -06: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-06-06 15:21:18 -05:00
|
|
|
#![crate_name = "rustdoc"]
|
2015-01-22 20:22:03 -06:00
|
|
|
#![unstable(feature = "rustdoc")]
|
2015-01-21 20:21:14 -06:00
|
|
|
#![feature(staged_api)]
|
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
|
|
|
#![staged_api]
|
2014-03-21 20:05:05 -05:00
|
|
|
#![crate_type = "dylib"]
|
|
|
|
#![crate_type = "rlib"]
|
2014-11-30 07:19:29 -06:00
|
|
|
#![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
|
|
|
|
html_favicon_url = "http://www.rust-lang.org/favicon.ico",
|
|
|
|
html_root_url = "http://doc.rust-lang.org/nightly/",
|
|
|
|
html_playground_url = "http://play.rust-lang.org/")]
|
2015-01-06 11:24:46 -06:00
|
|
|
#![feature(slicing_syntax)]
|
2015-01-07 08:15:34 -06:00
|
|
|
#![feature(box_syntax)]
|
2015-01-08 04:45:49 -06:00
|
|
|
#![allow(unknown_features)] #![feature(int_uint)]
|
2015-01-22 20:22:03 -06:00
|
|
|
#![feature(collections)]
|
|
|
|
#![feature(core)]
|
|
|
|
#![feature(io)]
|
|
|
|
#![feature(libc)]
|
|
|
|
#![feature(os)]
|
|
|
|
#![feature(path)]
|
|
|
|
#![feature(rustc_private)]
|
|
|
|
#![feature(std_misc)]
|
|
|
|
#![feature(test)]
|
|
|
|
#![feature(unicode)]
|
2015-01-24 11:15:42 -06:00
|
|
|
#![feature(hash)]
|
2013-10-02 20:10:16 -05:00
|
|
|
|
2014-09-06 11:13:40 -05:00
|
|
|
extern crate arena;
|
2014-05-22 13:28:01 -05:00
|
|
|
extern crate getopts;
|
|
|
|
extern crate libc;
|
2014-02-14 12:10:06 -06:00
|
|
|
extern crate rustc;
|
2014-11-15 19:30:33 -06:00
|
|
|
extern crate rustc_trans;
|
2014-11-27 08:57:47 -06:00
|
|
|
extern crate rustc_driver;
|
2015-01-10 20:03:34 -06:00
|
|
|
extern crate rustc_resolve;
|
2014-02-14 12:10:06 -06:00
|
|
|
extern crate serialize;
|
2014-05-22 13:28:01 -05:00
|
|
|
extern crate syntax;
|
2014-09-01 10:59:23 -05:00
|
|
|
extern crate "test" as testing;
|
2015-01-06 11:24:46 -06:00
|
|
|
#[macro_use] extern crate log;
|
2014-05-24 23:15:16 -05:00
|
|
|
|
2014-12-19 00:52:48 -06:00
|
|
|
extern crate "serialize" as rustc_serialize; // used by deriving
|
|
|
|
|
2014-11-14 16:20:57 -06:00
|
|
|
use std::cell::RefCell;
|
2014-07-20 01:02:14 -05:00
|
|
|
use std::collections::HashMap;
|
2015-01-22 18:31:00 -06:00
|
|
|
use std::old_io::File;
|
|
|
|
use std::old_io;
|
2014-11-14 16:20:57 -06:00
|
|
|
use std::rc::Rc;
|
2014-06-28 05:35:25 -05:00
|
|
|
use externalfiles::ExternalHtml;
|
2014-12-12 12:59:41 -06:00
|
|
|
use serialize::Decodable;
|
2015-01-03 21:42:21 -06:00
|
|
|
use serialize::json::{self, Json};
|
2014-12-16 16:32:02 -06:00
|
|
|
use rustc::session::search_paths::SearchPaths;
|
2013-09-22 01:25:48 -05:00
|
|
|
|
2014-04-26 08:45:50 -05:00
|
|
|
// reexported from `clean` so it can be easily updated with the mod itself
|
|
|
|
pub use clean::SCHEMA_VERSION;
|
|
|
|
|
2015-01-06 11:24:46 -06:00
|
|
|
#[macro_use]
|
2014-12-18 22:09:57 -06:00
|
|
|
pub mod externalfiles;
|
|
|
|
|
2013-09-22 01:25:48 -05:00
|
|
|
pub mod clean;
|
|
|
|
pub mod core;
|
|
|
|
pub mod doctree;
|
2013-03-01 12:44:43 -06:00
|
|
|
pub mod fold;
|
2013-09-22 01:25:48 -05:00
|
|
|
pub mod html {
|
2014-02-20 03:14:51 -06:00
|
|
|
pub mod highlight;
|
2013-09-27 17:12:23 -05:00
|
|
|
pub mod escape;
|
2014-04-09 02:49:31 -05:00
|
|
|
pub mod item_type;
|
2013-09-27 17:12:23 -05:00
|
|
|
pub mod format;
|
2013-09-22 01:25:48 -05:00
|
|
|
pub mod layout;
|
|
|
|
pub mod markdown;
|
2013-09-27 17:12:23 -05:00
|
|
|
pub mod render;
|
2014-03-07 08:13:17 -06:00
|
|
|
pub mod toc;
|
2013-09-22 01:25:48 -05:00
|
|
|
}
|
2014-03-06 21:31:41 -06:00
|
|
|
pub mod markdown;
|
2013-09-22 01:25:48 -05:00
|
|
|
pub mod passes;
|
|
|
|
pub mod plugins;
|
2014-07-04 02:51:46 -05:00
|
|
|
pub mod stability_summary;
|
2013-09-22 01:25:48 -05:00
|
|
|
pub mod visit_ast;
|
2013-12-22 13:23:04 -06:00
|
|
|
pub mod test;
|
2014-03-16 03:08:56 -05:00
|
|
|
mod flock;
|
2013-09-22 01:25:48 -05:00
|
|
|
|
2013-09-23 18:25:58 -05:00
|
|
|
type Pass = (&'static str, // name
|
2014-02-13 22:23:01 -06:00
|
|
|
fn(clean::Crate) -> plugins::PluginResult, // fn
|
2013-09-23 18:25:58 -05:00
|
|
|
&'static str); // description
|
|
|
|
|
|
|
|
static PASSES: &'static [Pass] = &[
|
|
|
|
("strip-hidden", passes::strip_hidden,
|
|
|
|
"strips all doc(hidden) items from the output"),
|
|
|
|
("unindent-comments", passes::unindent_comments,
|
|
|
|
"removes excess indentation on comments in order for markdown to like it"),
|
|
|
|
("collapse-docs", passes::collapse_docs,
|
|
|
|
"concatenates all document attributes into one document attribute"),
|
2013-09-24 15:55:22 -05:00
|
|
|
("strip-private", passes::strip_private,
|
|
|
|
"strips all private items from a crate which cannot be seen externally"),
|
2013-09-23 18:25:58 -05:00
|
|
|
];
|
|
|
|
|
|
|
|
static DEFAULT_PASSES: &'static [&'static str] = &[
|
2013-09-24 16:09:11 -05:00
|
|
|
"strip-hidden",
|
2013-09-24 15:55:22 -05:00
|
|
|
"strip-private",
|
2013-09-24 18:08:07 -05:00
|
|
|
"collapse-docs",
|
|
|
|
"unindent-comments",
|
2013-09-23 18:25:58 -05:00
|
|
|
];
|
|
|
|
|
2014-11-14 16:20:57 -06:00
|
|
|
thread_local!(pub static ANALYSISKEY: Rc<RefCell<Option<core::CrateAnalysis>>> = {
|
|
|
|
Rc::new(RefCell::new(None))
|
2014-11-14 11:18:10 -06:00
|
|
|
});
|
2013-09-22 01:25:48 -05:00
|
|
|
|
2014-11-09 18:09:17 -06:00
|
|
|
struct Output {
|
|
|
|
krate: clean::Crate,
|
|
|
|
json_plugins: Vec<plugins::PluginJson>,
|
|
|
|
passes: Vec<String>,
|
|
|
|
}
|
2012-11-18 19:56:50 -06:00
|
|
|
|
2013-03-01 12:44:43 -06:00
|
|
|
pub fn main() {
|
2014-12-14 02:05:32 -06:00
|
|
|
static STACK_SIZE: uint = 32000000; // 32MB
|
2015-01-05 23:59:45 -06:00
|
|
|
let res = std::thread::Builder::new().stack_size(STACK_SIZE).scoped(move || {
|
2014-12-14 02:05:32 -06:00
|
|
|
main_args(std::os::args().as_slice())
|
|
|
|
}).join();
|
2015-01-20 17:45:07 -06:00
|
|
|
std::os::set_exit_status(res.ok().unwrap());
|
2013-09-22 01:25:48 -05:00
|
|
|
}
|
|
|
|
|
2014-03-05 17:28:08 -06:00
|
|
|
pub fn opts() -> Vec<getopts::OptGroup> {
|
2014-02-03 21:14:40 -06:00
|
|
|
use getopts::*;
|
2014-03-05 17:28:08 -06:00
|
|
|
vec!(
|
2013-09-30 14:58:18 -05:00
|
|
|
optflag("h", "help", "show this help message"),
|
2014-12-30 15:27:02 -06:00
|
|
|
optflag("V", "version", "print rustdoc's version"),
|
|
|
|
optflag("v", "verbose", "use verbose output"),
|
2013-09-30 14:58:18 -05:00
|
|
|
optopt("r", "input-format", "the input type of the specified file",
|
|
|
|
"[rust|json]"),
|
|
|
|
optopt("w", "output-format", "the output type to write",
|
|
|
|
"[html|json]"),
|
|
|
|
optopt("o", "output", "where to place the output", "PATH"),
|
2014-07-23 23:46:49 -05:00
|
|
|
optopt("", "crate-name", "specify the name of this crate", "NAME"),
|
2013-09-22 01:25:48 -05:00
|
|
|
optmulti("L", "library-path", "directory to add to crate search path",
|
|
|
|
"DIR"),
|
2013-11-24 22:31:21 -06:00
|
|
|
optmulti("", "cfg", "pass a --cfg to rustc", ""),
|
2014-07-20 01:02:14 -05:00
|
|
|
optmulti("", "extern", "pass an --extern to rustc", "NAME=PATH"),
|
2013-09-22 01:25:48 -05:00
|
|
|
optmulti("", "plugin-path", "directory to load plugins from", "DIR"),
|
2013-09-23 18:25:58 -05:00
|
|
|
optmulti("", "passes", "space separated list of passes to also run, a \
|
|
|
|
value of `list` will print available passes",
|
2013-09-22 01:25:48 -05:00
|
|
|
"PASSES"),
|
|
|
|
optmulti("", "plugins", "space separated list of plugins to also load",
|
|
|
|
"PLUGINS"),
|
2013-09-30 15:28:30 -05:00
|
|
|
optflag("", "no-defaults", "don't run the default passes"),
|
2013-12-22 13:23:04 -06:00
|
|
|
optflag("", "test", "run code examples as tests"),
|
|
|
|
optmulti("", "test-args", "arguments to pass to the test runner",
|
|
|
|
"ARGS"),
|
2014-07-25 09:55:25 -05:00
|
|
|
optopt("", "target", "target triple to document", "TRIPLE"),
|
2014-03-06 21:31:41 -06:00
|
|
|
optmulti("", "markdown-css", "CSS files to include via <link> in a rendered Markdown file",
|
|
|
|
"FILES"),
|
2014-06-28 05:35:25 -05:00
|
|
|
optmulti("", "html-in-header",
|
|
|
|
"files to include inline in the <head> section of a rendered Markdown file \
|
|
|
|
or generated documentation",
|
2014-03-06 21:31:41 -06:00
|
|
|
"FILES"),
|
2014-06-28 05:35:25 -05:00
|
|
|
optmulti("", "html-before-content",
|
2014-03-06 21:31:41 -06:00
|
|
|
"files to include inline between <body> and the content of a rendered \
|
2014-06-28 05:35:25 -05:00
|
|
|
Markdown file or generated documentation",
|
2014-03-06 21:31:41 -06:00
|
|
|
"FILES"),
|
2014-06-28 05:35:25 -05:00
|
|
|
optmulti("", "html-after-content",
|
2014-03-06 21:31:41 -06:00
|
|
|
"files to include inline between the content and </body> of a rendered \
|
2014-06-28 05:35:25 -05:00
|
|
|
Markdown file or generated documentation",
|
2014-06-06 11:12:18 -05:00
|
|
|
"FILES"),
|
|
|
|
optopt("", "markdown-playground-url",
|
2014-07-23 17:43:03 -05:00
|
|
|
"URL to send code snippets to", "URL"),
|
|
|
|
optflag("", "markdown-no-toc", "don't include table of contents")
|
2014-03-05 17:28:08 -06:00
|
|
|
)
|
2013-09-22 01:25:48 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
pub fn usage(argv0: &str) {
|
2014-03-05 17:28:08 -06:00
|
|
|
println!("{}",
|
2014-05-16 12:45:16 -05:00
|
|
|
getopts::usage(format!("{} [options] <input>", argv0).as_slice(),
|
2014-03-05 17:28:08 -06:00
|
|
|
opts().as_slice()));
|
2013-08-22 04:41:33 -05:00
|
|
|
}
|
2012-11-18 19:56:50 -06:00
|
|
|
|
2014-05-22 18:57:53 -05:00
|
|
|
pub fn main_args(args: &[String]) -> int {
|
2014-05-14 23:39:11 -05:00
|
|
|
let matches = match getopts::getopts(args.tail(), opts().as_slice()) {
|
2014-01-10 08:05:54 -06:00
|
|
|
Ok(m) => m,
|
|
|
|
Err(err) => {
|
2014-06-13 20:11:09 -05:00
|
|
|
println!("{}", err);
|
2014-01-10 08:05:54 -06:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
};
|
2013-09-22 01:25:48 -05:00
|
|
|
if matches.opt_present("h") || matches.opt_present("help") {
|
2014-05-12 15:44:59 -05:00
|
|
|
usage(args[0].as_slice());
|
2013-09-24 18:34:23 -05:00
|
|
|
return 0;
|
2014-01-10 12:05:26 -06:00
|
|
|
} else if matches.opt_present("version") {
|
2014-12-15 18:03:39 -06:00
|
|
|
rustc_driver::version("rustdoc", &matches);
|
|
|
|
return 0;
|
2012-11-18 19:56:50 -06:00
|
|
|
}
|
|
|
|
|
2014-11-21 00:20:04 -06:00
|
|
|
if matches.opt_strs("passes") == ["list"] {
|
2014-07-21 17:37:04 -05:00
|
|
|
println!("Available passes for running rustdoc:");
|
|
|
|
for &(name, _, description) in PASSES.iter() {
|
2014-11-17 13:29:38 -06:00
|
|
|
println!("{:>20} - {}", name, description);
|
2014-07-21 17:37:04 -05:00
|
|
|
}
|
|
|
|
println!("{}", "\nDefault passes for rustdoc:"); // FIXME: #9970
|
|
|
|
for &name in DEFAULT_PASSES.iter() {
|
2014-11-17 13:29:38 -06:00
|
|
|
println!("{:>20}", name);
|
2014-07-21 17:37:04 -05:00
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2013-12-22 13:23:04 -06:00
|
|
|
if matches.free.len() == 0 {
|
2014-01-09 04:06:55 -06:00
|
|
|
println!("expected an input file to act on");
|
2013-12-22 13:23:04 -06:00
|
|
|
return 1;
|
|
|
|
} if matches.free.len() > 1 {
|
2014-01-09 04:06:55 -06:00
|
|
|
println!("only one input file may be specified");
|
2013-12-22 13:23:04 -06:00
|
|
|
return 1;
|
|
|
|
}
|
2014-07-14 18:37:25 -05:00
|
|
|
let input = matches.free[0].as_slice();
|
2013-12-22 13:23:04 -06:00
|
|
|
|
2014-12-16 16:32:02 -06:00
|
|
|
let mut libs = SearchPaths::new();
|
|
|
|
for s in matches.opt_strs("L").iter() {
|
|
|
|
libs.add_path(s.as_slice());
|
|
|
|
}
|
2014-07-20 01:02:14 -05:00
|
|
|
let externs = match parse_externs(&matches) {
|
|
|
|
Ok(ex) => ex,
|
|
|
|
Err(err) => {
|
|
|
|
println!("{}", err);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
};
|
2014-03-06 21:31:41 -06:00
|
|
|
|
|
|
|
let test_args = matches.opt_strs("test-args");
|
2014-05-22 18:57:53 -05:00
|
|
|
let test_args: Vec<String> = test_args.iter()
|
2015-01-26 20:21:15 -06:00
|
|
|
.flat_map(|s| s.words())
|
2014-05-25 05:17:19 -05:00
|
|
|
.map(|s| s.to_string())
|
2014-05-12 15:44:59 -05:00
|
|
|
.collect();
|
2014-03-06 21:31:41 -06:00
|
|
|
|
|
|
|
let should_test = matches.opt_present("test");
|
|
|
|
let markdown_input = input.ends_with(".md") || input.ends_with(".markdown");
|
|
|
|
|
|
|
|
let output = matches.opt_str("o").map(|s| Path::new(s));
|
2014-04-01 17:04:42 -05:00
|
|
|
let cfgs = matches.opt_strs("cfg");
|
2014-03-06 21:31:41 -06:00
|
|
|
|
2014-06-28 05:35:25 -05:00
|
|
|
let external_html = match ExternalHtml::load(
|
|
|
|
matches.opt_strs("html-in-header").as_slice(),
|
|
|
|
matches.opt_strs("html-before-content").as_slice(),
|
|
|
|
matches.opt_strs("html-after-content").as_slice()) {
|
|
|
|
Some(eh) => eh,
|
|
|
|
None => return 3
|
|
|
|
};
|
2014-07-31 22:14:59 -05:00
|
|
|
let crate_name = matches.opt_str("crate-name");
|
2014-06-28 05:35:25 -05:00
|
|
|
|
2014-03-06 21:31:41 -06:00
|
|
|
match (should_test, markdown_input) {
|
2014-03-05 17:28:08 -06:00
|
|
|
(true, true) => {
|
2014-07-20 01:02:14 -05:00
|
|
|
return markdown::test(input, libs, externs, test_args)
|
2014-03-05 17:28:08 -06:00
|
|
|
}
|
2014-05-12 15:44:59 -05:00
|
|
|
(true, false) => {
|
2014-07-31 22:14:59 -05:00
|
|
|
return test::run(input, cfgs, libs, externs, test_args, crate_name)
|
2014-05-12 15:44:59 -05:00
|
|
|
}
|
2014-03-06 21:31:41 -06:00
|
|
|
(false, true) => return markdown::render(input, output.unwrap_or(Path::new("doc")),
|
2014-07-23 17:43:03 -05:00
|
|
|
&matches, &external_html,
|
|
|
|
!matches.opt_present("markdown-no-toc")),
|
2014-03-06 21:31:41 -06:00
|
|
|
(false, false) => {}
|
2013-12-22 13:23:04 -06:00
|
|
|
}
|
|
|
|
|
2014-11-09 18:09:17 -06:00
|
|
|
let out = match acquire_input(input, externs, &matches) {
|
|
|
|
Ok(out) => out,
|
2013-09-30 14:58:18 -05:00
|
|
|
Err(s) => {
|
|
|
|
println!("input error: {}", s);
|
2013-09-24 18:34:23 -05:00
|
|
|
return 1;
|
2013-09-22 01:25:48 -05:00
|
|
|
}
|
2013-09-30 14:58:18 -05:00
|
|
|
};
|
2014-11-09 18:09:17 -06:00
|
|
|
let Output { krate, json_plugins, passes, } = out;
|
2013-10-21 15:08:31 -05:00
|
|
|
info!("going to format");
|
2014-03-07 15:15:50 -06:00
|
|
|
match matches.opt_str("w").as_ref().map(|s| s.as_slice()) {
|
|
|
|
Some("html") | None => {
|
2014-11-09 18:09:17 -06:00
|
|
|
match html::render::run(krate, &external_html, output.unwrap_or(Path::new("doc")),
|
|
|
|
passes.into_iter().collect()) {
|
2014-01-30 13:30:21 -06:00
|
|
|
Ok(()) => {}
|
2014-10-09 14:17:22 -05:00
|
|
|
Err(e) => panic!("failed to generate documentation: {}", e),
|
2014-01-30 13:30:21 -06:00
|
|
|
}
|
2013-09-22 01:25:48 -05:00
|
|
|
}
|
2014-03-07 15:15:50 -06:00
|
|
|
Some("json") => {
|
2014-11-09 18:09:17 -06:00
|
|
|
match json_output(krate, json_plugins,
|
|
|
|
output.unwrap_or(Path::new("doc.json"))) {
|
2014-01-30 13:30:21 -06:00
|
|
|
Ok(()) => {}
|
2014-10-09 14:17:22 -05:00
|
|
|
Err(e) => panic!("failed to write json: {}", e),
|
2014-01-30 13:30:21 -06:00
|
|
|
}
|
2013-09-22 01:25:48 -05:00
|
|
|
}
|
2013-09-30 14:58:18 -05:00
|
|
|
Some(s) => {
|
|
|
|
println!("unknown output format: {}", s);
|
2013-09-24 18:34:23 -05:00
|
|
|
return 1;
|
2013-09-22 01:25:48 -05:00
|
|
|
}
|
2013-09-30 14:58:18 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Looks inside the command line arguments to extract the relevant input format
|
|
|
|
/// and files and then generates the necessary rustdoc output for formatting.
|
2013-12-22 13:23:04 -06:00
|
|
|
fn acquire_input(input: &str,
|
2014-07-20 01:02:14 -05:00
|
|
|
externs: core::Externs,
|
2014-05-22 18:57:53 -05:00
|
|
|
matches: &getopts::Matches) -> Result<Output, String> {
|
2014-03-07 15:15:50 -06:00
|
|
|
match matches.opt_str("r").as_ref().map(|s| s.as_slice()) {
|
2014-07-20 01:02:14 -05:00
|
|
|
Some("rust") => Ok(rust_input(input, externs, matches)),
|
2014-03-07 15:15:50 -06:00
|
|
|
Some("json") => json_input(input),
|
2014-05-27 22:44:58 -05:00
|
|
|
Some(s) => Err(format!("unknown input format: {}", s)),
|
2013-09-30 14:58:18 -05:00
|
|
|
None => {
|
|
|
|
if input.ends_with(".json") {
|
|
|
|
json_input(input)
|
|
|
|
} else {
|
2014-07-20 01:02:14 -05:00
|
|
|
Ok(rust_input(input, externs, matches))
|
2013-09-30 14:58:18 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-07-20 01:02:14 -05:00
|
|
|
/// Extracts `--extern CRATE=PATH` arguments from `matches` and
|
|
|
|
/// returns a `HashMap` mapping crate names to their paths or else an
|
|
|
|
/// error message.
|
|
|
|
fn parse_externs(matches: &getopts::Matches) -> Result<core::Externs, String> {
|
|
|
|
let mut externs = HashMap::new();
|
|
|
|
for arg in matches.opt_strs("extern").iter() {
|
2014-11-27 13:19:27 -06:00
|
|
|
let mut parts = arg.splitn(1, '=');
|
2014-07-20 01:02:14 -05:00
|
|
|
let name = match parts.next() {
|
|
|
|
Some(s) => s,
|
|
|
|
None => {
|
|
|
|
return Err("--extern value must not be empty".to_string());
|
|
|
|
}
|
|
|
|
};
|
|
|
|
let location = match parts.next() {
|
|
|
|
Some(s) => s,
|
|
|
|
None => {
|
|
|
|
return Err("--extern value must be of the format `foo=bar`".to_string());
|
|
|
|
}
|
|
|
|
};
|
2015-01-04 13:07:32 -06:00
|
|
|
let name = name.to_string();
|
2015-01-06 10:36:30 -06:00
|
|
|
let locs = externs.entry(name).get().unwrap_or_else(
|
2015-01-04 13:07:32 -06:00
|
|
|
|vacant_entry| vacant_entry.insert(Vec::with_capacity(1)));
|
2014-07-20 01:02:14 -05:00
|
|
|
locs.push(location.to_string());
|
|
|
|
}
|
|
|
|
Ok(externs)
|
|
|
|
}
|
|
|
|
|
2013-09-30 14:58:18 -05:00
|
|
|
/// Interprets the input file as a rust source file, passing it through the
|
|
|
|
/// compiler all the way through the analysis passes. The rustdoc output is then
|
|
|
|
/// generated from the cleaned AST of the crate.
|
|
|
|
///
|
|
|
|
/// This form of input will run all of the plug/cleaning passes
|
2014-07-20 01:02:14 -05:00
|
|
|
fn rust_input(cratefile: &str, externs: core::Externs, matches: &getopts::Matches) -> Output {
|
2013-09-30 15:28:30 -05:00
|
|
|
let mut default_passes = !matches.opt_present("no-defaults");
|
2013-09-30 14:58:18 -05:00
|
|
|
let mut passes = matches.opt_strs("passes");
|
2014-06-26 01:15:14 -05:00
|
|
|
let mut plugins = matches.opt_strs("plugins");
|
2012-11-18 19:56:50 -06:00
|
|
|
|
2013-09-22 01:25:48 -05:00
|
|
|
// First, parse the crate and extract all relevant information.
|
2014-12-16 16:32:02 -06:00
|
|
|
let mut paths = SearchPaths::new();
|
|
|
|
for s in matches.opt_strs("L").iter() {
|
|
|
|
paths.add_path(s.as_slice());
|
|
|
|
}
|
2013-12-03 18:44:16 -06:00
|
|
|
let cfgs = matches.opt_strs("cfg");
|
2014-07-25 09:55:25 -05:00
|
|
|
let triple = matches.opt_str("target");
|
2014-07-20 01:02:14 -05:00
|
|
|
|
2013-12-03 18:44:16 -06:00
|
|
|
let cr = Path::new(cratefile);
|
2013-10-21 15:08:31 -05:00
|
|
|
info!("starting to run rustc");
|
2014-12-06 20:34:37 -06:00
|
|
|
|
2015-01-05 23:59:45 -06:00
|
|
|
let (mut krate, analysis) = std::thread::Thread::scoped(move |:| {
|
2015-01-17 23:02:31 -06:00
|
|
|
use rustc::session::config::Input;
|
|
|
|
|
2013-12-03 18:44:16 -06:00
|
|
|
let cr = cr;
|
2015-01-17 23:02:31 -06:00
|
|
|
core::run_core(paths, cfgs, externs, Input::File(cr), triple)
|
2014-12-06 20:34:37 -06:00
|
|
|
}).join().map_err(|_| "rustc failed").unwrap();
|
2013-10-21 15:08:31 -05:00
|
|
|
info!("finished with rustc");
|
2014-11-14 16:20:57 -06:00
|
|
|
let mut analysis = Some(analysis);
|
|
|
|
ANALYSISKEY.with(|s| {
|
|
|
|
*s.borrow_mut() = analysis.take();
|
|
|
|
});
|
2013-09-22 01:25:48 -05:00
|
|
|
|
2014-07-23 23:46:49 -05:00
|
|
|
match matches.opt_str("crate-name") {
|
|
|
|
Some(name) => krate.name = name,
|
|
|
|
None => {}
|
|
|
|
}
|
|
|
|
|
2013-09-22 01:25:48 -05:00
|
|
|
// Process all of the crate attributes, extracting plugin metadata along
|
|
|
|
// with the passes which we are supposed to run.
|
2014-08-18 19:52:38 -05:00
|
|
|
match krate.module.as_ref().unwrap().doc_list() {
|
2013-09-22 01:25:48 -05:00
|
|
|
Some(nested) => {
|
|
|
|
for inner in nested.iter() {
|
|
|
|
match *inner {
|
2014-05-12 15:44:59 -05:00
|
|
|
clean::Word(ref x)
|
2014-11-27 13:19:27 -06:00
|
|
|
if "no_default_passes" == *x => {
|
2013-09-22 01:25:48 -05:00
|
|
|
default_passes = false;
|
|
|
|
}
|
2014-05-12 15:44:59 -05:00
|
|
|
clean::NameValue(ref x, ref value)
|
2014-11-27 13:19:27 -06:00
|
|
|
if "passes" == *x => {
|
|
|
|
for pass in value.words() {
|
2014-05-25 05:17:19 -05:00
|
|
|
passes.push(pass.to_string());
|
2013-09-22 01:25:48 -05:00
|
|
|
}
|
|
|
|
}
|
2014-05-12 15:44:59 -05:00
|
|
|
clean::NameValue(ref x, ref value)
|
2014-11-27 13:19:27 -06:00
|
|
|
if "plugins" == *x => {
|
|
|
|
for p in value.words() {
|
2014-05-25 05:17:19 -05:00
|
|
|
plugins.push(p.to_string());
|
2013-09-22 01:25:48 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
_ => {}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
None => {}
|
|
|
|
}
|
|
|
|
if default_passes {
|
Deprecate the rev_iter pattern in all places where a DoubleEndedIterator is provided (everywhere but treemap)
This commit deprecates rev_iter, mut_rev_iter, move_rev_iter everywhere (except treemap) and also
deprecates related functions like rsplit, rev_components, and rev_str_components. In every case,
these functions can be replaced with the non-reversed form followed by a call to .rev(). To make this
more concrete, a translation table for all functional changes necessary follows:
* container.rev_iter() -> container.iter().rev()
* container.mut_rev_iter() -> container.mut_iter().rev()
* container.move_rev_iter() -> container.move_iter().rev()
* sliceorstr.rsplit(sep) -> sliceorstr.split(sep).rev()
* path.rev_components() -> path.components().rev()
* path.rev_str_components() -> path.str_components().rev()
In terms of the type system, this change also deprecates any specialized reversed iterator types (except
in treemap), opting instead to use Rev directly if any type annotations are needed. However, since
methods directly returning reversed iterators are now discouraged, the need for such annotations should
be small. However, in those cases, the general pattern for conversion is to take whatever follows Rev in
the original reversed name and surround it with Rev<>:
* RevComponents<'a> -> Rev<Components<'a>>
* RevStrComponents<'a> -> Rev<StrComponents<'a>>
* RevItems<'a, T> -> Rev<Items<'a, T>>
* etc.
The reasoning behind this change is that it makes the standard API much simpler without reducing readability,
performance, or power. The presence of functions such as rev_iter adds more boilerplate code to libraries
(all of which simply call .iter().rev()), clutters up the documentation, and only helps code by saving two
characters. Additionally, the numerous type synonyms that were used to make the type signatures look nice
like RevItems add even more boilerplate and clutter up the docs even more. With this change, all that cruft
goes away.
[breaking-change]
2014-04-20 23:59:12 -05:00
|
|
|
for name in DEFAULT_PASSES.iter().rev() {
|
2014-07-14 15:54:10 -05:00
|
|
|
passes.insert(0, name.to_string());
|
2013-09-23 18:25:58 -05:00
|
|
|
}
|
2013-09-22 01:25:48 -05:00
|
|
|
}
|
2012-11-18 19:56:50 -06:00
|
|
|
|
2013-09-22 01:25:48 -05:00
|
|
|
// Load all plugins/passes into a PluginManager
|
2014-05-14 23:39:11 -05:00
|
|
|
let path = matches.opt_str("plugin-path")
|
2014-05-25 05:17:19 -05:00
|
|
|
.unwrap_or("/tmp/rustdoc/plugins".to_string());
|
2013-12-03 21:15:12 -06:00
|
|
|
let mut pm = plugins::PluginManager::new(Path::new(path));
|
2013-09-22 01:25:48 -05:00
|
|
|
for pass in passes.iter() {
|
2014-05-14 23:39:11 -05:00
|
|
|
let plugin = match PASSES.iter()
|
|
|
|
.position(|&(p, _, _)| {
|
2014-11-27 13:19:27 -06:00
|
|
|
p == *pass
|
2014-05-14 23:39:11 -05:00
|
|
|
}) {
|
2014-12-09 11:58:15 -06:00
|
|
|
Some(i) => PASSES[i].1,
|
2013-09-23 18:25:58 -05:00
|
|
|
None => {
|
2013-10-21 15:08:31 -05:00
|
|
|
error!("unknown pass {}, skipping", *pass);
|
2013-10-01 16:31:03 -05:00
|
|
|
continue
|
2013-09-23 18:25:58 -05:00
|
|
|
},
|
2013-09-22 01:25:48 -05:00
|
|
|
};
|
|
|
|
pm.add_plugin(plugin);
|
|
|
|
}
|
2013-10-21 15:08:31 -05:00
|
|
|
info!("loading plugins...");
|
2014-09-14 22:27:36 -05:00
|
|
|
for pname in plugins.into_iter() {
|
2013-09-22 01:25:48 -05:00
|
|
|
pm.load_plugin(pname);
|
|
|
|
}
|
2012-11-18 19:56:50 -06:00
|
|
|
|
2013-09-22 01:25:48 -05:00
|
|
|
// Run everything!
|
2013-10-21 15:08:31 -05:00
|
|
|
info!("Executing passes/plugins");
|
2014-11-09 18:09:17 -06:00
|
|
|
let (krate, json) = pm.run_plugins(krate);
|
|
|
|
return Output { krate: krate, json_plugins: json, passes: passes, };
|
2013-09-30 14:58:18 -05:00
|
|
|
}
|
2012-11-18 19:56:50 -06:00
|
|
|
|
2013-09-30 14:58:18 -05:00
|
|
|
/// This input format purely deserializes the json output file. No passes are
|
|
|
|
/// run over the deserialized output.
|
2014-05-22 18:57:53 -05:00
|
|
|
fn json_input(input: &str) -> Result<Output, String> {
|
2013-12-30 19:17:45 -06:00
|
|
|
let mut input = match File::open(&Path::new(input)) {
|
2014-01-30 13:30:21 -06:00
|
|
|
Ok(f) => f,
|
2014-05-12 15:44:59 -05:00
|
|
|
Err(e) => {
|
2014-05-27 22:44:58 -05:00
|
|
|
return Err(format!("couldn't open {}: {}", input, e))
|
2014-05-12 15:44:59 -05:00
|
|
|
}
|
2013-09-30 14:58:18 -05:00
|
|
|
};
|
2013-12-30 19:17:45 -06:00
|
|
|
match json::from_reader(&mut input) {
|
2014-12-20 02:09:35 -06:00
|
|
|
Err(s) => Err(format!("{:?}", s)),
|
2014-11-26 12:21:45 -06:00
|
|
|
Ok(Json::Object(obj)) => {
|
2013-09-30 14:58:18 -05:00
|
|
|
let mut obj = obj;
|
|
|
|
// Make sure the schema is what we expect
|
2014-11-06 11:25:16 -06:00
|
|
|
match obj.remove(&"schema".to_string()) {
|
2014-11-26 12:21:45 -06:00
|
|
|
Some(Json::String(version)) => {
|
2014-11-27 13:19:27 -06:00
|
|
|
if version != SCHEMA_VERSION {
|
2014-05-27 22:44:58 -05:00
|
|
|
return Err(format!(
|
2014-05-12 15:44:59 -05:00
|
|
|
"sorry, but I only understand version {}",
|
|
|
|
SCHEMA_VERSION))
|
2013-09-30 14:58:18 -05:00
|
|
|
}
|
|
|
|
}
|
2014-05-25 05:17:19 -05:00
|
|
|
Some(..) => return Err("malformed json".to_string()),
|
|
|
|
None => return Err("expected a schema version".to_string()),
|
2013-09-30 14:58:18 -05:00
|
|
|
}
|
2014-11-06 11:25:16 -06:00
|
|
|
let krate = match obj.remove(&"crate".to_string()) {
|
2013-09-30 14:58:18 -05:00
|
|
|
Some(json) => {
|
2013-12-03 21:18:35 -06:00
|
|
|
let mut d = json::Decoder::new(json);
|
2014-03-28 19:05:46 -05:00
|
|
|
Decodable::decode(&mut d).unwrap()
|
2013-09-30 14:58:18 -05:00
|
|
|
}
|
2014-05-25 05:17:19 -05:00
|
|
|
None => return Err("malformed json".to_string()),
|
2013-09-30 14:58:18 -05:00
|
|
|
};
|
2014-01-26 02:43:42 -06:00
|
|
|
// FIXME: this should read from the "plugins" field, but currently
|
2013-09-30 14:58:18 -05:00
|
|
|
// Json doesn't implement decodable...
|
2014-03-05 17:28:08 -06:00
|
|
|
let plugin_output = Vec::new();
|
2014-11-09 18:09:17 -06:00
|
|
|
Ok(Output { krate: krate, json_plugins: plugin_output, passes: Vec::new(), })
|
2013-09-30 14:58:18 -05:00
|
|
|
}
|
2014-05-12 15:44:59 -05:00
|
|
|
Ok(..) => {
|
|
|
|
Err("malformed json input: expected an object at the \
|
2014-05-25 05:17:19 -05:00
|
|
|
top".to_string())
|
2014-05-12 15:44:59 -05:00
|
|
|
}
|
2013-09-22 01:25:48 -05:00
|
|
|
}
|
|
|
|
}
|
2012-11-18 19:56:50 -06:00
|
|
|
|
2013-09-30 14:58:18 -05:00
|
|
|
/// Outputs the crate/plugin json as a giant json blob at the specified
|
|
|
|
/// destination.
|
2014-03-05 17:28:08 -06:00
|
|
|
fn json_output(krate: clean::Crate, res: Vec<plugins::PluginJson> ,
|
2015-01-22 18:31:00 -06:00
|
|
|
dst: Path) -> old_io::IoResult<()> {
|
2013-09-22 01:25:48 -05:00
|
|
|
// {
|
|
|
|
// "schema": version,
|
|
|
|
// "crate": { parsed crate ... },
|
|
|
|
// "plugins": { output of plugins ... }
|
|
|
|
// }
|
2014-12-17 09:16:10 -06:00
|
|
|
let mut json = std::collections::BTreeMap::new();
|
2014-11-26 12:21:45 -06:00
|
|
|
json.insert("schema".to_string(), Json::String(SCHEMA_VERSION.to_string()));
|
2014-09-14 22:27:36 -05:00
|
|
|
let plugins_json = res.into_iter()
|
2014-06-28 12:28:29 -05:00
|
|
|
.filter_map(|opt| {
|
|
|
|
match opt {
|
|
|
|
None => None,
|
|
|
|
Some((string, json)) => {
|
|
|
|
Some((string.to_string(), json))
|
2014-05-12 15:44:59 -05:00
|
|
|
}
|
2014-06-28 12:28:29 -05:00
|
|
|
}
|
|
|
|
}).collect();
|
2013-09-22 01:25:48 -05:00
|
|
|
|
|
|
|
// FIXME #8335: yuck, Rust -> str -> JSON round trip! No way to .encode
|
|
|
|
// straight to the Rust JSON representation.
|
2014-12-12 12:59:41 -06:00
|
|
|
let crate_json_str = format!("{}", json::as_json(&krate));
|
2014-05-14 23:16:44 -05:00
|
|
|
let crate_json = match json::from_str(crate_json_str.as_slice()) {
|
2013-09-22 01:25:48 -05:00
|
|
|
Ok(j) => j,
|
2014-12-20 02:09:35 -06:00
|
|
|
Err(e) => panic!("Rust generated JSON is invalid: {:?}", e)
|
2013-09-22 01:25:48 -05:00
|
|
|
};
|
2012-11-18 19:56:50 -06:00
|
|
|
|
2014-05-25 05:17:19 -05:00
|
|
|
json.insert("crate".to_string(), crate_json);
|
2014-11-26 12:21:45 -06:00
|
|
|
json.insert("plugins".to_string(), Json::Object(plugins_json));
|
2013-09-22 01:25:48 -05:00
|
|
|
|
2014-02-19 12:07:49 -06:00
|
|
|
let mut file = try!(File::create(&dst));
|
2014-12-12 12:59:41 -06:00
|
|
|
write!(&mut file, "{}", Json::Object(json))
|
2012-11-18 19:56:50 -06:00
|
|
|
}
|