From d73acd37f6940e5f9adcf449f814279fb5c7de68 Mon Sep 17 00:00:00 2001 From: Christopher Allan Webber Date: Tue, 17 Nov 2015 17:31:17 -0600 Subject: [PATCH] Provide a way to break away through an agenda's prompt tag --- loopy.scm | 24 +++++++++++++++++++----- 1 file changed, 19 insertions(+), 5 deletions(-) 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)))) -- 2.31.1