From: Christopher Allan Webber Date: Mon, 30 Jan 2017 05:10:13 +0000 (-0600) Subject: actors: Avoid building up stack of error handlers when resuming coroutines. X-Git-Tag: v0.4.2~5 X-Git-Url: https://jxself.org/git/?p=8sync.git;a=commitdiff_plain;h=17e72389d61d35970bf0de07121b7aa26e11221a actors: Avoid building up stack of error handlers when resuming coroutines. However it's not clear that we're not still building up a stack of prompts. :\ * 8sync/actors.scm (hive-process-message): Avoid building up stack of error handlers when resuming coroutines. --- diff --git a/8sync/actors.scm b/8sync/actors.scm index fdeccf3..ceb2980 100644 --- a/8sync/actors.scm +++ b/8sync/actors.scm @@ -562,7 +562,9 @@ to come after class definition." message)) actor)) - (define (call-catching-coroutine thunk) + ;; TODO: I'm pretty sure we're building up another stack of prompts here + ;; with the way we're doing this. That's a real problem. + (define* (call-catching-coroutine thunk #:optional (catch-errors #t)) (define queued-error-handling-thunk #f) (define (call-catching-errors) ;; TODO: maybe parameterize (or attach to hive) and use @@ -591,7 +593,9 @@ to come after class definition." (if queued-error-handling-thunk (8sync (queued-error-handling-thunk)))) (call-with-prompt (hive-prompt hive) - call-catching-errors + (if catch-errors + call-catching-errors + thunk) (lambda (kont actor message send-options) ;; Register the coroutine (hash-set! (hive-waiting-coroutines hive) @@ -641,7 +645,9 @@ to come after class definition." result)) (#f (throw 'no-waiting-coroutine "message in-reply-to tries to resume nonexistent coroutine" - message)))))) + message)))) + ;; no need to catch errors here, there's already an error handler + #f)) ;; Unhandled action for a reply! (else (throw 'hive-unresumable-coroutine