new promises

svn: r6912
This commit is contained in:
Eli Barzilay 2007-07-14 05:08:23 +00:00
parent df9238bab0
commit eef7c40127
4 changed files with 104 additions and 7 deletions

View File

@ -1,11 +1,9 @@
(module force mzscheme
(module force "mz-without-promises.ss"
(require "promise.ss")
(provide (all-defined-except do-!!))
(define-syntax (~ stx)
(syntax-case stx ()
[(~ E) (syntax/loc stx (delay E))]))
(define (! x) (if (promise? x) (! (force x)) x))
(define-syntax ! (make-rename-transformer #'force))
(define-syntax ~ (make-rename-transformer #'lazy))
(define (!! x) (do-!! x #f))
;; Similar to the above, but wrap procedure values too

View File

@ -218,7 +218,8 @@
[strict (syntax/loc stx (p (hidden-! y) ...))])
(quasisyntax/loc stx
(let ([p f] [y x] ...)
#,($$ #`(if (lazy? p) lazy strict)))))))]))
;; #,($$ #`(if (lazy? p) lazy strict))
(if (lazy? p) lazy strict))))))]))
(defsubst (!app f x ...) (!*app (hidden-! f) x ...))
(defsubst (~!*app f x ...) (~ (!*app f x ...)))

View File

@ -0,0 +1,3 @@
;; A tiny language to build our promises with no built-in interference
(module mz-without-promises mzscheme
(provide (all-from-except mzscheme delay force promise?)))

95
collects/lazy/promise.ss Normal file
View File

@ -0,0 +1,95 @@
;; This module implements "lazy promises" and a `force' that is iterated
;; through them. Scheme promises are not touched: they're used as values.
;; This is similar to the *new* version of srfi-45 -- see the post-finalization
;; discussion at http://srfi.schemers.org/srfi-45/ for more details;
;; specifically, this version is the `lazy2' version from
;; http://srfi.schemers.org/srfi-45/post-mail-archive/msg00013.html and `lazy3'
;; in that post shows how to extend it to multiple values. Note: if you use
;; only `force'+`delay' it behaves as in Scheme (except that `force' is
;; identity for non promise values), and `force'+`lazy' are sufficient for
;; implementing the lazy language.
(module promise "mz-without-promises.ss"
(provide lazy delay force promise?)
;; (define-struct promise (p)) <-- use a more sophisticated struct below
;; promise that can print in meaningful ways
(define-values (promise promise? p:ref p:set!)
(let*-values
([(printer)
(lambda (promise port write?)
(let loop ([p (p:ref promise)])
(cond
[(procedure? p)
(cond [(object-name p)
=> (lambda (n) (fprintf port "#<promise:~a>" n))]
[else (display "#<promise:?>" port)])]
[(pair? p)
(fprintf port (if write? "#<promise::~s>" "#<promise::~a>")
(car p))]
[(promise? p) (loop p)] ; hide sharing
[(not p) (display "#<promise*active>" port)]
[else (error 'promise-printer "bad promise value: ~e" p)])))]
[(s:promise promise promise? promise-ref promise-set!)
(make-struct-type 'promise #f 1 0 #f
(list (cons prop:custom-write printer)))])
(values promise
promise?
(make-struct-field-accessor promise-ref 0 'contents)
(make-struct-field-mutator promise-set! 0 'contents))))
;; <promise> ::= (promise <thunk>) (delayed promise)
;; | (promise (list <object>)) (forced promise)
;; | (promise <promise>) (shared promise)
;; | (promise #f) (currently running)
;; creates a `composable' promise
;; X = (force (lazy X)) = (force (lazy (lazy X))) = (force (lazy^n X))
(define-syntax (lazy stx)
(syntax-case stx ()
[(lazy expr) (with-syntax ([proc (syntax-property
(syntax/loc stx (lambda () expr))
'inferred-name (syntax-local-name))])
(syntax/loc stx (promise proc)))]))
;; creates a promise that does not compose
;; X = (force (delay X)) = (force (lazy (delay X)))
;; = (force (lazy^n (delay X)))
;; X = (force (force (delay (delay X)))) =/= (force (delay (delay X)))
;; so each sequence of `(lazy^n o delay)^m' requires m `force's and a
;; sequence of `(lazy^n o delay)^m o lazy^k' requires m+1 `force's (for k>0)
;; (This is not needed with a lazy language (see the above URL for details),
;; but provided for completeness)
(define-syntax (delay stx)
(syntax-case stx ()
[(delay expr) (syntax/loc stx (lazy (promise (list expr))))]))
;; iterates on lazy promises (forbid dependency cycles)
;; * (force X) = X for non promises
;; * does not deal with multiple values, since they're not used by the lazy
;; language (but would be easy to add them)
(define (force promise)
(if (promise? promise)
(let loop ([p (p:ref promise)])
(cond
[(procedure? p)
(p:set! promise #f) ; mark root for cycle detection
(let loop ([promise* (p)])
(if (promise? promise*)
(let ([p* (p:ref promise*)])
(p:set! promise* promise) ; share with root
(cond [(procedure? p*) (loop (p*))]
[(pair? p*) (p:set! promise p*) (car p*)]
[(promise? p*) (loop p*)]
[(not p*) (error 'force "reentrant promise")]
[else (error 'force "invalid promise, contains ~e" p*)]))
(begin ; error here for "library approach" (see above URL)
(p:set! promise (list promise*))
promise*)))]
[(pair? p) (car p)]
[(promise? p) (loop (p:ref p))]
[(not p) (error 'force "reentrant promise")]
[else (error 'force "invalid promise, contains ~e" p)]))
;; different from srfi-45: identity for non-promises
promise)))