diff options
author | Profpatsch <mail@profpatsch.de> | 2021-01-29T14·39+0100 |
---|---|---|
committer | Profpatsch <mail@profpatsch.de> | 2021-01-31T11·10+0000 |
commit | 5d44df3af65767e731c0dd239bd1d9664edbb361 (patch) | |
tree | 58c3d33314edec57c564526dfea91b1336ac43d8 /users/Profpatsch/arglib | |
parent | e4a7704583812786d90ddc1f3aa639b2866e18e2 (diff) |
refactor(users/Profpatsch): move arglib_netencode into its own lib r/2167
arglib is the simple idea of passing structured data via a conventional environment variable instead of implementing an optparser for every little tool. Pop the envvar, decode the contents, return the contents. Change-Id: Ie44148293a58aae9a0a613895176227d43b491bb Reviewed-on: https://cl.tvl.fyi/c/depot/+/2449 Tested-by: BuildkiteCI Reviewed-by: Profpatsch <mail@profpatsch.de>
Diffstat (limited to 'users/Profpatsch/arglib')
-rw-r--r-- | users/Profpatsch/arglib/default.nix | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/users/Profpatsch/arglib/default.nix b/users/Profpatsch/arglib/default.nix new file mode 100644 index 000000000000..4f9f8e4cae79 --- /dev/null +++ b/users/Profpatsch/arglib/default.nix @@ -0,0 +1,40 @@ +{ depot, pkgs, lib, ... }: + +let + netencode = { + rust = depot.users.Profpatsch.writers.rustSimpleLib { + name = "arglib-netencode"; + dependencies = [ + depot.users.Profpatsch.netencode.netencode-rs + ]; + } '' + extern crate netencode; + + use netencode::{T}; + use std::os::unix::ffi::OsStrExt; + + pub fn arglib_netencode(env: Option<&std::ffi::OsStr>) -> Result<T, String> { + let env = match env { + None => std::ffi::OsStr::from_bytes("ARGLIB_NETENCODE".as_bytes()), + Some(a) => a + }; + match std::env::var_os(env) { + None => Err(format!("could not read args, envvar {} not set", env.to_string_lossy())), + // TODO: good error handling for the different parser errors + Some(soup) => match netencode::parse::t_t(soup.as_bytes()) { + Ok((remainder, t)) => match remainder.is_empty() { + true => Ok(t), + false => Err(format!("there was some unparsed bytes remaining: {:?}", remainder)) + }, + Err(err) => Err(format!("parsing error: {:?}", err)) + } + } + } + ''; + }; + +in { + inherit + netencode + ; +} |