about summary refs log tree commit diff
diff options
context:
space:
mode:
authorBrian Anderson <banderson@mozilla.com>2012-10-22 16:22:47 -0700
committerBrian Anderson <banderson@mozilla.com>2012-10-23 14:21:15 -0700
commit50f9925fabbc738f7be0df8148c99fae3e975bb1 (patch)
tree651d19c0e1222894fef3d919a2d11f0230965326
parent759e1c165f474314bb113d0b72e8ef85fc3864d7 (diff)
downloadrust-50f9925fabbc738f7be0df8148c99fae3e975bb1.tar.gz
rust-50f9925fabbc738f7be0df8148c99fae3e975bb1.zip
core: Give future_pipe the same definition as pipes::oneshot
-rw-r--r--src/libcore/future.rs20
1 files changed, 13 insertions, 7 deletions
diff --git a/src/libcore/future.rs b/src/libcore/future.rs
index bc35dafde35..8d454060534 100644
--- a/src/libcore/future.rs
+++ b/src/libcore/future.rs
@@ -67,7 +67,7 @@ pub fn from_value<A>(val: A) -> Future<A> {
     Future {state: Forced(~(move val))}
 }
 
-pub fn from_port<A:Send>(port: future_pipe::client::waiting<A>) ->
+pub fn from_port<A:Send>(port: future_pipe::server::waiting<A>) ->
         Future<A> {
     /*!
      * Create a future from a port
@@ -107,9 +107,15 @@ pub fn spawn<A:Send>(blk: fn~() -> A) -> Future<A> {
      * value of the future.
      */
 
-    from_port(pipes::spawn_service_recv(future_pipe::init, |move blk, ch| {
-        future_pipe::server::completed(move ch, blk());
-    }))
+    let (chan, port) = future_pipe::init();
+
+    let chan = ~mut Some(move chan);
+    do task::spawn |move blk, move chan| {
+        let chan = option::swap_unwrap(&mut *chan);
+        future_pipe::client::completed(move chan, blk());
+    }
+
+    return from_port(move port);
 }
 
 pub fn get_ref<A>(future: &r/Future<A>) -> &r/A {
@@ -163,7 +169,7 @@ pub fn with<A,B>(future: &Future<A>, blk: fn((&A)) -> B) -> B {
 }
 
 proto! future_pipe (
-    waiting:recv<T:Send> {
+    waiting:send<T:Send> {
         completed(T) -> !
     }
 )
@@ -178,8 +184,8 @@ pub mod test {
 
     #[test]
     pub fn test_from_port() {
-        let (po, ch) = future_pipe::init();
-        future_pipe::server::completed(move ch, ~"whale");
+        let (ch, po) = future_pipe::init();
+        future_pipe::client::completed(move ch, ~"whale");
         let f = from_port(move po);
         assert get(&f) == ~"whale";
     }