about summary refs log tree commit diff
path: root/users/Profpatsch/execline
diff options
context:
space:
mode:
authorProfpatsch <mail@profpatsch.de>2021-01-29T14·52+0100
committerProfpatsch <mail@profpatsch.de>2021-01-31T11·10+0000
commit06f4b75a183d0a4d2ebdac275c7fb097a6526efa (patch)
treeb963bc98754e3aa28b56ff7c09dfbc5cb40df244 /users/Profpatsch/execline
parentca52b29078519b22083f1e8edd24ee8527c10857 (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')
-rw-r--r--users/Profpatsch/execline/default.nix27
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 0000000000..51f4923e96
--- /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
+    ;
+}