Fix spelling mistake
[bpt/guile.git] / libguile / alist.c
CommitLineData
e282f286 1/* Copyright (C) 1995, 96, 97, 98, 99, 2000 Free Software Foundation, Inc.
0f2d19dd
JB
2 *
3 * This program is free software; you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License as published by
5 * the Free Software Foundation; either version 2, or (at your option)
6 * any later version.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License
14 * along with this software; see the file COPYING. If not, write to
82892bed
JB
15 * the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
16 * Boston, MA 02111-1307 USA
0f2d19dd
JB
17 *
18 * As a special exception, the Free Software Foundation gives permission
19 * for additional uses of the text contained in its release of GUILE.
20 *
21 * The exception is that, if you link the GUILE library with other files
22 * to produce an executable, this does not by itself cause the
23 * resulting executable to be covered by the GNU General Public License.
24 * Your use of that executable is in no way restricted on account of
25 * linking the GUILE library code into it.
26 *
27 * This exception does not however invalidate any other reasons why
28 * the executable file might be covered by the GNU General Public License.
29 *
30 * This exception applies only to the code released by the
31 * Free Software Foundation under the name GUILE. If you copy
32 * code from other Free Software Foundation releases into a copy of
33 * GUILE, as the General Public License permits, the exception does
34 * not apply to the code that you add in this way. To avoid misleading
35 * anyone as to the status of such modified files, you must delete
36 * this exception notice from them.
37 *
38 * If you write modifications of your own for GUILE, it is your choice
39 * whether to permit this exception to apply to your modifications.
82892bed 40 * If you do not wish that, delete this exception notice. */
1bbd0b84
GB
41
42/* Software engineering face-lift by Greg J. Badros, 11-Dec-1999,
43 gjb@cs.washington.edu, http://www.cs.washington.edu/homes/gjb */
44
0f2d19dd
JB
45\f
46#include <stdio.h>
a0599745
MD
47#include "libguile/_scm.h"
48#include "libguile/eq.h"
49#include "libguile/list.h"
20e6290e 50
a0599745
MD
51#include "libguile/validate.h"
52#include "libguile/alist.h"
0f2d19dd
JB
53
54\f
55
3b3b36dd 56SCM_DEFINE (scm_acons, "acons", 3, 0, 0,
0b5f3f34 57 (SCM key, SCM value, SCM alist),
b380b885
MD
58 "Adds a new key-value pair to @var{alist}. A new pair is\n"
59 "created whose car is @var{key} and whose cdr is @var{value}, and the\n"
60 "pair is consed onto @var{alist}, and the new list is returned. This\n"
61 "function is @emph{not} destructive; @var{alist} is not modified.")
1bbd0b84 62#define FUNC_NAME s_scm_acons
0f2d19dd 63{
0b5f3f34
GB
64 SCM pair;
65 SCM head;
66
67 SCM_NEWCELL (pair);
665aeda3
DH
68 SCM_SET_CELL_OBJECT_0 (pair, key);
69 SCM_SET_CELL_OBJECT_1 (pair, value);
0b5f3f34
GB
70
71 SCM_NEWCELL (head);
665aeda3
DH
72 SCM_SET_CELL_OBJECT_0 (head, pair);
73 SCM_SET_CELL_OBJECT_1 (head, alist);
0b5f3f34
GB
74
75 return head;
0f2d19dd 76}
1bbd0b84 77#undef FUNC_NAME
0f2d19dd
JB
78
79\f
80
a1ec6916 81SCM_DEFINE (scm_sloppy_assq, "sloppy-assq", 2, 0, 0,
0b5f3f34 82 (SCM key, SCM alist),
b380b885
MD
83 "Behaves like @code{assq} but does not do any error checking.\n"
84 "Recommended only for use in Guile internals.")
1bbd0b84 85#define FUNC_NAME s_scm_sloppy_assq
0f2d19dd 86{
0c95b57d 87 for (; SCM_CONSP (alist); alist = SCM_CDR (alist))
0f2d19dd 88 {
2de257bd 89 SCM tmp = SCM_CAR (alist);
fbd485ba 90 if (SCM_CONSP (tmp) && SCM_EQ_P (SCM_CAR (tmp), key))
cf18adf0 91 return tmp;
0f2d19dd
JB
92 }
93 return SCM_BOOL_F;
94}
1bbd0b84 95#undef FUNC_NAME
0f2d19dd
JB
96
97
98
a1ec6916 99SCM_DEFINE (scm_sloppy_assv, "sloppy-assv", 2, 0, 0,
0b5f3f34 100 (SCM key, SCM alist),
b380b885
MD
101 "Behaves like @code{assv} but does not do any error checking.\n"
102 "Recommended only for use in Guile internals.")
1bbd0b84 103#define FUNC_NAME s_scm_sloppy_assv
0f2d19dd 104{
0c95b57d 105 for (; SCM_CONSP (alist); alist = SCM_CDR (alist))
0f2d19dd 106 {
2de257bd 107 SCM tmp = SCM_CAR (alist);
0b5f3f34
GB
108 if (SCM_CONSP (tmp)
109 && SCM_NFALSEP (scm_eqv_p (SCM_CAR (tmp), key)))
cf18adf0 110 return tmp;
0f2d19dd
JB
111 }
112 return SCM_BOOL_F;
113}
1bbd0b84 114#undef FUNC_NAME
0f2d19dd
JB
115
116
a1ec6916 117SCM_DEFINE (scm_sloppy_assoc, "sloppy-assoc", 2, 0, 0,
0b5f3f34 118 (SCM key, SCM alist),
b380b885
MD
119 "Behaves like @code{assoc} but does not do any error checking.\n"
120 "Recommended only for use in Guile internals.")
1bbd0b84 121#define FUNC_NAME s_scm_sloppy_assoc
0f2d19dd 122{
0c95b57d 123 for (; SCM_CONSP (alist); alist = SCM_CDR (alist))
0f2d19dd 124 {
2de257bd 125 SCM tmp = SCM_CAR (alist);
0b5f3f34
GB
126 if (SCM_CONSP (tmp)
127 && SCM_NFALSEP (scm_equal_p (SCM_CAR (tmp), key)))
cf18adf0 128 return tmp;
0f2d19dd
JB
129 }
130 return SCM_BOOL_F;
131}
1bbd0b84 132#undef FUNC_NAME
0f2d19dd
JB
133
134
135\f
136
3b3b36dd 137SCM_DEFINE (scm_assq, "assq", 2, 0, 0,
0b5f3f34 138 (SCM key, SCM alist),
b380b885
MD
139 "@deffnx primitive assv key alist\n"
140 "@deffnx primitive assoc key alist\n"
141 "Fetches the entry in @var{alist} that is associated with @var{key}. To\n"
142 "decide whether the argument @var{key} matches a particular entry in\n"
143 "@var{alist}, @code{assq} compares keys with @code{eq?}, @code{assv}\n"
144 "uses @code{eqv?} and @code{assoc} uses @code{equal?}. If @var{key}\n"
145 "cannot be found in @var{alist} (according to whichever equality\n"
146 "predicate is in use), then @code{#f} is returned. These functions\n"
147 "return the entire alist entry found (i.e. both the key and the value).")
1bbd0b84 148#define FUNC_NAME s_scm_assq
0f2d19dd 149{
2de257bd 150 for (; SCM_CONSP (alist); alist = SCM_CDR (alist))
e1385ffc 151 {
2de257bd
MD
152 SCM tmp = SCM_CAR (alist);
153 SCM_VALIDATE_CONS (SCM_ARG2, tmp);
fbd485ba 154 if (SCM_EQ_P (SCM_CAR (tmp), key))
2de257bd 155 return tmp;
e1385ffc 156 }
2de257bd 157 SCM_VALIDATE_NULL (2, alist);
1bbd0b84 158 return SCM_BOOL_F;
0f2d19dd 159}
1bbd0b84 160#undef FUNC_NAME
0f2d19dd
JB
161
162
3b3b36dd 163SCM_DEFINE (scm_assv, "assv", 2, 0, 0,
0b5f3f34 164 (SCM key, SCM alist),
b380b885 165 "Behaves like @code{assq} but uses @code{eqv?} for key comparison.")
1bbd0b84 166#define FUNC_NAME s_scm_assv
0f2d19dd 167{
2de257bd 168 for(; SCM_CONSP (alist); alist = SCM_CDR (alist))
e1385ffc 169 {
2de257bd
MD
170 SCM tmp = SCM_CAR (alist);
171 SCM_VALIDATE_CONS (SCM_ARG2, tmp);
172 if (SCM_NFALSEP (scm_eqv_p (SCM_CAR (tmp), key)))
173 return tmp;
e1385ffc 174 }
2de257bd 175 SCM_VALIDATE_NULL (2, alist);
0f2d19dd
JB
176 return SCM_BOOL_F;
177}
1bbd0b84 178#undef FUNC_NAME
0f2d19dd
JB
179
180
3b3b36dd 181SCM_DEFINE (scm_assoc, "assoc", 2, 0, 0,
0b5f3f34 182 (SCM key, SCM alist),
b380b885 183 "Behaves like @code{assq} but uses @code{equal?} for key comparison.")
1bbd0b84 184#define FUNC_NAME s_scm_assoc
0f2d19dd 185{
2de257bd 186 for(; SCM_CONSP (alist); alist = SCM_CDR (alist))
e1385ffc 187 {
2de257bd
MD
188 SCM tmp = SCM_CAR (alist);
189 SCM_VALIDATE_CONS (SCM_ARG2, tmp);
190 if (SCM_NFALSEP (scm_equal_p (SCM_CAR (tmp), key)))
191 return tmp;
e1385ffc 192 }
2de257bd 193 SCM_VALIDATE_NULL (2, alist);
1bbd0b84 194 return SCM_BOOL_F;
0f2d19dd 195}
1bbd0b84 196#undef FUNC_NAME
0f2d19dd
JB
197
198
199\f
200
a1ec6916 201SCM_DEFINE (scm_assq_ref, "assq-ref", 2, 0, 0,
1bbd0b84 202 (SCM alist, SCM key),
b380b885
MD
203 "@deffnx primitive assv-ref alist key\n"
204 "@deffnx primitive assoc-ref alist key\n"
205 "Like @code{assq}, @code{assv} and @code{assoc}, except that only the\n"
206 "value associated with @var{key} in @var{alist} is returned. These\n"
207 "functions are equivalent to\n\n"
208 "@lisp\n"
209 "(let ((ent (@var{associator} @var{key} @var{alist})))\n"
210 " (and ent (cdr ent)))\n"
211 "@end lisp\n\n"
212 "where @var{associator} is one of @code{assq}, @code{assv} or @code{assoc}.")
1bbd0b84 213#define FUNC_NAME s_scm_assq_ref
0f2d19dd
JB
214{
215 SCM handle;
216
217 handle = scm_sloppy_assq (key, alist);
0c95b57d 218 if (SCM_CONSP (handle))
0f2d19dd
JB
219 {
220 return SCM_CDR (handle);
221 }
222 return SCM_BOOL_F;
223}
1bbd0b84 224#undef FUNC_NAME
0f2d19dd
JB
225
226
a1ec6916 227SCM_DEFINE (scm_assv_ref, "assv-ref", 2, 0, 0,
1bbd0b84 228 (SCM alist, SCM key),
b380b885 229 "Behaves like @code{assq-ref} but uses @code{eqv?} for key comparison.")
1bbd0b84 230#define FUNC_NAME s_scm_assv_ref
0f2d19dd
JB
231{
232 SCM handle;
233
234 handle = scm_sloppy_assv (key, alist);
0c95b57d 235 if (SCM_CONSP (handle))
0f2d19dd
JB
236 {
237 return SCM_CDR (handle);
238 }
239 return SCM_BOOL_F;
240}
1bbd0b84 241#undef FUNC_NAME
0f2d19dd
JB
242
243
a1ec6916 244SCM_DEFINE (scm_assoc_ref, "assoc-ref", 2, 0, 0,
1bbd0b84 245 (SCM alist, SCM key),
b380b885 246 "Behaves like @code{assq-ref} but uses @code{equal?} for key comparison.")
1bbd0b84 247#define FUNC_NAME s_scm_assoc_ref
0f2d19dd
JB
248{
249 SCM handle;
250
251 handle = scm_sloppy_assoc (key, alist);
0c95b57d 252 if (SCM_CONSP (handle))
0f2d19dd
JB
253 {
254 return SCM_CDR (handle);
255 }
256 return SCM_BOOL_F;
257}
1bbd0b84 258#undef FUNC_NAME
0f2d19dd
JB
259
260
261
262\f
263
264
a1ec6916 265SCM_DEFINE (scm_assq_set_x, "assq-set!", 3, 0, 0,
1bbd0b84 266 (SCM alist, SCM key, SCM val),
b380b885
MD
267 "@deffnx primitive assv-set! alist key value\n"
268 "@deffnx primitive assoc-set! alist key value\n"
269 "Reassociate @var{key} in @var{alist} with @var{value}: find any existing\n"
270 "@var{alist} entry for @var{key} and associate it with the new\n"
271 "@var{value}. If @var{alist} does not contain an entry for @var{key},\n"
272 "add a new one. Return the (possibly new) alist.\n\n"
273 "These functions do not attempt to verify the structure of @var{alist},\n"
274 "and so may cause unusual results if passed an object that is not an\n"
275 "association list.")
1bbd0b84 276#define FUNC_NAME s_scm_assq_set_x
0f2d19dd
JB
277{
278 SCM handle;
279
280 handle = scm_sloppy_assq (key, alist);
0c95b57d 281 if (SCM_CONSP (handle))
0f2d19dd
JB
282 {
283 SCM_SETCDR (handle, val);
284 return alist;
285 }
286 else
287 return scm_acons (key, val, alist);
288}
1bbd0b84 289#undef FUNC_NAME
0f2d19dd 290
a1ec6916 291SCM_DEFINE (scm_assv_set_x, "assv-set!", 3, 0, 0,
1bbd0b84 292 (SCM alist, SCM key, SCM val),
b380b885 293 "Behaves like @code{assq-set!} but uses @code{eqv?} for key comparison.")
1bbd0b84 294#define FUNC_NAME s_scm_assv_set_x
0f2d19dd
JB
295{
296 SCM handle;
297
298 handle = scm_sloppy_assv (key, alist);
0c95b57d 299 if (SCM_CONSP (handle))
0f2d19dd
JB
300 {
301 SCM_SETCDR (handle, val);
302 return alist;
303 }
304 else
305 return scm_acons (key, val, alist);
306}
1bbd0b84 307#undef FUNC_NAME
0f2d19dd 308
a1ec6916 309SCM_DEFINE (scm_assoc_set_x, "assoc-set!", 3, 0, 0,
1bbd0b84 310 (SCM alist, SCM key, SCM val),
b380b885 311 "Behaves like @code{assq-set!} but uses @code{equal?} for key comparison.")
1bbd0b84 312#define FUNC_NAME s_scm_assoc_set_x
0f2d19dd
JB
313{
314 SCM handle;
315
316 handle = scm_sloppy_assoc (key, alist);
0c95b57d 317 if (SCM_CONSP (handle))
0f2d19dd
JB
318 {
319 SCM_SETCDR (handle, val);
320 return alist;
321 }
322 else
323 return scm_acons (key, val, alist);
324}
1bbd0b84 325#undef FUNC_NAME
0f2d19dd
JB
326
327
328\f
329
a1ec6916 330SCM_DEFINE (scm_assq_remove_x, "assq-remove!", 2, 0, 0,
1bbd0b84 331 (SCM alist, SCM key),
b380b885
MD
332 "@deffnx primitive assv-remove! alist key\n"
333 "@deffnx primitive assoc-remove! alist key\n"
623ada63 334 "Delete the first entry in @var{alist} associated with @var{key}, and return\n"
b380b885 335 "the resulting alist.")
1bbd0b84 336#define FUNC_NAME s_scm_assq_remove_x
0f2d19dd
JB
337{
338 SCM handle;
339
340 handle = scm_sloppy_assq (key, alist);
623ada63
MV
341 if (SCM_CONSP (handle))
342 alist = scm_delq_x (handle, alist);
343
5d253852 344 return alist;
0f2d19dd 345}
1bbd0b84 346#undef FUNC_NAME
0f2d19dd
JB
347
348
a1ec6916 349SCM_DEFINE (scm_assv_remove_x, "assv-remove!", 2, 0, 0,
1bbd0b84 350 (SCM alist, SCM key),
b380b885 351 "Behaves like @code{assq-remove!} but uses @code{eqv?} for key comparison.")
1bbd0b84 352#define FUNC_NAME s_scm_assv_remove_x
0f2d19dd
JB
353{
354 SCM handle;
355
356 handle = scm_sloppy_assv (key, alist);
623ada63
MV
357 if (SCM_CONSP (handle))
358 alist = scm_delq_x (handle, alist);
359
5d253852 360 return alist;
0f2d19dd 361}
1bbd0b84 362#undef FUNC_NAME
0f2d19dd
JB
363
364
a1ec6916 365SCM_DEFINE (scm_assoc_remove_x, "assoc-remove!", 2, 0, 0,
1bbd0b84 366 (SCM alist, SCM key),
b380b885 367 "Behaves like @code{assq-remove!} but uses @code{equal?} for key comparison.")
1bbd0b84 368#define FUNC_NAME s_scm_assoc_remove_x
0f2d19dd
JB
369{
370 SCM handle;
371
372 handle = scm_sloppy_assoc (key, alist);
623ada63
MV
373 if (SCM_CONSP (handle))
374 alist = scm_delq_x (handle, alist);
375
5d253852 376 return alist;
0f2d19dd 377}
1bbd0b84 378#undef FUNC_NAME
0f2d19dd
JB
379
380
381\f
382
383
1cc91f1b 384
0f2d19dd
JB
385void
386scm_init_alist ()
0f2d19dd 387{
a0599745 388#include "libguile/alist.x"
0f2d19dd
JB
389}
390
89e00824
ML
391
392/*
393 Local Variables:
394 c-file-style: "gnu"
395 End:
396*/