aboutsummaryrefslogtreecommitdiffstats
path: root/src/util.rs
blob: 637668c1d77800bdebfbb1e61509a14bc1efc3a3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
use core::libc::c_int;

// XXX huge hack until there's a better built-in way to do this
// can't use core::pipes::select or core::comm::selecti because there's no
// way to get a background task to quit if it's blocking on an io call
// this will need to wait on the real libuv bindings
pub fn timed_read (timeout: int) -> Option<char> {
    let first = unsafe { io_helper::timed_read(timeout as c_int) };
    if first < 0 {
        return None;
    }

    let mut buf = ~[first as u8];
    let nbytes = str::utf8_char_width(first as u8);

    for uint::range(0, nbytes - 1) |_| {
        let next = unsafe { io_helper::timed_read(-1 as c_int) };
        if next < 0 {
            return None;
        }
        buf.push(next as u8);
    }

    Some(unsafe { str::raw::from_bytes(buf) }.char_at(0))
}

extern mod io_helper {
    fn timed_read (timeout: c_int) -> c_int;
}