Merge pull request #222 from dtolnay/flagvalue

Pass flags as single arg where possible
This commit is contained in:
David Tolnay 2024-04-06 09:54:11 -07:00 committed by GitHub
commit f5f212a65a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 72 additions and 45 deletions

View file

@ -11,10 +11,30 @@ impl CommandArgs {
CommandArgs { args: Vec::new() } CommandArgs { args: Vec::new() }
} }
pub fn arg<S: AsRef<OsStr>>(&mut self, arg: S) { pub fn arg<S>(&mut self, arg: S)
where
S: AsRef<OsStr>,
{
self.args.push(arg.as_ref().to_owned()); self.args.push(arg.as_ref().to_owned());
} }
pub fn flag_value<K, V>(&mut self, k: K, v: V)
where
K: AsRef<OsStr>,
V: AsRef<OsStr>,
{
let k = k.as_ref();
let v = v.as_ref();
if let Some(k) = k.to_str() {
if let Some(v) = v.to_str() {
self.arg(format!("{}={}", k, v));
return;
}
}
self.arg(k);
self.arg(v);
}
pub fn args<I, S>(&mut self, args: I) pub fn args<I, S>(&mut self, args: I)
where where
I: IntoIterator<Item = S>, I: IntoIterator<Item = S>,

View file

@ -327,29 +327,31 @@ fn apply_args(cmd: &mut Command, args: &Expand, color: &Coloring, outfile: &Path
line.arg("--verbose"); line.arg("--verbose");
} }
line.arg("--color");
match color { match color {
Coloring::Auto => line.arg(if cfg!(not(windows)) && io::stderr().is_terminal() { Coloring::Auto => {
"always" if cfg!(not(windows)) && io::stderr().is_terminal() {
} else { line.flag_value("--color", "always");
"never" } else {
}), line.flag_value("--color", "never");
color => line.arg(color.to_possible_value().unwrap().get_name()), }
}
color => line.flag_value("--color", color.to_possible_value().unwrap().get_name()),
} }
for kv in &args.config { for kv in &args.config {
line.arg("--config"); line.flag_value("--config", kv);
line.arg(kv);
} }
for unstable_flag in &args.unstable_flags { for unstable_flag in &args.unstable_flags {
line.arg("-Z"); line.arg(format!("-Z{}", unstable_flag));
line.arg(unstable_flag);
} }
if let Some(package) = &args.package { if let Some(opt_package) = &args.package {
line.arg("--package"); if let Some(package) = opt_package {
line.args(package); line.flag_value("--package", package);
} else {
line.arg("--package");
}
} }
let mut has_explicit_build_target = false; let mut has_explicit_build_target = false;
@ -358,27 +360,39 @@ fn apply_args(cmd: &mut Command, args: &Expand, color: &Coloring, outfile: &Path
has_explicit_build_target = true; has_explicit_build_target = true;
} }
if let Some(bin) = &args.bin { if let Some(opt_bin) = &args.bin {
line.arg("--bin"); if let Some(bin) = opt_bin {
line.args(bin); line.flag_value("--bin", bin);
} else {
line.arg("--bin");
}
has_explicit_build_target = true; has_explicit_build_target = true;
} }
if let Some(example) = &args.example { if let Some(opt_example) = &args.example {
line.arg("--example"); if let Some(example) = opt_example {
line.args(example); line.flag_value("--example", example);
} else {
line.arg("--example");
}
has_explicit_build_target = true; has_explicit_build_target = true;
} }
if let Some(test) = &args.test { if let Some(opt_test) = &args.test {
line.arg("--test"); if let Some(test) = opt_test {
line.args(test); line.flag_value("--test", test);
} else {
line.arg("--test");
}
has_explicit_build_target = true; has_explicit_build_target = true;
} }
if let Some(bench) = &args.bench { if let Some(opt_bench) = &args.bench {
line.arg("--bench"); if let Some(bench) = opt_bench {
line.args(bench); line.flag_value("--bench", bench);
} else {
line.arg("--bench");
}
has_explicit_build_target = true; has_explicit_build_target = true;
} }
@ -386,16 +400,14 @@ fn apply_args(cmd: &mut Command, args: &Expand, color: &Coloring, outfile: &Path
if let Ok(cargo_manifest) = manifest::parse(args.manifest_path.as_deref()) { if let Ok(cargo_manifest) = manifest::parse(args.manifest_path.as_deref()) {
if let Some(root_package) = cargo_manifest.package { if let Some(root_package) = cargo_manifest.package {
if let Some(default_run) = &root_package.default_run { if let Some(default_run) = &root_package.default_run {
line.arg("--bin"); line.flag_value("--bin", default_run);
line.arg(default_run);
} }
} }
} }
} }
if let Some(features) = &args.features { if let Some(features) = &args.features {
line.arg("--features"); line.flag_value("--features", features);
line.arg(features);
} }
if args.all_features { if args.all_features {
@ -407,38 +419,33 @@ fn apply_args(cmd: &mut Command, args: &Expand, color: &Coloring, outfile: &Path
} }
if let Some(jobs) = args.jobs { if let Some(jobs) = args.jobs {
line.arg("--jobs"); line.flag_value("--jobs", jobs.to_string());
line.arg(jobs.to_string());
} }
line.arg("--profile");
if let Some(profile) = &args.profile { if let Some(profile) = &args.profile {
line.arg(profile); line.flag_value("--profile", profile);
} else if args.tests && args.test.is_none() { } else if args.tests && args.test.is_none() {
if args.release { if args.release {
line.arg("bench"); line.flag_value("--profile", "bench");
} else { } else {
line.arg("test"); line.flag_value("--profile", "test");
} }
} else if args.release { } else if args.release {
line.arg("release"); line.flag_value("--profile", "release");
} else { } else {
line.arg("check"); line.flag_value("--profile", "check");
} }
if let Some(target) = &args.target { if let Some(target) = &args.target {
line.arg("--target"); line.flag_value("--target", target);
line.arg(target);
} }
if let Some(target_dir) = &args.target_dir { if let Some(target_dir) = &args.target_dir {
line.arg("--target-dir"); line.flag_value("--target-dir", target_dir);
line.arg(target_dir);
} }
if let Some(manifest_path) = &args.manifest_path { if let Some(manifest_path) = &args.manifest_path {
line.arg("--manifest-path"); line.flag_value("--manifest-path", manifest_path);
line.arg(manifest_path);
} }
if args.frozen { if args.frozen {