*** empty log message ***
[bpt/guile.git] / libguile / weaks.c
CommitLineData
22a52da1 1/* Copyright (C) 1995,1996,1998,2000,2001 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, 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.
82892bed 40 * If you do not wish that, delete this exception notice. */
1bbd0b84 41
1bbd0b84 42
0f2d19dd 43\f
592996c9 44
a0599745
MD
45#include "libguile/_scm.h"
46#include "libguile/vectors.h"
0f2d19dd 47
a0599745
MD
48#include "libguile/validate.h"
49#include "libguile/weaks.h"
0f2d19dd 50
592996c9 51\f
0f2d19dd
JB
52
53/* {Weak Vectors}
54 */
55
56
592996c9
DH
57/* Allocate memory for a weak vector on behalf of the caller. The allocated
58 * vector will be of the given weak vector subtype. It will contain size
59 * elements which are initialized with the 'fill' object, or, if 'fill' is
60 * undefined, with an unspecified object.
61 */
62static SCM
63allocate_weak_vector (scm_t_bits type, SCM size, SCM fill, const char* caller)
64#define FUNC_NAME caller
65{
66 if (SCM_INUMP (size))
67 {
68 size_t c_size;
69 SCM v;
70
71 SCM_ASSERT_RANGE (1, size, SCM_INUM (size) >= 0);
72 c_size = SCM_INUM (size);
73
592996c9
DH
74 if (c_size > 0)
75 {
76 scm_t_bits *base;
77 size_t j;
78
79 if (SCM_UNBNDP (fill))
80 fill = SCM_UNSPECIFIED;
81
82 SCM_ASSERT_RANGE (1, size, c_size <= SCM_VECTOR_MAX_LENGTH);
83 base = scm_must_malloc (c_size * sizeof (scm_t_bits), FUNC_NAME);
84 for (j = 0; j != c_size; ++j)
85 base[j] = SCM_UNPACK (fill);
16d4699b
MV
86 v = scm_alloc_double_cell (SCM_MAKE_VECTOR_TAG (c_size,
87 scm_tc7_wvect),
88 (scm_t_bits) base,
89 type,
90 SCM_UNPACK (SCM_EOL));
592996c9
DH
91 scm_remember_upto_here_1 (fill);
92 }
93 else
94 {
16d4699b
MV
95 v = scm_alloc_double_cell (SCM_MAKE_VECTOR_TAG (0,
96 scm_tc7_wvect),
97 (scm_t_bits) NULL,
98 type,
99 SCM_UNPACK (SCM_EOL));
592996c9
DH
100 }
101
102 return v;
103 }
104 else if (SCM_BIGP (size))
105 SCM_OUT_OF_RANGE (1, size);
106 else
107 SCM_WRONG_TYPE_ARG (1, size);
108}
109#undef FUNC_NAME
110
111
3b3b36dd 112SCM_DEFINE (scm_make_weak_vector, "make-weak-vector", 1, 1, 0,
1e6808ea 113 (SCM size, SCM fill),
b380b885 114 "Return a weak vector with @var{size} elements. If the optional\n"
1e6808ea
MG
115 "argument @var{fill} is given, all entries in the vector will be\n"
116 "set to @var{fill}. The default value for @var{fill} is the\n"
117 "empty list.")
1bbd0b84 118#define FUNC_NAME s_scm_make_weak_vector
0f2d19dd 119{
592996c9 120 return allocate_weak_vector (0, size, fill, FUNC_NAME);
0f2d19dd 121}
1bbd0b84 122#undef FUNC_NAME
0f2d19dd
JB
123
124
1bbd0b84 125SCM_REGISTER_PROC(s_list_to_weak_vector, "list->weak-vector", 1, 0, 0, scm_weak_vector);
1cc91f1b 126
3b3b36dd 127SCM_DEFINE (scm_weak_vector, "weak-vector", 0, 0, 1,
1bbd0b84 128 (SCM l),
8f85c0c6 129 "@deffnx {Scheme Procedure} list->weak-vector l\n"
1e6808ea
MG
130 "Construct a weak vector from a list: @code{weak-vector} uses\n"
131 "the list of its arguments while @code{list->weak-vector} uses\n"
132 "its only argument @var{l} (a list) to construct a weak vector\n"
133 "the same way @code{list->vector} would.")
1bbd0b84 134#define FUNC_NAME s_scm_weak_vector
0f2d19dd
JB
135{
136 SCM res;
22a52da1 137 SCM *data;
c014a02e 138 long i;
0f2d19dd 139
22a52da1
DH
140 /* Dirk:FIXME:: In case of multiple threads, the list might get corrupted
141 while the vector is being created. */
0f2d19dd 142 i = scm_ilength (l);
1bbd0b84 143 SCM_ASSERT (i >= 0, l, SCM_ARG1, FUNC_NAME);
0f2d19dd
JB
144 res = scm_make_weak_vector (SCM_MAKINUM (i), SCM_UNSPECIFIED);
145 data = SCM_VELTS (res);
22a52da1
DH
146
147 while (!SCM_NULLP (l))
148 {
149 *data++ = SCM_CAR (l);
150 l = SCM_CDR (l);
151 }
152
0f2d19dd
JB
153 return res;
154}
1bbd0b84 155#undef FUNC_NAME
0f2d19dd
JB
156
157
3b3b36dd 158SCM_DEFINE (scm_weak_vector_p, "weak-vector?", 1, 0, 0,
1e6808ea 159 (SCM obj),
5352393c
MG
160 "Return @code{#t} if @var{obj} is a weak vector. Note that all\n"
161 "weak hashes are also weak vectors.")
1bbd0b84 162#define FUNC_NAME s_scm_weak_vector_p
0f2d19dd 163{
592996c9 164 return SCM_BOOL (SCM_WVECTP (obj) && !SCM_IS_WHVEC (obj));
0f2d19dd 165}
1bbd0b84 166#undef FUNC_NAME
0f2d19dd 167
0f2d19dd
JB
168\f
169
3b3b36dd 170SCM_DEFINE (scm_make_weak_key_hash_table, "make-weak-key-hash-table", 1, 0, 0,
1e6808ea 171 (SCM size),
8f85c0c6
NJ
172 "@deffnx {Scheme Procedure} make-weak-value-hash-table size\n"
173 "@deffnx {Scheme Procedure} make-doubly-weak-hash-table size\n"
1e6808ea
MG
174 "Return a weak hash table with @var{size} buckets. As with any\n"
175 "hash table, choosing a good size for the table requires some\n"
176 "caution.\n"
177 "\n"
178 "You can modify weak hash tables in exactly the same way you\n"
179 "would modify regular hash tables. (@pxref{Hash Tables})")
1bbd0b84 180#define FUNC_NAME s_scm_make_weak_key_hash_table
0f2d19dd 181{
592996c9 182 return allocate_weak_vector (1, size, SCM_EOL, FUNC_NAME);
0f2d19dd 183}
1bbd0b84 184#undef FUNC_NAME
0f2d19dd
JB
185
186
a1ec6916 187SCM_DEFINE (scm_make_weak_value_hash_table, "make-weak-value-hash-table", 1, 0, 0,
1e6808ea 188 (SCM size),
e3239868
DH
189 "Return a hash table with weak values with @var{size} buckets.\n"
190 "(@pxref{Hash Tables})")
1bbd0b84 191#define FUNC_NAME s_scm_make_weak_value_hash_table
0f2d19dd 192{
592996c9 193 return allocate_weak_vector (2, size, SCM_EOL, FUNC_NAME);
0f2d19dd 194}
1bbd0b84 195#undef FUNC_NAME
0f2d19dd
JB
196
197
a1ec6916 198SCM_DEFINE (scm_make_doubly_weak_hash_table, "make-doubly-weak-hash-table", 1, 0, 0,
1e6808ea 199 (SCM size),
e3239868
DH
200 "Return a hash table with weak keys and values with @var{size}\n"
201 "buckets. (@pxref{Hash Tables})")
1bbd0b84 202#define FUNC_NAME s_scm_make_doubly_weak_hash_table
0f2d19dd 203{
592996c9 204 return allocate_weak_vector (3, size, SCM_EOL, FUNC_NAME);
0f2d19dd 205}
1bbd0b84 206#undef FUNC_NAME
0f2d19dd 207
592996c9 208
3b3b36dd 209SCM_DEFINE (scm_weak_key_hash_table_p, "weak-key-hash-table?", 1, 0, 0,
1e6808ea 210 (SCM obj),
8f85c0c6
NJ
211 "@deffnx {Scheme Procedure} weak-value-hash-table? obj\n"
212 "@deffnx {Scheme Procedure} doubly-weak-hash-table? obj\n"
5352393c
MG
213 "Return @code{#t} if @var{obj} is the specified weak hash\n"
214 "table. Note that a doubly weak hash table is neither a weak key\n"
215 "nor a weak value hash table.")
1bbd0b84 216#define FUNC_NAME s_scm_weak_key_hash_table_p
0f2d19dd 217{
592996c9 218 return SCM_BOOL (SCM_WVECTP (obj) && SCM_IS_WHVEC (obj));
0f2d19dd 219}
1bbd0b84 220#undef FUNC_NAME
0f2d19dd
JB
221
222
a1ec6916 223SCM_DEFINE (scm_weak_value_hash_table_p, "weak-value-hash-table?", 1, 0, 0,
1e6808ea
MG
224 (SCM obj),
225 "Return @code{#t} if @var{obj} is a weak value hash table.")
1bbd0b84 226#define FUNC_NAME s_scm_weak_value_hash_table_p
0f2d19dd 227{
592996c9 228 return SCM_BOOL (SCM_WVECTP (obj) && SCM_IS_WHVEC_V (obj));
0f2d19dd 229}
1bbd0b84 230#undef FUNC_NAME
0f2d19dd
JB
231
232
a1ec6916 233SCM_DEFINE (scm_doubly_weak_hash_table_p, "doubly-weak-hash-table?", 1, 0, 0,
1e6808ea
MG
234 (SCM obj),
235 "Return @code{#t} if @var{obj} is a doubly weak hash table.")
1bbd0b84 236#define FUNC_NAME s_scm_doubly_weak_hash_table_p
0f2d19dd 237{
592996c9 238 return SCM_BOOL (SCM_WVECTP (obj) && SCM_IS_WHVEC_B (obj));
0f2d19dd 239}
1bbd0b84 240#undef FUNC_NAME
0f2d19dd 241
592996c9 242
d662820a 243static void *
e81d98ec
DH
244scm_weak_vector_gc_init (void *dummy1 SCM_UNUSED,
245 void *dummy2 SCM_UNUSED,
246 void *dummy3 SCM_UNUSED)
d662820a
MD
247{
248 scm_weak_vectors = SCM_EOL;
249
250 return 0;
251}
252
592996c9 253
d662820a 254static void *
e81d98ec
DH
255scm_mark_weak_vector_spines (void *dummy1 SCM_UNUSED,
256 void *dummy2 SCM_UNUSED,
257 void *dummy3 SCM_UNUSED)
d662820a
MD
258{
259 SCM w;
260
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 SCM *ptr;
266 SCM obj;
c014a02e
ML
267 long j;
268 long n;
d662820a
MD
269
270 obj = w;
271 ptr = SCM_VELTS (w);
bfa974f0 272 n = SCM_VECTOR_LENGTH (w);
d662820a
MD
273 for (j = 0; j < n; ++j)
274 {
275 SCM alist;
276
277 alist = ptr[j];
278 while ( SCM_CONSP (alist)
279 && !SCM_GCMARKP (alist)
280 && SCM_CONSP (SCM_CAR (alist)))
281 {
282 SCM_SETGCMARK (alist);
283 SCM_SETGCMARK (SCM_CAR (alist));
fd336365 284 alist = SCM_CDR (alist);
d662820a
MD
285 }
286 }
287 }
288 }
289
290 return 0;
291}
292
592996c9 293
d662820a 294static void *
e81d98ec
DH
295scm_scan_weak_vectors (void *dummy1 SCM_UNUSED,
296 void *dummy2 SCM_UNUSED,
297 void *dummy3 SCM_UNUSED)
d662820a
MD
298{
299 SCM *ptr, w;
300 for (w = scm_weak_vectors; !SCM_NULLP (w); w = SCM_WVECT_GC_CHAIN (w))
301 {
302 if (!SCM_IS_WHVEC_ANY (w))
303 {
304 register long j, n;
305
306 ptr = SCM_VELTS (w);
bfa974f0 307 n = SCM_VECTOR_LENGTH (w);
d662820a 308 for (j = 0; j < n; ++j)
406c7d90 309 if (SCM_FREE_CELL_P (ptr[j]))
d662820a
MD
310 ptr[j] = SCM_BOOL_F;
311 }
312 else /* if (SCM_IS_WHVEC_ANY (scm_weak_vectors[i])) */
313 {
314 SCM obj = w;
c014a02e
ML
315 register long n = SCM_VECTOR_LENGTH (w);
316 register long j;
d9dcd933
ML
317 int weak_keys = SCM_IS_WHVEC (obj) || SCM_IS_WHVEC_B (obj);
318 int weak_values = SCM_IS_WHVEC_V (obj) || SCM_IS_WHVEC_B (obj);
d662820a
MD
319
320 ptr = SCM_VELTS (w);
321
322 for (j = 0; j < n; ++j)
323 {
324 SCM * fixup;
325 SCM alist;
d662820a
MD
326
327 fixup = ptr + j;
328 alist = *fixup;
329
330 while ( SCM_CONSP (alist)
331 && SCM_CONSP (SCM_CAR (alist)))
332 {
333 SCM key;
334 SCM value;
335
336 key = SCM_CAAR (alist);
337 value = SCM_CDAR (alist);
406c7d90
DH
338 if ( (weak_keys && SCM_FREE_CELL_P (key))
339 || (weak_values && SCM_FREE_CELL_P (value)))
d662820a
MD
340 {
341 *fixup = SCM_CDR (alist);
342 }
343 else
344 fixup = SCM_CDRLOC (alist);
345 alist = SCM_CDR (alist);
346 }
347 }
348 }
349 }
350
351 return 0;
352}
353
0f2d19dd
JB
354\f
355
d662820a
MD
356void
357scm_weaks_prehistory ()
358{
359 scm_c_hook_add (&scm_before_mark_c_hook, scm_weak_vector_gc_init, 0, 0);
360 scm_c_hook_add (&scm_before_sweep_c_hook, scm_mark_weak_vector_spines, 0, 0);
361 scm_c_hook_add (&scm_after_sweep_c_hook, scm_scan_weak_vectors, 0, 0);
362}
363
592996c9 364
0f2d19dd
JB
365void
366scm_init_weaks ()
0f2d19dd 367{
8dc9439f 368#ifndef SCM_MAGIC_SNARFER
a0599745 369#include "libguile/weaks.x"
8dc9439f 370#endif
0f2d19dd
JB
371}
372
89e00824
ML
373
374/*
375 Local Variables:
376 c-file-style: "gnu"
377 End:
378*/