2012-12-03 18:48:01 -06:00
|
|
|
// Copyright 2012 The Rust Project Developers. See the COPYRIGHT
|
|
|
|
// file at the top-level directory of this distribution and at
|
|
|
|
// http://rust-lang.org/COPYRIGHT.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
|
|
|
|
2012-07-04 16:53:12 -05:00
|
|
|
//! A process-wide libuv event loop for library use.
|
2012-04-17 14:05:04 -05:00
|
|
|
|
2012-09-19 20:20:01 -05:00
|
|
|
#[forbid(deprecated_mode)];
|
|
|
|
|
2012-09-04 13:23:53 -05:00
|
|
|
use ll = uv_ll;
|
|
|
|
use iotask = uv_iotask;
|
|
|
|
use get_gl = get;
|
2012-12-13 15:05:22 -06:00
|
|
|
use uv_iotask::{IoTask, spawn_iotask};
|
2012-12-23 16:41:37 -06:00
|
|
|
|
|
|
|
use core::either::{Left, Right};
|
|
|
|
use core::libc;
|
2012-12-13 16:18:47 -06:00
|
|
|
use core::oldcomm::{Port, Chan, select2, listen};
|
2012-12-23 16:41:37 -06:00
|
|
|
use core::private::{chan_from_global_ptr, weaken_task};
|
|
|
|
use core::str;
|
|
|
|
use core::task::TaskBuilder;
|
|
|
|
use core::task;
|
|
|
|
use core::vec;
|
2012-04-17 14:05:04 -05:00
|
|
|
|
2012-07-03 18:11:00 -05:00
|
|
|
extern mod rustrt {
|
2012-04-17 14:05:04 -05:00
|
|
|
fn rust_uv_get_kernel_global_chan_ptr() -> *libc::uintptr_t;
|
|
|
|
}
|
|
|
|
|
2012-07-04 16:53:12 -05:00
|
|
|
/**
|
|
|
|
* Race-free helper to get access to a global task where a libuv
|
|
|
|
* loop is running.
|
|
|
|
*
|
|
|
|
* Use `uv::hl::interact` to do operations against the global
|
|
|
|
* loop that this function returns.
|
|
|
|
*
|
|
|
|
* # Return
|
|
|
|
*
|
|
|
|
* * A `hl::high_level_loop` that encapsulates communication with the global
|
|
|
|
* loop.
|
|
|
|
*/
|
2012-10-01 19:26:50 -05:00
|
|
|
pub fn get() -> IoTask {
|
2012-08-01 19:30:05 -05:00
|
|
|
return get_monitor_task_gl();
|
2012-04-19 01:49:20 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
#[doc(hidden)]
|
2012-08-29 19:41:38 -05:00
|
|
|
fn get_monitor_task_gl() -> IoTask unsafe {
|
2012-05-24 23:38:48 -05:00
|
|
|
|
|
|
|
let monitor_loop_chan_ptr = rustrt::rust_uv_get_kernel_global_chan_ptr();
|
|
|
|
|
2012-08-22 19:24:52 -05:00
|
|
|
debug!("ENTERING global_loop::get() loop chan: %?",
|
|
|
|
monitor_loop_chan_ptr);
|
2012-05-24 23:38:48 -05:00
|
|
|
|
2012-08-22 19:24:52 -05:00
|
|
|
debug!("before priv::chan_from_global_ptr");
|
2012-08-29 19:41:38 -05:00
|
|
|
type MonChan = Chan<IoTask>;
|
2012-05-24 23:38:48 -05:00
|
|
|
|
2012-08-10 20:15:08 -05:00
|
|
|
let monitor_ch =
|
2012-08-29 19:41:38 -05:00
|
|
|
do chan_from_global_ptr::<MonChan>(monitor_loop_chan_ptr,
|
2012-08-10 20:15:08 -05:00
|
|
|
|| {
|
|
|
|
task::task().sched_mode
|
2012-08-15 16:10:46 -05:00
|
|
|
(task::SingleThreaded)
|
2012-08-10 20:15:08 -05:00
|
|
|
.unlinked()
|
2012-08-24 14:17:08 -05:00
|
|
|
}) |msg_po| unsafe {
|
2012-08-22 19:24:52 -05:00
|
|
|
debug!("global monitor task starting");
|
2012-05-24 23:38:48 -05:00
|
|
|
|
|
|
|
// As a weak task the runtime will notify us when to exit
|
2012-06-30 18:19:07 -05:00
|
|
|
do weaken_task() |weak_exit_po| {
|
2012-08-22 19:24:52 -05:00
|
|
|
debug!("global monitor task is now weak");
|
2012-05-25 00:26:30 -05:00
|
|
|
let hl_loop = spawn_loop();
|
2012-05-24 23:38:48 -05:00
|
|
|
loop {
|
2012-08-22 19:24:52 -05:00
|
|
|
debug!("in outer_loop...");
|
2012-08-06 14:34:08 -05:00
|
|
|
match select2(weak_exit_po, msg_po) {
|
2012-08-14 18:54:13 -05:00
|
|
|
Left(weak_exit) => {
|
2012-05-24 23:38:48 -05:00
|
|
|
// all normal tasks have ended, tell the
|
|
|
|
// libuv loop to tear_down, then exit
|
2012-08-22 19:24:52 -05:00
|
|
|
debug!("weak_exit_po recv'd msg: %?", weak_exit);
|
2012-05-25 01:42:12 -05:00
|
|
|
iotask::exit(hl_loop);
|
2012-05-24 23:38:48 -05:00
|
|
|
break;
|
|
|
|
}
|
2012-08-14 18:54:13 -05:00
|
|
|
Right(fetch_ch) => {
|
2012-08-22 19:24:52 -05:00
|
|
|
debug!("hl_loop req recv'd: %?", fetch_ch);
|
2012-05-24 23:38:48 -05:00
|
|
|
fetch_ch.send(hl_loop);
|
2012-04-27 23:42:04 -05:00
|
|
|
}
|
|
|
|
}
|
2012-05-24 23:38:48 -05:00
|
|
|
}
|
2012-08-22 19:24:52 -05:00
|
|
|
debug!("global monitor task is leaving weakend state");
|
2012-04-17 14:05:04 -05:00
|
|
|
};
|
2012-08-22 19:24:52 -05:00
|
|
|
debug!("global monitor task exiting");
|
2012-05-24 23:38:48 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
// once we have a chan to the monitor loop, we ask it for
|
|
|
|
// the libuv loop's async handle
|
2012-06-30 18:19:07 -05:00
|
|
|
do listen |fetch_ch| {
|
2012-05-24 23:38:48 -05:00
|
|
|
monitor_ch.send(fetch_ch);
|
|
|
|
fetch_ch.recv()
|
2012-04-17 14:05:04 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-08-29 19:41:38 -05:00
|
|
|
fn spawn_loop() -> IoTask {
|
2012-07-23 18:53:22 -05:00
|
|
|
let builder = do task::task().add_wrapper |task_body| {
|
2012-05-25 00:26:30 -05:00
|
|
|
fn~(move task_body) {
|
|
|
|
// The I/O loop task also needs to be weak so it doesn't keep
|
|
|
|
// the runtime alive
|
2012-08-24 14:17:08 -05:00
|
|
|
unsafe {
|
|
|
|
do weaken_task |weak_exit_po| {
|
|
|
|
debug!("global libuv task is now weak %?", weak_exit_po);
|
|
|
|
task_body();
|
2012-05-25 00:26:30 -05:00
|
|
|
|
2012-08-24 14:17:08 -05:00
|
|
|
// We don't wait for the exit message on weak_exit_po
|
|
|
|
// because the monitor task will tell the uv loop when to
|
|
|
|
// exit
|
2012-05-25 00:26:30 -05:00
|
|
|
|
2012-08-24 14:17:08 -05:00
|
|
|
debug!("global libuv task is leaving weakened state");
|
|
|
|
}
|
2012-05-25 00:26:30 -05:00
|
|
|
}
|
|
|
|
}
|
2012-07-23 18:53:22 -05:00
|
|
|
};
|
2012-09-11 19:17:54 -05:00
|
|
|
spawn_iotask(move builder)
|
2012-04-17 14:05:04 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(test)]
|
|
|
|
mod test {
|
2012-07-03 18:32:02 -05:00
|
|
|
extern fn simple_timer_close_cb(timer_ptr: *ll::uv_timer_t) unsafe {
|
2012-04-17 14:05:04 -05:00
|
|
|
let exit_ch_ptr = ll::get_data_for_uv_handle(
|
2012-12-13 16:18:47 -06:00
|
|
|
timer_ptr as *libc::c_void) as *oldcomm::Chan<bool>;
|
2012-04-17 14:05:04 -05:00
|
|
|
let exit_ch = *exit_ch_ptr;
|
2012-12-13 16:18:47 -06:00
|
|
|
oldcomm::send(exit_ch, true);
|
2012-08-22 19:24:52 -05:00
|
|
|
log(debug, fmt!("EXIT_CH_PTR simple_timer_close_cb exit_ch_ptr: %?",
|
|
|
|
exit_ch_ptr));
|
2012-04-17 14:05:04 -05:00
|
|
|
}
|
2012-07-03 18:32:02 -05:00
|
|
|
extern fn simple_timer_cb(timer_ptr: *ll::uv_timer_t,
|
2012-05-24 22:31:20 -05:00
|
|
|
_status: libc::c_int) unsafe {
|
2012-07-14 00:57:48 -05:00
|
|
|
log(debug, ~"in simple timer cb");
|
2012-04-17 14:05:04 -05:00
|
|
|
ll::timer_stop(timer_ptr);
|
|
|
|
let hl_loop = get_gl();
|
2012-08-24 14:17:08 -05:00
|
|
|
do iotask::interact(hl_loop) |_loop_ptr| unsafe {
|
2012-07-14 00:57:48 -05:00
|
|
|
log(debug, ~"closing timer");
|
2012-04-27 23:42:04 -05:00
|
|
|
ll::close(timer_ptr, simple_timer_close_cb);
|
2012-07-14 00:57:48 -05:00
|
|
|
log(debug, ~"about to deref exit_ch_ptr");
|
|
|
|
log(debug, ~"after msg sent on deref'd exit_ch");
|
2012-04-17 14:05:04 -05:00
|
|
|
};
|
2012-07-14 00:57:48 -05:00
|
|
|
log(debug, ~"exiting simple timer cb");
|
2012-04-17 14:05:04 -05:00
|
|
|
}
|
|
|
|
|
2012-08-29 19:41:38 -05:00
|
|
|
fn impl_uv_hl_simple_timer(iotask: IoTask) unsafe {
|
2012-12-13 16:18:47 -06:00
|
|
|
let exit_po = oldcomm::Port::<bool>();
|
|
|
|
let exit_ch = oldcomm::Chan(&exit_po);
|
2012-10-03 16:38:01 -05:00
|
|
|
let exit_ch_ptr = ptr::addr_of(&exit_ch);
|
2012-08-22 19:24:52 -05:00
|
|
|
log(debug, fmt!("EXIT_CH_PTR newly created exit_ch_ptr: %?",
|
|
|
|
exit_ch_ptr));
|
2012-04-17 14:05:04 -05:00
|
|
|
let timer_handle = ll::timer_t();
|
2012-10-03 16:38:01 -05:00
|
|
|
let timer_ptr = ptr::addr_of(&timer_handle);
|
2012-08-24 14:17:08 -05:00
|
|
|
do iotask::interact(iotask) |loop_ptr| unsafe {
|
2012-07-14 00:57:48 -05:00
|
|
|
log(debug, ~"user code inside interact loop!!!");
|
2012-04-17 14:05:04 -05:00
|
|
|
let init_status = ll::timer_init(loop_ptr, timer_ptr);
|
|
|
|
if(init_status == 0i32) {
|
|
|
|
ll::set_data_for_uv_handle(
|
|
|
|
timer_ptr as *libc::c_void,
|
|
|
|
exit_ch_ptr as *libc::c_void);
|
|
|
|
let start_status = ll::timer_start(timer_ptr, simple_timer_cb,
|
|
|
|
1u, 0u);
|
|
|
|
if(start_status == 0i32) {
|
|
|
|
}
|
|
|
|
else {
|
2012-07-14 00:57:48 -05:00
|
|
|
fail ~"failure on ll::timer_start()";
|
2012-04-17 14:05:04 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
2012-07-14 00:57:48 -05:00
|
|
|
fail ~"failure on ll::timer_init()";
|
2012-04-17 14:05:04 -05:00
|
|
|
}
|
|
|
|
};
|
2012-12-13 16:18:47 -06:00
|
|
|
oldcomm::recv(exit_po);
|
2012-07-14 00:57:48 -05:00
|
|
|
log(debug, ~"global_loop timer test: msg recv on exit_po, done..");
|
2012-04-17 14:05:04 -05:00
|
|
|
}
|
2012-04-27 23:42:04 -05:00
|
|
|
|
2012-04-17 14:05:04 -05:00
|
|
|
#[test]
|
2012-04-27 23:42:04 -05:00
|
|
|
fn test_gl_uv_global_loop_high_level_global_timer() unsafe {
|
2012-04-17 14:05:04 -05:00
|
|
|
let hl_loop = get_gl();
|
2012-12-13 16:18:47 -06:00
|
|
|
let exit_po = oldcomm::Port::<()>();
|
|
|
|
let exit_ch = oldcomm::Chan(&exit_po);
|
2012-08-15 16:10:46 -05:00
|
|
|
task::spawn_sched(task::ManualThreads(1u), || {
|
2012-04-17 14:05:04 -05:00
|
|
|
impl_uv_hl_simple_timer(hl_loop);
|
2012-12-13 16:18:47 -06:00
|
|
|
oldcomm::send(exit_ch, ());
|
2012-04-17 14:05:04 -05:00
|
|
|
});
|
|
|
|
impl_uv_hl_simple_timer(hl_loop);
|
2012-12-13 16:18:47 -06:00
|
|
|
oldcomm::recv(exit_po);
|
2012-04-27 23:42:04 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// keeping this test ignored until some kind of stress-test-harness
|
|
|
|
// is set up for the build bots
|
|
|
|
#[test]
|
|
|
|
#[ignore]
|
|
|
|
fn test_stress_gl_uv_global_loop_high_level_global_timer() unsafe {
|
|
|
|
let hl_loop = get_gl();
|
2012-12-13 16:18:47 -06:00
|
|
|
let exit_po = oldcomm::Port::<()>();
|
|
|
|
let exit_ch = oldcomm::Chan(&exit_po);
|
2012-04-27 23:42:04 -05:00
|
|
|
let cycles = 5000u;
|
2012-07-04 14:04:28 -05:00
|
|
|
for iter::repeat(cycles) {
|
2012-08-15 16:10:46 -05:00
|
|
|
task::spawn_sched(task::ManualThreads(1u), || {
|
2012-04-27 23:42:04 -05:00
|
|
|
impl_uv_hl_simple_timer(hl_loop);
|
2012-12-13 16:18:47 -06:00
|
|
|
oldcomm::send(exit_ch, ());
|
2012-04-27 23:42:04 -05:00
|
|
|
});
|
|
|
|
};
|
2012-07-04 14:04:28 -05:00
|
|
|
for iter::repeat(cycles) {
|
2012-12-13 16:18:47 -06:00
|
|
|
oldcomm::recv(exit_po);
|
2012-04-27 23:42:04 -05:00
|
|
|
};
|
2012-07-14 00:57:48 -05:00
|
|
|
log(debug, ~"test_stress_gl_uv_global_loop_high_level_global_timer"+
|
|
|
|
~" exiting sucessfully!");
|
2012-04-17 14:05:04 -05:00
|
|
|
}
|
2012-07-04 14:04:28 -05:00
|
|
|
}
|