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

The size of the bounded queue of outbound RawFd.

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(());
    }
};

Creates an unnamed pair of connected sockets.

Returns two UnixStreams 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;
    }
};

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(());
    }
};

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(());
    }
};

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(());
    }
};

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(());
    }
};

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

Extracts the raw file descriptor. Read more

Formats the value using the given formatter. Read more

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.

Dequeue a previously transmitted RawFd. Read more

Enqueue a RawFd for later transmission across the UnixStream.

The RawFd will be transmitted on a later call to a method of Write. The number of RawFd that can be enqueued before being transmitted is bounded by FD_QUEUE_SIZE.

Enqueue fd for later transmission to a different process. Read more

Converts to this type from the input type.

Constructs a new instance of Self from the given raw file descriptor. Read more

Consumes this object, returning the raw underlying file descriptor. Read more

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.

Pull some bytes from this source into the specified buffer, returning how many bytes were read. Read more

Like read, except that it reads into a slice of buffers. Read more

🔬This is a nightly-only experimental API. (can_vector)

Determines if this Reader has an efficient read_vectored implementation. Read more

Read all bytes until EOF in this source, placing them into buf. Read more

Read all bytes until EOF in this source, appending them to buf. Read more

Read the exact number of bytes required to fill buf. Read more

🔬This is a nightly-only experimental API. (read_buf)

Pull some bytes from this source into the specified buffer. Read more

🔬This is a nightly-only experimental API. (read_buf)

Read the exact number of bytes required to fill buf. Read more

Creates a “by reference” adaptor for this instance of Read. Read more

Transforms this Read instance to an Iterator over its bytes. Read more

Creates an adapter which will chain this stream with another. Read more

Creates an adapter which will read at most limit bytes from it. Read more

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.

Write a buffer into this writer, returning how many bytes were written. Read more

Like write, except that it writes from a slice of buffers. Read more

Flush this output stream, ensuring that all intermediately buffered contents reach their destination. Read more

🔬This is a nightly-only experimental API. (can_vector)

Determines if this Writer has an efficient write_vectored implementation. Read more

Attempts to write an entire buffer into this writer. Read more

🔬This is a nightly-only experimental API. (write_all_vectored)

Attempts to write multiple buffers into this writer. Read more

Writes a formatted string into this writer, returning any error encountered. Read more

Creates a “by reference” adapter for this instance of Write. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more