#![allow(clippy::comparison_chain)]
mod error;
mod sys;
mod util;
use std::ffi::OsStr;
use std::fs::File;
use std::os::unix::io::{AsRawFd, BorrowedFd};
use std::path::Path;
use std::{fmt, io};
pub use error::UnsupportedPlatformError;
pub use sys::{XAttrs, SUPPORTED_PLATFORM};
pub fn get<N, P>(path: P, name: N) -> io::Result<Option<Vec<u8>>>
where
P: AsRef<Path>,
N: AsRef<OsStr>,
{
util::extract_noattr(sys::get_path(path.as_ref(), name.as_ref(), false))
}
pub fn get_deref<N, P>(path: P, name: N) -> io::Result<Option<Vec<u8>>>
where
P: AsRef<Path>,
N: AsRef<OsStr>,
{
util::extract_noattr(sys::get_path(path.as_ref(), name.as_ref(), true))
}
pub fn set<N, P>(path: P, name: N, value: &[u8]) -> io::Result<()>
where
P: AsRef<Path>,
N: AsRef<OsStr>,
{
sys::set_path(path.as_ref(), name.as_ref(), value, false)
}
pub fn set_deref<N, P>(path: P, name: N, value: &[u8]) -> io::Result<()>
where
P: AsRef<Path>,
N: AsRef<OsStr>,
{
sys::set_path(path.as_ref(), name.as_ref(), value, true)
}
pub fn remove<N, P>(path: P, name: N) -> io::Result<()>
where
P: AsRef<Path>,
N: AsRef<OsStr>,
{
sys::remove_path(path.as_ref(), name.as_ref(), false)
}
pub fn remove_deref<N, P>(path: P, name: N) -> io::Result<()>
where
P: AsRef<Path>,
N: AsRef<OsStr>,
{
sys::remove_path(path.as_ref(), name.as_ref(), true)
}
pub fn list<P>(path: P) -> io::Result<XAttrs>
where
P: AsRef<Path>,
{
sys::list_path(path.as_ref(), false)
}
pub fn list_deref<P>(path: P) -> io::Result<XAttrs>
where
P: AsRef<Path>,
{
sys::list_path(path.as_ref(), true)
}
pub trait FileExt: AsRawFd {
fn get_xattr<N>(&self, name: N) -> io::Result<Option<Vec<u8>>>
where
N: AsRef<OsStr>,
{
let fd = unsafe { BorrowedFd::borrow_raw(self.as_raw_fd()) };
util::extract_noattr(sys::get_fd(fd, name.as_ref()))
}
fn set_xattr<N>(&self, name: N, value: &[u8]) -> io::Result<()>
where
N: AsRef<OsStr>,
{
let fd = unsafe { BorrowedFd::borrow_raw(self.as_raw_fd()) };
sys::set_fd(fd, name.as_ref(), value)
}
fn remove_xattr<N>(&self, name: N) -> io::Result<()>
where
N: AsRef<OsStr>,
{
let fd = unsafe { BorrowedFd::borrow_raw(self.as_raw_fd()) };
sys::remove_fd(fd, name.as_ref())
}
fn list_xattr(&self) -> io::Result<XAttrs> {
let fd = unsafe { BorrowedFd::borrow_raw(self.as_raw_fd()) };
sys::list_fd(fd)
}
}
impl FileExt for File {}
impl fmt::Debug for XAttrs {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
struct AsList<'a>(&'a XAttrs);
impl<'a> fmt::Debug for AsList<'a> {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
f.debug_list().entries(self.0.clone()).finish()
}
}
f.debug_tuple("XAttrs").field(&AsList(self)).finish()
}
}