2014-11-25 16:52:10 +00:00
|
|
|
// Copyright 2014 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.
|
|
|
|
|
2015-03-10 03:04:35 +00:00
|
|
|
#![allow(dead_code)] // stack_guard isn't used right now on all platforms
|
|
|
|
|
2014-12-07 08:32:50 +00:00
|
|
|
use core::prelude::*;
|
|
|
|
|
|
|
|
use cell::RefCell;
|
|
|
|
use string::String;
|
2014-12-30 23:20:47 +00:00
|
|
|
use thread::Thread;
|
2015-03-20 07:46:13 +00:00
|
|
|
use thread::LocalKeyState;
|
2014-12-07 08:32:50 +00:00
|
|
|
|
2014-11-25 16:52:10 +00:00
|
|
|
struct ThreadInfo {
|
2015-03-26 00:06:52 +00:00
|
|
|
stack_guard: usize,
|
2014-11-25 16:52:10 +00:00
|
|
|
thread: Thread,
|
|
|
|
}
|
|
|
|
|
2014-12-19 03:41:20 +00:00
|
|
|
thread_local! { static THREAD_INFO: RefCell<Option<ThreadInfo>> = RefCell::new(None) }
|
2014-11-25 16:52:10 +00:00
|
|
|
|
|
|
|
impl ThreadInfo {
|
2014-12-30 23:05:17 +00:00
|
|
|
fn with<R, F>(f: F) -> R where F: FnOnce(&mut ThreadInfo) -> R {
|
2015-03-20 07:46:13 +00:00
|
|
|
if THREAD_INFO.state() == LocalKeyState::Destroyed {
|
2015-02-17 23:10:25 +00:00
|
|
|
panic!("Use of std::thread::current() is not possible after \
|
2014-12-14 08:05:32 +00:00
|
|
|
the thread's local data has been destroyed");
|
|
|
|
}
|
|
|
|
|
2014-12-30 23:05:17 +00:00
|
|
|
THREAD_INFO.with(move |c| {
|
2014-11-25 16:52:10 +00:00
|
|
|
if c.borrow().is_none() {
|
|
|
|
*c.borrow_mut() = Some(ThreadInfo {
|
|
|
|
stack_guard: 0,
|
2014-12-07 02:34:37 +00:00
|
|
|
thread: NewThread::new(None),
|
2014-11-25 16:52:10 +00:00
|
|
|
})
|
|
|
|
}
|
2014-12-07 02:34:37 +00:00
|
|
|
f(c.borrow_mut().as_mut().unwrap())
|
2014-11-25 16:52:10 +00:00
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn current_thread() -> Thread {
|
|
|
|
ThreadInfo::with(|info| info.thread.clone())
|
|
|
|
}
|
|
|
|
|
2015-03-26 00:06:52 +00:00
|
|
|
pub fn stack_guard() -> usize {
|
2014-12-07 08:32:50 +00:00
|
|
|
ThreadInfo::with(|info| info.stack_guard)
|
|
|
|
}
|
|
|
|
|
2015-03-26 00:06:52 +00:00
|
|
|
pub fn set(stack_guard: usize, thread: Thread) {
|
2014-11-25 16:52:10 +00:00
|
|
|
THREAD_INFO.with(|c| assert!(c.borrow().is_none()));
|
2014-12-10 15:49:45 +00:00
|
|
|
THREAD_INFO.with(move |c| *c.borrow_mut() = Some(ThreadInfo{
|
2014-11-25 16:52:10 +00:00
|
|
|
stack_guard: stack_guard,
|
2014-12-10 15:49:45 +00:00
|
|
|
thread: thread,
|
2014-11-25 16:52:10 +00:00
|
|
|
}));
|
|
|
|
}
|
|
|
|
|
2015-02-17 23:10:25 +00:00
|
|
|
// a hack to get around privacy restrictions; implemented by `std::thread`
|
2014-11-25 16:52:10 +00:00
|
|
|
pub trait NewThread {
|
|
|
|
fn new(name: Option<String>) -> Self;
|
|
|
|
}
|