easyfibers

easyfibers is a closure-less couroutine library for executing asynchronous tasks as painlessly as possible. It is a small layer on top of mio and context-rs.

Description

easyfibers allows one to write code as if it used blocking sockets and does not require putting your code in awkward closures. It will seamlessly poll and schedule fibers on read, write and accept function calls.

Warning

Eeach fiber is executed in its own stack. These stacks are much more limited and one must be careful as to not go over limit (as it will kill your app with a SIGBUS).

Is the risk worth it? I think so. Given the ease of use compared to other coroutine/fiber libraries. I disagree with the (ab)use of clousures of other libraries.

Heavy use of closures makes the code ugly, produces awful compile errors and makes it hard to integrate with the rest of your code.

Documentation

TODO

Example - random http/1.1 proxy

Uses 3 types of fibers:

Run the bottom example from one terminal:

cargo test -- --nocapture

And call it from another:

curl "http://127.0.0.1:10000"

```rust extern crate easyfibers; extern crate rand; use super::*; use mio::net::{TcpStream,TcpListener}; use std::io::{Write,Read}; use std::time::Duration; use std::io; use std::str;

[derive(Clone)]

struct Param { chosen: Option, hosts: Vec, }

// Receive list of hosts. // Return slices. fn gethttp(mut fiber: Fiber Option<&[u8]> { // Because we are too dumb to read content-length, we will use socket read timeout to finish // http client request. fiber.sockettimeout(Some(Duration::from_millis(500))); // We will read in 500B chunks let mut v = [0u8;500];

// We want to time out so use keep-alive
let req = format!("GET / HTTP/1.1\r\nHost: {}\r\nConnection: keep-alive\r\nUser-Agent: test\r\n\r\n",p.chosen.unwrap());
fiber.write(req.as_bytes()).expect("Can not write to socket");
loop {
    // Whenever socket would normally return WouldBlock, fiber gets executed out and another
    // one takes its place in the background.
    match fiber.read(&mut v[..]) {
        Ok(sz) => {
            // Return slice to parent, directly from our stack!
            fiber.resp_chunk(&v[0..sz]);
        }
        Err(e) => {
            break;
        }
    }
}
println!("Client fiber closing");
None

}

fn randhttpproxy(mut fiber: Fiber Option<&[u8]> { fiber.sockettimeout(Some(Duration::frommillis(500)));

// Pick a random host from our list.
let chosen = rand::random::<usize>() % p.hosts.len();
let p1 = Param {
    chosen: Some(p.hosts[chosen].clone()),
    hosts: Vec::new(),
};
println!("Returning: {}", &p.hosts[chosen]);

// Start connection to host
let client_sock = TcpStream::from_stream(::std::net::TcpStream::connect(p.hosts[chosen].clone() + ":80").unwrap()).unwrap();
// Join our fiber to it. This way we can receive its output.
fiber.join_tcp(client_sock, get_http, p1);

// Fibers can stream response to parent. So we iterate on responses.
// We could also create multiple children and iterate on all of them.
while let Some(slice) = fiber.get_child() {
    fiber.write(slice);
}
println!("Server socket fiber closing");
// return empty slice, so main stack knows a server connection has closed
Some(&[])

}

// Accept sockets in an endless loop. fn sockacceptor(mut fiber: Fiber Option<&[u8]> { loop { // If no sockets available, fiber will be scheduled out for execution until something connects. match fiber.accepttcp() { Ok((sock,)) => { // Create a new fiber on received socket. Use randhttpproxy function to run it. fiber.newtcp(sock,randhttpproxy, p.clone()); } _ => { println!("Listen socket error"); break; } } } None }

fn main() { println!("Starting random http proxy. To query call: curl \"http://127.0.0.1:10000\""); // First time calling random requires a large stack, we must initialize it on main stack! rand::random::(); let p = Param { chosen: None, hosts: vec!["www.liquiddota.com".tostring(),"www.google.com".tostring(), "www.sqlite.org".tostring(),"edition.cnn.com".tostring()], }; // Start our fiber poller. // All fibers receive Param as parameter and return &[u8] as response. // Set this stack lower to see some SIGBUS action. let poll:Polleracceptor function. poll.newlistener(listener, sockacceptor, p).unwrap(); // Poll for 3 requests before exiting. let mut reqsremain = 3; while reqsremain > 0 { if poll.poll(Duration::frommillis(10)) { while let Some(r) = poll.getresponse() { println!("Finished executing, reqremain: {}", reqsremain); reqsremain -= 1; }

        // we arent using 
        while let Some(f) = poll.get_fiber() {
        }
    }
}
println!("poll out");

}

```