1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
use super::BuildError;
use super::BuildOptions;
use std::{
ffi::OsStr,
path::{Path, PathBuf},
process::Command,
};
const OVERRIDDEN_TOOLCHAIN: Option<&str> = option_env!("RUSTDOC_JSON_OVERRIDDEN_TOOLCHAIN_HACK");
pub(crate) fn run_cargo_rustdoc(options: BuildOptions) -> Result<PathBuf, BuildError> {
let output = cargo_rustdoc_command(
options.toolchain.as_deref(),
&options.manifest_path,
options.quiet,
)
.output()?;
if output.status.success() {
rustdoc_json_path_for_manifest_path(options.manifest_path)
} else {
let stderr = String::from_utf8_lossy(&output.stderr).to_string();
if stderr.contains("is a virtual manifest, but this command requires running against an actual package in this workspace") {
Err(BuildError::VirtualManifest(
options.manifest_path,
))
} else {
Err(BuildError::General(stderr))
}
}
}
fn cargo_rustdoc_command(
requested_toolchain: Option<&OsStr>,
manifest_path: impl AsRef<Path>,
quiet: bool,
) -> Command {
let mut command = Command::new("cargo");
command.env_remove("RUSTDOC");
command.env_remove("RUSTC");
let overridden_toolchain = OVERRIDDEN_TOOLCHAIN.map(OsStr::new);
if let Some(toolchain) = overridden_toolchain.or(requested_toolchain) {
command.arg(toolchain);
}
command.arg("rustdoc");
command.arg("--lib");
if quiet {
command.arg("--quiet");
}
command.arg("--manifest-path");
command.arg(manifest_path.as_ref());
command.arg("--");
command.args(["-Z", "unstable-options"]);
command.args(["--output-format", "json"]);
command.args(["--cap-lints", "warn"]);
command
}
fn rustdoc_json_path_for_manifest_path(
manifest_path: impl AsRef<Path>,
) -> Result<PathBuf, BuildError> {
let target_dir = target_directory(&manifest_path)?;
let lib_name = package_name(&manifest_path)?;
let mut rustdoc_json_path = target_dir;
rustdoc_json_path.push("doc");
rustdoc_json_path.push(lib_name.replace('-', "_"));
rustdoc_json_path.set_extension("json");
Ok(rustdoc_json_path)
}
fn target_directory(manifest_path: impl AsRef<Path>) -> Result<PathBuf, BuildError> {
let mut metadata_cmd = cargo_metadata::MetadataCommand::new();
metadata_cmd.manifest_path(manifest_path.as_ref());
let metadata = metadata_cmd.exec()?;
Ok(metadata.target_directory.as_std_path().to_owned())
}
fn package_name(manifest_path: impl AsRef<Path>) -> Result<String, BuildError> {
let manifest = cargo_toml::Manifest::from_path(&manifest_path)?;
Ok(manifest
.package
.ok_or_else(|| BuildError::VirtualManifest(manifest_path.as_ref().to_owned()))?
.name)
}
impl Default for BuildOptions {
fn default() -> Self {
Self {
toolchain: None,
manifest_path: PathBuf::from("Cargo.toml"),
quiet: false,
}
}
}
impl BuildOptions {
#[must_use]
pub fn toolchain(mut self, toolchain: impl AsRef<OsStr>) -> Self {
self.toolchain = Some(toolchain.as_ref().to_owned());
self
}
#[must_use]
pub fn manifest_path(mut self, manifest_path: impl AsRef<Path>) -> Self {
self.manifest_path = manifest_path.as_ref().to_owned();
self
}
#[must_use]
pub fn quiet(mut self, quiet: bool) -> Self {
self.quiet = quiet;
self
}
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn ensure_toolchain_not_overridden() {
assert!(OVERRIDDEN_TOOLCHAIN.is_none());
}
}