rust/src/libstd/sync/future.rs

236 lines
6.0 KiB
Rust
Raw Normal View History

// Copyright 2012-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.
/*!
* A type representing values that may be computed concurrently and
* operations for working with them.
*
* # Example
*
* ```rust
* use std::sync::Future;
* # fn fib(n: uint) -> uint {42};
2013-05-18 04:53:51 -05:00
* # fn make_a_sandwich() {};
2014-01-26 22:13:24 -06:00
* let mut delayed_fib = Future::spawn(proc() { fib(5000) });
* make_a_sandwich();
* println!("fib(5000) = {}", delayed_fib.get())
* ```
*/
#![allow(missing_doc)]
use core::prelude::*;
use core::mem::replace;
use comm::{Receiver, channel};
use task::spawn;
2013-09-18 01:48:56 -05:00
/// A type encapsulating the result of a computation which may not be complete
pub struct Future<A> {
state: FutureState<A>,
2012-11-13 20:38:18 -06:00
}
enum FutureState<A> {
2014-04-07 15:30:48 -05:00
Pending(proc():Send -> A),
Evaluating,
Forced(A)
}
/// Methods on the `future` type
2013-07-02 14:47:32 -05:00
impl<A:Clone> Future<A> {
pub fn get(&mut self) -> A {
//! Get the value of the future.
2013-07-02 14:47:32 -05:00
(*(self.get_ref())).clone()
}
}
impl<A> Future<A> {
/// Gets the value from this future, forcing evaluation.
2013-10-28 18:56:24 -05:00
pub fn unwrap(mut self) -> A {
self.get_ref();
let state = replace(&mut self.state, Evaluating);
match state {
Forced(v) => v,
_ => fail!( "Logic error." ),
}
}
pub fn get_ref<'a>(&'a mut self) -> &'a A {
/*!
2014-01-07 20:49:13 -06:00
* Executes the future's closure and then returns a reference
* to the result. The reference lasts as long as
* the future.
*/
2013-09-18 01:48:56 -05:00
match self.state {
Forced(ref v) => return v,
Evaluating => fail!("Recursive forcing of future!"),
2013-09-18 01:48:56 -05:00
Pending(_) => {
match replace(&mut self.state, Evaluating) {
Forced(_) | Evaluating => fail!("Logic error."),
Pending(f) => {
self.state = Forced(f());
2013-09-18 01:48:56 -05:00
self.get_ref()
}
}
}
}
}
2013-09-18 01:48:56 -05:00
pub fn from_value(val: A) -> Future<A> {
/*!
* Create a future from a value.
*
* The value is immediately available and calling `get` later will
* not block.
*/
2013-09-18 01:48:56 -05:00
Future {state: Forced(val)}
}
2014-04-07 15:30:48 -05:00
pub fn from_fn(f: proc():Send -> A) -> Future<A> {
2013-09-18 01:48:56 -05:00
/*!
* Create a future from a function.
*
* The first time that the value is requested it will be retrieved by
* calling the function. Note that this function is a local
* function. It is not spawned into another task.
*/
Future {state: Pending(f)}
}
}
2013-09-18 01:48:56 -05:00
impl<A:Send> Future<A> {
pub fn from_receiver(rx: Receiver<A>) -> Future<A> {
2013-09-18 01:48:56 -05:00
/*!
* Create a future from a port
*
* The first time that the value is requested the task will block
* waiting for the result to be received on the port.
*/
2014-01-26 22:13:24 -06:00
Future::from_fn(proc() {
rx.recv()
2014-01-26 22:13:24 -06:00
})
2013-09-18 01:48:56 -05:00
}
2014-04-07 15:30:48 -05:00
pub fn spawn(blk: proc():Send -> A) -> Future<A> {
2013-09-18 01:48:56 -05:00
/*!
* Create a future from a unique closure.
*
* The closure will be run in a new task and its result used as the
* value of the future.
*/
let (tx, rx) = channel();
2014-01-26 22:13:24 -06:00
spawn(proc() {
// Don't fail if the other end has hung up
let _ = tx.send_opt(blk());
2014-01-26 22:13:24 -06:00
});
Future::from_receiver(rx)
}
}
2013-02-26 23:10:03 -06:00
#[cfg(test)]
mod test {
use prelude::*;
use sync::Future;
use task;
use comm::{channel, Sender};
2012-12-28 14:46:08 -06:00
#[test]
fn test_from_value() {
2014-05-25 05:10:11 -05:00
let mut f = Future::from_value("snail".to_string());
assert_eq!(f.get(), "snail".to_string());
}
#[test]
fn test_from_receiver() {
let (tx, rx) = channel();
2014-05-25 05:10:11 -05:00
tx.send("whale".to_string());
let mut f = Future::from_receiver(rx);
2014-05-25 05:10:11 -05:00
assert_eq!(f.get(), "whale".to_string());
}
#[test]
fn test_from_fn() {
2014-05-25 05:10:11 -05:00
let mut f = Future::from_fn(proc() "brail".to_string());
assert_eq!(f.get(), "brail".to_string());
}
#[test]
fn test_interface_get() {
2014-05-25 05:10:11 -05:00
let mut f = Future::from_value("fail".to_string());
assert_eq!(f.get(), "fail".to_string());
}
#[test]
fn test_interface_unwrap() {
2014-05-25 05:10:11 -05:00
let f = Future::from_value("fail".to_string());
assert_eq!(f.unwrap(), "fail".to_string());
}
#[test]
fn test_get_ref_method() {
let mut f = Future::from_value(22i);
assert_eq!(*f.get_ref(), 22);
}
#[test]
fn test_spawn() {
2014-05-25 05:10:11 -05:00
let mut f = Future::spawn(proc() "bale".to_string());
assert_eq!(f.get(), "bale".to_string());
}
#[test]
#[should_fail]
fn test_futurefail() {
let mut f = Future::spawn(proc() fail!());
let _x: String = f.get();
}
#[test]
fn test_sendable_future() {
let expected = "schlorf";
2014-01-26 22:13:24 -06:00
let f = Future::spawn(proc() { expected });
task::spawn(proc() {
let mut f = f;
let actual = f.get();
assert_eq!(actual, expected);
2014-01-26 22:13:24 -06:00
});
}
#[test]
fn test_dropped_future_doesnt_fail() {
struct Bomb(Sender<bool>);
local_data_key!(LOCAL: Bomb)
impl Drop for Bomb {
fn drop(&mut self) {
let Bomb(ref tx) = *self;
tx.send(task::failing());
}
}
// Spawn a future, but drop it immediately. When we receive the result
// later on, we should never view the task as having failed.
let (tx, rx) = channel();
drop(Future::spawn(proc() {
LOCAL.replace(Some(Bomb(tx)));
}));
// Make sure the future didn't fail the task.
assert!(!rx.recv());
}
}