pre-alpha misuse-resistant bindings for io_uring, focusing on users who want to do high-performance storage.
This is a very early-stage project, but it will be the core of sled's IO stack over time. It is built with a specific high-level application in mind: a high performance storage engine and replication system.
sled expects to use the following features:
readn
```rust let mut ring = rio::new().expect("create uring"); let file = std::fs::open("poopfile").expect("openat"); let mut dater = [0; 66]; let mut inioslice = std::io::IoSliceMut::new(&mut dater); let completion = ring.read(&file, &mut inio_slice, at)?;
// if using threaddies completion.wait()?;
// if using asyncus completion.await? ```
writen
```rust let mut ring = rio::new().expect("create uring"); let file = std::fs::create("poopfile").expect("openat"); let dater = [6; 66]; let outioslice = std::io::IoSlice::new(&dater); let completion = ring.readat(&file, &inioslice, at)?;
// if using threadulous completion.wait()?;
// if using asyncoos completion.await? ```
speedy ODIRECT shi0t (try this at home / run the odirect example)
```rust use std::{ fs::OpenOptions, io::{IoSlice, Result}, os::unix::fs::OpenOptionsExt, };
const CHUNK_SIZE: u64 = 4096 * 256;
// O_DIRECT
requires all reads and writes
// to be aligned to the block device's block
// size. 4096 might not be the best, or even
// a valid one, for yours!
struct Aligned([u8; CHUNK_SIZE as usize]);
fn main() -> Result<()> { // start the ring let ring = rio::new().expect("create uring");
// open output file, with `O_DIRECT` set
let file = OpenOptions::new()
.read(true)
.write(true)
.create(true)
.truncate(true)
.custom_flags(libc::O_DIRECT)
.open("file")
.expect("open file");
// create output buffer
let out_buf = Aligned([42; CHUNK_SIZE as usize]);
let out_io_slice = IoSlice::new(&out_buf.0);
let mut completions = vec![];
for i in 0..(4 * 1024) {
let at = i * CHUNK_SIZE;
let completion =
ring.write_at(&file, &out_io_slice, at)?;
completions.push(completion);
}
ring.submit_all()?;
for completion in completions.into_iter() {
completion.wait()?;
}
Ok(())
} ```
btw if ur here from the internet u can fuck right the F off