Bug fix: INTERSECTION doesn't apply :key to list1.
[jscl.git] / src / list.lisp
1 ;;; list.lisp --- 
2
3 ;; JSCL is free software: you can redistribute it and/or
4 ;; modify it under the terms of the GNU General Public License as
5 ;; published by the Free Software Foundation, either version 3 of the
6 ;; License, or (at your option) any later version.
7 ;;
8 ;; JSCL is distributed in the hope that it will be useful, but
9 ;; WITHOUT ANY WARRANTY; without even the implied warranty of
10 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 ;; General Public License for more details.
12 ;;
13 ;; You should have received a copy of the GNU General Public License
14 ;; along with JSCL.  If not, see <http://www.gnu.org/licenses/>.
15
16 ;;;; Various list functions
17
18 (defun cons (x y) (cons x y))
19 (defun consp (x) (consp x))
20
21 (defun listp (x)
22   (or (consp x) (null x)))
23
24 (defun null (x)
25   (eq x nil))
26
27 (defun endp (x)
28   (if (null x)
29       t
30       (if (consp x)
31           nil
32           (error "The value `~S' is not a type list." x))))
33
34 (defun car (x)
35   "Return the CAR part of a cons, or NIL if X is null."
36   (car x))
37
38 (defun cdr (x) (cdr x))
39
40 (defun first   (x) (car    x))
41 (defun second  (x) (cadr   x))
42 (defun third   (x) (caddr  x))
43 (defun fourth  (x) (cadddr x))
44 (defun fifth   (x) (car    (cddddr x)))
45 (defun sixth   (x) (cadr   (cddddr x)))
46 (defun seventh (x) (caddr  (cddddr x)))
47 (defun eighth  (x) (cadddr (cddddr x)))
48 (defun ninth   (x) (car  (cddddr (cddddr x))))
49 (defun tenth   (x) (cadr (cddddr (cddddr x))))
50 (defun rest    (x) (cdr x))
51
52 (defun list (&rest args)
53   args)
54
55 (defun list* (arg &rest others)
56   (cond ((null others) arg)
57         ((null (cdr others)) (cons arg (car others)))
58         (t (do ((x others (cdr x)))
59                ((null (cddr x)) (rplacd x (cadr x))))
60            (cons arg others))))
61
62 (defun nthcdr (n list)
63   (while (and (plusp n) list)
64     (setq n (1- n))
65     (setq list (cdr list)))
66   list)
67
68 (defun nth (n list)
69   (car (nthcdr n list)))
70
71 (define-setf-expander nth (n list)
72   (let ((g!list (gensym))
73         (g!index (gensym))
74         (g!value (gensym)))
75     (values (list g!list g!index)
76             (list list n)
77             (list g!value)
78             `(rplaca (nthcdr ,g!index ,g!list) ,g!value)
79             `(nth ,g!index ,g!list))))
80
81 (defun caar (x) (car (car x)))
82 (defun cadr (x) (car (cdr x)))
83 (defun cdar (x) (cdr (car x)))
84 (defun cddr (x) (cdr (cdr x)))
85
86 (defun caaar (x) (car (caar x)))
87 (defun caadr (x) (car (cadr x)))
88 (defun cadar (x) (car (cdar x)))
89 (defun caddr (x) (car (cddr x)))
90 (defun cdaar (x) (cdr (caar x)))
91 (defun cdadr (x) (cdr (cadr x)))
92 (defun cddar (x) (cdr (cdar x)))
93 (defun cdddr (x) (cdr (cddr x)))
94
95 (defun caaaar (x) (car (caaar x)))
96 (defun caaadr (x) (car (caadr x)))
97 (defun caadar (x) (car (cadar x)))
98 (defun caaddr (x) (car (caddr x)))
99 (defun cadaar (x) (car (cdaar x)))
100 (defun cadadr (x) (car (cdadr x)))
101 (defun caddar (x) (car (cddar x)))
102 (defun cadddr (x) (car (cdddr x)))
103 (defun cdaaar (x) (cdr (caaar x)))
104 (defun cdaadr (x) (cdr (caadr x)))
105 (defun cdadar (x) (cdr (cadar x)))
106 (defun cdaddr (x) (cdr (caddr x)))
107 (defun cddaar (x) (cdr (cdaar x)))
108 (defun cddadr (x) (cdr (cdadr x)))
109 (defun cdddar (x) (cdr (cddar x)))
110 (defun cddddr (x) (cdr (cdddr x)))
111
112 (defun sublis (alist tree &key key (test #'eql testp) (test-not #'eql test-not-p))
113   (when (and testp test-not-p)
114     (error "Both test and test-not are set"))
115   (labels ((s (tree)
116              (let* ((key-val (if key (funcall key tree) tree))
117                     (replace (if test-not-p
118                                  (assoc key-val alist :test-not test-not)
119                                  (assoc key-val alist :test test)))
120                     (x (if replace (cdr replace) tree)))
121                (if (atom x)
122                    x
123                    (cons (s (car x)) (s (cdr x)))))))
124     (s tree)))
125
126 (defun subst (new old tree &key key (test #'eql testp) (test-not #'eql test-not-p))
127   (labels ((s (x)
128              (cond ((satisfies-test-p old x :key key :test test :testp testp
129                                       :test-not test-not :test-not-p test-not-p)
130                     new)
131                    ((atom x) x)
132                    (t (let ((a (s (car x)))
133                             (b (s (cdr x))))
134                         (if (and (eq a (car x))
135                                  (eq b (cdr x)))
136                             x
137                             (cons a b)))))))
138     (s tree)))
139
140 (defun copy-list (x)
141   (mapcar #'identity x))
142
143 (defun copy-tree (tree)
144   (if (consp tree)
145     (cons (copy-tree (car tree))
146           (copy-tree (cdr tree)))
147     tree))
148
149 (defun tree-equal (tree1 tree2 &key (test #'eql testp)
150                          (test-not #'eql test-not-p))
151   (when (and testp test-not-p) (error "Both test and test-not are set"))
152   (let ((func (if test-not-p (complement test-not) test)))
153     (labels ((%tree-equal (tree1 tree2)
154                (if (atom tree1)
155                  (and (atom tree2) (funcall func tree1 tree2))
156                  (and (consp tree2)
157                       (%tree-equal (car tree1) (car tree2))
158                       (%tree-equal (cdr tree1) (cdr tree2))))))
159       (%tree-equal tree1 tree2))))
160
161 (defun tailp (object list)
162   (do ((tail list (cdr tail)))
163     ((atom tail) (eq object tail))
164     (when (eql tail object)
165       (return-from tailp t))))
166
167 (defmacro pop (place)
168   (multiple-value-bind (dummies vals newval setter getter)
169     (get-setf-expansion place)
170     (let ((head (gensym)))
171       `(let* (,@(mapcar #'list dummies vals) 
172               (,head ,getter)
173               (,(car newval) (cdr ,head))
174               ,@(cdr newval)) 
175          ,setter
176          (car ,head)))))
177
178
179 (defun map1 (func list)
180   (with-collect
181     (while list
182       (collect (funcall func (car list)))
183       (setq list (cdr list)))))
184
185 (defun mapcar (func list &rest lists)
186   (let ((lists (cons list lists)))
187     (with-collect
188       (block loop
189         (loop
190            (let ((elems (map1 #'car lists)))
191              (do ((tail lists (cdr tail)))
192                  ((null tail))
193                (when (null (car tail)) (return-from loop))
194                (rplaca tail (cdar tail)))
195              (collect (apply func elems))))))))
196
197 (defun mapc (func &rest lists)
198   (do* ((elems (map1 #'car lists) (map1 #'car lists-rest))
199         (lists-rest (map1 #'cdr lists) (map1 #'cdr lists-rest)))
200        ((dolist (x elems) (when (null x) (return t)))
201         (car lists))
202     (apply func elems)))
203
204 (defun last (x)
205   (while (consp (cdr x))
206     (setq x (cdr x)))
207   x)
208
209 (defun butlast (x)
210   (and (consp (cdr x))
211        (cons (car x) (butlast (cdr x)))))
212
213 (defun member (x list &key key (test #'eql testp) (test-not #'eql test-not-p)) 
214   (while list
215     (when (satisfies-test-p x (car list) :key key :test test :testp testp
216                             :test-not test-not :test-not-p test-not-p)
217       (return list))
218     (setq list (cdr list))))
219
220
221 (defun assoc (x alist &key key (test #'eql testp) (test-not #'eql test-not-p))
222   (while alist
223     (if (satisfies-test-p x (caar alist) :key key :test test :testp testp
224                           :test-not test-not :test-not-p test-not-p)
225       (return)
226       (setq alist (cdr alist))))
227   (car alist))
228
229 (defun rassoc (x alist &key key (test #'eql) (test #'eql testp)
230                  (test-not #'eql test-not-p))
231   (while alist
232     (if (satisfies-test-p x (cdar alist) :key key :test test :testp testp
233                           :test-not test-not :test-not-p test-not-p)
234       (return)
235       (setq alist (cdr alist))))
236   (car alist))
237
238 (defun acons (key datum alist)
239   (cons (cons key datum) alist))
240
241 (defun pairlis (keys data &optional (alist ()))
242   (while keys
243     (setq alist (acons (car keys) (car data) alist))
244     (setq keys (cdr keys))
245     (setq data (cdr data)))
246   alist)
247
248 (defun copy-alist (alist)
249   (let ((new-alist ()))
250     (while alist
251       (push (cons (caar alist) (cdar alist)) new-alist)
252       (setq alist (cdr alist)))
253     (reverse new-alist)))
254
255
256 (define-setf-expander car (x)
257   (let ((cons (gensym))
258         (new-value (gensym)))
259     (values (list cons)
260             (list x)
261             (list new-value)
262             `(progn (rplaca ,cons ,new-value) ,new-value)
263             `(car ,cons))))
264
265 (define-setf-expander cdr (x)
266   (let ((cons (gensym))
267         (new-value (gensym)))
268     (values (list cons)
269             (list x)
270             (list new-value)
271             `(progn (rplacd ,cons ,new-value) ,new-value)
272             `(cdr ,cons))))
273
274
275 ;; The NCONC function is based on the SBCL's one.
276 (defun nconc (&rest lists)
277   (flet ((fail (object)
278            (error "type-error in nconc")))
279     (do ((top lists (cdr top)))
280         ((null top) nil)
281       (let ((top-of-top (car top)))
282         (typecase top-of-top
283           (cons
284            (let* ((result top-of-top)
285                   (splice result))
286              (do ((elements (cdr top) (cdr elements)))
287                  ((endp elements))
288                (let ((ele (car elements)))
289                  (typecase ele
290                    (cons (rplacd (last splice) ele)
291                          (setf splice ele))
292                    (null (rplacd (last splice) nil))
293                    (atom (if (cdr elements)
294                              (fail ele)
295                              (rplacd (last splice) ele))))))
296              (return result)))
297           (null)
298           (atom
299            (if (cdr top)
300                (fail top-of-top)
301                (return top-of-top))))))))
302
303
304 (defun nreconc (x y)
305   (do ((1st (cdr x) (if (endp 1st) 1st (cdr 1st)))
306        (2nd x 1st)                ; 2nd follows first down the list.
307        (3rd y 2nd))               ;3rd follows 2nd down the list.
308       ((atom 2nd) 3rd)
309     (rplacd 2nd 3rd)))
310
311
312 (defun adjoin (item list &key (test #'eql) (key #'identity))
313   (if (member item list :key key :test test)
314     list
315     (cons item list)))
316
317 (defun intersection (list1 list2 &key (test #'eql) (key #'identity))
318   (let ((new-list ()))
319     (dolist (x list1)
320       (when (member (funcall key x) list2 :test test :key key)
321         (push x new-list)))
322     new-list))