use std::ffi::CStr;
#[cfg(target_os = "linux")]
use std::path::Path;
#[cfg(any(
target_os = "freebsd",
target_os = "dragonfly",
target_os = "openbsd",
target_os = "netbsd",
target_os = "macos"
))]
#[link(name = "c")]
extern "C" {
fn getprogname() -> *const libc::c_char;
}
#[cfg(target_os = "linux")]
#[link(name = "c")]
extern "C" {
pub static mut program_invocation_name : *mut libc::c_char ;
}
pub(crate) fn p_getprogname() -> Option<String>
{
let pn =
{
#[cfg(any(
target_os = "freebsd",
target_os = "dragonfly",
target_os = "openbsd",
target_os = "netbsd",
target_os = "macos"
))]
unsafe { getprogname() }
#[cfg(target_os = "linux")]
unsafe{ program_invocation_name }
};
let temp = unsafe {CStr::from_ptr(pn)};
match temp.to_str()
{
Ok(r) =>
{
#[cfg(target_os = "linux")]
{
let path = Path::new(r);
match path.file_name()
{
Some(r) => return Some(r.to_string_lossy().into()),
None => return None,
}
}
#[cfg(any(
target_os = "freebsd",
target_os = "dragonfly",
target_os = "openbsd",
target_os = "netbsd",
target_os = "macos"
))]
return Some(r.to_string());
},
Err(_) => return None,
}
}
pub fn get_pid() -> u32
{
return std::process::id();
}
#[test]
fn test_get_procname()
{
println!("Processname is: {:?}", p_getprogname());
}