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
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
use super::BuildError;
use super::BuildOptions;
use std::{
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 status = cargo_rustdoc_command(&options).status()?;
if status.success() {
rustdoc_json_path_for_manifest_path(
options.manifest_path,
options.package.as_deref(),
options.target.as_deref(),
)
} else {
let manifest = cargo_toml::Manifest::from_path(&options.manifest_path)?;
if manifest.package.is_none() && manifest.workspace.is_some() {
Err(BuildError::VirtualManifest(options.manifest_path))
} else {
Err(BuildError::General(String::from("See above")))
}
}
}
fn cargo_rustdoc_command(options: &BuildOptions) -> Command {
let BuildOptions {
toolchain: requested_toolchain,
manifest_path,
target,
quiet,
no_default_features,
all_features,
features,
package,
} = options;
let mut command = Command::new("cargo");
if let Some(toolchain) = OVERRIDDEN_TOOLCHAIN.or(requested_toolchain.as_deref()) {
command.arg(toolchain);
}
command.arg("rustdoc");
command.arg("--lib");
if *quiet {
command.arg("--quiet");
}
command.arg("--manifest-path");
command.arg(manifest_path);
if let Some(target) = target {
command.arg("--target");
command.arg(target);
}
if *no_default_features {
command.arg("--no-default-features");
}
if *all_features {
command.arg("--all-features");
}
for feature in features {
command.args(["--features", feature]);
}
if let Some(package) = package {
command.args(["--package", package]);
}
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>,
package: Option<&str>,
target: Option<&str>,
) -> Result<PathBuf, BuildError> {
let target_dir = target_directory(&manifest_path)?;
let lib_name = package
.map(ToOwned::to_owned)
.map_or_else(|| package_name(&manifest_path), Ok)?;
let mut rustdoc_json_path = target_dir;
if let Some(target) = target {
rustdoc_json_path.push(&target);
}
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"),
target: None,
quiet: false,
no_default_features: false,
all_features: false,
features: vec![],
package: None,
}
}
}
impl BuildOptions {
#[must_use]
pub fn toolchain(mut self, toolchain: impl Into<Option<String>>) -> Self {
self.toolchain = toolchain.into();
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
}
#[must_use]
pub fn target(mut self, target: String) -> Self {
self.target = Some(target);
self
}
#[must_use]
pub fn no_default_features(mut self, no_default_features: bool) -> Self {
self.no_default_features = no_default_features;
self
}
#[must_use]
pub fn all_features(mut self, all_features: bool) -> Self {
self.all_features = all_features;
self
}
#[must_use]
pub fn features<I: IntoIterator<Item = S>, S: AsRef<str>>(mut self, features: I) -> Self {
self.features = features
.into_iter()
.map(|item| item.as_ref().to_owned())
.collect();
self
}
#[must_use]
pub fn package(mut self, package: impl AsRef<str>) -> Self {
self.package = Some(package.as_ref().to_owned());
self
}
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn ensure_toolchain_not_overridden() {
assert!(OVERRIDDEN_TOOLCHAIN.is_none());
}
}