From: Christopher Allan Webber Date: Tue, 17 Nov 2015 23:31:17 +0000 (-0600) Subject: Provide a way to break away through an agenda's prompt tag X-Git-Tag: v0.1.0~174 X-Git-Url: https://jxself.org/git/?p=8sync.git;a=commitdiff_plain;h=d73acd37f6940e5f9adcf449f814279fb5c7de68 Provide a way to break away through an agenda's prompt tag --- diff --git a/loopy.scm b/loopy.scm index 09034f4..e03cab6 100644 --- a/loopy.scm +++ b/loopy.scm @@ -7,12 +7,18 @@ ;; replace this (define-immutable-record-type - (make-agenda-intern queue) + (make-agenda-intern queue prompt-tag) agenda? - (queue agenda-queue)) + (queue agenda-queue) + (prompt-tag agenda-prompt-tag)) -(define* (make-agenda #:key (queue (make-q))) - (make-agenda-intern queue)) +(define (make-async-prompt-tag) + (make-prompt-tag "prompt")) + +(define* (make-agenda #:key + (queue (make-q)) + (prompt (make-prompt-tag))) + (make-agenda-intern queue prompt)) (define %current-agenda (make-parameter #f)) @@ -28,11 +34,19 @@ (define (agenda-run-once agenda) "Run once through the agenda, and produce a new agenda based on the results" + (define (call-proc proc) + (call-with-prompt + (agenda-prompt-tag agenda) + (lambda () + (proc)) + ;; TODO + (lambda (k) k))) + (let ((queue (agenda-queue agenda)) (next-queue (make-q))) (while (not (q-empty? queue)) (let* ((proc (q-pop! queue)) - (proc-result (proc)) + (proc-result (call-proc proc)) (enqueue (lambda (new-proc) (enq! next-queue new-proc))))