From: Christopher Allan Webber Date: Thu, 19 Nov 2015 20:00:05 +0000 (-0600) Subject: Add time to the agenda X-Git-Tag: v0.1.0~154 X-Git-Url: https://jxself.org/git/?p=8sync.git;a=commitdiff_plain;h=79592dc135a74a704398a7a045dad5d633d42966 Add time to the agenda --- diff --git a/loopy.scm b/loopy.scm index f11b6b8..6f1516f 100644 --- a/loopy.scm +++ b/loopy.scm @@ -60,12 +60,13 @@ ;;; and with reasonable separation from functional components? (define-immutable-record-type - (make-agenda-intern queue prompt-tag port-mapping schedule) + (make-agenda-intern queue prompt-tag port-mapping schedule time) agenda? (queue agenda-queue) (prompt-tag agenda-prompt-tag) (port-mapping agenda-port-mapping) - (schedule agenda-schedule)) + (schedule agenda-schedule) + (time agenda-time)) (define (make-async-prompt-tag) (make-prompt-tag "prompt")) @@ -74,8 +75,9 @@ (queue (make-q)) (prompt (make-prompt-tag)) (port-mapping (make-port-mapping)) - (schedule (make-schedule))) - (make-agenda-intern queue prompt port-mapping schedule)) + (schedule (make-schedule)) + (time (gettimeofday))) + (make-agenda-intern queue prompt port-mapping schedule time)) @@ -290,7 +292,11 @@ (agenda-run-once agenda)))) (if (and stop-condition (stop-condition agenda)) 'done - (loop new-agenda))))) + (loop + ;; Adjust the agenda's time just in time + ;; We do this here rather than in agenda-run-once to make + ;; agenda-run-once's behavior fairly predictable + (set-field new-agenda (agenda-time) (gettimeofday))))))) (define (agenda-run-once agenda) "Run once through the agenda, and produce a new agenda