| 
									
										
										
										
											2010-02-20 03:24:37 -05:00
										 |  |  | ! Copyright (C) 2005, 2010 Chris Double, Slava Pestov. | 
					
						
							|  |  |  | ! See http://factorcode.org/license.txt for BSD license. | 
					
						
							|  |  |  | USING: dlists deques threads sequences continuations namespaces | 
					
						
							|  |  |  | math quotations words kernel arrays assocs init system | 
					
						
							| 
									
										
										
										
											2010-10-31 23:47:34 -04:00
										 |  |  | concurrency.conditions accessors locals fry vocabs.loader ;
 | 
					
						
							| 
									
										
										
										
											2010-02-20 03:24:37 -05:00
										 |  |  | IN: concurrency.mailboxes | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-04-01 20:05:32 -04:00
										 |  |  | TUPLE: mailbox { threads dlist } { data dlist } ;
 | 
					
						
							| 
									
										
										
										
											2010-02-20 03:24:37 -05:00
										 |  |  | 
 | 
					
						
							|  |  |  | : <mailbox> ( -- mailbox )
 | 
					
						
							|  |  |  |     mailbox new
 | 
					
						
							|  |  |  |         <dlist> >>threads | 
					
						
							| 
									
										
										
										
											2010-04-01 20:05:32 -04:00
										 |  |  |         <dlist> >>data ; inline
 | 
					
						
							| 
									
										
										
										
											2010-02-20 03:24:37 -05:00
										 |  |  | 
 | 
					
						
							|  |  |  | : mailbox-empty? ( mailbox -- bool )
 | 
					
						
							| 
									
										
										
										
											2010-04-01 20:05:32 -04:00
										 |  |  |     data>> deque-empty? ; inline
 | 
					
						
							| 
									
										
										
										
											2010-02-20 03:24:37 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-04-01 20:05:32 -04:00
										 |  |  | GENERIC: mailbox-put ( obj mailbox -- )
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | M: mailbox mailbox-put | 
					
						
							| 
									
										
										
										
											2010-02-20 03:24:37 -05:00
										 |  |  |     [ data>> push-front ] | 
					
						
							|  |  |  |     [ threads>> notify-all ] bi yield ;
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | : wait-for-mailbox ( mailbox timeout -- )
 | 
					
						
							| 
									
										
										
										
											2010-04-01 20:05:32 -04:00
										 |  |  |     [ threads>> ] dip "mailbox" wait ; inline
 | 
					
						
							| 
									
										
										
										
											2010-02-20 03:24:37 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-03-09 02:38:10 -05:00
										 |  |  | :: block-unless-pred ( ... mailbox timeout pred: ( ... message -- ... ? ) -- ... )
 | 
					
						
							| 
									
										
										
										
											2010-02-20 03:24:37 -05:00
										 |  |  |     mailbox data>> pred dlist-any? [ | 
					
						
							|  |  |  |         mailbox timeout wait-for-mailbox | 
					
						
							|  |  |  |         mailbox timeout pred block-unless-pred | 
					
						
							|  |  |  |     ] unless ; inline recursive
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | : block-if-empty ( mailbox timeout -- mailbox )
 | 
					
						
							|  |  |  |     over mailbox-empty? [ | 
					
						
							|  |  |  |         2dup wait-for-mailbox block-if-empty | 
					
						
							|  |  |  |     ] [ | 
					
						
							|  |  |  |         drop
 | 
					
						
							| 
									
										
										
										
											2010-04-01 20:05:32 -04:00
										 |  |  |     ] if ; inline recursive
 | 
					
						
							| 
									
										
										
										
											2010-02-20 03:24:37 -05:00
										 |  |  | 
 | 
					
						
							|  |  |  | : mailbox-peek ( mailbox -- obj )
 | 
					
						
							|  |  |  |     data>> peek-back ;
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-04-01 20:05:32 -04:00
										 |  |  | GENERIC# mailbox-get-timeout 1 ( mailbox timeout -- obj )
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | M: mailbox mailbox-get-timeout block-if-empty data>> pop-back ;
 | 
					
						
							| 
									
										
										
										
											2010-02-20 03:24:37 -05:00
										 |  |  | 
 | 
					
						
							|  |  |  | : mailbox-get ( mailbox -- obj )
 | 
					
						
							| 
									
										
										
										
											2010-04-01 20:05:32 -04:00
										 |  |  |     f mailbox-get-timeout ; inline
 | 
					
						
							| 
									
										
										
										
											2010-02-20 03:24:37 -05:00
										 |  |  | 
 | 
					
						
							|  |  |  | : mailbox-get-all-timeout ( mailbox timeout -- array )
 | 
					
						
							|  |  |  |     block-if-empty | 
					
						
							|  |  |  |     [ dup mailbox-empty? not ] | 
					
						
							|  |  |  |     [ dup data>> pop-back ] | 
					
						
							|  |  |  |     produce nip ;
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | : mailbox-get-all ( mailbox -- array )
 | 
					
						
							|  |  |  |     f mailbox-get-all-timeout ;
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | : while-mailbox-empty ( mailbox quot -- )
 | 
					
						
							|  |  |  |     [ '[ _ mailbox-empty? ] ] dip while ; inline
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | : mailbox-get-timeout? ( mailbox timeout pred -- obj )
 | 
					
						
							|  |  |  |     [ block-unless-pred ] | 
					
						
							|  |  |  |     [ [ drop data>> ] dip delete-node-if ] | 
					
						
							|  |  |  |     3bi ; inline
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | : mailbox-get? ( mailbox pred -- obj )
 | 
					
						
							|  |  |  |     f swap mailbox-get-timeout? ; inline
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | : wait-for-close-timeout ( mailbox timeout -- )
 | 
					
						
							|  |  |  |     over disposed>> | 
					
						
							|  |  |  |     [ 2drop ] [ 2dup wait-for-mailbox wait-for-close-timeout ] if ;
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | : wait-for-close ( mailbox -- )
 | 
					
						
							|  |  |  |     f wait-for-close-timeout ;
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | TUPLE: linked-error error thread ;
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | C: <linked-error> linked-error | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | : ?linked ( message -- message )
 | 
					
						
							|  |  |  |     dup linked-error? [ rethrow ] when ;
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | TUPLE: linked-thread < thread supervisor ;
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | M: linked-thread error-in-thread | 
					
						
							| 
									
										
										
										
											2011-10-03 02:33:28 -04:00
										 |  |  |     [ <linked-error> ] [ supervisor>> ] bi mailbox-put stop ;
 | 
					
						
							| 
									
										
										
										
											2010-02-20 03:24:37 -05:00
										 |  |  | 
 | 
					
						
							|  |  |  | : <linked-thread> ( quot name mailbox -- thread' )
 | 
					
						
							|  |  |  |     [ linked-thread new-thread ] dip >>supervisor ;
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | : spawn-linked-to ( quot name mailbox -- thread )
 | 
					
						
							|  |  |  |     <linked-thread> [ (spawn) ] keep ;
 | 
					
						
							| 
									
										
										
										
											2010-10-31 23:47:34 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  | { "concurrency.mailboxes" "debugger" } "concurrency.mailboxes.debugger" require-when |