2013-04-21 18:28:17 -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.
|
|
|
|
|
|
|
|
//! Language-level runtime services that should reasonably expected
|
|
|
|
//! to be available 'everywhere'. Local heaps, GC, unwinding,
|
|
|
|
//! local storage, and logging. Even a 'freestanding' Rust would likely want
|
|
|
|
//! to implement this.
|
|
|
|
|
|
|
|
//! Local services may exist in at least three different contexts:
|
|
|
|
//! when running as a task, when running in the scheduler's context,
|
|
|
|
//! or when running outside of a scheduler but with local services
|
|
|
|
//! (freestanding rust with local services?).
|
|
|
|
|
|
|
|
use prelude::*;
|
2013-04-22 19:15:31 -05:00
|
|
|
use libc::{c_void, uintptr_t};
|
|
|
|
use cast::transmute;
|
2013-04-24 14:11:33 -05:00
|
|
|
use super::sched::local_sched;
|
2013-04-21 21:03:52 -05:00
|
|
|
use super::local_heap::LocalHeap;
|
2013-04-21 18:28:17 -05:00
|
|
|
|
|
|
|
pub struct LocalServices {
|
|
|
|
heap: LocalHeap,
|
|
|
|
gc: GarbageCollector,
|
|
|
|
storage: LocalStorage,
|
|
|
|
logger: Logger,
|
2013-04-23 17:11:28 -05:00
|
|
|
unwinder: Option<Unwinder>,
|
2013-04-22 14:54:03 -05:00
|
|
|
destroyed: bool
|
2013-04-21 18:28:17 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
pub struct GarbageCollector;
|
2013-04-22 14:54:03 -05:00
|
|
|
pub struct LocalStorage(*c_void, Option<~fn(*c_void)>);
|
2013-04-21 18:28:17 -05:00
|
|
|
pub struct Logger;
|
2013-04-22 19:15:31 -05:00
|
|
|
|
|
|
|
pub struct Unwinder {
|
|
|
|
unwinding: bool,
|
|
|
|
}
|
2013-04-21 18:28:17 -05:00
|
|
|
|
|
|
|
impl LocalServices {
|
|
|
|
pub fn new() -> LocalServices {
|
|
|
|
LocalServices {
|
2013-04-21 21:03:52 -05:00
|
|
|
heap: LocalHeap::new(),
|
2013-04-21 18:28:17 -05:00
|
|
|
gc: GarbageCollector,
|
2013-04-22 14:54:03 -05:00
|
|
|
storage: LocalStorage(ptr::null(), None),
|
2013-04-21 18:28:17 -05:00
|
|
|
logger: Logger,
|
2013-04-23 17:11:28 -05:00
|
|
|
unwinder: Some(Unwinder { unwinding: false }),
|
|
|
|
destroyed: false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn without_unwinding() -> LocalServices {
|
|
|
|
LocalServices {
|
|
|
|
heap: LocalHeap::new(),
|
|
|
|
gc: GarbageCollector,
|
|
|
|
storage: LocalStorage(ptr::null(), None),
|
|
|
|
logger: Logger,
|
|
|
|
unwinder: None,
|
2013-04-22 14:54:03 -05:00
|
|
|
destroyed: false
|
2013-04-21 18:28:17 -05:00
|
|
|
}
|
|
|
|
}
|
2013-04-22 14:54:03 -05:00
|
|
|
|
2013-04-22 19:15:31 -05:00
|
|
|
pub fn run(&mut self, f: &fn()) {
|
|
|
|
// This is just an assertion that `run` was called unsafely
|
|
|
|
// and this instance of LocalServices is still accessible.
|
|
|
|
do borrow_local_services |sched| {
|
|
|
|
assert!(ptr::ref_eq(sched, self));
|
|
|
|
}
|
|
|
|
|
2013-04-23 17:11:28 -05:00
|
|
|
match self.unwinder {
|
|
|
|
Some(ref mut unwinder) => {
|
|
|
|
// If there's an unwinder then set up the catch block
|
|
|
|
unwinder.try(f);
|
|
|
|
}
|
|
|
|
None => {
|
|
|
|
// Otherwise, just run the body
|
|
|
|
f()
|
|
|
|
}
|
|
|
|
}
|
2013-04-22 19:15:31 -05:00
|
|
|
self.destroy();
|
|
|
|
}
|
|
|
|
|
2013-04-22 14:54:03 -05:00
|
|
|
/// Must be called manually before finalization to clean up
|
|
|
|
/// thread-local resources. Some of the routines here expect
|
|
|
|
/// LocalServices to be available recursively so this must be
|
|
|
|
/// called unsafely, without removing LocalServices from
|
|
|
|
/// thread-local-storage.
|
2013-04-22 19:15:31 -05:00
|
|
|
fn destroy(&mut self) {
|
2013-04-22 14:54:03 -05:00
|
|
|
// This is just an assertion that `destroy` was called unsafely
|
|
|
|
// and this instance of LocalServices is still accessible.
|
|
|
|
do borrow_local_services |sched| {
|
|
|
|
assert!(ptr::ref_eq(sched, self));
|
|
|
|
}
|
|
|
|
match self.storage {
|
2013-04-23 17:16:04 -05:00
|
|
|
LocalStorage(ptr, Some(ref dtor)) => {
|
|
|
|
(*dtor)(ptr)
|
|
|
|
}
|
2013-04-22 14:54:03 -05:00
|
|
|
_ => ()
|
|
|
|
}
|
|
|
|
self.destroyed = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Drop for LocalServices {
|
|
|
|
fn finalize(&self) { assert!(self.destroyed) }
|
2013-04-21 18:28:17 -05:00
|
|
|
}
|
|
|
|
|
2013-04-22 19:15:31 -05:00
|
|
|
// Just a sanity check to make sure we are catching a Rust-thrown exception
|
|
|
|
static UNWIND_TOKEN: uintptr_t = 839147;
|
|
|
|
|
|
|
|
impl Unwinder {
|
|
|
|
pub fn try(&mut self, f: &fn()) {
|
|
|
|
use sys::Closure;
|
|
|
|
|
|
|
|
unsafe {
|
|
|
|
let closure: Closure = transmute(f);
|
|
|
|
let code = transmute(closure.code);
|
|
|
|
let env = transmute(closure.env);
|
|
|
|
|
|
|
|
let token = rust_try(try_fn, code, env);
|
|
|
|
assert!(token == 0 || token == UNWIND_TOKEN);
|
|
|
|
}
|
|
|
|
|
|
|
|
extern fn try_fn(code: *c_void, env: *c_void) {
|
|
|
|
unsafe {
|
|
|
|
let closure: Closure = Closure {
|
|
|
|
code: transmute(code),
|
|
|
|
env: transmute(env),
|
|
|
|
};
|
|
|
|
let closure: &fn() = transmute(closure);
|
|
|
|
closure();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
extern {
|
|
|
|
#[rust_stack]
|
|
|
|
fn rust_try(f: *u8, code: *c_void, data: *c_void) -> uintptr_t;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn begin_unwind(&mut self) -> ! {
|
|
|
|
self.unwinding = true;
|
|
|
|
unsafe {
|
|
|
|
rust_begin_unwind(UNWIND_TOKEN);
|
|
|
|
return transmute(());
|
|
|
|
}
|
|
|
|
extern {
|
|
|
|
fn rust_begin_unwind(token: uintptr_t);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-04-21 18:28:17 -05:00
|
|
|
/// Borrow a pointer to the installed local services.
|
|
|
|
/// Fails (likely aborting the process) if local services are not available.
|
|
|
|
pub fn borrow_local_services(f: &fn(&mut LocalServices)) {
|
|
|
|
do local_sched::borrow |sched| {
|
|
|
|
match sched.current_task {
|
|
|
|
Some(~ref mut task) => {
|
|
|
|
f(&mut task.local_services)
|
|
|
|
}
|
|
|
|
None => {
|
|
|
|
fail!(~"no local services for schedulers yet")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2013-04-21 21:03:52 -05:00
|
|
|
|
2013-04-22 14:54:03 -05:00
|
|
|
pub unsafe fn unsafe_borrow_local_services() -> &mut LocalServices {
|
|
|
|
use cast::transmute_mut_region;
|
|
|
|
|
|
|
|
match local_sched::unsafe_borrow().current_task {
|
|
|
|
Some(~ref mut task) => {
|
|
|
|
transmute_mut_region(&mut task.local_services)
|
|
|
|
}
|
|
|
|
None => {
|
|
|
|
fail!(~"no local services for schedulers yet")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-04-21 21:03:52 -05:00
|
|
|
#[cfg(test)]
|
|
|
|
mod test {
|
|
|
|
use rt::test::*;
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn local_heap() {
|
|
|
|
do run_in_newsched_task() {
|
|
|
|
let a = @5;
|
|
|
|
let b = a;
|
|
|
|
assert!(*a == 5);
|
|
|
|
assert!(*b == 5);
|
|
|
|
}
|
|
|
|
}
|
2013-04-22 14:54:03 -05:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn tls() {
|
|
|
|
use task::local_data::*;
|
|
|
|
do run_in_newsched_task() {
|
|
|
|
unsafe {
|
|
|
|
fn key(_x: @~str) { }
|
|
|
|
local_data_set(key, @~"data");
|
|
|
|
assert!(*local_data_get(key).get() == ~"data");
|
2013-04-23 17:16:04 -05:00
|
|
|
fn key2(_x: @~str) { }
|
|
|
|
local_data_set(key2, @~"data");
|
|
|
|
assert!(*local_data_get(key2).get() == ~"data");
|
2013-04-22 14:54:03 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2013-04-22 19:15:31 -05:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn unwind() {
|
|
|
|
do run_in_newsched_task() {
|
2013-04-23 17:11:28 -05:00
|
|
|
let result = spawntask_try(||());
|
2013-04-22 19:15:31 -05:00
|
|
|
assert!(result.is_ok());
|
2013-04-23 17:11:28 -05:00
|
|
|
let result = spawntask_try(|| fail!());
|
2013-04-22 19:15:31 -05:00
|
|
|
assert!(result.is_err());
|
|
|
|
}
|
|
|
|
}
|
2013-05-06 20:24:37 -05:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn rng() {
|
|
|
|
do run_in_newsched_task() {
|
|
|
|
use rand::{rng, Rng};
|
2013-05-08 14:26:34 -05:00
|
|
|
let mut r = rng();
|
2013-05-06 20:24:37 -05:00
|
|
|
let _ = r.next();
|
|
|
|
}
|
|
|
|
}
|
2013-05-08 14:26:34 -05:00
|
|
|
}
|