261 lines
		
	
	
		
			6.0 KiB
		
	
	
	
		
			Factor
		
	
	
			
		
		
	
	
			261 lines
		
	
	
		
			6.0 KiB
		
	
	
	
		
			Factor
		
	
	
| ! Copyright (C) 2004, 2011 Slava Pestov.
 | |
| ! Copyright (C) 2005 Mackenzie Straight.
 | |
| ! See http://factorcode.org/license.txt for BSD license.
 | |
| USING: alien.private arrays hashtables heaps kernel kernel.private
 | |
| math namespaces sequences vectors continuations continuations.private
 | |
| dlists assocs system combinators init boxes accessors math.order
 | |
| deques strings quotations fry ;
 | |
| FROM: assocs => change-at ;
 | |
| IN: threads
 | |
| 
 | |
| <PRIVATE
 | |
| 
 | |
| ! Wrap sub-primitives; we don't want them inlined into callers
 | |
| ! since their behavior depends on what frames are on the callstack
 | |
| : context ( -- context )
 | |
|     CONTEXT-OBJ-CONTEXT context-object ; inline
 | |
| 
 | |
| : set-context ( obj context -- obj' )
 | |
|     (set-context) ; inline
 | |
| 
 | |
| : start-context ( obj quot: ( obj -- * ) -- obj' )
 | |
|     (start-context) ; inline
 | |
| 
 | |
| : set-context-and-delete ( obj context -- * )
 | |
|     (set-context-and-delete) ; inline
 | |
| 
 | |
| : start-context-and-delete ( obj quot: ( obj -- * ) -- * )
 | |
|     (start-context-and-delete) ; inline
 | |
| 
 | |
| ! Context introspection
 | |
| : namestack-for ( context -- namestack )
 | |
|     [ CONTEXT-OBJ-NAMESTACK ] dip context-object-for ;
 | |
| 
 | |
| : catchstack-for ( context -- catchstack )
 | |
|     [ CONTEXT-OBJ-CATCHSTACK ] dip context-object-for ;
 | |
| 
 | |
| : continuation-for ( context -- continuation )
 | |
|     {
 | |
|         [ datastack-for ]
 | |
|         [ callstack-for ]
 | |
|         [ retainstack-for ]
 | |
|         [ namestack-for ]
 | |
|         [ catchstack-for ]
 | |
|     } cleave <continuation> ;
 | |
| 
 | |
| PRIVATE>
 | |
| 
 | |
| SYMBOL: initial-thread
 | |
| 
 | |
| TUPLE: thread
 | |
| { name string }
 | |
| { quot callable initial: [ ] }
 | |
| { exit-handler callable initial: [ ] }
 | |
| { id integer }
 | |
| { context box }
 | |
| state
 | |
| runnable
 | |
| mailbox
 | |
| { variables hashtable }
 | |
| sleep-entry ;
 | |
| 
 | |
| : self ( -- thread )
 | |
|     OBJ-CURRENT-THREAD special-object { thread } declare ; inline
 | |
| 
 | |
| : thread-continuation ( thread -- continuation )
 | |
|     context>> check-box value>> continuation-for ;
 | |
| 
 | |
| ! Thread-local storage
 | |
| : tnamespace ( -- assoc )
 | |
|     self variables>> ; inline
 | |
| 
 | |
| : tget ( key -- value )
 | |
|     tnamespace at ;
 | |
| 
 | |
| : tset ( value key -- )
 | |
|     tnamespace set-at ;
 | |
| 
 | |
| : tchange ( ..a key quot: ( ..a value -- ..b newvalue ) -- ..b )
 | |
|     [ tnamespace ] dip change-at ; inline
 | |
| 
 | |
| : threads ( -- assoc )
 | |
|     OBJ-THREADS special-object { hashtable } declare ; inline
 | |
| 
 | |
| : thread-registered? ( thread -- ? )
 | |
|     id>> threads key? ;
 | |
| 
 | |
| <PRIVATE
 | |
| 
 | |
| : register-thread ( thread -- )
 | |
|     dup id>> threads set-at ;
 | |
| 
 | |
| : unregister-thread ( thread -- )
 | |
|     id>> threads delete-at ;
 | |
| 
 | |
| : set-self ( thread -- ) OBJ-CURRENT-THREAD set-special-object ; inline
 | |
| 
 | |
| PRIVATE>
 | |
| 
 | |
| : run-queue ( -- dlist )
 | |
|     OBJ-RUN-QUEUE special-object { dlist } declare ; inline
 | |
| 
 | |
| : sleep-queue ( -- heap )
 | |
|     OBJ-SLEEP-QUEUE special-object { min-heap } declare ; inline
 | |
| 
 | |
| : waiting-callbacks ( -- assoc )
 | |
|     OBJ-WAITING-CALLBACKS special-object { hashtable } declare ; inline
 | |
| 
 | |
| : new-thread ( quot name class -- thread )
 | |
|     new
 | |
|         swap >>name
 | |
|         swap >>quot
 | |
|         \ thread counter >>id
 | |
|         H{ } clone >>variables
 | |
|         <box> >>context ; inline
 | |
| 
 | |
| : <thread> ( quot name -- thread )
 | |
|     \ thread new-thread ;
 | |
| 
 | |
| : resume ( thread -- )
 | |
|     f >>state run-queue push-front ;
 | |
| 
 | |
| : resume-now ( thread -- )
 | |
|     f >>state run-queue push-back ;
 | |
| 
 | |
| : resume-with ( obj thread -- )
 | |
|     f >>state 2array run-queue push-front ;
 | |
| 
 | |
| : sleep-time ( -- nanos/f )
 | |
|     {
 | |
|         { [ current-callback waiting-callbacks key? ] [ 0 ] }
 | |
|         { [ run-queue deque-empty? not ] [ 0 ] }
 | |
|         { [ sleep-queue heap-empty? ] [ f ] }
 | |
|         [ sleep-queue heap-peek nip nano-count [-] ]
 | |
|     } cond ;
 | |
| 
 | |
| : interrupt ( thread -- )
 | |
|     dup state>> [
 | |
|         dup sleep-entry>> [ sleep-queue heap-delete ] when*
 | |
|         f >>sleep-entry
 | |
|         dup resume
 | |
|     ] when drop ;
 | |
| 
 | |
| DEFER: stop
 | |
| 
 | |
| <PRIVATE
 | |
| 
 | |
| : schedule-sleep ( thread dt -- )
 | |
|     dupd sleep-queue heap-push* >>sleep-entry drop ;
 | |
| 
 | |
| : expire-sleep? ( -- ? )
 | |
|     sleep-queue dup heap-empty?
 | |
|     [ drop f ] [ heap-peek nip nano-count <= ] if ;
 | |
| 
 | |
| : expire-sleep ( thread -- )
 | |
|     f >>sleep-entry resume ;
 | |
| 
 | |
| : expire-sleep-loop ( -- )
 | |
|     [ expire-sleep? ]
 | |
|     [ sleep-queue heap-pop drop expire-sleep ]
 | |
|     while ;
 | |
| 
 | |
| CONSTANT: [start]
 | |
|     [
 | |
|         set-namestack
 | |
|         init-catchstack
 | |
|         self quot>> call
 | |
|         stop
 | |
|     ]
 | |
| 
 | |
| GENERIC: (next) ( obj thread -- obj' )
 | |
| 
 | |
| M: thread (next)
 | |
|     dup runnable>>
 | |
|     [ context>> box> set-context ]
 | |
|     [ t >>runnable drop [start] start-context ] if ;
 | |
| 
 | |
| : (stop) ( obj thread -- * )
 | |
|     dup runnable>>
 | |
|     [ context>> box> set-context-and-delete ]
 | |
|     [ t >>runnable drop [start] start-context-and-delete ] if ;
 | |
| 
 | |
| : wake-up-callbacks ( -- )
 | |
|     current-callback waiting-callbacks delete-at*
 | |
|     [ resume-now ] [ drop ] if ;
 | |
| 
 | |
| : next ( -- obj thread )
 | |
|     expire-sleep-loop
 | |
|     wake-up-callbacks
 | |
|     run-queue pop-back
 | |
|     dup array? [ first2 ] [ [ f ] dip ] if
 | |
|     f >>state
 | |
|     dup set-self ;
 | |
| 
 | |
| PRIVATE>
 | |
| 
 | |
| : stop ( -- * )
 | |
|     self [ exit-handler>> call( -- ) ] [ unregister-thread ] bi
 | |
|     next (stop) ;
 | |
| 
 | |
| : suspend ( state -- obj )
 | |
|     [ self ] dip >>state
 | |
|     [ context ] dip context>> >box
 | |
|     next (next) ;
 | |
| 
 | |
| : yield ( -- ) self resume f suspend drop ;
 | |
| 
 | |
| GENERIC: sleep-until ( n/f -- )
 | |
| 
 | |
| M: integer sleep-until
 | |
|     [ self ] dip schedule-sleep "sleep" suspend drop ;
 | |
| 
 | |
| M: f sleep-until
 | |
|     drop "standby" suspend drop ;
 | |
| 
 | |
| GENERIC: sleep ( dt -- )
 | |
| 
 | |
| M: real sleep
 | |
|     >integer nano-count + sleep-until ;
 | |
| 
 | |
| : (spawn) ( thread -- )
 | |
|     [ register-thread ] [ [ namestack ] dip resume-with ] bi ;
 | |
| 
 | |
| : spawn ( quot name -- thread )
 | |
|     <thread> [ (spawn) ] keep ;
 | |
| 
 | |
| : spawn-server ( quot name -- thread )
 | |
|     [ '[ _ loop ] ] dip spawn ;
 | |
| 
 | |
| : in-thread ( quot -- )
 | |
|     [ datastack ] dip
 | |
|     '[ _ set-datastack @ ]
 | |
|     "Thread" spawn drop ;
 | |
| 
 | |
| <PRIVATE
 | |
| 
 | |
| : init-thread-state ( -- )
 | |
|     H{ } clone OBJ-THREADS set-special-object
 | |
|     <dlist> OBJ-RUN-QUEUE set-special-object
 | |
|     <min-heap> OBJ-SLEEP-QUEUE set-special-object
 | |
|     H{ } clone OBJ-WAITING-CALLBACKS set-special-object ;
 | |
| 
 | |
| : init-initial-thread ( -- )
 | |
|     [ ] "Initial" <thread>
 | |
|     t >>runnable
 | |
|     [ initial-thread set-global ]
 | |
|     [ register-thread ]
 | |
|     [ set-self ]
 | |
|     tri ;
 | |
| 
 | |
| : init-threads ( -- )
 | |
|     init-thread-state
 | |
|     init-initial-thread ;
 | |
| 
 | |
| : wait-for-callback ( callback -- )
 | |
|     self swap waiting-callbacks set-at
 | |
|     "Callback return" suspend drop ;
 | |
| 
 | |
| PRIVATE>
 | |
| 
 | |
| [ init-threads ] "threads" add-startup-hook
 |