membacking/mapping_manager/
mappable.rsuse mesh::payload::DefaultEncoding;
use mesh::payload::encoding::ResourceField;
use std::sync::Arc;
#[cfg(windows)]
type OwnedType = std::os::windows::io::OwnedHandle;
#[cfg(unix)]
type OwnedType = std::os::fd::OwnedFd;
#[derive(Debug, Clone)]
pub struct Mappable(Arc<OwnedType>);
impl From<OwnedType> for Mappable {
fn from(value: OwnedType) -> Self {
Self(Arc::new(value))
}
}
impl From<Arc<OwnedType>> for Mappable {
fn from(value: Arc<OwnedType>) -> Self {
Self(value)
}
}
impl From<Mappable> for OwnedType {
fn from(value: Mappable) -> Self {
Arc::try_unwrap(value.0).unwrap_or_else(|v| v.try_clone().expect("out of fds/handles"))
}
}
#[cfg(unix)]
impl std::os::fd::AsFd for Mappable {
fn as_fd(&self) -> std::os::fd::BorrowedFd<'_> {
self.0.as_fd()
}
}
#[cfg(windows)]
impl std::os::windows::io::AsHandle for Mappable {
fn as_handle(&self) -> std::os::windows::io::BorrowedHandle<'_> {
self.0.as_handle()
}
}
impl DefaultEncoding for Mappable {
type Encoding = ResourceField<OwnedType>;
}