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-12-12 20:01:59 -06:00
|
|
|
use option::Option;
|
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-12-03 21:18:58 -06:00
|
|
|
/// Encapsulates some task-local data.
|
|
|
|
pub trait Local<Borrowed> {
|
2013-05-19 17:45:39 -05:00
|
|
|
fn put(value: ~Self);
|
|
|
|
fn take() -> ~Self;
|
2013-08-08 13:38:10 -05:00
|
|
|
fn exists(unused_value: Option<Self>) -> bool;
|
2013-12-03 21:18:58 -06:00
|
|
|
fn borrow(unused_value: Option<Self>) -> Borrowed;
|
2013-08-17 19:40:38 -05:00
|
|
|
unsafe fn unsafe_take() -> ~Self;
|
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-12-03 21:18:58 -06:00
|
|
|
impl Local<local_ptr::Borrowed<Task>> for Task {
|
2013-08-17 03:24:29 -05:00
|
|
|
#[inline]
|
2013-07-19 16:25:05 -05:00
|
|
|
fn put(value: ~Task) { unsafe { local_ptr::put(value) } }
|
2013-08-17 03:24:29 -05:00
|
|
|
#[inline]
|
2013-07-19 16:25:05 -05:00
|
|
|
fn take() -> ~Task { unsafe { local_ptr::take() } }
|
2013-08-08 13:38:10 -05:00
|
|
|
fn exists(_: Option<Task>) -> bool { local_ptr::exists() }
|
2013-12-03 21:18:58 -06:00
|
|
|
#[inline]
|
|
|
|
fn borrow(_: Option<Task>) -> local_ptr::Borrowed<Task> {
|
2013-06-14 14:17:56 -05:00
|
|
|
unsafe {
|
2013-12-03 21:18:58 -06:00
|
|
|
local_ptr::borrow::<Task>()
|
2013-06-14 14:17:56 -05:00
|
|
|
}
|
2013-06-10 17:29:02 -05:00
|
|
|
}
|
2013-08-17 03:24:29 -05:00
|
|
|
#[inline]
|
2013-08-17 19:40:38 -05:00
|
|
|
unsafe fn unsafe_take() -> ~Task { local_ptr::unsafe_take() }
|
|
|
|
#[inline]
|
2013-07-19 16:25:05 -05:00
|
|
|
unsafe fn unsafe_borrow() -> *mut Task { local_ptr::unsafe_borrow() }
|
2013-08-17 03:24:29 -05:00
|
|
|
#[inline]
|
2013-08-01 17:08:51 -05:00
|
|
|
unsafe fn try_unsafe_borrow() -> Option<*mut Task> {
|
2013-08-12 21:09:46 -05:00
|
|
|
local_ptr::try_unsafe_borrow()
|
2013-08-01 17:08:51 -05:00
|
|
|
}
|
2013-05-19 18:50:21 -05:00
|
|
|
}
|
|
|
|
|
2013-05-19 17:45:39 -05:00
|
|
|
#[cfg(test)]
|
|
|
|
mod test {
|
2013-08-05 15:10:08 -05:00
|
|
|
use option::None;
|
2013-08-03 19:40:29 -05:00
|
|
|
use unstable::run_in_bare_thread;
|
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() {
|
2013-08-03 19:40:29 -05:00
|
|
|
do run_in_bare_thread {
|
2013-11-26 22:23:56 -06:00
|
|
|
local_ptr::init();
|
2013-08-03 19:40:29 -05:00
|
|
|
let mut sched = ~new_test_uv_sched();
|
2013-11-22 01:36:52 -06:00
|
|
|
let task = ~Task::new_root(&mut sched.stack_pool, None, proc(){});
|
2013-08-03 19:40:29 -05:00
|
|
|
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() {
|
2013-08-03 19:40:29 -05:00
|
|
|
do run_in_bare_thread {
|
2013-11-26 22:23:56 -06:00
|
|
|
local_ptr::init();
|
2013-08-03 19:40:29 -05:00
|
|
|
let mut sched = ~new_test_uv_sched();
|
2013-11-22 01:36:52 -06:00
|
|
|
let task = ~Task::new_root(&mut sched.stack_pool, None, proc(){});
|
2013-08-03 19:40:29 -05:00
|
|
|
Local::put(task);
|
|
|
|
let task: ~Task = Local::take();
|
|
|
|
cleanup_task(task);
|
2013-11-22 01:36:52 -06:00
|
|
|
let task = ~Task::new_root(&mut sched.stack_pool, None, proc(){});
|
2013-08-03 19:40:29 -05:00
|
|
|
Local::put(task);
|
|
|
|
let task: ~Task = Local::take();
|
|
|
|
cleanup_task(task);
|
|
|
|
}
|
2013-07-19 16:25:05 -05:00
|
|
|
|
2013-05-19 17:45:39 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn borrow_smoke_test() {
|
2013-08-03 19:40:29 -05:00
|
|
|
do run_in_bare_thread {
|
2013-11-26 22:23:56 -06:00
|
|
|
local_ptr::init();
|
2013-08-03 19:40:29 -05:00
|
|
|
let mut sched = ~new_test_uv_sched();
|
2013-11-22 01:36:52 -06:00
|
|
|
let task = ~Task::new_root(&mut sched.stack_pool, None, proc(){});
|
2013-08-03 19:40:29 -05:00
|
|
|
Local::put(task);
|
|
|
|
|
|
|
|
unsafe {
|
|
|
|
let _task: *mut Task = Local::unsafe_borrow();
|
|
|
|
}
|
|
|
|
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-08-03 19:40:29 -05:00
|
|
|
do run_in_bare_thread {
|
2013-11-26 22:23:56 -06:00
|
|
|
local_ptr::init();
|
2013-08-03 19:40:29 -05:00
|
|
|
let mut sched = ~new_test_uv_sched();
|
2013-11-22 01:36:52 -06:00
|
|
|
let task = ~Task::new_root(&mut sched.stack_pool, None, proc(){});
|
2013-08-03 19:40:29 -05:00
|
|
|
Local::put(task);
|
|
|
|
|
2013-12-03 21:18:58 -06:00
|
|
|
{
|
|
|
|
let _ = Local::borrow(None::<Task>);
|
|
|
|
}
|
|
|
|
|
|
|
|
let task: ~Task = Local::take();
|
2013-08-03 19:40:29 -05:00
|
|
|
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
|
|
|
|