2013-05-17 16:11:18 -05:00
|
|
|
// Copyright 2012-2013 The Rust Project Developers. See the COPYRIGHT
|
2012-12-03 18:48:01 -06:00
|
|
|
// 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-07-04 16:53:12 -05:00
|
|
|
/*!
|
|
|
|
* A type representing values that may be computed concurrently and
|
|
|
|
* operations for working with them.
|
|
|
|
*
|
|
|
|
* # Example
|
|
|
|
*
|
2013-09-23 19:20:36 -05:00
|
|
|
* ```rust
|
2014-01-30 14:04:47 -06:00
|
|
|
* use sync::Future;
|
2013-05-17 16:11:18 -05:00
|
|
|
* # 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) });
|
2012-07-04 16:53:12 -05:00
|
|
|
* make_a_sandwich();
|
2013-09-25 00:16:43 -05:00
|
|
|
* println!("fib(5000) = {}", delayed_fib.get())
|
2013-09-23 19:20:36 -05:00
|
|
|
* ```
|
2012-07-04 16:53:12 -05:00
|
|
|
*/
|
2012-02-14 18:39:20 -06:00
|
|
|
|
2013-05-28 22:11:41 -05:00
|
|
|
#[allow(missing_doc)];
|
|
|
|
|
2013-06-28 17:32:26 -05:00
|
|
|
use std::util::replace;
|
2012-03-16 17:14:37 -05:00
|
|
|
|
2013-09-18 01:48:56 -05:00
|
|
|
/// A type encapsulating the result of a computation which may not be complete
|
2012-09-26 19:20:14 -05:00
|
|
|
pub struct Future<A> {
|
2013-05-03 00:51:12 -05:00
|
|
|
priv state: FutureState<A>,
|
2012-11-13 20:38:18 -06:00
|
|
|
}
|
2012-08-28 23:28:25 -05:00
|
|
|
|
2013-08-07 01:03:31 -05:00
|
|
|
enum FutureState<A> {
|
2013-11-18 17:39:02 -06:00
|
|
|
Pending(proc() -> A),
|
2012-08-27 18:08:17 -05:00
|
|
|
Evaluating,
|
2012-12-11 17:19:43 -06:00
|
|
|
Forced(A)
|
2012-08-27 18:08:17 -05:00
|
|
|
}
|
2012-02-14 18:39:20 -06:00
|
|
|
|
2012-08-27 18:08:17 -05:00
|
|
|
/// Methods on the `future` type
|
2013-07-02 14:47:32 -05:00
|
|
|
impl<A:Clone> Future<A> {
|
2013-05-31 17:17:22 -05:00
|
|
|
pub fn get(&mut self) -> A {
|
2013-05-17 16:11:18 -05:00
|
|
|
//! Get the value of the future.
|
2013-07-02 14:47:32 -05:00
|
|
|
(*(self.get_ref())).clone()
|
2012-02-14 18:39:20 -06:00
|
|
|
}
|
2012-08-27 18:08:17 -05:00
|
|
|
}
|
|
|
|
|
2013-07-19 20:02:38 -05:00
|
|
|
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);
|
2013-07-19 20:02:38 -05:00
|
|
|
match state {
|
|
|
|
Forced(v) => v,
|
2013-10-21 15:08:31 -05:00
|
|
|
_ => fail!( "Logic error." ),
|
2013-07-19 20:02:38 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-05-31 17:17:22 -05:00
|
|
|
pub fn get_ref<'a>(&'a mut self) -> &'a A {
|
2013-05-03 00:51:12 -05:00
|
|
|
/*!
|
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
|
2013-05-03 00:51:12 -05:00
|
|
|
* the future.
|
|
|
|
*/
|
2013-09-18 01:48:56 -05:00
|
|
|
match self.state {
|
|
|
|
Forced(ref v) => return v,
|
2013-10-21 15:08:31 -05:00
|
|
|
Evaluating => fail!("Recursive forcing of future!"),
|
2013-09-18 01:48:56 -05:00
|
|
|
Pending(_) => {
|
|
|
|
match replace(&mut self.state, Evaluating) {
|
2013-10-21 15:08:31 -05:00
|
|
|
Forced(_) | Evaluating => fail!("Logic error."),
|
2013-05-03 00:51:12 -05:00
|
|
|
Pending(f) => {
|
|
|
|
self.state = Forced(f());
|
2013-09-18 01:48:56 -05:00
|
|
|
self.get_ref()
|
2013-05-03 00:51:12 -05:00
|
|
|
}
|
2012-12-11 17:19:43 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2012-02-14 18:39:20 -06:00
|
|
|
}
|
|
|
|
|
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.
|
|
|
|
*/
|
2012-02-14 18:39:20 -06:00
|
|
|
|
2013-09-18 01:48:56 -05:00
|
|
|
Future {state: Forced(val)}
|
|
|
|
}
|
2012-07-02 21:03:11 -05:00
|
|
|
|
2013-11-18 17:39:02 -06:00
|
|
|
pub fn from_fn(f: proc() -> 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)}
|
2012-02-18 17:23:56 -06:00
|
|
|
}
|
2012-02-14 18:39:20 -06:00
|
|
|
}
|
|
|
|
|
2013-09-18 01:48:56 -05:00
|
|
|
impl<A:Send> Future<A> {
|
2013-12-05 20:19:06 -06:00
|
|
|
pub fn from_port(port: Port<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() {
|
2013-12-03 18:44:16 -06:00
|
|
|
port.recv()
|
2014-01-26 22:13:24 -06:00
|
|
|
})
|
2013-09-18 01:48:56 -05:00
|
|
|
}
|
2012-02-14 18:39:20 -06:00
|
|
|
|
2013-11-18 17:39:02 -06:00
|
|
|
pub fn spawn(blk: proc() -> 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.
|
|
|
|
*/
|
2012-02-14 18:39:20 -06:00
|
|
|
|
2013-12-05 20:19:06 -06:00
|
|
|
let (port, chan) = Chan::new();
|
2012-02-14 18:39:20 -06:00
|
|
|
|
2014-01-26 22:13:24 -06:00
|
|
|
spawn(proc() {
|
2013-09-18 01:48:56 -05:00
|
|
|
chan.send(blk());
|
2014-01-26 22:13:24 -06:00
|
|
|
});
|
2012-10-22 18:22:47 -05:00
|
|
|
|
2013-09-18 01:48:56 -05:00
|
|
|
Future::from_port(port)
|
2012-10-22 18:22:47 -05:00
|
|
|
}
|
2012-02-14 18:39:20 -06:00
|
|
|
}
|
|
|
|
|
2013-02-26 23:10:03 -06:00
|
|
|
#[cfg(test)]
|
2013-04-15 10:08:52 -05:00
|
|
|
mod test {
|
2013-09-18 01:48:56 -05:00
|
|
|
use future::Future;
|
2013-01-08 21:37:25 -06:00
|
|
|
|
2013-06-28 17:32:26 -05:00
|
|
|
use std::task;
|
2012-12-28 14:46:08 -06:00
|
|
|
|
2012-09-02 18:34:20 -05:00
|
|
|
#[test]
|
2013-04-15 10:08:52 -05:00
|
|
|
fn test_from_value() {
|
2013-09-18 01:48:56 -05:00
|
|
|
let mut f = Future::from_value(~"snail");
|
2013-05-18 21:02:45 -05:00
|
|
|
assert_eq!(f.get(), ~"snail");
|
2012-09-02 18:34:20 -05:00
|
|
|
}
|
2012-02-14 18:39:20 -06:00
|
|
|
|
2012-09-02 18:34:20 -05:00
|
|
|
#[test]
|
2013-04-15 10:08:52 -05:00
|
|
|
fn test_from_port() {
|
2013-12-05 20:19:06 -06:00
|
|
|
let (po, ch) = Chan::new();
|
2013-08-01 01:12:20 -05:00
|
|
|
ch.send(~"whale");
|
2013-09-18 01:48:56 -05:00
|
|
|
let mut f = Future::from_port(po);
|
2013-05-18 21:02:45 -05:00
|
|
|
assert_eq!(f.get(), ~"whale");
|
2012-09-02 18:34:20 -05:00
|
|
|
}
|
2012-02-14 18:39:20 -06:00
|
|
|
|
2012-09-02 18:34:20 -05:00
|
|
|
#[test]
|
2013-04-15 10:08:52 -05:00
|
|
|
fn test_from_fn() {
|
2013-11-22 01:36:52 -06:00
|
|
|
let mut f = Future::from_fn(proc() ~"brail");
|
2013-05-18 21:02:45 -05:00
|
|
|
assert_eq!(f.get(), ~"brail");
|
2012-09-02 18:34:20 -05:00
|
|
|
}
|
2012-02-18 17:23:56 -06:00
|
|
|
|
2012-09-02 18:34:20 -05:00
|
|
|
#[test]
|
2013-04-15 10:08:52 -05:00
|
|
|
fn test_interface_get() {
|
2013-09-18 01:48:56 -05:00
|
|
|
let mut f = Future::from_value(~"fail");
|
2013-05-18 21:02:45 -05:00
|
|
|
assert_eq!(f.get(), ~"fail");
|
2012-09-02 18:34:20 -05:00
|
|
|
}
|
2012-02-14 18:39:20 -06:00
|
|
|
|
2013-07-19 20:02:38 -05:00
|
|
|
#[test]
|
|
|
|
fn test_interface_unwrap() {
|
2013-09-18 01:48:56 -05:00
|
|
|
let f = Future::from_value(~"fail");
|
2013-07-19 20:02:38 -05:00
|
|
|
assert_eq!(f.unwrap(), ~"fail");
|
|
|
|
}
|
|
|
|
|
2012-09-02 18:34:20 -05:00
|
|
|
#[test]
|
2013-04-15 10:08:52 -05:00
|
|
|
fn test_get_ref_method() {
|
2013-09-18 01:48:56 -05:00
|
|
|
let mut f = Future::from_value(22);
|
2013-05-18 21:02:45 -05:00
|
|
|
assert_eq!(*f.get_ref(), 22);
|
2012-09-02 18:34:20 -05:00
|
|
|
}
|
2012-08-27 18:08:17 -05:00
|
|
|
|
2012-09-02 18:34:20 -05:00
|
|
|
#[test]
|
2013-04-15 10:08:52 -05:00
|
|
|
fn test_spawn() {
|
2013-11-22 01:36:52 -06:00
|
|
|
let mut f = Future::spawn(proc() ~"bale");
|
2013-05-18 21:02:45 -05:00
|
|
|
assert_eq!(f.get(), ~"bale");
|
2012-09-02 18:34:20 -05:00
|
|
|
}
|
2012-02-14 18:39:20 -06:00
|
|
|
|
2012-09-02 18:34:20 -05:00
|
|
|
#[test]
|
|
|
|
#[should_fail]
|
2013-04-15 10:08:52 -05:00
|
|
|
fn test_futurefail() {
|
2013-11-22 01:36:52 -06:00
|
|
|
let mut f = Future::spawn(proc() fail!());
|
2012-12-11 17:19:43 -06:00
|
|
|
let _x: ~str = f.get();
|
2012-09-02 18:34:20 -05:00
|
|
|
}
|
2012-08-28 08:43:58 -05:00
|
|
|
|
|
|
|
#[test]
|
2013-04-15 10:08:52 -05:00
|
|
|
fn test_sendable_future() {
|
2013-05-08 21:44:43 -05:00
|
|
|
let expected = "schlorf";
|
2014-01-26 22:13:24 -06:00
|
|
|
let f = Future::spawn(proc() { expected });
|
|
|
|
task::spawn(proc() {
|
2013-12-03 18:44:16 -06:00
|
|
|
let mut f = f;
|
2012-12-11 17:19:43 -06:00
|
|
|
let actual = f.get();
|
2013-05-18 21:02:45 -05:00
|
|
|
assert_eq!(actual, expected);
|
2014-01-26 22:13:24 -06:00
|
|
|
});
|
2012-08-28 08:43:58 -05:00
|
|
|
}
|
|
|
|
}
|