-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmacros.lisp
31 lines (25 loc) · 1.05 KB
/
macros.lisp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
;;;; macros.lisp --- Convenience macros provided by the rsbag system.
;;;;
;;;; Copyright (C) 2011-2018 Jan Moringen
;;;;
;;;; Author: Jan Moringen <[email protected]>
(cl:in-package #:rsbag)
(defun call-with-open-bag (bag thunk)
"Call THUNK with BAG as the sole argument. Close BAG when THUNK
returns or a control transfer occurs."
(unwind-protect
(funcall thunk bag)
(close bag)))
(defmacro with-open-bag ((var bag) &body body)
"Execute BODY with VAR bound to BAG. The bag is closed when BODY
finishes or a control transfer occurs."
(check-type var symbol "a symbol")
`(flet ((with-open-bag-thunk (,var) ,@body))
(declare (dynamic-extent #'with-open-bag-thunk))
(call-with-open-bag ,bag #'with-open-bag-thunk)))
(defmacro with-bag ((var source &rest args &key &allow-other-keys)
&body body)
"Execute BODY with VAR bound to a bag object for the data source
SOURCE. ARGS are passed to `open-bag'."
(check-type var symbol "a symbol")
`(with-open-bag (,var (open-bag ,source ,@args)) ,@body))