|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
(define-module (ice-9 futures) |
|
#:use-module (srfi srfi-1) |
|
#:use-module (srfi srfi-9) |
|
#:use-module (srfi srfi-9 gnu) |
|
#:use-module (srfi srfi-11) |
|
#:use-module (ice-9 q) |
|
#:use-module (ice-9 match) |
|
#:use-module (ice-9 control) |
|
#:use-module (ice-9 threads) |
|
#:export (future make-future future? touch)) |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
(define-record-type <future> |
|
(%make-future thunk state mutex completion) |
|
future? |
|
(thunk future-thunk set-future-thunk!) |
|
(state future-state set-future-state!) |
|
(result future-result set-future-result!) |
|
(mutex future-mutex) |
|
(completion future-completion)) |
|
|
|
(set-record-type-printer! |
|
<future> |
|
(lambda (future port) |
|
(simple-format port "#<future ~a ~a ~s>" |
|
(number->string (object-address future) 16) |
|
(future-state future) |
|
(future-thunk future)))) |
|
|
|
(define (make-future thunk) |
|
"Return a new future for THUNK. Execution may start at any point |
|
concurrently, or it can start at the time when the returned future is |
|
touched." |
|
(create-workers!) |
|
(let ((future (%make-future thunk 'queued |
|
(make-mutex) (make-condition-variable)))) |
|
(register-future! future) |
|
future)) |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
(define %futures (make-q)) |
|
|
|
|
|
(define %futures-mutex (make-mutex)) |
|
(define %futures-available (make-condition-variable)) |
|
|
|
|
|
(define %futures-waiting '()) |
|
|
|
|
|
(define %within-future? (make-parameter #f)) |
|
|
|
(define-syntax-rule (with-mutex m e0 e1 ...) |
|
|
|
(let ((x m)) |
|
(dynamic-wind |
|
(lambda () (lock-mutex x)) |
|
(lambda () (begin e0 e1 ...)) |
|
(lambda () (unlock-mutex x))))) |
|
|
|
(define %future-prompt |
|
|
|
|
|
(make-prompt-tag)) |
|
|
|
|
|
(define (register-future! future) |
|
|
|
(lock-mutex %futures-mutex) |
|
(enq! %futures future) |
|
(signal-condition-variable %futures-available) |
|
(unlock-mutex %futures-mutex)) |
|
|
|
(define (process-future! future) |
|
"Process FUTURE. When FUTURE completes, return #t and update its |
|
result; otherwise, when FUTURE touches a nested future that has not |
|
completed yet, then suspend it and return #f. Suspending a future |
|
consists in capturing its continuation, marking it as `queued', and |
|
adding it to the waiter queue." |
|
(let/ec return |
|
(let* ((suspend |
|
(lambda (cont future-to-wait) |
|
|
|
|
|
|
|
(with-mutex %futures-mutex |
|
(with-mutex (future-mutex future) |
|
(set-future-thunk! future cont) |
|
(set-future-state! future 'queued)) |
|
|
|
(with-mutex (future-mutex future-to-wait) |
|
|
|
|
|
|
|
(if (eq? 'done (future-state future-to-wait)) |
|
(begin |
|
(enq! %futures future) |
|
(signal-condition-variable %futures-available)) |
|
(set! %futures-waiting |
|
(alist-cons future-to-wait future |
|
%futures-waiting)))) |
|
|
|
(return #f)))) |
|
(thunk (lambda () |
|
(call-with-prompt %future-prompt |
|
(lambda () |
|
(parameterize ((%within-future? #t)) |
|
((future-thunk future)))) |
|
suspend)))) |
|
(set-future-result! future |
|
(catch #t |
|
(lambda () |
|
(call-with-values thunk |
|
(lambda results |
|
(lambda () |
|
(apply values results))))) |
|
(lambda args |
|
(lambda () |
|
(apply throw args))))) |
|
#t))) |
|
|
|
(define (process-one-future) |
|
"Attempt to pick one future from the queue and process it." |
|
|
|
(or (q-empty? %futures) |
|
(let ((future (deq! %futures))) |
|
(lock-mutex (future-mutex future)) |
|
(case (future-state future) |
|
((done started) |
|
|
|
(unlock-mutex (future-mutex future))) |
|
(else |
|
|
|
|
|
|
|
|
|
|
|
(unlock-mutex (future-mutex future)) |
|
(unlock-mutex %futures-mutex) |
|
|
|
(lock-mutex (future-mutex future)) |
|
(if (eq? (future-state future) 'queued) |
|
(begin |
|
(set-future-state! future 'started) |
|
(unlock-mutex (future-mutex future)) |
|
|
|
(let ((done? (process-future! future))) |
|
(when done? |
|
(with-mutex %futures-mutex |
|
(with-mutex (future-mutex future) |
|
(set-future-state! future 'done) |
|
(notify-completion future)))))) |
|
(unlock-mutex (future-mutex future))) |
|
|
|
(lock-mutex %futures-mutex)))))) |
|
|
|
(define (process-futures) |
|
"Continuously process futures from the queue." |
|
(lock-mutex %futures-mutex) |
|
(let loop () |
|
(when (q-empty? %futures) |
|
(wait-condition-variable %futures-available |
|
%futures-mutex)) |
|
|
|
(process-one-future) |
|
(loop))) |
|
|
|
(define (notify-completion future) |
|
"Notify futures and callers waiting that FUTURE completed." |
|
|
|
(broadcast-condition-variable (future-completion future)) |
|
(let-values (((waiting remaining) |
|
(partition (match-lambda |
|
((waitee . _) |
|
(eq? waitee future))) |
|
%futures-waiting))) |
|
(set! %futures-waiting remaining) |
|
(for-each (match-lambda |
|
((_ . waiter) |
|
(enq! %futures waiter))) |
|
waiting))) |
|
|
|
(define (touch future) |
|
"Return the result of FUTURE, computing it if not already done." |
|
(define (work) |
|
|
|
(lock-mutex %futures-mutex) |
|
(if (q-empty? %futures) |
|
(begin |
|
(unlock-mutex %futures-mutex) |
|
(with-mutex (future-mutex future) |
|
(unless (eq? 'done (future-state future)) |
|
(wait-condition-variable (future-completion future) |
|
(future-mutex future))))) |
|
(begin |
|
(process-one-future) |
|
(unlock-mutex %futures-mutex)))) |
|
|
|
(let loop () |
|
(lock-mutex (future-mutex future)) |
|
(case (future-state future) |
|
((done) |
|
(unlock-mutex (future-mutex future))) |
|
((started) |
|
(unlock-mutex (future-mutex future)) |
|
(if (%within-future?) |
|
(abort-to-prompt %future-prompt future) |
|
(begin |
|
(work) |
|
(loop)))) |
|
(else |
|
(unlock-mutex (future-mutex future)) |
|
(work) |
|
(loop)))) |
|
((future-result future))) |
|
|
|
|
|
|
|
|
|
|
|
|
|
(define %worker-count |
|
(if (provided? 'threads) |
|
(- (current-processor-count) 1) |
|
0)) |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
(define %workers '()) |
|
|
|
(define (%create-workers!) |
|
(with-mutex |
|
%futures-mutex |
|
|
|
|
|
|
|
|
|
|
|
(when (null? %workers) |
|
(set! %workers |
|
(unfold (lambda (i) (>= i %worker-count)) |
|
(lambda (i) (call-with-new-thread process-futures)) |
|
1+ |
|
0)) |
|
(set! create-workers! (lambda () #t))))) |
|
|
|
(define create-workers! |
|
(lambda () (%create-workers!))) |
|
|
|
|
|
|
|
|
|
|
|
|
|
(define-syntax-rule (future body) |
|
"Return a new future for BODY." |
|
(make-future (lambda () body))) |
|
|
|
|
|
|
|
|
|
|