diff options
author | Profpatsch <mail@profpatsch.de> | 2021-01-29T14·52+0100 |
---|---|---|
committer | Profpatsch <mail@profpatsch.de> | 2021-01-31T11·10+0000 |
commit | 06f4b75a183d0a4d2ebdac275c7fb097a6526efa (patch) | |
tree | b963bc98754e3aa28b56ff7c09dfbc5cb40df244 /users/Profpatsch/execline/default.nix | |
parent | ca52b29078519b22083f1e8edd24ee8527c10857 (diff) |
feat(users/Profpatsch/execline): add exec helpers r/2171
Most tools end by execing into their argv, so here’s a small rust function which does the boilerplate. Change-Id: I9748955cf53828e02f04d7e8d74fbaf10c1158b5 Reviewed-on: https://cl.tvl.fyi/c/depot/+/2453 Tested-by: BuildkiteCI Reviewed-by: Profpatsch <mail@profpatsch.de>
Diffstat (limited to 'users/Profpatsch/execline/default.nix')
-rw-r--r-- | users/Profpatsch/execline/default.nix | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/users/Profpatsch/execline/default.nix b/users/Profpatsch/execline/default.nix new file mode 100644 index 000000000000..51f4923e9628 --- /dev/null +++ b/users/Profpatsch/execline/default.nix @@ -0,0 +1,27 @@ +{ depot, pkgs, lib, ... }: + +let + exec-helpers = depot.users.Profpatsch.writers.rustSimpleLib { + name = "exec-helpers"; + } '' + use std::os::unix::process::CommandExt; + use std::ffi::OsStr; + use std::os::unix::ffi::OsStrExt; + pub fn exec_into_args<'a, I>(prog_name: &str, env_additions: I) -> ! + where + I: IntoIterator<Item = (&'a [u8], &'a [u8])>, + { + let mut argv = std::env::args_os(); + let prog = argv.nth(1).expect(&format!("{}: first argument must be an executable", prog_name)); + let args = argv; + let env = env_additions.into_iter().map(|(k,v)| (OsStr::from_bytes(k), OsStr::from_bytes(v))); + let err = std::process::Command::new(prog).args(args).envs(env).exec(); + panic!("{}: exec failed: {:?}", prog_name, err); + } + ''; + +in { + inherit + exec-helpers + ; +} |