Skip to content
Snippets Groups Projects
Commit afaa2364 authored by Vladimir Sedach's avatar Vladimir Sedach
Browse files

Moved pexec, plet to library.lisp

parent 9bbe86c1
No related branches found
No related tags found
No related merge requests found
......@@ -6,5 +6,6 @@
:components ((:file "package")
(:file "scheduler")
(:file "make-future")
(:file "future"))
(:file "future")
(:file "library"))
:depends-on (:bordeaux-threads :trivial-garbage))
(in-package #:eager-future2)
(defmacro pexec (&body body)
"A shorthand for (pcall (lambda () ...))."
`(pcall (lambda () ,@body)))
(defmacro plet ((&rest bindings) &body body)
"Like LET, but all bindings are evaluated asynchronously."
(let ((bindings (mapcar (lambda (x) (if (consp x) x (list x nil)))
bindings)))
(let ((syms (mapcar (lambda (x) (gensym (string (car x))))
bindings)))
`(let ,(loop for (nil exp) in bindings
for sym in syms
collect `(,sym (pexec ,exp)))
(symbol-macrolet ,(loop for (var nil) in bindings
for sym in syms
collect `(,var (yield ,sym)))
,@body)))))
;;(defun pand)
;;(defun por)
(defun select-timeout (timeout &rest futures)
(apply #'select (pcall (lambda () (sleep timeout)) :eager) futures))
\ No newline at end of file
......@@ -69,21 +69,3 @@ The function is called in an unspecified dynamic environment."
(unless (eq future-type :lazy)
(schedule-future future future-type))
future))
(defmacro pexec (&body body)
"A shorthand for (pcall (lambda () ...))."
`(pcall (lambda () ,@body)))
(defmacro plet ((&rest bindings) &body body)
"Like LET, but all bindings are evaluated asynchronously."
(let ((bindings (mapcar (lambda (x) (if (consp x) x (list x nil)))
bindings)))
(let ((syms (mapcar (lambda (x) (gensym (string (car x))))
bindings)))
`(let ,(loop for (nil exp) in bindings
for sym in syms
collect `(,sym (pexec ,exp)))
(symbol-macrolet ,(loop for (var nil) in bindings
for sym in syms
collect `(,var (yield ,sym)))
,@body)))))
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment