pub struct UnixStream { /* private fields */ }
Expand description
A structure representing a connected Unix socket with support for passing
RawFd
.
This is the primary implementation of EnqueueFd
and DequeueFd
and it is based
on a blocking, Unix domain socket. Conceptually the key interfaces on
UnixStream
interact as shown in the following diagram:
EnqueueFd => Write => Read => DequeueFd
That is, you first enqueue a RawFd
to the UnixStream
and then
Write
at least one byte. On the other side of the UnixStream
you then Read
at least one byte and then dequeue the RawFd
.
§Examples
use std::fs::File;
let (mut sock1, mut sock2) = UnixStream::pair()?;
// sender side
// let file1: File = ...
sock1.enqueue(&file1).expect("Can't endqueue the file descriptor.");
sock1.write(b"a")?;
sock1.flush()?;
// receiver side
let mut buf = [0u8; 1];
sock2.read(&mut buf)?;
let fd = sock2.dequeue().expect("Can't dequeue the file descriptor.");
let file2 = unsafe { File::from_raw_fd(fd) };
Implementations§
Source§impl UnixStream
impl UnixStream
Sourcepub const FD_QUEUE_SIZE: usize = 2usize
pub const FD_QUEUE_SIZE: usize = 2usize
The size of the bounded queue of outbound RawFd
.
Sourcepub fn connect<P: AsRef<Path>>(path: P) -> Result<UnixStream>
pub fn connect<P: AsRef<Path>>(path: P) -> Result<UnixStream>
Connects to the socket named by path
.
§Examples
use fd_queue::UnixStream;
// let path = ...
let sock = match UnixStream::connect(path) {
Ok(sock) => sock,
Err(e) => {
println!("Couldn't connect to a socket: {}", e);
return Ok(());
}
};
Sourcepub fn pair() -> Result<(UnixStream, UnixStream)>
pub fn pair() -> Result<(UnixStream, UnixStream)>
Creates an unnamed pair of connected sockets.
Returns two UnixStream
s which are connected to each other.
§Examples
use fd_queue::UnixStream;
let (sock1, sock2) = match UnixStream::pair() {
Ok((sock1, sock2)) => (sock1, sock2),
Err(e) => {
println!("Couldn't create a pair of sockets: {}", e);
return;
}
};
Sourcepub fn try_clone(&self) -> Result<UnixStream>
pub fn try_clone(&self) -> Result<UnixStream>
Creates a new independently owned handle to the underlying socket.
The returned UnixStream
is a reference to the same stream that this object references.
Both handles will read and write the same stream of data, and options set on one stream
will be propagated to the other stream.
§Examples
use fd_queue::UnixStream;
let (sock1, _) = UnixStream::pair()?;
let sock2 = match sock1.try_clone() {
Ok(sock) => sock,
Err(e) => {
println!("Couldn't clone a socket: {}", e);
return Ok(());
}
};
Sourcepub fn local_addr(&self) -> Result<SocketAddr>
pub fn local_addr(&self) -> Result<SocketAddr>
Returns the socket address of the local half of this connection.
§Examples
use fd_queue::UnixStream;
// let path = ...
let sock = UnixStream::connect(path)?;
let addr = match sock.local_addr() {
Ok(addr) => addr,
Err(e) => {
println!("Couldn't get the local address: {}", e);
return Ok(());
}
};
Sourcepub fn peer_addr(&self) -> Result<SocketAddr>
pub fn peer_addr(&self) -> Result<SocketAddr>
Returns the socket address of the remote half of this connection.
§Examples
use fd_queue::UnixStream;
// let path = ...
let sock = UnixStream::connect(path)?;
let addr = match sock.peer_addr() {
Ok(addr) => addr,
Err(e) => {
println!("Couldn't get the local address: {}", e);
return Ok(());
}
};
Sourcepub fn take_error(&self) -> Result<Option<Error>>
pub fn take_error(&self) -> Result<Option<Error>>
Returns the value of the SO_ERROR
option.
§Examples
use fd_queue::UnixStream;
let (sock, _) = UnixStream::pair()?;
let err = match sock.take_error() {
Ok(Some(err)) => err,
Ok(None) => {
println!("No error found.");
return Ok(());
}
Err(e) => {
println!("Couldn't take the SO_ERROR option: {}", e);
return Ok(());
}
};
Sourcepub fn shutdown(&self, how: Shutdown) -> Result<()>
pub fn shutdown(&self, how: Shutdown) -> Result<()>
Shuts down the read, write, or both halves of this connection.
This function will cause all pending and future I/O calls on the specified portions to immediately return with an appropriate value.
§Examples
use fd_queue::UnixStream;
use std::net::Shutdown;
use std::io::Read;
let (mut sock, _) = UnixStream::pair()?;
sock.shutdown(Shutdown::Read).expect("Couldn't shutdown.");
let mut buf = [0u8; 256];
match sock.read(buf.as_mut()) {
Ok(0) => {},
_ => panic!("Read unexpectly not shut down."),
}
Trait Implementations§
Source§impl AsRawFd for UnixStream
impl AsRawFd for UnixStream
Source§impl Debug for UnixStream
impl Debug for UnixStream
Source§impl DequeueFd for UnixStream
Dequeue a RawFd
that was previously transmitted across the
UnixStream
.
impl DequeueFd for UnixStream
Dequeue a RawFd
that was previously transmitted across the
UnixStream
.
The RawFd
that are dequeued were transmitted by a previous call to a
method of Read
.
Source§impl EnqueueFd for UnixStream
Enqueue a RawFd
for later transmission across the UnixStream
.
impl EnqueueFd for UnixStream
Enqueue a RawFd
for later transmission across the UnixStream
.
Source§impl From<UnixStream> for UnixStream
impl From<UnixStream> for UnixStream
Source§fn from(inner: StdUnixStream) -> Self
fn from(inner: StdUnixStream) -> Self
Source§impl FromRawFd for UnixStream
impl FromRawFd for UnixStream
Source§unsafe fn from_raw_fd(fd: RawFd) -> Self
unsafe fn from_raw_fd(fd: RawFd) -> Self
Self
from the given raw file
descriptor. Read moreSource§impl IntoRawFd for UnixStream
impl IntoRawFd for UnixStream
Source§fn into_raw_fd(self) -> RawFd
fn into_raw_fd(self) -> RawFd
Source§impl Read for UnixStream
Receive bytes and RawFd
that are transmitted across the UnixStream
.
impl Read for UnixStream
Receive bytes and RawFd
that are transmitted across the UnixStream
.
The RawFd
that are received along with the bytes will be available
through the method of the DequeueFd
implementation. The number of
RawFd
that can be received in a single call to one of the Read
methods is bounded by FD_QUEUE_SIZE
. It is an error if the other side of this
UnixStream
attempted to send more control messages (including RawFd
)
than will fit in the buffer that has been sized for receiving up to
FD_QUEUE_SIZE
RawFd
.
Source§fn read(&mut self, buf: &mut [u8]) -> Result<usize>
fn read(&mut self, buf: &mut [u8]) -> Result<usize>
Source§fn read_vectored(&mut self, bufs: &mut [IoSliceMut<'_>]) -> Result<usize>
fn read_vectored(&mut self, bufs: &mut [IoSliceMut<'_>]) -> Result<usize>
read
, except that it reads into a slice of buffers. Read moreSource§fn is_read_vectored(&self) -> bool
fn is_read_vectored(&self) -> bool
can_vector
)1.0.0 · Source§fn read_to_end(&mut self, buf: &mut Vec<u8>) -> Result<usize, Error>
fn read_to_end(&mut self, buf: &mut Vec<u8>) -> Result<usize, Error>
buf
. Read more1.0.0 · Source§fn read_to_string(&mut self, buf: &mut String) -> Result<usize, Error>
fn read_to_string(&mut self, buf: &mut String) -> Result<usize, Error>
buf
. Read more1.6.0 · Source§fn read_exact(&mut self, buf: &mut [u8]) -> Result<(), Error>
fn read_exact(&mut self, buf: &mut [u8]) -> Result<(), Error>
buf
. Read moreSource§fn read_buf(&mut self, buf: BorrowedCursor<'_>) -> Result<(), Error>
fn read_buf(&mut self, buf: BorrowedCursor<'_>) -> Result<(), Error>
read_buf
)Source§fn read_buf_exact(&mut self, cursor: BorrowedCursor<'_>) -> Result<(), Error>
fn read_buf_exact(&mut self, cursor: BorrowedCursor<'_>) -> Result<(), Error>
read_buf
)cursor
. Read more1.0.0 · Source§fn by_ref(&mut self) -> &mut Selfwhere
Self: Sized,
fn by_ref(&mut self) -> &mut Selfwhere
Self: Sized,
Read
. Read moreSource§impl Write for UnixStream
Transmit bytes and RawFd
across the UnixStream
.
impl Write for UnixStream
Transmit bytes and RawFd
across the UnixStream
.
The RawFd
that are transmitted along with the bytes are ones that were
previously enqueued for transmission through the method of EnqueueFd
.
Source§fn write(&mut self, buf: &[u8]) -> Result<usize>
fn write(&mut self, buf: &[u8]) -> Result<usize>
Source§fn flush(&mut self) -> Result<()>
fn flush(&mut self) -> Result<()>
Source§fn is_write_vectored(&self) -> bool
fn is_write_vectored(&self) -> bool
can_vector
)1.0.0 · Source§fn write_all(&mut self, buf: &[u8]) -> Result<(), Error>
fn write_all(&mut self, buf: &[u8]) -> Result<(), Error>
Source§fn write_all_vectored(&mut self, bufs: &mut [IoSlice<'_>]) -> Result<(), Error>
fn write_all_vectored(&mut self, bufs: &mut [IoSlice<'_>]) -> Result<(), Error>
write_all_vectored
)