blob: 7223e99552fbbbb87f612203a3c768d6f60fc6c9 [file] [log] [blame]
//! Implementations of io-lifetimes' traits for async-std's types. In the
//! future, we'll prefer to have crates provide their own impls; this is
//! just a temporary measure.
#[cfg(any(unix, target_os = "wasi"))]
use crate::{AsFd, BorrowedFd, FromFd, IntoFd, OwnedFd};
#[cfg(windows)]
use crate::{
AsHandle, AsSocket, BorrowedHandle, BorrowedSocket, FromHandle, FromSocket, IntoHandle,
IntoSocket, OwnedHandle, OwnedSocket,
};
#[cfg(unix)]
use std::os::unix::io::{AsRawFd, FromRawFd, IntoRawFd};
#[cfg(target_os = "wasi")]
use std::os::wasi::io::{AsRawFd, FromRawFd, IntoRawFd};
#[cfg(windows)]
use std::os::windows::io::{
AsRawHandle, AsRawSocket, FromRawHandle, FromRawSocket, IntoRawHandle, IntoRawSocket,
};
unsafe impl FilelikeViewType for async_std::fs::File {}
#[cfg(any(unix, target_os = "wasi"))]
impl AsFd for async_std::fs::File {
#[inline]
fn as_fd(&self) -> BorrowedFd<'_> {
unsafe { BorrowedFd::borrow_raw(self.as_raw_fd()) }
}
}
#[cfg(windows)]
impl AsHandle for async_std::fs::File {
#[inline]
fn as_handle(&self) -> BorrowedHandle<'_> {
unsafe { BorrowedHandle::borrow_raw(self.as_raw_handle()) }
}
}
#[cfg(any(unix, target_os = "wasi"))]
impl IntoFd for async_std::fs::File {
#[inline]
fn into_fd(self) -> OwnedFd {
unsafe { OwnedFd::from_raw_fd(self.into_raw_fd()) }
}
}
#[cfg(any(unix, target_os = "wasi"))]
impl From<async_std::fs::File> for OwnedFd {
#[inline]
fn from(owned: async_std::fs::File) -> Self {
unsafe { Self::from_raw_fd(owned.into_raw_fd()) }
}
}
#[cfg(windows)]
impl IntoHandle for async_std::fs::File {
#[inline]
fn into_handle(self) -> OwnedHandle {
unsafe { OwnedHandle::from_raw_handle(self.into_raw_handle()) }
}
}
#[cfg(windows)]
impl From<async_std::fs::File> for OwnedHandle {
#[inline]
fn from(owned: async_std::fs::File) -> Self {
unsafe { Self::from_raw_handle(owned.into_raw_handle()) }
}
}
#[cfg(any(unix, target_os = "wasi"))]
impl FromFd for async_std::fs::File {
#[inline]
fn from_fd(owned: OwnedFd) -> Self {
unsafe { Self::from_raw_fd(owned.into_raw_fd()) }
}
}
#[cfg(any(unix, target_os = "wasi"))]
impl From<OwnedFd> for async_std::fs::File {
#[inline]
fn from(owned: OwnedFd) -> Self {
unsafe { Self::from_raw_fd(owned.into_raw_fd()) }
}
}
#[cfg(windows)]
impl FromHandle for async_std::fs::File {
#[inline]
fn from_handle(owned: OwnedHandle) -> Self {
unsafe { Self::from_raw_handle(owned.into_raw_handle()) }
}
}
#[cfg(windows)]
impl From<OwnedHandle> for async_std::fs::File {
#[inline]
fn from(owned: OwnedHandle) -> Self {
unsafe { Self::from_raw_handle(owned.into_raw_handle()) }
}
}
#[cfg(any(unix, target_os = "wasi"))]
impl AsFd for async_std::net::TcpStream {
#[inline]
fn as_fd(&self) -> BorrowedFd<'_> {
unsafe { BorrowedFd::borrow_raw(self.as_raw_fd()) }
}
}
#[cfg(windows)]
impl AsSocket for async_std::net::TcpStream {
#[inline]
fn as_socket(&self) -> BorrowedSocket<'_> {
unsafe { BorrowedSocket::borrow_raw(self.as_raw_socket()) }
}
}
#[cfg(any(unix, target_os = "wasi"))]
impl IntoFd for async_std::net::TcpStream {
#[inline]
fn into_fd(self) -> OwnedFd {
unsafe { OwnedFd::from_raw_fd(self.into_raw_fd()) }
}
}
#[cfg(any(unix, target_os = "wasi"))]
impl From<async_std::net::TcpStream> for OwnedFd {
#[inline]
fn from(owned: async_std::net::TcpStream) -> Self {
unsafe { Self::from_raw_fd(owned.into_raw_fd()) }
}
}
#[cfg(windows)]
impl IntoSocket for async_std::net::TcpStream {
#[inline]
fn into_socket(self) -> OwnedSocket {
unsafe { OwnedSocket::from_raw_socket(self.into_raw_socket()) }
}
}
#[cfg(windows)]
impl From<async_std::net::TcpStream> for OwnedSocket {
#[inline]
fn from(owned: async_std::net::TcpStream) -> Self {
unsafe { Self::from_raw_socket(owned.into_raw_socket()) }
}
}
#[cfg(any(unix, target_os = "wasi"))]
impl FromFd for async_std::net::TcpStream {
#[inline]
fn from_fd(owned: OwnedFd) -> Self {
unsafe { Self::from_raw_fd(owned.into_raw_fd()) }
}
}
#[cfg(any(unix, target_os = "wasi"))]
impl From<OwnedFd> for async_std::net::TcpStream {
#[inline]
fn from(owned: OwnedFd) -> Self {
unsafe { Self::from_raw_fd(owned.into_raw_fd()) }
}
}
#[cfg(windows)]
impl FromSocket for async_std::net::TcpStream {
#[inline]
fn from_socket(owned: OwnedSocket) -> Self {
unsafe { Self::from_raw_socket(owned.into_raw_socket()) }
}
}
#[cfg(windows)]
impl From<OwnedSocket> for async_std::net::TcpStream {
#[inline]
fn from(owned: OwnedSocket) -> Self {
unsafe { Self::from_raw_socket(owned.into_raw_socket()) }
}
}
#[cfg(any(unix, target_os = "wasi"))]
impl AsFd for async_std::net::TcpListener {
#[inline]
fn as_fd(&self) -> BorrowedFd<'_> {
unsafe { BorrowedFd::borrow_raw(self.as_raw_fd()) }
}
}
#[cfg(windows)]
impl AsSocket for async_std::net::TcpListener {
#[inline]
fn as_socket(&self) -> BorrowedSocket<'_> {
unsafe { BorrowedSocket::borrow_raw(self.as_raw_socket()) }
}
}
#[cfg(any(unix, target_os = "wasi"))]
impl IntoFd for async_std::net::TcpListener {
#[inline]
fn into_fd(self) -> OwnedFd {
unsafe { OwnedFd::from_raw_fd(self.into_raw_fd()) }
}
}
#[cfg(any(unix, target_os = "wasi"))]
impl From<async_std::net::TcpListener> for OwnedFd {
#[inline]
fn from(owned: async_std::net::TcpListener) -> Self {
unsafe { Self::from_raw_fd(owned.into_raw_fd()) }
}
}
#[cfg(windows)]
impl IntoSocket for async_std::net::TcpListener {
#[inline]
fn into_socket(self) -> OwnedSocket {
unsafe { OwnedSocket::from_raw_socket(self.into_raw_socket()) }
}
}
#[cfg(windows)]
impl From<async_std::net::TcpListener> for OwnedSocket {
#[inline]
fn from(owned: async_std::net::TcpListener) -> Self {
unsafe { Self::from_raw_socket(owned.into_raw_socket()) }
}
}
#[cfg(any(unix, target_os = "wasi"))]
impl FromFd for async_std::net::TcpListener {
#[inline]
fn from_fd(owned: OwnedFd) -> Self {
unsafe { Self::from_raw_fd(owned.into_raw_fd()) }
}
}
#[cfg(any(unix, target_os = "wasi"))]
impl From<OwnedFd> for async_std::net::TcpListener {
#[inline]
fn from(owned: OwnedFd) -> Self {
unsafe { Self::from_raw_fd(owned.into_raw_fd()) }
}
}
#[cfg(windows)]
impl FromSocket for async_std::net::TcpListener {
#[inline]
fn from_socket(owned: OwnedSocket) -> Self {
unsafe { Self::from_raw_socket(owned.into_raw_socket()) }
}
}
#[cfg(windows)]
impl From<OwnedSocket> for async_std::net::TcpListener {
#[inline]
fn from(owned: OwnedSocket) -> Self {
unsafe { Self::from_raw_socket(owned.into_raw_socket()) }
}
}
#[cfg(any(unix, target_os = "wasi"))]
impl AsFd for async_std::net::UdpSocket {
#[inline]
fn as_fd(&self) -> BorrowedFd<'_> {
unsafe { BorrowedFd::borrow_raw(self.as_raw_fd()) }
}
}
#[cfg(windows)]
impl AsSocket for async_std::net::UdpSocket {
#[inline]
fn as_socket(&self) -> BorrowedSocket<'_> {
unsafe { BorrowedSocket::borrow_raw(self.as_raw_socket()) }
}
}
#[cfg(any(unix, target_os = "wasi"))]
impl IntoFd for async_std::net::UdpSocket {
#[inline]
fn into_fd(self) -> OwnedFd {
unsafe { OwnedFd::from_raw_fd(self.into_raw_fd()) }
}
}
#[cfg(any(unix, target_os = "wasi"))]
impl From<async_std::net::UdpSocket> for OwnedFd {
#[inline]
fn from(owned: async_std::net::UdpSocket) -> Self {
unsafe { Self::from_raw_fd(owned.into_raw_fd()) }
}
}
#[cfg(windows)]
impl IntoSocket for async_std::net::UdpSocket {
#[inline]
fn into_socket(self) -> OwnedSocket {
unsafe { OwnedSocket::from_raw_socket(self.into_raw_socket()) }
}
}
#[cfg(windows)]
impl From<async_std::net::UdpSocket> for OwnedSocket {
#[inline]
fn from(owned: async_std::net::UdpSocket) -> Self {
unsafe { Self::from_raw_socket(owned.into_raw_socket()) }
}
}
#[cfg(any(unix, target_os = "wasi"))]
impl FromFd for async_std::net::UdpSocket {
#[inline]
fn from_fd(owned: OwnedFd) -> Self {
unsafe { Self::from_raw_fd(owned.into_raw_fd()) }
}
}
#[cfg(any(unix, target_os = "wasi"))]
impl From<OwnedFd> for async_std::net::UdpSocket {
#[inline]
fn from(owned: OwnedFd) -> Self {
unsafe { Self::from_raw_fd(owned.into_raw_fd()) }
}
}
#[cfg(windows)]
impl FromSocket for async_std::net::UdpSocket {
#[inline]
fn from_socket(owned: OwnedSocket) -> Self {
unsafe { Self::from_raw_socket(owned.into_raw_socket()) }
}
}
#[cfg(windows)]
impl From<OwnedSocket> for async_std::net::UdpSocket {
#[inline]
fn from(owned: OwnedSocket) -> Self {
unsafe { Self::from_raw_socket(owned.into_raw_socket()) }
}
}
#[cfg(any(unix, target_os = "wasi"))]
impl AsFd for async_std::io::Stdin {
#[inline]
fn as_fd(&self) -> BorrowedFd<'_> {
unsafe { BorrowedFd::borrow_raw(self.as_raw_fd()) }
}
}
#[cfg(windows)]
impl AsHandle for async_std::io::Stdin {
#[inline]
fn as_handle(&self) -> BorrowedHandle<'_> {
unsafe { BorrowedHandle::borrow_raw(self.as_raw_handle()) }
}
}
#[cfg(any(unix, target_os = "wasi"))]
impl AsFd for async_std::io::Stdout {
#[inline]
fn as_fd(&self) -> BorrowedFd<'_> {
unsafe { BorrowedFd::borrow_raw(self.as_raw_fd()) }
}
}
#[cfg(windows)]
impl AsHandle for async_std::io::Stdout {
#[inline]
fn as_handle(&self) -> BorrowedHandle<'_> {
unsafe { BorrowedHandle::borrow_raw(self.as_raw_handle()) }
}
}
#[cfg(any(unix, target_os = "wasi"))]
impl AsFd for async_std::io::Stderr {
#[inline]
fn as_fd(&self) -> BorrowedFd<'_> {
unsafe { BorrowedFd::borrow_raw(self.as_raw_fd()) }
}
}
#[cfg(windows)]
impl AsHandle for async_std::io::Stderr {
#[inline]
fn as_handle(&self) -> BorrowedHandle<'_> {
unsafe { BorrowedHandle::borrow_raw(self.as_raw_handle()) }
}
}
#[cfg(unix)]
impl AsFd for async_std::os::unix::net::UnixStream {
#[inline]
fn as_fd(&self) -> BorrowedFd<'_> {
unsafe { BorrowedFd::borrow_raw(self.as_raw_fd()) }
}
}
#[cfg(unix)]
impl IntoFd for async_std::os::unix::net::UnixStream {
#[inline]
fn into_fd(self) -> OwnedFd {
unsafe { OwnedFd::from_raw_fd(self.into_raw_fd()) }
}
}
#[cfg(unix)]
impl From<async_std::os::unix::net::UnixStream> for OwnedFd {
#[inline]
fn from(owned: async_std::os::unix::net::UnixStream) -> Self {
unsafe { Self::from_raw_fd(owned.into_raw_fd()) }
}
}
#[cfg(unix)]
impl FromFd for async_std::os::unix::net::UnixStream {
#[inline]
fn from_fd(owned: OwnedFd) -> Self {
unsafe { Self::from_raw_fd(owned.into_raw_fd()) }
}
}
#[cfg(unix)]
impl From<OwnedFd> for async_std::os::unix::net::UnixStream {
#[inline]
fn from(owned: OwnedFd) -> Self {
unsafe { Self::from_raw_fd(owned.into_raw_fd()) }
}
}
#[cfg(unix)]
impl AsFd for async_std::os::unix::net::UnixListener {
#[inline]
fn as_fd(&self) -> BorrowedFd<'_> {
unsafe { BorrowedFd::borrow_raw(self.as_raw_fd()) }
}
}
#[cfg(unix)]
impl IntoFd for async_std::os::unix::net::UnixListener {
#[inline]
fn into_fd(self) -> OwnedFd {
unsafe { OwnedFd::from_raw_fd(self.into_raw_fd()) }
}
}
#[cfg(unix)]
impl From<async_std::os::unix::net::UnixListener> for OwnedFd {
#[inline]
fn from(owned: async_std::os::unix::net::UnixListener) -> Self {
unsafe { Self::from_raw_fd(owned.into_raw_fd()) }
}
}
#[cfg(unix)]
impl FromFd for async_std::os::unix::net::UnixListener {
#[inline]
fn from_fd(owned: OwnedFd) -> Self {
unsafe { Self::from_raw_fd(owned.into_raw_fd()) }
}
}
#[cfg(unix)]
impl From<OwnedFd> for async_std::os::unix::net::UnixListener {
#[inline]
fn from(owned: OwnedFd) -> Self {
unsafe { Self::from_raw_fd(owned.into_raw_fd()) }
}
}
#[cfg(unix)]
impl AsFd for async_std::os::unix::net::UnixDatagram {
#[inline]
fn as_fd(&self) -> BorrowedFd<'_> {
unsafe { BorrowedFd::borrow_raw(self.as_raw_fd()) }
}
}
#[cfg(unix)]
impl IntoFd for async_std::os::unix::net::UnixDatagram {
#[inline]
fn into_fd(self) -> OwnedFd {
unsafe { OwnedFd::from_raw_fd(self.into_raw_fd()) }
}
}
#[cfg(unix)]
impl From<async_std::os::unix::net::UnixDatagram> for OwnedFd {
#[inline]
fn from(owned: async_std::os::unix::net::UnixDatagram) -> Self {
unsafe { Self::from_raw_fd(owned.into_raw_fd()) }
}
}
#[cfg(unix)]
impl FromFd for async_std::os::unix::net::UnixDatagram {
#[inline]
fn from_fd(owned: OwnedFd) -> Self {
unsafe { Self::from_raw_fd(owned.into_raw_fd()) }
}
}
#[cfg(unix)]
impl From<OwnedFd> for async_std::os::unix::net::UnixDatagram {
#[inline]
fn from(owned: OwnedFd) -> Self {
unsafe { Self::from_raw_fd(owned.into_raw_fd()) }
}
}