2007-04-30 00:55:13 -04:00
|
|
|
|
2007-05-05 03:16:26 -04:00
|
|
|
|
2007-04-30 01:02:08 -04:00
|
|
|
(library (ikarus control)
|
2007-05-11 22:02:49 -04:00
|
|
|
(export call/cf call/cc call-with-current-continuation dynamic-wind exit)
|
2007-05-05 01:56:44 -04:00
|
|
|
(import
|
2007-05-06 18:10:51 -04:00
|
|
|
(ikarus system $stack)
|
2007-05-11 22:02:49 -04:00
|
|
|
(except (ikarus) call/cf call/cc call-with-current-continuation
|
|
|
|
dynamic-wind exit))
|
2007-04-30 01:02:08 -04:00
|
|
|
|
2007-05-05 01:56:44 -04:00
|
|
|
(define primitive-call/cf
|
2007-04-30 00:55:13 -04:00
|
|
|
(lambda (f)
|
|
|
|
(if ($fp-at-base)
|
|
|
|
(f ($current-frame))
|
|
|
|
($seal-frame-and-call f))))
|
|
|
|
|
2007-05-05 01:56:44 -04:00
|
|
|
(define call/cf
|
|
|
|
(lambda (f)
|
|
|
|
(if (procedure? f)
|
|
|
|
(primitive-call/cf f)
|
|
|
|
(error 'call/cf "~s is not a procedure" f))))
|
|
|
|
|
2007-04-30 00:55:13 -04:00
|
|
|
(define primitive-call/cc
|
|
|
|
(lambda (f)
|
2007-05-05 01:56:44 -04:00
|
|
|
(primitive-call/cf
|
2007-04-30 00:55:13 -04:00
|
|
|
(lambda (frm)
|
|
|
|
(f ($frame->continuation frm))))))
|
|
|
|
|
2007-05-05 01:56:44 -04:00
|
|
|
(define winders '())
|
2007-04-30 00:55:13 -04:00
|
|
|
|
|
|
|
(define len
|
|
|
|
(lambda (ls n)
|
|
|
|
(if (null? ls)
|
|
|
|
n
|
|
|
|
(len (cdr ls) (fxadd1 n)))))
|
|
|
|
|
|
|
|
(define list-tail
|
|
|
|
(lambda (ls n)
|
|
|
|
(if (fxzero? n)
|
|
|
|
ls
|
|
|
|
(list-tail (cdr ls) (fxsub1 n)))))
|
|
|
|
|
|
|
|
(define drop-uncommon-heads
|
|
|
|
(lambda (x y)
|
|
|
|
(if (eq? x y)
|
|
|
|
x
|
|
|
|
(drop-uncommon-heads (cdr x) (cdr y)))))
|
|
|
|
|
|
|
|
(define common-tail
|
|
|
|
(lambda (x y)
|
|
|
|
(let ([lx (len x 0)] [ly (len y 0)])
|
|
|
|
(let ([x (if (fx> lx ly) (list-tail x (fx- lx ly)) x)]
|
|
|
|
[y (if (fx> ly lx) (list-tail y (fx- ly lx)) y)])
|
|
|
|
(if (eq? x y)
|
|
|
|
x
|
|
|
|
(drop-uncommon-heads (cdr x) (cdr y)))))))
|
|
|
|
|
|
|
|
(define unwind*
|
|
|
|
(lambda (ls tail)
|
|
|
|
(unless (eq? ls tail)
|
|
|
|
(set! winders (cdr ls))
|
|
|
|
((cdar ls))
|
|
|
|
(unwind* (cdr ls) tail))))
|
|
|
|
|
|
|
|
(define rewind*
|
|
|
|
(lambda (ls tail)
|
|
|
|
(unless (eq? ls tail)
|
|
|
|
(rewind* (cdr ls) tail)
|
|
|
|
((caar ls))
|
|
|
|
(set! winders ls))))
|
|
|
|
|
|
|
|
(define do-wind
|
|
|
|
(lambda (new)
|
|
|
|
(let ([tail (common-tail new winders)])
|
|
|
|
(unwind* winders tail)
|
|
|
|
(rewind* new tail))))
|
|
|
|
|
|
|
|
(define call/cc
|
|
|
|
(lambda (f)
|
2007-05-05 01:56:44 -04:00
|
|
|
(primitive-call/cc
|
2007-04-30 00:55:13 -04:00
|
|
|
(lambda (k)
|
|
|
|
(let ([save winders])
|
|
|
|
(f (case-lambda
|
|
|
|
[(v) (unless (eq? save winders) (do-wind save)) (k v)]
|
|
|
|
[() (unless (eq? save winders) (do-wind save)) (k)]
|
|
|
|
[(v1 v2 . v*)
|
|
|
|
(unless (eq? save winders) (do-wind save))
|
|
|
|
(apply k v1 v2 v*)])))))))
|
|
|
|
|
2007-05-11 22:02:49 -04:00
|
|
|
(define call-with-current-continuation
|
|
|
|
;; look at how verbose I am ;;
|
|
|
|
(lambda (f) (call/cc f)))
|
|
|
|
|
2007-04-30 00:55:13 -04:00
|
|
|
(define dynamic-wind
|
|
|
|
(lambda (in body out)
|
|
|
|
(in)
|
|
|
|
(set! winders (cons (cons in out) winders))
|
|
|
|
(call-with-values
|
|
|
|
body
|
|
|
|
(case-lambda
|
|
|
|
[(v) (set! winders (cdr winders)) (out) v]
|
|
|
|
[() (set! winders (cdr winders)) (out) (values)]
|
|
|
|
[(v1 v2 . v*)
|
|
|
|
(set! winders (cdr winders))
|
|
|
|
(out)
|
2007-05-05 03:16:26 -04:00
|
|
|
(apply values v1 v2 v*)]))))
|
|
|
|
|
|
|
|
(define exit
|
|
|
|
(case-lambda
|
|
|
|
[() (exit 0)]
|
|
|
|
[(status) (foreign-call "exit" status)]))
|
|
|
|
)
|