Fix windows UDS example

Signed-off-by: John Nunley <dev@notgull.net>
This commit is contained in:
John Nunley 2023-10-31 19:23:36 -07:00
parent e3342b85f9
commit bf4c0cba00
No known key found for this signature in database
GPG Key ID: F27A1BA748ECAED2
1 changed files with 86 additions and 15 deletions

View File

@ -8,41 +8,112 @@
#[cfg(windows)]
fn main() -> std::io::Result<()> {
use std::ops::Deref;
use std::os::windows::io::{AsRawSocket, AsSocket, BorrowedSocket};
use std::path::PathBuf;
use smol::{io, prelude::*, Async, Unblock};
use smol::{future, prelude::*, Async, Unblock};
use std::io;
use tempfile::tempdir;
use uds_windows::{UnixListener, UnixStream};
// n.b.: notgull: uds_windows does not support I/O safety uet, hence the wrapper types
struct UnixListener(uds_windows::UnixListener);
impl From<uds_windows::UnixListener> for UnixListener {
fn from(ul: uds_windows::UnixListener) -> Self {
Self(ul)
}
}
impl Deref for UnixListener {
type Target = uds_windows::UnixListener;
fn deref(&self) -> &uds_windows::UnixListener {
&self.0
}
}
impl AsSocket for UnixListener {
fn as_socket(&self) -> BorrowedSocket<'_> {
unsafe { BorrowedSocket::borrow_raw(self.as_raw_socket()) }
}
}
struct UnixStream(uds_windows::UnixStream);
impl From<uds_windows::UnixStream> for UnixStream {
fn from(ul: uds_windows::UnixStream) -> Self {
Self(ul)
}
}
impl Deref for UnixStream {
type Target = uds_windows::UnixStream;
fn deref(&self) -> &uds_windows::UnixStream {
&self.0
}
}
impl AsSocket for UnixStream {
fn as_socket(&self) -> BorrowedSocket<'_> {
unsafe { BorrowedSocket::borrow_raw(self.as_raw_socket()) }
}
}
impl io::Read for UnixStream {
fn read(&mut self, buf: &mut [u8]) -> io::Result<usize> {
io::Read::read(&mut self.0, buf)
}
}
impl io::Write for UnixStream {
fn write(&mut self, buf: &[u8]) -> io::Result<usize> {
io::Write::write(&mut self.0, buf)
}
fn flush(&mut self) -> io::Result<()> {
io::Write::flush(&mut self.0)
}
}
unsafe impl async_io::IoSafe for UnixStream {}
async fn client(addr: PathBuf) -> io::Result<()> {
// Connect to the address.
let stream = Async::new(UnixStream::connect(addr)?)?;
let stream = Async::new(UnixStream::from(uds_windows::UnixStream::connect(addr)?))?;
println!("Connected to {:?}", stream.get_ref().peer_addr()?);
// Pipe the stream to stdout.
let mut stdout = Unblock::new(std::io::stdout());
io::copy(&stream, &mut stdout).await?;
futures_lite::io::copy(stream, &mut stdout).await?;
Ok(())
}
let dir = tempdir()?;
let path = dir.path().join("socket");
smol::block_on(async {
future::block_on(async {
// Create a listener.
let listener = Async::new(UnixListener::bind(&path)?)?;
let listener = Async::new(UnixListener::from(uds_windows::UnixListener::bind(&path)?))?;
println!("Listening on {:?}", listener.get_ref().local_addr()?);
// Spawn a client task.
let task = smol::spawn(client(path));
future::try_zip(
async {
// Accept the client.
let (stream, _) = listener.read_with(|l| l.accept()).await?;
println!("Accepted a client");
// Accept the client.
let (stream, _) = listener.read_with(|l| l.accept()).await?;
println!("Accepted a client");
// Send a message, drop the stream, and wait for the client.
Async::new(stream)?.write_all(b"Hello!\n").await?;
task.await?;
// Send a message, drop the stream, and wait for the client.
Async::new(UnixStream::from(stream))?
.write_all(b"Hello!\n")
.await?;
Ok(())
},
client(path),
)
.await?;
Ok(())
})