2013-05-19 03:13:53 -05:00
|
|
|
// Copyright 2013 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.
|
|
|
|
|
2013-05-19 18:50:21 -05:00
|
|
|
use option::{Option, Some, None};
|
2013-05-19 17:25:35 -05:00
|
|
|
use rt::sched::Scheduler;
|
2013-05-19 18:50:21 -05:00
|
|
|
use rt::task::Task;
|
2013-05-19 17:25:35 -05:00
|
|
|
use rt::local_ptr;
|
2013-05-19 21:11:59 -05:00
|
|
|
use rt::rtio::{EventLoop, IoFactoryObject};
|
2013-06-26 18:41:00 -05:00
|
|
|
//use borrow::to_uint;
|
2013-07-19 16:25:05 -05:00
|
|
|
use cell::Cell;
|
2013-05-19 17:25:35 -05:00
|
|
|
|
2013-05-19 03:13:53 -05:00
|
|
|
pub trait Local {
|
2013-05-19 17:45:39 -05:00
|
|
|
fn put(value: ~Self);
|
|
|
|
fn take() -> ~Self;
|
|
|
|
fn exists() -> bool;
|
2013-06-10 17:29:02 -05:00
|
|
|
fn borrow<T>(f: &fn(&mut Self) -> T) -> T;
|
2013-05-19 17:45:39 -05:00
|
|
|
unsafe fn unsafe_borrow() -> *mut Self;
|
2013-05-19 18:50:21 -05:00
|
|
|
unsafe fn try_unsafe_borrow() -> Option<*mut Self>;
|
2013-05-19 03:13:53 -05:00
|
|
|
}
|
2013-05-19 17:25:35 -05:00
|
|
|
|
2013-07-19 16:25:05 -05:00
|
|
|
impl Local for Task {
|
|
|
|
fn put(value: ~Task) { unsafe { local_ptr::put(value) } }
|
|
|
|
fn take() -> ~Task { unsafe { local_ptr::take() } }
|
2013-05-19 17:45:39 -05:00
|
|
|
fn exists() -> bool { local_ptr::exists() }
|
2013-07-19 16:25:05 -05:00
|
|
|
fn borrow<T>(f: &fn(&mut Task) -> T) -> T {
|
2013-06-10 17:29:02 -05:00
|
|
|
let mut res: Option<T> = None;
|
|
|
|
let res_ptr: *mut Option<T> = &mut res;
|
2013-06-14 14:17:56 -05:00
|
|
|
unsafe {
|
2013-07-19 16:25:05 -05:00
|
|
|
do local_ptr::borrow |task| {
|
|
|
|
let result = f(task);
|
2013-06-10 17:29:02 -05:00
|
|
|
*res_ptr = Some(result);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
match res {
|
|
|
|
Some(r) => { r }
|
2013-07-19 16:25:05 -05:00
|
|
|
None => { rtabort!("function failed in local_borrow") }
|
2013-06-14 14:17:56 -05:00
|
|
|
}
|
2013-06-10 17:29:02 -05:00
|
|
|
}
|
2013-07-19 16:25:05 -05:00
|
|
|
unsafe fn unsafe_borrow() -> *mut Task { local_ptr::unsafe_borrow() }
|
|
|
|
unsafe fn try_unsafe_borrow() -> Option<*mut Task> { rtabort!("unimpl task try_unsafe_borrow") }
|
2013-05-19 18:50:21 -05:00
|
|
|
}
|
|
|
|
|
2013-07-19 16:25:05 -05:00
|
|
|
impl Local for Scheduler {
|
|
|
|
fn put(value: ~Scheduler) {
|
|
|
|
let value = Cell::new(value);
|
|
|
|
do Local::borrow::<Task,()> |task| {
|
|
|
|
let task = task;
|
|
|
|
task.sched = Some(value.take());
|
|
|
|
};
|
|
|
|
}
|
|
|
|
fn take() -> ~Scheduler {
|
|
|
|
do Local::borrow::<Task,~Scheduler> |task| {
|
|
|
|
let sched = task.sched.take_unwrap();
|
|
|
|
let task = task;
|
|
|
|
task.sched = None;
|
|
|
|
sched
|
|
|
|
}
|
|
|
|
}
|
|
|
|
fn exists() -> bool {
|
|
|
|
do Local::borrow::<Task,bool> |task| {
|
|
|
|
match task.sched {
|
|
|
|
Some(ref _task) => true,
|
|
|
|
None => false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
fn borrow<T>(f: &fn(&mut Scheduler) -> T) -> T {
|
|
|
|
do Local::borrow::<Task, T> |task| {
|
|
|
|
match task.sched {
|
2013-05-19 18:50:21 -05:00
|
|
|
Some(~ref mut task) => {
|
2013-06-26 18:41:00 -05:00
|
|
|
f(task)
|
2013-05-19 18:50:21 -05:00
|
|
|
}
|
|
|
|
None => {
|
2013-06-18 01:24:50 -05:00
|
|
|
rtabort!("no scheduler")
|
2013-05-19 18:50:21 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2013-07-19 16:25:05 -05:00
|
|
|
unsafe fn unsafe_borrow() -> *mut Scheduler {
|
|
|
|
match (*Local::unsafe_borrow::<Task>()).sched {
|
|
|
|
Some(~ref mut sched) => {
|
|
|
|
let s: *mut Scheduler = &mut *sched;
|
2013-05-19 18:50:21 -05:00
|
|
|
return s;
|
|
|
|
}
|
|
|
|
None => {
|
2013-06-18 01:24:50 -05:00
|
|
|
rtabort!("no scheduler")
|
2013-05-19 18:50:21 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2013-07-19 16:25:05 -05:00
|
|
|
unsafe fn try_unsafe_borrow() -> Option<*mut Scheduler> {
|
|
|
|
if Local::exists::<Task>() {
|
2013-05-19 18:50:21 -05:00
|
|
|
Some(Local::unsafe_borrow())
|
|
|
|
} else {
|
|
|
|
None
|
|
|
|
}
|
|
|
|
}
|
2013-05-19 17:45:39 -05:00
|
|
|
}
|
|
|
|
|
2013-05-19 21:11:59 -05:00
|
|
|
// XXX: This formulation won't work once ~IoFactoryObject is a real trait pointer
|
|
|
|
impl Local for IoFactoryObject {
|
2013-06-18 01:24:50 -05:00
|
|
|
fn put(_value: ~IoFactoryObject) { rtabort!("unimpl") }
|
|
|
|
fn take() -> ~IoFactoryObject { rtabort!("unimpl") }
|
|
|
|
fn exists() -> bool { rtabort!("unimpl") }
|
|
|
|
fn borrow<T>(_f: &fn(&mut IoFactoryObject) -> T) -> T { rtabort!("unimpl") }
|
2013-05-19 21:11:59 -05:00
|
|
|
unsafe fn unsafe_borrow() -> *mut IoFactoryObject {
|
|
|
|
let sched = Local::unsafe_borrow::<Scheduler>();
|
|
|
|
let io: *mut IoFactoryObject = (*sched).event_loop.io().unwrap();
|
|
|
|
return io;
|
|
|
|
}
|
2013-06-18 01:24:50 -05:00
|
|
|
unsafe fn try_unsafe_borrow() -> Option<*mut IoFactoryObject> { rtabort!("unimpl") }
|
2013-05-19 21:11:59 -05:00
|
|
|
}
|
|
|
|
|
2013-07-19 16:25:05 -05:00
|
|
|
|
2013-05-19 17:45:39 -05:00
|
|
|
#[cfg(test)]
|
|
|
|
mod test {
|
2013-05-23 00:18:29 -05:00
|
|
|
use rt::test::*;
|
2013-05-19 17:45:39 -05:00
|
|
|
use super::*;
|
2013-07-19 16:25:05 -05:00
|
|
|
use rt::task::Task;
|
|
|
|
use rt::local_ptr;
|
2013-05-19 17:45:39 -05:00
|
|
|
|
|
|
|
#[test]
|
2013-07-19 16:25:05 -05:00
|
|
|
fn thread_local_task_smoke_test() {
|
|
|
|
local_ptr::init_tls_key();
|
|
|
|
let mut sched = ~new_test_uv_sched();
|
|
|
|
let task = ~Task::new_root(&mut sched.stack_pool, || {});
|
|
|
|
Local::put(task);
|
|
|
|
let task: ~Task = Local::take();
|
|
|
|
cleanup_task(task);
|
2013-05-19 17:45:39 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
2013-07-19 16:25:05 -05:00
|
|
|
fn thread_local_task_two_instances() {
|
|
|
|
local_ptr::init_tls_key();
|
|
|
|
let mut sched = ~new_test_uv_sched();
|
|
|
|
let task = ~Task::new_root(&mut sched.stack_pool, || {});
|
|
|
|
Local::put(task);
|
|
|
|
let task: ~Task = Local::take();
|
|
|
|
cleanup_task(task);
|
|
|
|
let task = ~Task::new_root(&mut sched.stack_pool, || {});
|
|
|
|
Local::put(task);
|
|
|
|
let task: ~Task = Local::take();
|
|
|
|
cleanup_task(task);
|
|
|
|
|
2013-05-19 17:45:39 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn borrow_smoke_test() {
|
2013-07-19 16:25:05 -05:00
|
|
|
local_ptr::init_tls_key();
|
|
|
|
let mut sched = ~new_test_uv_sched();
|
|
|
|
let task = ~Task::new_root(&mut sched.stack_pool, || {});
|
|
|
|
Local::put(task);
|
|
|
|
|
|
|
|
unsafe {
|
|
|
|
let _task: *mut Task = Local::unsafe_borrow();
|
2013-05-19 17:45:39 -05:00
|
|
|
}
|
2013-07-19 16:25:05 -05:00
|
|
|
let task: ~Task = Local::take();
|
|
|
|
cleanup_task(task);
|
2013-05-19 17:45:39 -05:00
|
|
|
}
|
2013-06-10 17:29:02 -05:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn borrow_with_return() {
|
2013-07-19 16:25:05 -05:00
|
|
|
local_ptr::init_tls_key();
|
|
|
|
let mut sched = ~new_test_uv_sched();
|
|
|
|
let task = ~Task::new_root(&mut sched.stack_pool, || {});
|
|
|
|
Local::put(task);
|
|
|
|
|
|
|
|
let res = do Local::borrow::<Task,bool> |_task| {
|
|
|
|
true
|
|
|
|
};
|
|
|
|
assert!(res)
|
|
|
|
let task: ~Task = Local::take();
|
|
|
|
cleanup_task(task);
|
2013-06-10 17:29:02 -05:00
|
|
|
}
|
2013-06-14 14:17:56 -05:00
|
|
|
|
2013-05-23 11:39:17 -05:00
|
|
|
}
|
2013-07-19 16:25:05 -05:00
|
|
|
|