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
|
//! Implementations of io-lifetimes' traits for os_pipe'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, BorrowedHandle, FromHandle, IntoHandle, 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, FromRawHandle, IntoRawHandle};
#[cfg(any(unix, target_os = "wasi"))]
impl AsFd for os_pipe::PipeReader {
#[inline]
fn as_fd(&self) -> BorrowedFd<'_> {
unsafe { BorrowedFd::borrow_raw(self.as_raw_fd()) }
}
}
#[cfg(windows)]
impl AsHandle for os_pipe::PipeReader {
#[inline]
fn as_handle(&self) -> BorrowedHandle<'_> {
unsafe { BorrowedHandle::borrow_raw(self.as_raw_handle()) }
}
}
#[cfg(any(unix, target_os = "wasi"))]
impl IntoFd for os_pipe::PipeReader {
#[inline]
fn into_fd(self) -> OwnedFd {
unsafe { OwnedFd::from_raw_fd(self.into_raw_fd()) }
}
}
#[cfg(any(unix, target_os = "wasi"))]
impl From<os_pipe::PipeReader> for OwnedFd {
#[inline]
fn from(owned: os_pipe::PipeReader) -> Self {
unsafe { Self::from_raw_fd(owned.into_raw_fd()) }
}
}
#[cfg(windows)]
impl IntoHandle for os_pipe::PipeReader {
#[inline]
fn into_handle(self) -> OwnedHandle {
unsafe { OwnedHandle::from_raw_handle(self.into_raw_handle()) }
}
}
#[cfg(windows)]
impl From<os_pipe::PipeReader> for OwnedHandle {
#[inline]
fn from(owned: os_pipe::PipeReader) -> Self {
unsafe { Self::from_raw_handle(owned.into_raw_handle()) }
}
}
#[cfg(any(unix, target_os = "wasi"))]
impl FromFd for os_pipe::PipeReader {
#[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 os_pipe::PipeReader {
#[inline]
fn from(owned: OwnedFd) -> Self {
unsafe { Self::from_raw_fd(owned.into_raw_fd()) }
}
}
#[cfg(windows)]
impl FromHandle for os_pipe::PipeReader {
#[inline]
fn from_handle(owned: OwnedHandle) -> Self {
unsafe { Self::from_raw_handle(owned.into_raw_handle()) }
}
}
#[cfg(windows)]
impl From<OwnedHandle> for os_pipe::PipeReader {
#[inline]
fn from(owned: OwnedHandle) -> Self {
unsafe { Self::from_raw_handle(owned.into_raw_handle()) }
}
}
#[cfg(any(unix, target_os = "wasi"))]
impl AsFd for os_pipe::PipeWriter {
#[inline]
fn as_fd(&self) -> BorrowedFd<'_> {
unsafe { BorrowedFd::borrow_raw(self.as_raw_fd()) }
}
}
#[cfg(windows)]
impl AsHandle for os_pipe::PipeWriter {
#[inline]
fn as_handle(&self) -> BorrowedHandle<'_> {
unsafe { BorrowedHandle::borrow_raw(self.as_raw_handle()) }
}
}
#[cfg(any(unix, target_os = "wasi"))]
impl IntoFd for os_pipe::PipeWriter {
#[inline]
fn into_fd(self) -> OwnedFd {
unsafe { OwnedFd::from_raw_fd(self.into_raw_fd()) }
}
}
#[cfg(any(unix, target_os = "wasi"))]
impl From<os_pipe::PipeWriter> for OwnedFd {
#[inline]
fn from(owned: os_pipe::PipeWriter) -> Self {
unsafe { Self::from_raw_fd(owned.into_raw_fd()) }
}
}
#[cfg(windows)]
impl IntoHandle for os_pipe::PipeWriter {
#[inline]
fn into_handle(self) -> OwnedHandle {
unsafe { OwnedHandle::from_raw_handle(self.into_raw_handle()) }
}
}
#[cfg(windows)]
impl From<os_pipe::PipeWriter> for OwnedHandle {
#[inline]
fn from(owned: os_pipe::PipeWriter) -> Self {
unsafe { Self::from_raw_handle(owned.into_raw_handle()) }
}
}
#[cfg(any(unix, target_os = "wasi"))]
impl FromFd for os_pipe::PipeWriter {
#[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 os_pipe::PipeWriter {
#[inline]
fn from(owned: OwnedFd) -> Self {
unsafe { Self::from_raw_fd(owned.into_raw_fd()) }
}
}
#[cfg(windows)]
impl FromHandle for os_pipe::PipeWriter {
#[inline]
fn from_handle(owned: OwnedHandle) -> Self {
unsafe { Self::from_raw_handle(owned.into_raw_handle()) }
}
}
#[cfg(windows)]
impl From<OwnedHandle> for os_pipe::PipeWriter {
#[inline]
fn from(owned: OwnedHandle) -> Self {
unsafe { Self::from_raw_handle(owned.into_raw_handle()) }
}
}
|