-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.rs
596 lines (495 loc) · 18.2 KB
/
build.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
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
use std::{
env,
fs::File,
io::{self, BufReader},
path::{Path, PathBuf},
process::{Command, Stdio},
};
use crate::{check, commands::build::unit_graph::try_parse_unit_graph, ftp};
use anyhow::{bail, Context};
use cargo_metadata::{camino::Utf8PathBuf, Artifact, Message, Package};
use clap::{command, Args, Subcommand};
use colored::Colorize;
use either::Either;
use log::{info, warn};
use tee::TeeReader;
use walkdir::WalkDir;
use crate::meta::{parse_crate_metadata, PackageMetadata, TitleId, VITA_TARGET};
use super::{ConnectionArgs, Executor, OptionalConnectionArgs, Run};
mod unit_graph;
#[derive(Args, Debug)]
pub struct Build {
#[command(subcommand)]
cmd: BuildCmd,
/// An alphanumeric string of 9 characters. Used as a fallback in case `title_id` is not defined in Cargo.toml.
#[arg(long, env="VITA_DEFAULT_TITLE_ID", value_parser = clap::value_parser!(TitleId))]
default_title_id: Option<TitleId>,
/// Pass additional options through to the `cargo` command.
///
/// All arguments after the first `--`, or starting with the first unrecognized
/// option, will be passed through to `cargo` unmodified.
#[arg(trailing_var_arg = true)]
#[arg(allow_hyphen_values = true)]
#[arg(global = true)]
#[arg(name = "CARGO_ARGS")]
cargo_args: Vec<String>,
}
#[derive(Subcommand, Debug)]
enum BuildCmd {
Elf,
Velf,
Eboot(Eboot),
Sfo,
Vpk(Vpk),
}
#[derive(Args, Debug)]
struct Eboot {
/// Uploads eboot.bin to `ux0:app/{title_id}/eboot.bin`
#[arg(long, default_value = "false")]
update: bool,
/// Runs the updated app. If multiple eboot files are updated, only the last one is run.
#[arg(long, default_value = "false")]
run: bool,
#[command(flatten)]
connection: OptionalConnectionArgs,
}
#[derive(Args, Debug)]
struct Vpk {
#[command(flatten)]
eboot: Eboot,
/// Uploads the vpk files to the destination folder
#[arg(long, default_value = "false")]
upload: bool,
/// A directory on Vita where a file will be saved. Slash in the end indicates that it's a directory.
#[arg(long, short = 'd', default_value = "ux0:/download/")]
destination: String,
}
struct BuildContext<'a> {
command: &'a Build,
sdk: String,
}
impl<'a> BuildContext<'a> {
pub fn new(command: &'a Build) -> anyhow::Result<Self> {
let sdk = std::env::var("VITASDK");
let sdk = sdk.or_else(|_| {
bail!(
"VITASDK environment variable isn't set. Please install the SDK \
from https://vitasdk.org/ and set the VITASDK environment variable."
)
})?;
Ok(Self { command, sdk })
}
fn sdk(&self, path: &str) -> PathBuf {
Path::new(&self.sdk).join(path)
}
fn sdk_binary(&self, binary: &str) -> PathBuf {
self.sdk("bin").join(binary)
}
}
#[derive(Debug)]
struct ExecutableArtifact {
artifact: Artifact,
meta: PackageMetadata,
package: Package,
elf: Utf8PathBuf,
}
impl ExecutableArtifact {
fn new(artifact: Artifact) -> anyhow::Result<Self> {
let (meta, package, _) = parse_crate_metadata(Some(&artifact))?;
let package = package.context("artifact does not have a package")?;
let executable = artifact
.executable
.as_deref()
.context("Artifact has no executables")?
.to_owned();
Ok(Self {
artifact,
meta,
package,
elf: executable,
})
}
}
impl Executor for Build {
fn execute(&self) -> anyhow::Result<()> {
check::rust_version()?;
let ctx = BuildContext::new(self)?;
match &self.cmd {
BuildCmd::Elf => {
ctx.build_elf()?;
}
BuildCmd::Velf => {
for art in ctx.build_elf()? {
ctx.strip(&art)?;
ctx.velf(&art)?;
}
}
BuildCmd::Eboot(args) => {
let artifacts = ctx.build_elf()?;
for art in &artifacts {
ctx.strip(art)?;
ctx.velf(art)?;
ctx.eboot(art)?;
}
if args.update {
let files = ctx.eboot_uploads(&artifacts)?;
upload(&files, &args.connection.clone().required()?)?;
}
if args.run {
ctx.run(&artifacts, &args.connection.clone().required()?)?;
}
}
BuildCmd::Sfo => {
for art in ctx.build_elf()? {
ctx.sfo(&art)?;
}
}
BuildCmd::Vpk(args) => {
let artifacts = ctx.build_elf()?;
for art in &artifacts {
ctx.strip(art)?;
ctx.velf(art)?;
ctx.eboot(art)?;
ctx.sfo(art)?;
ctx.vpk(art)?;
}
let mut upload_files = Vec::new();
if args.upload {
upload_files.extend(ctx.vpk_uploads(&artifacts, &args.destination)?);
}
if args.eboot.update {
upload_files.extend(ctx.eboot_uploads(&artifacts)?);
}
if !upload_files.is_empty() {
upload(&upload_files, &args.eboot.connection.clone().required()?)?;
}
if args.eboot.run {
ctx.run(&artifacts, &args.eboot.connection.clone().required()?)?;
}
}
};
Ok(())
}
}
impl<'a> BuildContext<'a> {
fn build_elf(&self) -> anyhow::Result<Vec<ExecutableArtifact>> {
let cargo = env::var("CARGO").unwrap_or_else(|_| "cargo".to_string());
let rust_flags = env::var("RUSTFLAGS").unwrap_or_default()
+ " --cfg mio_unsupported_force_poll_poll --cfg mio_unsupported_force_waker_pipe";
// FIXME: move build-std to .cargo/config.toml, since it is shared by ALL of the crates built,
// but the metadata is per-crate. This still works correctly when building only a single workspace crate.
let (meta, _, _) = parse_crate_metadata(None)?;
let command = || {
let mut command = Command::new(&cargo);
if let Ok(path) = env::var("PATH") {
let sdk_path = Path::new(&self.sdk).join("bin");
let path = format!("{}:{path}", sdk_path.display());
command.env("PATH", path);
}
command
.env("RUSTFLAGS", &rust_flags)
.env("TARGET_CC", "arm-vita-eabi-gcc")
.env("TARGET_CXX", "arm-vita-eabi-g++")
.pass_path_env("OPENSSL_LIB_DIR", || self.sdk("arm-vita-eabi").join("lib"))
.pass_path_env("OPENSSL_INCLUDE_DIR", || {
self.sdk("arm-vita-eabi").join("include")
})
.pass_path_env("PKG_CONFIG_PATH", || {
self.sdk("arm-vita-eabi").join("lib").join("pkgconfig")
})
.pass_env("PKG_CONFIG_SYSROOT_DIR", || &self.sdk)
.env("VITASDK", &self.sdk)
.arg("build")
.arg("-Z")
.arg(format!("build-std={}", &meta.build_std))
.arg("--target")
.arg(VITA_TARGET)
.arg("--message-format=json-render-diagnostics")
.args(&self.command.cargo_args);
command
};
let hints = try_parse_unit_graph(command()).ok();
let mut command = command();
command
.stdin(Stdio::inherit())
.stdout(Stdio::piped())
.stderr(Stdio::inherit());
info!("{}: {command:?}", "Running cargo".blue());
let mut process = command.spawn().context("Unable to spawn build process")?;
let stdout = process.stdout.take().context("Build failed")?;
let stdout = if log::max_level() >= log::LevelFilter::Trace {
Either::Left(BufReader::new(TeeReader::new(stdout, io::stdout())))
} else {
Either::Right(BufReader::new(stdout))
};
let message_stream = Message::parse_stream(stdout);
let mut artifacts = Vec::new();
for message in message_stream {
match message.context("Unable to parse cargo output")? {
Message::CompilerArtifact(art) if art.executable.is_some() => {
artifacts.push(ExecutableArtifact::new(art)?);
}
_ => {}
}
}
if !process.wait_with_output()?.status.success() {
if let Some(hints) = hints {
if hints.strip_symbols() {
warn!(
"{warn}\n \
Symbols in elf are required by `{velf}` to create a velf file.\n \
Please remove `{strip_true}` or `{strip_symbols}` from your Cargo.toml.\n \
If you want to optimize for the binary size, replace it \
with `{strip_debug}` to strip debug section.\n \
If you want to strip the symbol data from the resulting \
binary, set `{strip_velf}` in `{vita_section}` \
section of your Cargo.toml, this would strip the symbols from the velf.",
warn = "Stripping symbols from ELF is unsupported.".yellow(),
velf = "vita-elf-create".cyan(),
strip_true = "strip=true".cyan(),
strip_symbols = "strip=\"symbols\"".cyan(),
strip_debug = "strip=\"debuginfo\"".cyan(),
strip_velf = "strip_symbols = true".cyan(),
vita_section = format!("[package.metadata.vita.{}]", hints.profile).cyan()
);
}
}
bail!("cargo build failed")
}
Ok(artifacts)
}
fn strip(&self, art: &ExecutableArtifact) -> anyhow::Result<()> {
// Try to guess if the elf was built with debug or release profile.
// This intentionally uses components() instead of as_str() to
// ensure that it works with operating systems that use a reverse slash for paths (Windows),
// as well as it works if the path is not normalized.
let profile = art
.elf
.components()
.skip_while(|s| s.as_str() != "armv7-sony-vita-newlibeabihf")
.nth(1);
let mut profile = profile.map_or("dev", |p| p.as_str());
// Cargo uses "debug" folder for "dev" profile builds
if profile == "debug" {
profile = "dev";
}
if !art.meta.strip_symbols(profile) {
info!("{}", "Skipping additional elf strip".yellow());
return Ok(());
}
let mut command = Command::new(self.sdk_binary("arm-vita-eabi-strip"));
command
.arg("--strip-unneeded")
.arg(&art.elf)
.stdin(Stdio::inherit())
.stdout(Stdio::inherit())
.stderr(Stdio::inherit());
info!("{}: {command:?}", "Stripping symbols from elf".blue());
if !command.status()?.success() {
bail!("arm-vita-eabi-strip failed");
}
Ok(())
}
fn velf(&self, art: &ExecutableArtifact) -> anyhow::Result<()> {
let mut command = Command::new(self.sdk_binary("vita-elf-create"));
let elf = &art.elf;
let velf = elf.with_extension("velf");
command
.arg(elf)
.arg(velf)
.stdin(Stdio::inherit())
.stdout(Stdio::inherit())
.stderr(Stdio::inherit());
info!("{}: {command:?}", "Creating velf".blue());
if !command.status()?.success() {
bail!("vita-elf-create failed");
}
Ok(())
}
fn eboot(&self, art: &ExecutableArtifact) -> anyhow::Result<()> {
let mut command = Command::new(self.sdk_binary("vita-make-fself"));
let elf = &art.elf;
let velf = elf.with_extension("velf");
let eboot = elf.with_extension("self");
command
.args(&art.meta.vita_make_fself_flags)
.arg(&velf)
.arg(&eboot)
.stdin(Stdio::inherit())
.stdout(Stdio::inherit())
.stderr(Stdio::inherit());
info!("{}: {command:?}", "Creating eboot".blue());
if !command.status()?.success() {
bail!("vita-make-fself failed");
}
Ok(())
}
fn sfo(&self, art: &ExecutableArtifact) -> anyhow::Result<()> {
let mut command = Command::new(self.sdk_binary("vita-mksfoex"));
let elf = &art.elf;
let sfo = elf.with_extension("sfo");
let title_name = art
.meta
.title_name
.as_deref()
.unwrap_or_else(|| &art.package.name);
let title_id = &art
.meta
.title_id
.as_ref()
.or(self.command.default_title_id.as_ref())
.context(format!(
"title_id is not set for artifact {}",
art.package.name
))?;
command.args(&art.meta.vita_mksfoex_flags);
command.arg("-s").arg(format!("TITLE_ID={title_id}"));
command
.arg(title_name)
.arg(sfo)
.stdin(Stdio::inherit())
.stdout(Stdio::inherit())
.stderr(Stdio::inherit());
info!("{}: {command:?}", "Creating sfo".blue());
if !command.status()?.success() {
bail!("vita-mksfoex failed");
}
Ok(())
}
fn vpk(&self, art: &ExecutableArtifact) -> anyhow::Result<()> {
let elf = &art.elf;
let vpk = elf.with_extension("vpk");
let eboot = elf.with_extension("self");
let sfo = elf.with_extension("sfo");
let mut command = Command::new(self.sdk_binary("vita-pack-vpk"));
command.arg("-s").arg(sfo);
command.arg("-b").arg(eboot);
if let Some(assets) = &art.meta.assets {
let assets = art
.artifact
.manifest_path
.parent()
.context("Unable to get target manifest directory")?
.join(assets);
let files = WalkDir::new(&assets)
.into_iter()
.filter_map(Result::ok)
.filter(|e| e.file_type().is_file());
for file in files {
command.arg("--add").arg(format!(
"{}={}",
file.path().display(), // path on FS
file.path()
.strip_prefix(&assets)
.context("Unable to strip VPK prefix")?
.display() // path in VPK
));
}
}
command
.arg(vpk)
.stdin(Stdio::inherit())
.stdout(Stdio::inherit())
.stderr(Stdio::inherit());
info!("{}: {command:?}", "Building vpk".blue());
if !command.status()?.success() {
bail!("vita-pack-vpk failed")
}
Ok(())
}
#[allow(clippy::unused_self)]
fn vpk_uploads(
&self,
artifacts: &[ExecutableArtifact],
destination: &str,
) -> anyhow::Result<Vec<(Utf8PathBuf, String)>> {
artifacts
.iter()
.map(|a| {
let src = a.elf.with_extension("vpk");
let separator = if destination.ends_with('/') { "" } else { "/" };
let dest = format!(
"{destination}{separator}{}",
src.file_name().unwrap_or_default()
);
Ok((src, dest))
})
.collect::<anyhow::Result<Vec<_>>>()
}
fn eboot_uploads(
&self,
artifacts: &[ExecutableArtifact],
) -> anyhow::Result<Vec<(Utf8PathBuf, String)>> {
artifacts
.iter()
.map(|a| {
let title_id = a
.meta
.title_id
.as_ref()
.or(self.command.default_title_id.as_ref())
.context("No title_id provided for artifact")?;
Ok((
a.elf.with_extension("self"),
format!("ux0:/app/{title_id}/eboot.bin"),
))
})
.collect::<anyhow::Result<Vec<_>>>()
}
fn run(&self, artifacts: &[ExecutableArtifact], conn: &ConnectionArgs) -> anyhow::Result<()> {
if let Some(art) = artifacts.last() {
let title_id = art
.meta
.title_id
.as_ref()
.or(self.command.default_title_id.as_ref());
if let Some(title_id) = title_id {
Run {
title_id: Some(title_id.clone()),
connection: conn.clone(),
}
.execute()?;
}
}
Ok(())
}
}
fn upload(files: &[(Utf8PathBuf, String)], conn: &ConnectionArgs) -> anyhow::Result<()> {
if files.is_empty() {
return Ok(());
}
let mut ftp = ftp::connect(conn)?;
for (src, dest) in files {
info!("{} {src} {} {dest}", "Uploading".blue(), "file to".blue());
let src = File::open(src).context("Unable to open source file")?;
ftp.put_file(dest, &mut BufReader::new(src))
.context("Failed to upload file")?;
}
Ok(())
}
trait CommandExt {
fn pass_env<K, V>(&mut self, key: K, default: impl Fn() -> V) -> &mut Command
where
K: AsRef<str>,
V: AsRef<str>;
fn pass_path_env<K, V>(&mut self, key: K, default: impl Fn() -> V) -> &mut Command
where
K: AsRef<str>,
V: AsRef<Path>,
{
self.pass_env(key, || default().as_ref().to_string_lossy().to_string())
}
}
impl CommandExt for Command {
fn pass_env<K, V>(&mut self, key: K, default: impl Fn() -> V) -> &mut Command
where
K: AsRef<str>,
V: AsRef<str>,
{
let key = key.as_ref();
match env::var(key) {
Ok(val) => self.env(key, val),
Err(_) => self.env(key, default().as_ref()),
}
}
}