flowey_lib_common/run_cargo_doc.rs
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 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
//! Encapsulates the logic of invoking `cargo doc`, taking into account
//! bits of "global" configuration and dependency management, such as setting
//! global cargo flags (e.g: --verbose, --locked), ensuring base Rust
//! dependencies are installed, etc...
use flowey::node::prelude::*;
use std::collections::BTreeMap;
#[derive(Serialize, Deserialize)]
pub struct CargoDocCommands {
cmds: Vec<Vec<String>>,
cargo_work_dir: PathBuf,
cargo_out_dir: PathBuf,
}
impl CargoDocCommands {
/// Execute the doc command(s), returning a path to the built docs
/// directory.
pub fn run(self, sh: &xshell::Shell) -> anyhow::Result<PathBuf> {
self.run_with(sh, |x| x)
}
/// Execute the doc command(s), returning path(s) to the built artifact.
///
/// Unlike `run`, this method allows tweaking the build command prior to
/// running it (e.g: to add env vars, change the working directory where the
/// artifacts will be placed, etc...).
pub fn run_with(
self,
sh: &xshell::Shell,
f: impl Fn(xshell::Cmd<'_>) -> xshell::Cmd<'_>,
) -> anyhow::Result<PathBuf> {
let Self {
cmds,
cargo_work_dir,
cargo_out_dir,
} = self;
let out_dir = sh.current_dir();
sh.change_dir(cargo_work_dir);
for mut cmd in cmds {
let argv0 = cmd.remove(0);
let cmd = xshell::cmd!(sh, "{argv0} {cmd...}");
let cmd = f(cmd);
cmd.run()?;
}
let final_dir = out_dir.join("cargo-doc-out");
fs_err::rename(cargo_out_dir, &final_dir)?;
Ok(final_dir)
}
}
/// Packages that can be documented
#[derive(Serialize, Deserialize)]
pub enum DocPackageKind {
/// Document an entire workspace workspace (with exclusions)
Workspace { exclude: Vec<String> },
/// Document a specific crate.
Crate(String),
/// Document a specific no_std crate.
///
/// This is its own variant, as a single `cargo doc` command has issues
/// documenting mixed `std` and `no_std` crates.
NoStdCrate(String),
}
/// The "what and how" of packages to documents
#[derive(Serialize, Deserialize)]
pub struct DocPackage {
/// The thing being documented.
pub kind: DocPackageKind,
/// Whether to document non-workspace dependencies (i.e: pass `--no-deps`)
pub no_deps: bool,
/// Whether to document private items (i.e: pass `--document-private-items`)
pub document_private_items: bool,
}
flowey_request! {
pub struct Request {
pub in_folder: ReadVar<PathBuf>,
/// Targets to include in the generated docs.
pub packages: Vec<DocPackage>,
/// What target-triple things should get documented with.
pub target_triple: target_lexicon::Triple,
pub cargo_cmd: WriteVar<CargoDocCommands>,
}
}
#[derive(Default)]
struct ResolvedDocPackages {
// where each (bool, bool) represents (no_deps, document_private_items)
workspace: Option<(bool, bool)>,
exclude: Vec<String>,
crates: BTreeMap<(bool, bool), Vec<String>>,
crates_no_std: BTreeMap<(bool, bool), Vec<String>>,
}
new_flow_node!(struct Node);
impl FlowNode for Node {
type Request = Request;
fn imports(ctx: &mut ImportCtx<'_>) {
ctx.import::<crate::cfg_cargo_common_flags::Node>();
ctx.import::<crate::install_rust::Node>();
}
fn emit(requests: Vec<Self::Request>, ctx: &mut NodeCtx<'_>) -> anyhow::Result<()> {
let rust_toolchain = ctx.reqv(crate::install_rust::Request::GetRustupToolchain);
let flags = ctx.reqv(crate::cfg_cargo_common_flags::Request::GetFlags);
for Request {
in_folder,
packages,
target_triple,
cargo_cmd,
} in requests
{
ctx.req(crate::install_rust::Request::InstallTargetTriple(
target_triple.clone(),
));
// figure out what cargo commands we'll need to invoke
let mut targets = ResolvedDocPackages::default();
for DocPackage {
kind,
no_deps,
document_private_items,
} in packages
{
match kind {
DocPackageKind::Workspace { exclude } => {
if targets.workspace.is_some() {
anyhow::bail!("cannot pass Workspace variant multiple times")
}
targets.exclude.extend(exclude);
targets.workspace = Some((no_deps, document_private_items))
}
DocPackageKind::Crate(name) => targets
.crates
.entry((no_deps, document_private_items))
.or_default()
.push(name),
DocPackageKind::NoStdCrate(name) => targets
.crates_no_std
.entry((no_deps, document_private_items))
.or_default()
.push(name),
}
}
let doc_targets = targets;
ctx.emit_minor_rust_step("construct cargo doc command", |ctx| {
let rust_toolchain = rust_toolchain.clone().claim(ctx);
let flags = flags.clone().claim(ctx);
let in_folder = in_folder.claim(ctx);
let write_doc_cmd = cargo_cmd.claim(ctx);
move |rt| {
let rust_toolchain = rt.read(rust_toolchain);
let flags = rt.read(flags);
let in_folder = rt.read(in_folder);
let crate::cfg_cargo_common_flags::Flags { locked, verbose } = flags;
let mut cmds = Vec::new();
let ResolvedDocPackages {
workspace,
exclude,
mut crates,
crates_no_std,
} = doc_targets;
let base_cmd = |no_deps: bool, document_private_items: bool| -> Vec<String> {
let mut v = Vec::new();
v.push("cargo".into());
if let Some(rust_toolchain) = &rust_toolchain {
v.push(format!("+{rust_toolchain}"))
}
v.push("doc".into());
v.push("--target".into());
v.push(target_triple.to_string());
if locked {
v.push("--locked".into());
}
if verbose {
v.push("--verbose".into());
}
if no_deps {
v.push("--no-deps".into());
}
if document_private_items {
v.push("--document-private-items".into())
}
v
};
// first command to run should be the workspace-level
// command (if one was provided)
if let Some((no_deps, document_private_items)) = workspace {
// subsume crates with the same options
crates.remove(&(no_deps, document_private_items));
let mut v = base_cmd(no_deps, document_private_items);
v.push("--workspace".into());
for crates_no_std in crates_no_std.values() {
for c in crates_no_std.iter().chain(exclude.iter()) {
v.push("--exclude".into());
v.push(c.into())
}
}
cmds.push(v);
}
// subsequently: document any specific std crates
for ((no_deps, document_private_items), crates) in crates {
let mut v = base_cmd(no_deps, document_private_items);
for c in crates {
v.push("-p".into());
v.push(c);
}
cmds.push(v)
}
// lastly: document any no_std crates
for ((no_deps, document_private_items), crates) in crates_no_std {
let mut v = base_cmd(no_deps, document_private_items);
for c in crates {
v.push("-p".into());
v.push(c);
}
cmds.push(v)
}
let cargo_out_dir = {
// DEVNOTE: this is a _pragmatic_ implementation of this
// logic, and is written with the undersatnding that
// there are undoubtedly many "edge-cases" that may
// result in the final target directory changing.
//
// One possible way to make this handling more robust
// would be to start using `--message-format=json` when
// invoking `cargo`, and then parsing the machine
// readable output in order to obtain the output
// artifact path _after_ the compilation has succeeded.
if let Ok(dir) = std::env::var("CARGO_TARGET_DIR") {
PathBuf::from(dir)
} else {
in_folder.join("target")
}
}
.join(target_triple.to_string())
.join("doc");
let cmd = CargoDocCommands {
cmds,
cargo_work_dir: in_folder.clone(),
cargo_out_dir,
};
rt.write(write_doc_cmd, &cmd);
}
});
}
Ok(())
}
}