use crate::ffi::CString;
use crate::path::SMALL_PATH_BUFFER_SIZE;
use crate::{backend, io, path};
use alloc::vec::Vec;
#[cfg(not(target_os = "fuchsia"))]
use backend::fd::AsFd;
#[inline]
pub fn chdir<P: path::Arg>(path: P) -> io::Result<()> {
path.into_with_c_str(backend::process::syscalls::chdir)
}
#[cfg(not(target_os = "fuchsia"))]
#[inline]
pub fn fchdir<Fd: AsFd>(fd: Fd) -> io::Result<()> {
backend::process::syscalls::fchdir(fd.as_fd())
}
#[cfg(not(target_os = "wasi"))]
#[inline]
pub fn getcwd<B: Into<Vec<u8>>>(reuse: B) -> io::Result<CString> {
_getcwd(reuse.into())
}
fn _getcwd(mut buffer: Vec<u8>) -> io::Result<CString> {
buffer.clear();
buffer.reserve(SMALL_PATH_BUFFER_SIZE);
buffer.resize(buffer.capacity(), 0_u8);
loop {
match backend::process::syscalls::getcwd(&mut buffer) {
Err(io::Errno::RANGE) => {
buffer.reserve(1); buffer.resize(buffer.capacity(), 0_u8);
}
Ok(_) => {
let len = buffer.iter().position(|x| *x == b'\0').unwrap();
buffer.resize(len, 0_u8);
return Ok(CString::new(buffer).unwrap());
}
Err(errno) => return Err(errno),
}
}
}