anaphora.lisp: Rewrite `asetf' to use `with-places/gensyms'.
[lisp] / collect.lisp
1 ;;; -*-lisp-*-
2 ;;;
3 ;;; $Id$
4 ;;;
5 ;;; Collecting things into lists
6 ;;;
7 ;;; (c) 2005 Straylight/Edgeware
8 ;;;
9
10 ;;;----- Licensing notice ---------------------------------------------------
11 ;;;
12 ;;; This program is free software; you can redistribute it and/or modify
13 ;;; it under the terms of the GNU General Public License as published by
14 ;;; the Free Software Foundation; either version 2 of the License, or
15 ;;; (at your option) any later version.
16 ;;;
17 ;;; This program is distributed in the hope that it will be useful,
18 ;;; but WITHOUT ANY WARRANTY; without even the implied warranty of
19 ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 ;;; GNU General Public License for more details.
21 ;;;
22 ;;; You should have received a copy of the GNU General Public License
23 ;;; along with this program; if not, write to the Free Software Foundation,
24 ;;; Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
25
26 (defpackage #:collect
27 (:use #:common-lisp #:mdw.base)
28 (:export #:make-collector #:collected
29 #:collecting #:with-collection
30 #:collect #:collect-tail
31 #:collect-append #:collect-nconc))
32 (in-package collect)
33
34 (eval-when (:compile-toplevel :load-toplevel)
35 (defvar *collecting-anon-list-name* (gensym)
36 "The default name for anonymous `collecting' lists."))
37
38 (defun make-collector (&optional list)
39 "Return a new collector object whose initial contents is LIST. Note that
40 LIST will be destroyed if anything else is collected."
41 (let ((head (cons nil list)))
42 (setf (car head) (if list (last list) head))))
43
44 (defmacro collected (&optional (name *collecting-anon-list-name*))
45 "Return the current list collected into the collector NAME (or
46 *collecting-anon-list-name* by default)."
47 `(the list (cdr ,name)))
48
49 (defmacro collecting (vars &body body)
50 "Collect items into lists. The VARS are a list of collection variables --
51 their values are unspecified, except that they may be passed to `collect'
52 and `collect-tail' If VARS is empty then *collecting-anon-list-name* is
53 used. VARS may be an atom instead of a singleton list. The form produces
54 multiple values, one for each list constructed."
55 (cond ((null vars) (setf vars (list *collecting-anon-list-name*)))
56 ((atom vars) (setf vars (list vars))))
57 `(let ,(mapcar (lambda (v) `(,v (make-collector))) vars)
58 ,@body
59 (values ,@(mapcar (lambda (v) `(collected ,v)) vars))))
60
61 (defmacro with-collection (vars collection &body body)
62 "Collect items into lists VARS according to the form COLLECTION; then
63 evaluate BODY with VARS bound to those lists."
64 `(multiple-value-bind
65 ,(listify vars)
66 (collecting ,vars ,collection)
67 ,@body))
68
69 (defmacro collect (x &optional (name *collecting-anon-list-name*))
70 "Add item X to the `collecting' list NAME (or *collecting-anon-list-name*
71 by default)."
72 (with-gensyms new
73 `(let ((,new (cons ,x nil)))
74 (setf (cdar ,name) ,new)
75 (setf (car ,name) ,new))))
76
77 (defmacro collect-tail (x &optional (name *collecting-anon-list-name*))
78 "Make item X be the tail of `collecting' list NAME (or
79 *collecting-anon-list-name* by default). It is an error to continue
80 trying to add stuff to the list."
81 `(progn
82 (setf (cdar ,name) ,x)
83 (setf (car ,name) nil)))
84
85 (defmacro collect-append (list &optional (name *collecting-anon-list-name*))
86 "Append LIST to the tail of `collecting' list NAME. This obviously
87 involves copying LIST."
88 (with-gensyms item
89 `(dolist (,item ,list)
90 (collect ,item ,name))))
91
92 (defmacro collect-nconc (list &optional (name *collecting-anon-list-name*))
93 "Attach LIST to the tail of `collecting' list NAME. This will involve
94 destroying LIST if anything else gets collected afterwards."
95 (let*/gensyms list
96 `(when ,list
97 (setf (cdar ,name) ,list)
98 (setf (car ,name) (last ,list)))))
99
100 ;;;----- That's all, folks --------------------------------------------------