summaryrefslogtreecommitdiffstats
path: root/vendor/io-lifetimes/src/impls_tokio.rs
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:02:58 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:02:58 +0000
commit698f8c2f01ea549d77d7dc3338a12e04c11057b9 (patch)
tree173a775858bd501c378080a10dca74132f05bc50 /vendor/io-lifetimes/src/impls_tokio.rs
parentInitial commit. (diff)
downloadrustc-698f8c2f01ea549d77d7dc3338a12e04c11057b9.tar.xz
rustc-698f8c2f01ea549d77d7dc3338a12e04c11057b9.zip
Adding upstream version 1.64.0+dfsg1.upstream/1.64.0+dfsg1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'vendor/io-lifetimes/src/impls_tokio.rs')
-rw-r--r--vendor/io-lifetimes/src/impls_tokio.rs214
1 files changed, 214 insertions, 0 deletions
diff --git a/vendor/io-lifetimes/src/impls_tokio.rs b/vendor/io-lifetimes/src/impls_tokio.rs
new file mode 100644
index 000000000..6dfde9136
--- /dev/null
+++ b/vendor/io-lifetimes/src/impls_tokio.rs
@@ -0,0 +1,214 @@
+//! Implementations of io-lifetimes' traits for tokio'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, OwnedFd};
+#[cfg(windows)]
+use crate::{AsHandle, AsSocket, BorrowedHandle, BorrowedSocket, FromHandle, OwnedHandle};
+#[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, IntoRawHandle};
+
+#[cfg(any(unix, target_os = "wasi"))]
+impl AsFd for tokio::fs::File {
+ #[inline]
+ fn as_fd(&self) -> BorrowedFd<'_> {
+ unsafe { BorrowedFd::borrow_raw(self.as_raw_fd()) }
+ }
+}
+
+#[cfg(windows)]
+impl AsHandle for tokio::fs::File {
+ #[inline]
+ fn as_handle(&self) -> BorrowedHandle<'_> {
+ unsafe { BorrowedHandle::borrow_raw(self.as_raw_handle()) }
+ }
+}
+
+#[cfg(any(unix, target_os = "wasi"))]
+impl FromFd for tokio::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 tokio::fs::File {
+ #[inline]
+ fn from(owned: OwnedFd) -> Self {
+ unsafe { Self::from_raw_fd(owned.into_raw_fd()) }
+ }
+}
+
+#[cfg(windows)]
+impl FromHandle for tokio::fs::File {
+ #[inline]
+ fn from_handle(owned: OwnedHandle) -> Self {
+ unsafe { Self::from_raw_handle(owned.into_raw_handle()) }
+ }
+}
+
+#[cfg(windows)]
+impl From<OwnedHandle> for tokio::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 tokio::net::TcpStream {
+ #[inline]
+ fn as_fd(&self) -> BorrowedFd<'_> {
+ unsafe { BorrowedFd::borrow_raw(self.as_raw_fd()) }
+ }
+}
+
+#[cfg(windows)]
+impl AsSocket for tokio::net::TcpStream {
+ #[inline]
+ fn as_socket(&self) -> BorrowedSocket<'_> {
+ unsafe { BorrowedSocket::borrow_raw(self.as_raw_socket()) }
+ }
+}
+
+#[cfg(any(unix, target_os = "wasi"))]
+impl AsFd for tokio::net::TcpListener {
+ #[inline]
+ fn as_fd(&self) -> BorrowedFd<'_> {
+ unsafe { BorrowedFd::borrow_raw(self.as_raw_fd()) }
+ }
+}
+
+#[cfg(windows)]
+impl AsSocket for tokio::net::TcpListener {
+ #[inline]
+ fn as_socket(&self) -> BorrowedSocket<'_> {
+ unsafe { BorrowedSocket::borrow_raw(self.as_raw_socket()) }
+ }
+}
+
+#[cfg(any(unix, target_os = "wasi"))]
+impl AsFd for tokio::net::UdpSocket {
+ #[inline]
+ fn as_fd(&self) -> BorrowedFd<'_> {
+ unsafe { BorrowedFd::borrow_raw(self.as_raw_fd()) }
+ }
+}
+
+#[cfg(windows)]
+impl AsSocket for tokio::net::UdpSocket {
+ #[inline]
+ fn as_socket(&self) -> BorrowedSocket<'_> {
+ unsafe { BorrowedSocket::borrow_raw(self.as_raw_socket()) }
+ }
+}
+
+#[cfg(any(unix, target_os = "wasi"))]
+impl AsFd for tokio::io::Stdin {
+ #[inline]
+ fn as_fd(&self) -> BorrowedFd {
+ unsafe { BorrowedFd::borrow_raw(self.as_raw_fd()) }
+ }
+}
+
+#[cfg(windows)]
+impl AsHandle for tokio::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 tokio::io::Stdout {
+ #[inline]
+ fn as_fd(&self) -> BorrowedFd<'_> {
+ unsafe { BorrowedFd::borrow_raw(self.as_raw_fd()) }
+ }
+}
+
+#[cfg(windows)]
+impl AsHandle for tokio::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 tokio::io::Stderr {
+ #[inline]
+ fn as_fd(&self) -> BorrowedFd<'_> {
+ unsafe { BorrowedFd::borrow_raw(self.as_raw_fd()) }
+ }
+}
+
+#[cfg(windows)]
+impl AsHandle for tokio::io::Stderr {
+ #[inline]
+ fn as_handle(&self) -> BorrowedHandle<'_> {
+ unsafe { BorrowedHandle::borrow_raw(self.as_raw_handle()) }
+ }
+}
+
+#[cfg(unix)]
+impl AsFd for tokio::net::UnixStream {
+ #[inline]
+ fn as_fd(&self) -> BorrowedFd<'_> {
+ unsafe { BorrowedFd::borrow_raw(self.as_raw_fd()) }
+ }
+}
+
+#[cfg(unix)]
+impl AsFd for tokio::net::UnixListener {
+ #[inline]
+ fn as_fd(&self) -> BorrowedFd<'_> {
+ unsafe { BorrowedFd::borrow_raw(self.as_raw_fd()) }
+ }
+}
+
+#[cfg(unix)]
+impl AsFd for tokio::net::UnixDatagram {
+ #[inline]
+ fn as_fd(&self) -> BorrowedFd<'_> {
+ unsafe { BorrowedFd::borrow_raw(self.as_raw_fd()) }
+ }
+}
+
+#[cfg(any(unix, target_os = "wasi"))]
+impl AsFd for tokio::process::ChildStdout {
+ #[inline]
+ fn as_fd(&self) -> BorrowedFd<'_> {
+ unsafe { BorrowedFd::borrow_raw(self.as_raw_fd()) }
+ }
+}
+
+#[cfg(windows)]
+impl AsHandle for tokio::process::ChildStdin {
+ #[inline]
+ fn as_handle(&self) -> BorrowedHandle<'_> {
+ unsafe { BorrowedHandle::borrow_raw(self.as_raw_handle()) }
+ }
+}
+
+#[cfg(windows)]
+impl AsHandle for tokio::process::ChildStdout {
+ #[inline]
+ fn as_handle(&self) -> BorrowedHandle<'_> {
+ unsafe { BorrowedHandle::borrow_raw(self.as_raw_handle()) }
+ }
+}
+
+#[cfg(windows)]
+impl AsHandle for tokio::process::ChildStderr {
+ #[inline]
+ fn as_handle(&self) -> BorrowedHandle {
+ unsafe { BorrowedHandle::borrow_raw(self.as_raw_handle()) }
+ }
+}