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
use glib::object::{Cast, IsA};
use glib::translate::*;
use InputStream;
use UnixInputStream;
#[cfg(unix)]
use std::os::unix::io::{AsRawFd, FromRawFd, IntoRawFd, RawFd};
#[cfg(all(not(unix), feature = "dox"))]
use socket::{AsRawFd, FromRawFd, IntoRawFd, RawFd};
impl UnixInputStream {
pub unsafe fn new<T: IntoRawFd>(fd: T) -> UnixInputStream {
let fd = fd.into_raw_fd();
let close_fd = true.to_glib();
InputStream::from_glib_full(gio_sys::g_unix_input_stream_new(fd, close_fd)).unsafe_cast()
}
}
impl AsRawFd for UnixInputStream {
fn as_raw_fd(&self) -> RawFd {
unsafe { gio_sys::g_unix_input_stream_get_fd(self.to_glib_none().0) as _ }
}
}
pub trait UnixInputStreamExtManual: Sized {
fn get_fd<T: FromRawFd>(&self) -> T;
unsafe fn set_close_fd(&self, close_fd: bool);
}
impl<O: IsA<UnixInputStream>> UnixInputStreamExtManual for O {
fn get_fd<T: FromRawFd>(&self) -> T {
unsafe {
T::from_raw_fd(gio_sys::g_unix_input_stream_get_fd(
self.as_ref().to_glib_none().0,
))
}
}
unsafe fn set_close_fd(&self, close_fd: bool) {
gio_sys::g_unix_input_stream_set_close_fd(
self.as_ref().to_glib_none().0,
close_fd.to_glib(),
);
}
}