X-Git-Url: https://jxself.org/git/?p=8sync.git;a=blobdiff_plain;f=8sync%2Factors.scm;h=1dab9d7918ea62b481722123aeee03513ec12965;hp=333d779b6d6dea92e66d3f6db53ef1e382204920;hb=17830fd9912894b6a30a5c4a4a83722a74c01ccd;hpb=c769bb3b2c949c304eb4395d3f24eebea6106c1a diff --git a/8sync/actors.scm b/8sync/actors.scm index 333d779..1dab9d7 100644 --- a/8sync/actors.scm +++ b/8sync/actors.scm @@ -283,6 +283,14 @@ raise an exception if an error." (call/ec find-message-handler)) (apply method actor message (message-body message))) +(define-syntax-rule (build-actions (symbol method) ...) + "Construct an alist of (symbol . method), where the method is wrapped +with wrap-apply to facilitate live hacking and allow the method definition +to come after class definition." + (list + (cons (quote symbol) + (wrap-apply method)) ...)) + (define-class () ;; An address object (id #:init-keyword #:id @@ -300,7 +308,9 @@ raise an exception if an error." #:getter actor-message-handler) ;; This is the default, "simple" way to inherit and process messages. - (actions #:init-value '() + (actions #:init-value (build-actions + ;; Default clean-up method is to do nothing. + (*clean-up* (const #f))) #:allocation #:each-subclass)) ;;; So these are the nicer representations of addresses. @@ -356,14 +366,6 @@ raise an exception if an error." ;;; Actor utilities ;;; =============== -(define-syntax-rule (build-actions (symbol method) ...) - "Construct an alist of (symbol . method), where the method is wrapped -with wrap-apply to facilitate live hacking and allow the method definition -to come after class definition." - (list - (cons (quote symbol) - (wrap-apply method)) ...)) - (define-syntax-rule (define-simple-actor class action ...) (define-class class () (actions #:init-value (build-actions action ...) @@ -403,12 +405,25 @@ to come after class definition." (build-actions ;; This is in the case of an ambassador failing to forward a ;; message... it reports it back to the hive - (*failed-forward* hive-handle-failed-forward)))) + (*failed-forward* hive-handle-failed-forward) + (*clean-up-all* hive-handle-clean-up-all)))) (define-method (hive-handle-failed-forward (hive ) message) "Handle an ambassador failing to forward a message" 'TODO) +(define-method (hive-handle-clean-up-all (hive ) message) + "Send a message to all actors in our registry to clean themselves up." + ;; Unfortunately we have to do this hack and run over the list + ;; twice, because hash-for-each would result in an unrewindable + ;; continuation. + (define actor-ids + (hash-map->list (lambda (actor-id actor) actor-id) + (hive-actor-registry hive))) + (for-each (lambda (actor-id) + (<- hive actor-id '*clean-up*)) + actor-ids)) + (define* (make-hive #:key hive-id) (let ((hive (make #:id (make-address @@ -416,6 +431,8 @@ to come after class definition." (big-random-number-string)))))) ;; Set the hive's actor reference to itself (set! (actor-hive hive) hive) + ;; Register the actor with itself + (hive-register-actor! hive hive) hive)) (define-method (hive-id (hive )) @@ -688,8 +705,13 @@ Like create-actor, but permits supplying an id-cookie." init id-cookie)) -(define (self-destruct actor) - "Remove an actor from the hive." +(define* (self-destruct actor #:key (clean-up #t)) + "Remove an actor from the hive. + +Unless #:clean-up is set to #f, this will first have the actor handle +its '*clean-up* action handler." + (when clean-up + (<-wait actor (actor-id actor) '*clean-up*)) (hash-remove! (hive-actor-registry (actor-hive actor)) (actor-id actor))) @@ -698,12 +720,26 @@ Like create-actor, but permits supplying an id-cookie." ;;; 8sync bootstrap utilities ;;; ========================= -(define* (run-hive hive initial-tasks) +(define* (run-hive hive initial-tasks + #:key (clean-up #t)) "Start up an agenda and run HIVE in it with INITIAL-TASKS." - (let* ((queue (list->q initial-tasks)) - (agenda (make-agenda #:pre-unwind-handler print-error-and-continue - #:queue queue))) - (start-agenda agenda))) + (dynamic-wind + (const #f) + (lambda () + (let* ((queue (list->q initial-tasks)) + (agenda (make-agenda #:pre-unwind-handler print-error-and-continue + #:queue queue))) + (start-agenda agenda))) + ;; Run clean-up + (lambda () + (when clean-up + (run-hive-clean-up hive))))) + +(define (run-hive-clean-up hive) + (let ((queue (list->q (list (bootstrap-message hive (actor-id hive) + '*clean-up-all*))))) + (start-agenda + (make-agenda #:queue queue)))) (define (bootstrap-message hive to-id action . message-body-args) (wrap