#![allow(unsafe_code)]
use crate::backend;
use crate::ffi::CStr;
#[cfg(not(target_os = "emscripten"))]
use crate::io;
use core::fmt;
#[cfg(linux_kernel)]
pub use backend::process::types::Sysinfo;
#[inline]
pub fn uname() -> Uname {
Uname(backend::process::syscalls::uname())
}
#[doc(alias = "utsname")]
pub struct Uname(backend::process::types::RawUname);
impl Uname {
#[inline]
pub fn sysname(&self) -> &CStr {
Self::to_cstr(self.0.sysname.as_ptr().cast())
}
#[inline]
pub fn nodename(&self) -> &CStr {
Self::to_cstr(self.0.nodename.as_ptr().cast())
}
#[inline]
pub fn release(&self) -> &CStr {
Self::to_cstr(self.0.release.as_ptr().cast())
}
#[inline]
pub fn version(&self) -> &CStr {
Self::to_cstr(self.0.version.as_ptr().cast())
}
#[inline]
pub fn machine(&self) -> &CStr {
Self::to_cstr(self.0.machine.as_ptr().cast())
}
#[cfg(linux_kernel)]
#[inline]
pub fn domainname(&self) -> &CStr {
Self::to_cstr(self.0.domainname.as_ptr().cast())
}
#[inline]
fn to_cstr<'a>(ptr: *const u8) -> &'a CStr {
unsafe { CStr::from_ptr(ptr.cast()) }
}
}
impl fmt::Debug for Uname {
fn fmt(&self, fmt: &mut fmt::Formatter<'_>) -> fmt::Result {
#[cfg(not(linux_kernel))]
{
write!(
fmt,
"{} {} {} {} {}",
self.sysname().to_string_lossy(),
self.nodename().to_string_lossy(),
self.release().to_string_lossy(),
self.version().to_string_lossy(),
self.machine().to_string_lossy(),
)
}
#[cfg(linux_kernel)]
{
write!(
fmt,
"{} {} {} {} {} {}",
self.sysname().to_string_lossy(),
self.nodename().to_string_lossy(),
self.release().to_string_lossy(),
self.version().to_string_lossy(),
self.machine().to_string_lossy(),
self.domainname().to_string_lossy(),
)
}
}
}
#[cfg(linux_kernel)]
#[inline]
pub fn sysinfo() -> Sysinfo {
backend::process::syscalls::sysinfo()
}
#[cfg(not(any(target_os = "emscripten", target_os = "redox", target_os = "wasi")))]
#[inline]
pub fn sethostname(name: &[u8]) -> io::Result<()> {
backend::process::syscalls::sethostname(name)
}