Merge pull request #270 from jolt-lang/fix/graceful-main-pump-shutdown
Make main-pump shutdown graceful and stop-main-pump race-free
This commit is contained in:
commit
baf78c63bd
1 changed files with 72 additions and 44 deletions
|
|
@ -413,6 +413,13 @@
|
||||||
;; pump can't deadlock on itself.
|
;; pump can't deadlock on itself.
|
||||||
;; - Otherwise the thunk is enqueued; the caller blocks until the pump runs it,
|
;; - Otherwise the thunk is enqueued; the caller blocks until the pump runs it,
|
||||||
;; then receives the value, or the thrown condition is re-raised.
|
;; then receives the value, or the thrown condition is re-raised.
|
||||||
|
;;
|
||||||
|
;; stop-main-pump is the graceful-shutdown / external API: it tells the pump to
|
||||||
|
;; drain whatever is queued and return. The pump-active flag is flipped to #f
|
||||||
|
;; under jolt-main-queue-mu in the same critical section that decides to exit, and
|
||||||
|
;; call-on-main-thread reads that flag and enqueues under the SAME mutex, so a job
|
||||||
|
;; can never slip in after the pump has decided to leave — a call that loses the
|
||||||
|
;; race simply runs inline instead of blocking forever on a pump that is gone.
|
||||||
|
|
||||||
(define jolt-main-queue-mu (make-mutex))
|
(define jolt-main-queue-mu (make-mutex))
|
||||||
(define jolt-main-queue-cv (make-condition))
|
(define jolt-main-queue-cv (make-condition))
|
||||||
|
|
@ -427,16 +434,22 @@
|
||||||
(nongenerative jolt-main-job-v1))
|
(nongenerative jolt-main-job-v1))
|
||||||
|
|
||||||
(define (jolt-call-on-main-thread thunk)
|
(define (jolt-call-on-main-thread thunk)
|
||||||
(cond
|
(if (jolt-in-main-pump?) ; reentrant — already on the pump
|
||||||
((jolt-in-main-pump?) ; reentrant — already on the pump
|
(jolt-invoke thunk)
|
||||||
(jolt-invoke thunk))
|
;; Decide-and-enqueue atomically: read pump-active and (if active) push the
|
||||||
((not (unbox jolt-main-pump-active)) ; no pump — inline, like -M:run
|
;; job under jolt-main-queue-mu, the same lock the pump holds when it flips
|
||||||
(jolt-invoke thunk))
|
;; active to #f on exit. So we either get queued before the pump leaves, or
|
||||||
(else
|
;; we see #f and fall through to inline — never enqueue onto a dead pump.
|
||||||
(let ((job (make-jolt-main-job thunk #f #f jolt-nil (make-mutex) (make-condition))))
|
(let ((job (with-mutex jolt-main-queue-mu
|
||||||
(with-mutex jolt-main-queue-mu
|
(and (unbox jolt-main-pump-active)
|
||||||
(set! jolt-main-queue (append jolt-main-queue (list job)))
|
(let ((j (make-jolt-main-job thunk #f #f jolt-nil
|
||||||
(condition-signal jolt-main-queue-cv))
|
(make-mutex) (make-condition))))
|
||||||
|
(set! jolt-main-queue (append jolt-main-queue (list j)))
|
||||||
|
(condition-signal jolt-main-queue-cv)
|
||||||
|
j)))))
|
||||||
|
(if (not job)
|
||||||
|
(jolt-invoke thunk) ; no pump (or stopped) — inline, like -M:run
|
||||||
|
(begin
|
||||||
(with-mutex (jolt-main-job-mu job)
|
(with-mutex (jolt-main-job-mu job)
|
||||||
(let wait ()
|
(let wait ()
|
||||||
(unless (jolt-main-job-done? job)
|
(unless (jolt-main-job-done? job)
|
||||||
|
|
@ -444,11 +457,19 @@
|
||||||
(wait))))
|
(wait))))
|
||||||
(if (jolt-main-job-ok? job)
|
(if (jolt-main-job-ok? job)
|
||||||
(jolt-main-job-val job)
|
(jolt-main-job-val job)
|
||||||
(raise (jolt-main-job-val job)))))))
|
(raise (jolt-main-job-val job))))))))
|
||||||
|
|
||||||
(define (jolt-run-main-pump)
|
(define (jolt-run-main-pump)
|
||||||
|
(with-mutex jolt-main-queue-mu
|
||||||
(set-box! jolt-main-pump-stop #f)
|
(set-box! jolt-main-pump-stop #f)
|
||||||
(set-box! jolt-main-pump-active #t)
|
(set-box! jolt-main-pump-active #t))
|
||||||
|
;; dynamic-wind guarantees active is cleared even if the pump escapes abnormally,
|
||||||
|
;; so a later run-main-pump starts clean and call-on-main-thread never sees a
|
||||||
|
;; stale #t. The clean-exit path below also clears it under the mutex (the flip
|
||||||
|
;; that races call-on-main-thread); this is the belt-and-suspenders for escapes.
|
||||||
|
(dynamic-wind
|
||||||
|
(lambda () #f)
|
||||||
|
(lambda ()
|
||||||
(let loop ()
|
(let loop ()
|
||||||
(let ((job (with-mutex jolt-main-queue-mu
|
(let ((job (with-mutex jolt-main-queue-mu
|
||||||
(let wait ()
|
(let wait ()
|
||||||
|
|
@ -457,7 +478,11 @@
|
||||||
(let ((j (car jolt-main-queue)))
|
(let ((j (car jolt-main-queue)))
|
||||||
(set! jolt-main-queue (cdr jolt-main-queue))
|
(set! jolt-main-queue (cdr jolt-main-queue))
|
||||||
j))
|
j))
|
||||||
((unbox jolt-main-pump-stop) #f) ; drain done, told to exit
|
((unbox jolt-main-pump-stop)
|
||||||
|
;; drain done, told to exit — clear active in the same
|
||||||
|
;; critical section so no job can be enqueued after.
|
||||||
|
(set-box! jolt-main-pump-active #f)
|
||||||
|
#f)
|
||||||
(else (condition-wait jolt-main-queue-cv jolt-main-queue-mu)
|
(else (condition-wait jolt-main-queue-cv jolt-main-queue-mu)
|
||||||
(wait)))))))
|
(wait)))))))
|
||||||
(when job
|
(when job
|
||||||
|
|
@ -473,6 +498,9 @@
|
||||||
(jolt-main-job-done?-set! job #t)
|
(jolt-main-job-done?-set! job #t)
|
||||||
(condition-broadcast (jolt-main-job-cv job))))
|
(condition-broadcast (jolt-main-job-cv job))))
|
||||||
(loop)))))
|
(loop)))))
|
||||||
|
(lambda ()
|
||||||
|
(with-mutex jolt-main-queue-mu (set-box! jolt-main-pump-active #f))))
|
||||||
|
jolt-nil)
|
||||||
|
|
||||||
(define (jolt-stop-main-pump)
|
(define (jolt-stop-main-pump)
|
||||||
(with-mutex jolt-main-queue-mu
|
(with-mutex jolt-main-queue-mu
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue