| use core::slice::memchr; |
| |
| pub use super::common::Env; |
| use crate::collections::HashMap; |
| use crate::ffi::{CStr, OsStr, OsString, c_char}; |
| use crate::io; |
| use crate::os::hermit::ffi::OsStringExt; |
| use crate::sync::Mutex; |
| |
| static ENV: Mutex<Option<HashMap<OsString, OsString>>> = Mutex::new(None); |
| |
| pub fn init(env: *const *const c_char) { |
| let mut guard = ENV.lock().unwrap(); |
| let map = guard.insert(HashMap::new()); |
| |
| if env.is_null() { |
| return; |
| } |
| |
| unsafe { |
| let mut environ = env; |
| while !(*environ).is_null() { |
| if let Some((key, value)) = parse(CStr::from_ptr(*environ).to_bytes()) { |
| map.insert(key, value); |
| } |
| environ = environ.add(1); |
| } |
| } |
| |
| fn parse(input: &[u8]) -> Option<(OsString, OsString)> { |
| // Strategy (copied from glibc): Variable name and value are separated |
| // by an ASCII equals sign '='. Since a variable name must not be |
| // empty, allow variable names starting with an equals sign. Skip all |
| // malformed lines. |
| if input.is_empty() { |
| return None; |
| } |
| let pos = memchr::memchr(b'=', &input[1..]).map(|p| p + 1); |
| pos.map(|p| { |
| ( |
| OsStringExt::from_vec(input[..p].to_vec()), |
| OsStringExt::from_vec(input[p + 1..].to_vec()), |
| ) |
| }) |
| } |
| } |
| |
| /// Returns a vector of (variable, value) byte-vector pairs for all the |
| /// environment variables of the current process. |
| pub fn env() -> Env { |
| let guard = ENV.lock().unwrap(); |
| let env = guard.as_ref().unwrap(); |
| |
| let result = env.iter().map(|(key, value)| (key.clone(), value.clone())).collect(); |
| |
| Env::new(result) |
| } |
| |
| pub fn getenv(k: &OsStr) -> Option<OsString> { |
| ENV.lock().unwrap().as_ref().unwrap().get(k).cloned() |
| } |
| |
| pub unsafe fn setenv(k: &OsStr, v: &OsStr) -> io::Result<()> { |
| let (k, v) = (k.to_owned(), v.to_owned()); |
| ENV.lock().unwrap().as_mut().unwrap().insert(k, v); |
| Ok(()) |
| } |
| |
| pub unsafe fn unsetenv(k: &OsStr) -> io::Result<()> { |
| ENV.lock().unwrap().as_mut().unwrap().remove(k); |
| Ok(()) |
| } |