1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204
//! Typed views using temporary objects.
//!
//! This module defines the return types for [`AsFilelike::as_filelike_view`]
//! and [`AsSocketlike::as_socketlike_view`].
//!
//! [`AsSocketlike::as_socketlike_view`]: crate::AsSocketlike::as_socketlike_view
use crate::raw::{
AsRawFilelike, AsRawSocketlike, FromRawFilelike, FromRawSocketlike, IntoRawFilelike,
IntoRawSocketlike, RawFilelike, RawSocketlike,
};
use crate::{
AsFilelike, AsSocketlike, FromFilelike, FromSocketlike, IntoFilelike, IntoSocketlike,
OwnedFilelike, OwnedSocketlike,
};
use std::fmt;
use std::marker::PhantomData;
use std::mem::ManuallyDrop;
use std::ops::Deref;
/// Declare that a type is safe to use in a [`FilelikeView`].
///
/// # Safety
///
/// Types implementing this trait declare that if they are constructed with
/// [`FromFilelike`] and consumed with [`IntoFilelike`], their `IntoFilelike`
/// will return the same `OwnedFd` value that was passed to their
/// `FromFilelike`.
pub unsafe trait FilelikeViewType: FromFilelike + IntoFilelike {}
/// Declare that a type is safe to use in a [`SocketlikeView`].
///
/// # Safety
///
/// Types implementing this trait declare that if they are constructed with
/// [`FromSocketlike`] and consumed with [`IntoSocketlike`], their
/// `IntoSocketlike` will return the same `OwnedFd` value that was passed to
/// their `FromSocketlike`.
pub unsafe trait SocketlikeViewType: FromSocketlike + IntoSocketlike {}
/// A non-owning view of a resource which dereferences to a `&Target` or
/// `&mut Target`. These are returned by [`AsFilelike::as_filelike_view`].
pub struct FilelikeView<'filelike, Target: FilelikeViewType> {
/// The value to dereference to. This is a `ManuallyDrop` so that we can
/// consume it in our `Drop` impl.
target: ManuallyDrop<Target>,
/// `FilelikeViewType` implementors guarantee that their `Into<OwnedFd>`
/// returns the same fd as their `From<OwnedFd>` gave them. This field
/// allows us to verify this.
#[cfg(debug_assertions)]
orig: RawFilelike,
/// This field exists because we don't otherwise explicitly use
/// `'filelike`.
_phantom: PhantomData<&'filelike OwnedFilelike>,
}
/// A non-owning view of a resource which dereferences to a `&Target` or
/// `&mut Target`. These are returned by [`AsSocketlike::as_socketlike_view`].
pub struct SocketlikeView<'socketlike, Target: SocketlikeViewType> {
/// The value to dereference to. This is a `ManuallyDrop` so that we can
/// consume it in our `Drop` impl.
target: ManuallyDrop<Target>,
/// `SocketlikeViewType` implementors guarantee that their `Into<OwnedFd>`
/// returns the same fd as their `From<OwnedFd>` gave them. This field
/// allows us to verify this.
#[cfg(debug_assertions)]
orig: RawSocketlike,
/// This field exists because we don't otherwise explicitly use
/// `'socketlike`.
_phantom: PhantomData<&'socketlike OwnedSocketlike>,
}
impl<Target: FilelikeViewType> FilelikeView<'_, Target> {
/// Construct a temporary `Target` and wrap it in a `FilelikeView` object.
#[inline]
pub(crate) fn new<T: AsFilelike>(filelike: &T) -> Self {
// Safety: The returned `FilelikeView` is scoped to the lifetime of
// `filelike`, which we've borrowed here, so the view won't outlive
// the object it's borrowed from.
unsafe { Self::view_raw(filelike.as_filelike().as_raw_filelike()) }
}
/// Construct a temporary `Target` from raw and wrap it in a `FilelikeView`
/// object.
///
/// # Safety
///
/// `raw` must be a valid raw filelike referencing a resource that outlives
/// the resulting view.
#[inline]
pub unsafe fn view_raw(raw: RawFilelike) -> Self {
let owned = OwnedFilelike::from_raw_filelike(raw);
Self {
target: ManuallyDrop::new(Target::from_filelike(owned)),
#[cfg(debug_assertions)]
orig: raw,
_phantom: PhantomData,
}
}
}
impl<Target: SocketlikeViewType> SocketlikeView<'_, Target> {
/// Construct a temporary `Target` and wrap it in a `SocketlikeView`
/// object.
#[inline]
pub(crate) fn new<T: AsSocketlike>(socketlike: &T) -> Self {
// Safety: The returned `SocketlikeView` is scoped to the lifetime of
// `socketlike`, which we've borrowed here, so the view won't outlive
// the object it's borrowed from.
unsafe { Self::view_raw(socketlike.as_socketlike().as_raw_socketlike()) }
}
/// Construct a temporary `Target` from raw and wrap it in a
/// `SocketlikeView` object.
///
/// # Safety
///
/// `raw` must be a valid raw socketlike referencing a resource that
/// outlives the resulting view.
#[inline]
pub unsafe fn view_raw(raw: RawSocketlike) -> Self {
let owned = OwnedSocketlike::from_raw_socketlike(raw);
Self {
target: ManuallyDrop::new(Target::from_socketlike(owned)),
#[cfg(debug_assertions)]
orig: raw,
_phantom: PhantomData,
}
}
}
impl<Target: FilelikeViewType> Deref for FilelikeView<'_, Target> {
type Target = Target;
#[inline]
fn deref(&self) -> &Self::Target {
&self.target
}
}
impl<Target: SocketlikeViewType> Deref for SocketlikeView<'_, Target> {
type Target = Target;
#[inline]
fn deref(&self) -> &Self::Target {
&self.target
}
}
impl<Target: FilelikeViewType> Drop for FilelikeView<'_, Target> {
#[inline]
fn drop(&mut self) {
// Use `Into*` to consume `self.target` without freeing its resource.
//
// Safety: Using `ManuallyDrop::take` requires us to ensure that
// `self.target` is not used again. We don't use it again here, and
// this is the `drop` function, so we know it's not used afterward.
let _raw = unsafe { ManuallyDrop::take(&mut self.target) }
.into_filelike()
.into_raw_filelike();
#[cfg(debug_assertions)]
debug_assert_eq!(self.orig, _raw);
}
}
impl<Target: SocketlikeViewType> Drop for SocketlikeView<'_, Target> {
#[inline]
fn drop(&mut self) {
// Use `Into*` to consume `self.target` without freeing its resource.
//
// Safety: Using `ManuallyDrop::take` requires us to ensure that
// `self.target` is not used again. We don't use it again here, and
// this is the `drop` function, so we know it's not used afterward.
let _raw = unsafe { ManuallyDrop::take(&mut self.target) }
.into_socketlike()
.into_raw_socketlike();
#[cfg(debug_assertions)]
debug_assert_eq!(self.orig, _raw);
}
}
impl<Target: FilelikeViewType> fmt::Debug for FilelikeView<'_, Target> {
#[allow(clippy::missing_inline_in_public_items)]
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
f.debug_struct("FilelikeView")
.field("target", &*self)
.finish()
}
}
impl<Target: SocketlikeViewType> fmt::Debug for SocketlikeView<'_, Target> {
#[allow(clippy::missing_inline_in_public_items)]
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
f.debug_struct("SocketlikeView")
.field("target", &*self)
.finish()
}
}