mio-aio 0.1.0

POSIX AIO bindings for mio
docs.rs failed to build mio-aio-0.1.0
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Visit the last successful build: mio-aio-0.8.0

mio-aio

A library for integrating file I/O with mio, using POSIX AIO and kqueue. File I/O can be seamlessly mixed with network I/O and timers in the same event loop.

# Cargo.toml
[dependencies]
mio-aio = "0.1"
mio = "0.6.9"

Usage

Usage of this crate is based on the mio_aio::AioCb type, which is a wrapper around nix::AioCb. You can create one using constructors that are similar to what nix provides. Registration is the same as any mio type, except that AioCb must be individually registered. The underlying file does not get registered with mio. Once registered, you can issue the AioCb using methods that wrap the nix type: read, write, etc. After mio's poll method returns the event, call AioCb::aio_return to get the final status. At this point, the kernel has forgotten about the AioCb. There is no need to deregister it (though deregistration does not hurt).

Platforms

mio-aio works on FreeBSD. It will probably also work on DragonflyBSD and OSX. It does not work on Linux.

Unfortunately, Linux includes a poor implementation of POSIX AIO that emulates asynchronous I/O in glibc using userland threads. Worse, epoll(2) can't deliver completion notifications for POSIX AIO. That means that it can't be supported by mio-aio. But there's still hope for Linux users! Linux has a non-standard asynchronous file I/O API called libaio. Libaio has better performance than Linux's POSIX AIO. It still can't deliver completion notification throuh epoll(2), however. What it can do is deliver completion notification through an eventfd(2). And epoll can poll an eventfd. So a Linux programmer wishing to use mio with files could theoretically write a mio-libaio crate that uses one eventfd per reactor to poll all libaio operations . Then he could implement a portability layer above mio, for example in tokio.

License

mio-aio is primarily distributed under the terms of both the MIT license and the Apache License (Version 2.0), with portions covered by various BSD-like licenses.

See LICENSE-APACHE, and LICENSE-MIT for details.