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-09-19 19:29:54 -05:00
|
|
|
/*!
|
|
|
|
|
|
|
|
Task local data management
|
|
|
|
|
2012-09-19 19:43:41 -05:00
|
|
|
Allows storing boxes with arbitrary types inside, to be accessed
|
|
|
|
anywhere within a task, keyed by a pointer to a global finaliser
|
|
|
|
function. Useful for dynamic variables, singletons, and interfacing
|
|
|
|
with foreign code with bad callback interfaces.
|
2012-09-19 19:29:54 -05:00
|
|
|
|
2012-09-19 19:43:41 -05:00
|
|
|
To use, declare a monomorphic global function at the type to store,
|
|
|
|
and use it as the 'key' when accessing. See the 'tls' tests below for
|
|
|
|
examples.
|
2012-09-19 19:29:54 -05:00
|
|
|
|
2012-09-19 19:43:41 -05:00
|
|
|
Casting 'Arcane Sight' reveals an overwhelming aura of Transmutation
|
|
|
|
magic.
|
2012-09-19 19:29:54 -05:00
|
|
|
|
|
|
|
*/
|
|
|
|
|
2012-12-23 16:41:37 -06:00
|
|
|
use rt;
|
|
|
|
use task::local_data_priv::{local_get, local_pop, local_modify, local_set};
|
2012-12-27 19:53:04 -06:00
|
|
|
use task;
|
2012-09-19 19:29:54 -05:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Indexes a task-local data slot. The function's code pointer is used for
|
|
|
|
* comparison. Recommended use is to write an empty function for each desired
|
|
|
|
* task-local data slot (and use class destructors, not code inside the
|
|
|
|
* function, if specific teardown is needed). DO NOT use multiple
|
|
|
|
* instantiations of a single polymorphic function to index data of different
|
|
|
|
* types; arbitrary type coercion is possible this way.
|
|
|
|
*
|
|
|
|
* One other exception is that this global state can be used in a destructor
|
|
|
|
* context to create a circular @-box reference, which will crash during task
|
|
|
|
* failure (see issue #3039).
|
|
|
|
*
|
|
|
|
* These two cases aside, the interface is safe.
|
|
|
|
*/
|
2012-12-11 13:59:45 -06:00
|
|
|
pub type LocalDataKey<T: Durable> = &fn(v: @T);
|
2012-09-19 19:29:54 -05:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Remove a task-local data value from the table, returning the
|
|
|
|
* reference that was originally created to insert it.
|
|
|
|
*/
|
2012-12-11 13:59:45 -06:00
|
|
|
pub unsafe fn local_data_pop<T: Durable>(
|
2012-09-19 19:29:54 -05:00
|
|
|
key: LocalDataKey<T>) -> Option<@T> {
|
|
|
|
|
2012-09-19 19:57:32 -05:00
|
|
|
local_pop(rt::rust_get_task(), key)
|
2012-09-19 19:29:54 -05:00
|
|
|
}
|
|
|
|
/**
|
|
|
|
* Retrieve a task-local data value. It will also be kept alive in the
|
|
|
|
* table until explicitly removed.
|
|
|
|
*/
|
2012-12-11 13:59:45 -06:00
|
|
|
pub unsafe fn local_data_get<T: Durable>(
|
2012-09-19 19:29:54 -05:00
|
|
|
key: LocalDataKey<T>) -> Option<@T> {
|
|
|
|
|
2012-09-19 19:57:32 -05:00
|
|
|
local_get(rt::rust_get_task(), key)
|
2012-09-19 19:29:54 -05:00
|
|
|
}
|
|
|
|
/**
|
|
|
|
* Store a value in task-local data. If this key already has a value,
|
|
|
|
* that value is overwritten (and its destructor is run).
|
|
|
|
*/
|
2012-12-11 13:59:45 -06:00
|
|
|
pub unsafe fn local_data_set<T: Durable>(
|
2012-10-02 13:37:37 -05:00
|
|
|
key: LocalDataKey<T>, data: @T) {
|
2012-09-19 19:29:54 -05:00
|
|
|
|
2012-09-19 19:57:32 -05:00
|
|
|
local_set(rt::rust_get_task(), key, data)
|
2012-09-19 19:29:54 -05:00
|
|
|
}
|
|
|
|
/**
|
|
|
|
* Modify a task-local data value. If the function returns 'None', the
|
|
|
|
* data is removed (and its reference dropped).
|
|
|
|
*/
|
2012-12-11 13:59:45 -06:00
|
|
|
pub unsafe fn local_data_modify<T: Durable>(
|
2012-09-19 19:29:54 -05:00
|
|
|
key: LocalDataKey<T>,
|
|
|
|
modify_fn: fn(Option<@T>) -> Option<@T>) {
|
|
|
|
|
2012-09-19 19:57:32 -05:00
|
|
|
local_modify(rt::rust_get_task(), key, modify_fn)
|
2012-09-19 19:29:54 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
2012-10-04 00:06:51 -05:00
|
|
|
fn test_tls_multitask() unsafe {
|
2012-10-02 13:37:37 -05:00
|
|
|
fn my_key(_x: @~str) { }
|
2012-09-19 19:29:54 -05:00
|
|
|
local_data_set(my_key, @~"parent data");
|
|
|
|
do task::spawn unsafe {
|
|
|
|
assert local_data_get(my_key).is_none(); // TLS shouldn't carry over.
|
|
|
|
local_data_set(my_key, @~"child data");
|
|
|
|
assert *(local_data_get(my_key).get()) == ~"child data";
|
|
|
|
// should be cleaned up for us
|
|
|
|
}
|
|
|
|
// Must work multiple times
|
|
|
|
assert *(local_data_get(my_key).get()) == ~"parent data";
|
|
|
|
assert *(local_data_get(my_key).get()) == ~"parent data";
|
|
|
|
assert *(local_data_get(my_key).get()) == ~"parent data";
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
2012-10-04 00:06:51 -05:00
|
|
|
fn test_tls_overwrite() unsafe {
|
2012-10-02 13:37:37 -05:00
|
|
|
fn my_key(_x: @~str) { }
|
2012-09-19 19:29:54 -05:00
|
|
|
local_data_set(my_key, @~"first data");
|
|
|
|
local_data_set(my_key, @~"next data"); // Shouldn't leak.
|
|
|
|
assert *(local_data_get(my_key).get()) == ~"next data";
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
2012-10-04 00:06:51 -05:00
|
|
|
fn test_tls_pop() unsafe {
|
2012-10-02 13:37:37 -05:00
|
|
|
fn my_key(_x: @~str) { }
|
2012-09-19 19:29:54 -05:00
|
|
|
local_data_set(my_key, @~"weasel");
|
|
|
|
assert *(local_data_pop(my_key).get()) == ~"weasel";
|
|
|
|
// Pop must remove the data from the map.
|
|
|
|
assert local_data_pop(my_key).is_none();
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
2012-10-04 00:06:51 -05:00
|
|
|
fn test_tls_modify() unsafe {
|
2012-10-02 13:37:37 -05:00
|
|
|
fn my_key(_x: @~str) { }
|
2012-09-19 19:29:54 -05:00
|
|
|
local_data_modify(my_key, |data| {
|
|
|
|
match data {
|
2012-09-28 15:00:07 -05:00
|
|
|
Some(@ref val) => fail ~"unwelcome value: " + *val,
|
2012-09-19 19:29:54 -05:00
|
|
|
None => Some(@~"first data")
|
|
|
|
}
|
|
|
|
});
|
|
|
|
local_data_modify(my_key, |data| {
|
|
|
|
match data {
|
|
|
|
Some(@~"first data") => Some(@~"next data"),
|
2012-09-28 15:00:07 -05:00
|
|
|
Some(@ref val) => fail ~"wrong value: " + *val,
|
2012-09-19 19:29:54 -05:00
|
|
|
None => fail ~"missing value"
|
|
|
|
}
|
|
|
|
});
|
|
|
|
assert *(local_data_pop(my_key).get()) == ~"next data";
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
2012-10-04 00:06:51 -05:00
|
|
|
fn test_tls_crust_automorestack_memorial_bug() unsafe {
|
2012-09-19 19:29:54 -05:00
|
|
|
// This might result in a stack-canary clobber if the runtime fails to set
|
|
|
|
// sp_limit to 0 when calling the cleanup extern - it might automatically
|
|
|
|
// jump over to the rust stack, which causes next_c_sp to get recorded as
|
|
|
|
// Something within a rust stack segment. Then a subsequent upcall (esp.
|
|
|
|
// for logging, think vsnprintf) would run on a stack smaller than 1 MB.
|
2012-10-02 13:37:37 -05:00
|
|
|
fn my_key(_x: @~str) { }
|
2012-09-19 19:29:54 -05:00
|
|
|
do task::spawn {
|
|
|
|
unsafe { local_data_set(my_key, @~"hax"); }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
2012-10-04 00:06:51 -05:00
|
|
|
fn test_tls_multiple_types() unsafe {
|
2012-10-02 13:37:37 -05:00
|
|
|
fn str_key(_x: @~str) { }
|
|
|
|
fn box_key(_x: @@()) { }
|
|
|
|
fn int_key(_x: @int) { }
|
2012-09-19 19:29:54 -05:00
|
|
|
do task::spawn unsafe {
|
|
|
|
local_data_set(str_key, @~"string data");
|
|
|
|
local_data_set(box_key, @@());
|
|
|
|
local_data_set(int_key, @42);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
2012-10-04 00:06:51 -05:00
|
|
|
fn test_tls_overwrite_multiple_types() {
|
2012-10-02 13:37:37 -05:00
|
|
|
fn str_key(_x: @~str) { }
|
|
|
|
fn box_key(_x: @@()) { }
|
|
|
|
fn int_key(_x: @int) { }
|
2012-09-19 19:29:54 -05:00
|
|
|
do task::spawn unsafe {
|
|
|
|
local_data_set(str_key, @~"string data");
|
|
|
|
local_data_set(int_key, @42);
|
|
|
|
// This could cause a segfault if overwriting-destruction is done with
|
|
|
|
// the crazy polymorphic transmute rather than the provided finaliser.
|
|
|
|
local_data_set(int_key, @31337);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
#[should_fail]
|
|
|
|
#[ignore(cfg(windows))]
|
2012-10-04 00:06:51 -05:00
|
|
|
fn test_tls_cleanup_on_failure() unsafe {
|
2012-10-02 13:37:37 -05:00
|
|
|
fn str_key(_x: @~str) { }
|
|
|
|
fn box_key(_x: @@()) { }
|
|
|
|
fn int_key(_x: @int) { }
|
2012-09-19 19:29:54 -05:00
|
|
|
local_data_set(str_key, @~"parent data");
|
|
|
|
local_data_set(box_key, @@());
|
|
|
|
do task::spawn unsafe { // spawn_linked
|
|
|
|
local_data_set(str_key, @~"string data");
|
|
|
|
local_data_set(box_key, @@());
|
|
|
|
local_data_set(int_key, @42);
|
|
|
|
fail;
|
|
|
|
}
|
|
|
|
// Not quite nondeterministic.
|
|
|
|
local_data_set(int_key, @31337);
|
|
|
|
fail;
|
|
|
|
}
|