#tokio #async-io #io #compat #async #stdio #io-read

tokio-io-compat

Compatibility wrapper around std io traits that implements tokio io traits

2 releases

0.1.1 Nov 5, 2021
0.1.0 Oct 16, 2021

#1083 in Asynchronous

25 downloads per month

MIT license

16KB
287 lines

tokio-io-compat

GitHub Workflow Status crates.io Documentation

Compatibility wrapper around std::io::{Read, Write, Seek} traits that implements tokio::io::{AsyncRead, AsyncWrite, AsyncSeek}.

Beware that this won't magically make your IO operations asynchronous. You should still consider asyncify your code or move the IO operations to blocking thread if the cost is high.

Deal with WouldBlock

If you are trying to wrap a non-blocking IO, it may yield WouldBlock errors when data is not ready. This wrapper will automatically convert WouldBlock into Poll::Pending.

However, the waker must be waken later to avoid blocking the future. By default, it is waken immediately. This may waste excessive CPU cycles, especially when the operation is slow.

You may add a delay before each wake by creating the wrapper with AsyncIoCompat::new_with_delay. If your underlying non-blocking IO has a native poll complete notification mechanism, consider writing your own wrapper instead of using this crate.

For reference please see tokio-tls.

Example

use std::io::Cursor;
use tokio::io::{AsyncReadExt, AsyncSeekExt, AsyncWriteExt, SeekFrom};
use tokio_io_compat::CompatHelperTrait;

let mut data = Cursor::new(vec![]);
data.tokio_io_mut().write_all(&vec![0, 1, 2, 3, 4]).await.unwrap();
data.tokio_io_mut().seek(SeekFrom::Start(2)).await.unwrap();
assert_eq!(data.tokio_io_mut().read_u8().await.unwrap(), 2);

Dependencies

~2–3MB
~46K SLoC