f340922feddf6dc40ca08ffed546063b87810297
[bpt/guile.git] / libguile / weaks.c
1 /* Copyright (C) 1995,1996,1998, 2000 Free Software Foundation, Inc.
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
15 * the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
16 * Boston, MA 02111-1307 USA
17 *
18 * As a special exception, Free Software Foundation gives permission
19 * for additional uses of the text contained in its release of this library.
20 *
21 * The exception is that, if you link this 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 this 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
31 * Free Software Foundation as part of this library. If you copy
32 * code from other releases distributed under the terms of the GPL into a copy of
33 * this library, 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 such code.
37 *
38 * If you write modifications of your own for this library, it is your choice
39 * whether to permit this exception to apply to your modifications.
40 * If you do not wish that, delete this exception notice. */
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
45 \f
46 #include <stdio.h>
47 #include "libguile/_scm.h"
48 #include "libguile/vectors.h"
49
50 #include "libguile/validate.h"
51 #include "libguile/weaks.h"
52 \f
53
54
55 /* {Weak Vectors}
56 */
57
58
59 SCM_DEFINE (scm_make_weak_vector, "make-weak-vector", 1, 1, 0,
60 (SCM k, SCM fill),
61 "Return a weak vector with @var{size} elements. If the optional\n"
62 "argument @var{fill} is given, all entries in the vector will be set to\n"
63 "@var{fill}. The default value for @var{fill} is the empty list.")
64 #define FUNC_NAME s_scm_make_weak_vector
65 {
66 /* Dirk:FIXME:: We should probably rather use a double cell for weak vectors. */
67 SCM v;
68 v = scm_make_vector (scm_sum (k, SCM_MAKINUM (2)), fill);
69 SCM_DEFER_INTS;
70 SCM_SET_VECTOR_LENGTH (v, SCM_INUM (k), scm_tc7_wvect);
71 SCM_SETVELTS(v, SCM_VELTS(v) + 2);
72 SCM_VELTS(v)[-2] = SCM_EOL;
73 SCM_UNPACK (SCM_VELTS (v)[-1]) = 0;
74 SCM_ALLOW_INTS;
75 return v;
76 }
77 #undef FUNC_NAME
78
79
80 SCM_REGISTER_PROC(s_list_to_weak_vector, "list->weak-vector", 1, 0, 0, scm_weak_vector);
81
82 SCM_DEFINE (scm_weak_vector, "weak-vector", 0, 0, 1,
83 (SCM l),
84 "@deffnx primitive list->weak-vector l\n"
85 "Construct a weak vector from a list: @code{weak-vector} uses the list of\n"
86 "its arguments while @code{list->weak-vector} uses its only argument\n"
87 "@var{l} (a list) to construct a weak vector the same way\n"
88 "@code{vector->list} would.")
89 #define FUNC_NAME s_scm_weak_vector
90 {
91 SCM res;
92 register SCM *data;
93 long i;
94
95 i = scm_ilength (l);
96 SCM_ASSERT (i >= 0, l, SCM_ARG1, FUNC_NAME);
97 res = scm_make_weak_vector (SCM_MAKINUM (i), SCM_UNSPECIFIED);
98 data = SCM_VELTS (res);
99 for (;
100 i && SCM_CONSP (l);
101 --i, l = SCM_CDR (l))
102 *data++ = SCM_CAR (l);
103 return res;
104 }
105 #undef FUNC_NAME
106
107
108 SCM_DEFINE (scm_weak_vector_p, "weak-vector?", 1, 0, 0,
109 (SCM x),
110 "Return @var{#t} if @var{obj} is a weak vector. Note that all weak\n"
111 "hashes are also weak vectors.")
112 #define FUNC_NAME s_scm_weak_vector_p
113 {
114 return SCM_BOOL(SCM_WVECTP (x) && !SCM_IS_WHVEC (x));
115 }
116 #undef FUNC_NAME
117
118
119
120 \f
121
122
123
124 SCM_DEFINE (scm_make_weak_key_hash_table, "make-weak-key-hash-table", 1, 0, 0,
125 (SCM k),
126 "@deffnx primitive make-weak-value-hash-table size\n"
127 "@deffnx primitive make-doubly-weak-hash-table size\n"
128 "Return a weak hash table with @var{size} buckets. As with any hash\n"
129 "table, choosing a good size for the table requires some caution.\n\n"
130 "You can modify weak hash tables in exactly the same way you would modify\n"
131 "regular hash tables. (@pxref{Hash Tables})")
132 #define FUNC_NAME s_scm_make_weak_key_hash_table
133 {
134 SCM v;
135 SCM_VALIDATE_INUM (1,k);
136 v = scm_make_weak_vector (k, SCM_EOL);
137 SCM_DEFER_INTS;
138 SCM_UNPACK (SCM_VELTS (v)[-1]) = 1;
139 SCM_ALLOW_INTS;
140 return v;
141 }
142 #undef FUNC_NAME
143
144
145 SCM_DEFINE (scm_make_weak_value_hash_table, "make-weak-value-hash-table", 1, 0, 0,
146 (SCM k),
147 "Return a hash table with weak values with @var{size} buckets.\n"
148 "(@pxref{Hash Tables})")
149 #define FUNC_NAME s_scm_make_weak_value_hash_table
150 {
151 SCM v;
152 SCM_VALIDATE_INUM (1,k);
153 v = scm_make_weak_vector (k, SCM_EOL);
154 SCM_DEFER_INTS;
155 SCM_UNPACK (SCM_VELTS (v)[-1]) = 2;
156 SCM_ALLOW_INTS;
157 return v;
158 }
159 #undef FUNC_NAME
160
161
162
163 SCM_DEFINE (scm_make_doubly_weak_hash_table, "make-doubly-weak-hash-table", 1, 0, 0,
164 (SCM k),
165 "Return a hash table with weak keys and values with @var{size}\n"
166 "buckets. (@pxref{Hash Tables})")
167 #define FUNC_NAME s_scm_make_doubly_weak_hash_table
168 {
169 SCM v;
170 SCM_VALIDATE_INUM (1,k);
171 v = scm_make_weak_vector (k, SCM_EOL);
172 SCM_DEFER_INTS;
173 SCM_UNPACK (SCM_VELTS (v)[-1]) = 3;
174 SCM_ALLOW_INTS;
175 return v;
176 }
177 #undef FUNC_NAME
178
179 SCM_DEFINE (scm_weak_key_hash_table_p, "weak-key-hash-table?", 1, 0, 0,
180 (SCM x),
181 "@deffnx primitive weak-value-hash-table? obj\n"
182 "@deffnx primitive doubly-weak-hash-table? obj\n"
183 "Return @var{#t} if @var{obj} is the specified weak hash table. Note\n"
184 "that a doubly weak hash table is neither a weak key nor a weak value\n"
185 "hash table.")
186 #define FUNC_NAME s_scm_weak_key_hash_table_p
187 {
188 return SCM_BOOL(SCM_WVECTP (x) && SCM_IS_WHVEC(x));
189 }
190 #undef FUNC_NAME
191
192
193 SCM_DEFINE (scm_weak_value_hash_table_p, "weak-value-hash-table?", 1, 0, 0,
194 (SCM x),
195 "Return @var{#t} if @var{x} is a weak value hash table.")
196 #define FUNC_NAME s_scm_weak_value_hash_table_p
197 {
198 return SCM_BOOL(SCM_WVECTP (x) && SCM_IS_WHVEC_V(x));
199 }
200 #undef FUNC_NAME
201
202
203 SCM_DEFINE (scm_doubly_weak_hash_table_p, "doubly-weak-hash-table?", 1, 0, 0,
204 (SCM x),
205 "Return @var{#t} if @var{x} is a doubly weak hash table.")
206 #define FUNC_NAME s_scm_doubly_weak_hash_table_p
207 {
208 return SCM_BOOL(SCM_WVECTP (x) && SCM_IS_WHVEC_B (x));
209 }
210 #undef FUNC_NAME
211
212 static void *
213 scm_weak_vector_gc_init (void *dummy1, void *dummy2, void *dummy3)
214 {
215 scm_weak_vectors = SCM_EOL;
216
217 return 0;
218 }
219
220 static void *
221 scm_mark_weak_vector_spines (void *dummy1, void *dummy2, void *dummy3)
222 {
223 SCM w;
224
225 for (w = scm_weak_vectors; !SCM_NULLP (w); w = SCM_WVECT_GC_CHAIN (w))
226 {
227 if (SCM_IS_WHVEC_ANY (w))
228 {
229 SCM *ptr;
230 SCM obj;
231 int j;
232 int n;
233
234 obj = w;
235 ptr = SCM_VELTS (w);
236 n = SCM_VECTOR_LENGTH (w);
237 for (j = 0; j < n; ++j)
238 {
239 SCM alist;
240
241 alist = ptr[j];
242 while ( SCM_CONSP (alist)
243 && !SCM_GCMARKP (alist)
244 && SCM_CONSP (SCM_CAR (alist)))
245 {
246 SCM_SETGCMARK (alist);
247 SCM_SETGCMARK (SCM_CAR (alist));
248 alist = SCM_CDR (alist);
249 }
250 }
251 }
252 }
253
254 return 0;
255 }
256
257 static void *
258 scm_scan_weak_vectors (void *dummy1, void *dummy2, void *dummy3)
259 {
260 SCM *ptr, w;
261 for (w = scm_weak_vectors; !SCM_NULLP (w); w = SCM_WVECT_GC_CHAIN (w))
262 {
263 if (!SCM_IS_WHVEC_ANY (w))
264 {
265 register long j, n;
266
267 ptr = SCM_VELTS (w);
268 n = SCM_VECTOR_LENGTH (w);
269 for (j = 0; j < n; ++j)
270 if (SCM_FREE_CELL_P (ptr[j]))
271 ptr[j] = SCM_BOOL_F;
272 }
273 else /* if (SCM_IS_WHVEC_ANY (scm_weak_vectors[i])) */
274 {
275 SCM obj = w;
276 register long n = SCM_VECTOR_LENGTH (w);
277 register long j;
278 int weak_keys = SCM_IS_WHVEC (obj) || SCM_IS_WHVEC_B (obj);
279 int weak_values = SCM_IS_WHVEC_V (obj) || SCM_IS_WHVEC_B (obj);
280
281 ptr = SCM_VELTS (w);
282
283 for (j = 0; j < n; ++j)
284 {
285 SCM * fixup;
286 SCM alist;
287
288 fixup = ptr + j;
289 alist = *fixup;
290
291 while ( SCM_CONSP (alist)
292 && SCM_CONSP (SCM_CAR (alist)))
293 {
294 SCM key;
295 SCM value;
296
297 key = SCM_CAAR (alist);
298 value = SCM_CDAR (alist);
299 if ( (weak_keys && SCM_FREE_CELL_P (key))
300 || (weak_values && SCM_FREE_CELL_P (value)))
301 {
302 *fixup = SCM_CDR (alist);
303 }
304 else
305 fixup = SCM_CDRLOC (alist);
306 alist = SCM_CDR (alist);
307 }
308 }
309 }
310 }
311
312 return 0;
313 }
314
315
316 \f
317
318
319 void
320 scm_weaks_prehistory ()
321 {
322 scm_c_hook_add (&scm_before_mark_c_hook, scm_weak_vector_gc_init, 0, 0);
323 scm_c_hook_add (&scm_before_sweep_c_hook, scm_mark_weak_vector_spines, 0, 0);
324 scm_c_hook_add (&scm_after_sweep_c_hook, scm_scan_weak_vectors, 0, 0);
325 }
326
327 void
328 scm_init_weaks ()
329 {
330 #ifndef SCM_MAGIC_SNARFER
331 #include "libguile/weaks.x"
332 #endif
333 }
334
335
336 /*
337 Local Variables:
338 c-file-style: "gnu"
339 End:
340 */