Merge branch 'master' of git://factorcode.org/git/factor

db4
Slava Pestov 2008-02-09 02:19:41 -06:00
commit 3a22b3aaa0
1 changed files with 17 additions and 16 deletions

View File

@ -264,12 +264,7 @@ PRIVATE>
#! so the server continuation gets its new self updated. #! so the server continuation gets its new self updated.
self swap call ; self swap call ;
TUPLE: future value processes ; TUPLE: future status value processes ;
: notify-future ( value future -- )
tuck set-future-value
dup future-processes [ schedule-thread ] each
f swap set-future-processes ;
: future ( quot -- future ) : future ( quot -- future )
#! Spawn a process to call the quotation and immediately return #! Spawn a process to call the quotation and immediately return
@ -277,22 +272,28 @@ TUPLE: future value processes ;
#! ?future. If the quotation has completed the result will be returned. #! ?future. If the quotation has completed the result will be returned.
#! If not, the process will block until the quotation completes. #! If not, the process will block until the quotation completes.
#! 'quot' must have stack effect ( -- X ). #! 'quot' must have stack effect ( -- X ).
\ future construct-empty [
[ [
>r [ t 2array ] compose [ f 2array ] recover r> [
notify-future t
] 2curry spawn drop ] compose
] keep ; ] spawn drop
[ self send ] compose spawn ;
: ?future ( future -- result ) : ?future ( future -- result )
#! Block the process until the future has completed and then #! Block the process until the future has completed and then
#! place the result on the stack. Return the result #! place the result on the stack. Return the result
#! immediately if the future has completed. #! immediately if the future has completed.
dup future-value [ process-mailbox mailbox-get ;
first2 [ throw ] unless
] [ : parallel-map ( seq quot -- newseq )
dup [ future-processes push stop ] curry callcc0 ?future #! Spawn a process to apply quot to each element of seq,
] ?if ; #! joining the results into a sequence at the end.
[ curry future ] curry map [ ?future ] map ;
: parallel-each ( seq quot -- )
#! Spawn a process to apply quot to each element of seq,
#! and waits for all processes to complete.
[ f ] compose parallel-map drop ;
TUPLE: promise fulfilled? value processes ; TUPLE: promise fulfilled? value processes ;