use super::procfs::set_times_through_proc_self_fd;
use crate::fs::{open, set_times_nofollow, FollowSymlinks, OpenOptions, SystemTimeSpec};
use fs_set_times::SetTimes;
use std::{fs, io, path::Path};
pub(crate) fn set_times_impl(
start: &fs::File,
path: &Path,
atime: Option<SystemTimeSpec>,
mtime: Option<SystemTimeSpec>,
follow: FollowSymlinks,
) -> io::Result<()> {
match follow {
FollowSymlinks::Yes => set_times_follow(start, path, atime, mtime),
FollowSymlinks::No => set_times_nofollow(start, path, atime, mtime),
}
}
fn set_times_follow(
start: &fs::File,
path: &Path,
atime: Option<SystemTimeSpec>,
mtime: Option<SystemTimeSpec>,
) -> io::Result<()> {
match open(start, path, OpenOptions::new().write(true)) {
Ok(file) => {
return file.set_times(
atime.map(SystemTimeSpec::into_std),
mtime.map(SystemTimeSpec::into_std),
)
}
Err(err) => match err.raw_os_error() {
Some(libc::EACCES) | Some(libc::EISDIR) => (),
_ => return Err(err),
},
}
match open(start, path, OpenOptions::new().read(true)) {
Ok(file) => {
return file.set_times(
atime.map(SystemTimeSpec::into_std),
mtime.map(SystemTimeSpec::into_std),
)
}
Err(err) => match err.raw_os_error() {
Some(libc::EACCES) => (),
_ => return Err(err),
},
}
set_times_through_proc_self_fd(start, path, atime, mtime)
}