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
use std::collections::BTreeSet;
use std::env;
use std::fs;
use std::path::{Path, PathBuf};
use std::process::{self, ExitStatus};
use anyhow::{bail, Context as AnyhowContext, Result};
use clap::Parser;
use crate::config::{Config, VendorMode};
use crate::context::Context;
use crate::metadata::CargoUpdateRequest;
use crate::metadata::FeatureGenerator;
use crate::metadata::{Annotations, Cargo, Generator, MetadataGenerator, VendorGenerator};
use crate::rendering::{render_module_label, write_outputs, Renderer};
use crate::splicing::{generate_lockfile, Splicer, SplicingManifest, WorkspaceMetadata};
#[derive(Parser, Debug)]
#[clap(about = "Command line options for the `vendor` subcommand", version)]
pub struct VendorOptions {
#[clap(long, env = "CARGO")]
pub cargo: PathBuf,
#[clap(long, env = "RUSTC")]
pub rustc: PathBuf,
#[clap(long)]
pub buildifier: Option<PathBuf>,
#[clap(long)]
pub config: PathBuf,
#[clap(long)]
pub splicing_manifest: PathBuf,
#[clap(long)]
pub cargo_lockfile: Option<PathBuf>,
#[clap(long)]
pub cargo_config: Option<PathBuf>,
#[clap(long, env = "CARGO_BAZEL_REPIN", num_args=0..=1, default_missing_value = "true")]
pub repin: Option<CargoUpdateRequest>,
#[clap(long)]
pub metadata: Option<PathBuf>,
#[clap(long, env = "BAZEL_REAL", default_value = "bazel")]
pub bazel: PathBuf,
#[clap(long, env = "BUILD_WORKSPACE_DIRECTORY")]
pub workspace_dir: PathBuf,
#[clap(long)]
pub dry_run: bool,
}
fn buildifier_format(bin: &Path, file: &Path) -> Result<ExitStatus> {
let status = process::Command::new(bin)
.args(["-lint=fix", "-mode=fix", "-warnings=all"])
.arg(file)
.status()
.context("Failed to apply buildifier fixes")?;
if !status.success() {
bail!(status)
}
Ok(status)
}
fn locate_bazel_output_base(bazel: &Path, workspace_dir: &Path) -> Result<PathBuf> {
if let Ok(output_base) = env::var("OUTPUT_BASE") {
return Ok(PathBuf::from(output_base));
}
let output = process::Command::new(bazel)
.current_dir(workspace_dir)
.args(["info", "output_base"])
.output()
.context("Failed to query the Bazel workspace's `output_base`")?;
if !output.status.success() {
bail!(output.status)
}
Ok(PathBuf::from(
String::from_utf8_lossy(&output.stdout).trim(),
))
}
pub fn vendor(opt: VendorOptions) -> Result<()> {
let output_base = locate_bazel_output_base(&opt.bazel, &opt.workspace_dir)?;
let splicing_manifest = SplicingManifest::try_from_path(&opt.splicing_manifest)?
.resolve(&opt.workspace_dir, &output_base);
let temp_dir = tempfile::tempdir().context("Failed to create temporary directory")?;
let splicer = Splicer::new(PathBuf::from(temp_dir.as_ref()), splicing_manifest)
.context("Failed to create splicer")?;
let manifest_path = splicer
.splice_workspace(&opt.cargo)
.context("Failed to splice workspace")?;
let cargo = Cargo::new(opt.cargo);
let cargo_lockfile = generate_lockfile(
&manifest_path,
&opt.cargo_lockfile,
cargo.clone(),
&opt.rustc,
&opt.repin,
)?;
let config = Config::try_from_path(&opt.config)?;
let feature_map = FeatureGenerator::new(cargo.clone(), opt.rustc.clone()).generate(
manifest_path.as_path_buf(),
&config.supported_platform_triples,
)?;
WorkspaceMetadata::write_registry_urls_and_feature_map(
&cargo,
&cargo_lockfile,
feature_map,
manifest_path.as_path_buf(),
manifest_path.as_path_buf(),
)?;
let (cargo_metadata, cargo_lockfile) = Generator::new()
.with_cargo(cargo.clone())
.with_rustc(opt.rustc.clone())
.generate(manifest_path.as_path_buf())?;
let annotations = Annotations::new(cargo_metadata, cargo_lockfile.clone(), config.clone())?;
let context = Context::new(annotations)?;
let outputs = Renderer::new(config.rendering.clone()).render(&context)?;
let file_names: BTreeSet<PathBuf> = outputs.keys().cloned().collect();
let vendor_dir_label = render_module_label(&config.rendering.crates_module_template, "BUILD")?;
let vendor_dir = opt
.workspace_dir
.join(vendor_dir_label.package.unwrap_or_default());
if vendor_dir.exists() {
fs::remove_dir_all(&vendor_dir)
.with_context(|| format!("Failed to delete {}", vendor_dir.display()))?;
}
if let Some(path) = &opt.cargo_lockfile {
fs::write(path, cargo_lockfile.to_string())
.context("Failed to write Cargo.lock file back to the workspace.")?;
}
if matches!(config.rendering.vendor_mode, Some(VendorMode::Local)) {
VendorGenerator::new(cargo, opt.rustc.clone())
.generate(manifest_path.as_path_buf(), &vendor_dir)
.context("Failed to vendor dependencies")?;
}
write_outputs(outputs, &opt.workspace_dir, opt.dry_run)
.context("Failed writing output files")?;
if let Some(buildifier_bin) = opt.buildifier {
for file in file_names {
let file_path = opt.workspace_dir.join(file);
buildifier_format(&buildifier_bin, &file_path)
.with_context(|| format!("Failed to run buildifier on {}", file_path.display()))?;
}
}
Ok(())
}