ce27548229467e64b9365e478bc1b37c9e65526e
[bpt/guile.git] / libguile / fluids.c
1 /* Copyright (C) 1996,1997,2000,2001, 2004, 2006 Free Software Foundation, Inc.
2 *
3 * This library is free software; you can redistribute it and/or
4 * modify it under the terms of the GNU Lesser General Public
5 * License as published by the Free Software Foundation; either
6 * version 2.1 of the License, or (at your option) any later version.
7 *
8 * This library 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 GNU
11 * Lesser General Public License for more details.
12 *
13 * You should have received a copy of the GNU Lesser General Public
14 * License along with this library; if not, write to the Free Software
15 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
16 */
17
18 #include <stdio.h>
19 #include <string.h>
20
21 #include "libguile/_scm.h"
22 #include "libguile/print.h"
23 #include "libguile/smob.h"
24 #include "libguile/dynwind.h"
25 #include "libguile/fluids.h"
26 #include "libguile/alist.h"
27 #include "libguile/eval.h"
28 #include "libguile/ports.h"
29 #include "libguile/deprecation.h"
30 #include "libguile/lang.h"
31 #include "libguile/validate.h"
32
33 #define FLUID_GROW 20
34
35 /* A lot of the complexity below stems from the desire to reuse fluid
36 slots. Normally, fluids should be pretty global and long-lived
37 things, so that reusing their slots should not be overly critical,
38 but it is the right thing to do nevertheless. The code therefore
39 puts the burdon on allocating and collection fluids and keeps
40 accessing fluids lock free. This is achieved by manipulating the
41 global state of the fluid machinery mostly in single threaded
42 sections.
43
44 Reusing a fluid slot means that it must be reset to #f in all
45 dynamic states. We do this by maintaining a weak list of all
46 dynamic states, which is used after a GC to do the resetting.
47
48 Also, the fluid vectors in the dynamic states need to grow from
49 time to time when more fluids are created. We do this in a single
50 threaded section so that threads do not need to lock when accessing
51 a fluid in the normal way.
52 */
53
54 static scm_i_pthread_mutex_t fluid_admin_mutex = SCM_I_PTHREAD_MUTEX_INITIALIZER;
55
56 /* Protected by fluid_admin_mutex, but also accessed during GC. See
57 next_fluid_num for a discussion of this.
58 */
59 static size_t allocated_fluids_len = 0;
60 static size_t allocated_fluids_num = 0;
61 static char *allocated_fluids = NULL;
62
63 static scm_t_bits tc16_fluid;
64
65 #define IS_FLUID(x) SCM_SMOB_PREDICATE(tc16_fluid, (x))
66 #define FLUID_NUM(x) ((size_t)SCM_SMOB_DATA(x))
67 #define FLUID_NEXT(x) SCM_SMOB_OBJECT_2(x)
68 #define FLUID_NEXT_LOC(x) SCM_SMOB_OBJECT_2_LOC(x)
69 #define SET_FLUID_NEXT(x,y) SCM_SET_SMOB_OBJECT_2((x), (y))
70
71 static scm_t_bits tc16_dynamic_state;
72
73 #define IS_DYNAMIC_STATE(x) SCM_SMOB_PREDICATE(tc16_dynamic_state, (x))
74 #define DYNAMIC_STATE_FLUIDS(x) SCM_SMOB_OBJECT(x)
75 #define SET_DYNAMIC_STATE_FLUIDS(x, y) SCM_SET_SMOB_OBJECT((x), (y))
76 #define DYNAMIC_STATE_NEXT(x) SCM_SMOB_OBJECT_2(x)
77 #define DYNAMIC_STATE_NEXT_LOC(x) SCM_SMOB_OBJECT_2_LOC(x)
78 #define SET_DYNAMIC_STATE_NEXT(x, y) SCM_SET_SMOB_OBJECT_2((x), (y))
79
80 /* Weak lists of all dynamic states and all fluids.
81 */
82 static SCM all_dynamic_states = SCM_EOL;
83 static SCM all_fluids = SCM_EOL;
84
85 /* Make sure that all states have the right size. This must be called
86 while fluid_admin_mutex is held.
87 */
88 static void
89 resize_all_states ()
90 {
91 SCM new_vectors, state;
92
93 /* Replacing the vector of a dynamic state must be done atomically:
94 the old values must be copied into the new vector and the new
95 vector must be installed without someone modifying the old vector
96 concurrently. Since accessing a fluid should be lock-free, we
97 need to put all threads to sleep when replacing a vector.
98 However, when being single threaded, it is best not to do much.
99 Therefore, we allocate the new vectors before going single
100 threaded.
101 */
102
103 new_vectors = SCM_EOL;
104 for (state = all_dynamic_states; !scm_is_null (state);
105 state = DYNAMIC_STATE_NEXT (state))
106 new_vectors = scm_cons (scm_c_make_vector (allocated_fluids_len,
107 SCM_BOOL_F),
108 new_vectors);
109
110 scm_i_thread_put_to_sleep ();
111 for (state = all_dynamic_states; !scm_is_null (state);
112 state = DYNAMIC_STATE_NEXT (state))
113 {
114 SCM old_fluids = DYNAMIC_STATE_FLUIDS (state);
115 SCM new_fluids = SCM_CAR (new_vectors);
116 size_t i, old_len = SCM_SIMPLE_VECTOR_LENGTH (old_fluids);
117
118 for (i = 0; i < old_len; i++)
119 SCM_SIMPLE_VECTOR_SET (new_fluids, i,
120 SCM_SIMPLE_VECTOR_REF (old_fluids, i));
121 SET_DYNAMIC_STATE_FLUIDS (state, new_fluids);
122 new_vectors = SCM_CDR (new_vectors);
123 }
124 scm_i_thread_wake_up ();
125 }
126
127 /* This is called during GC, that is, while being single threaded.
128 See next_fluid_num for a discussion why it is safe to access
129 allocated_fluids here.
130 */
131 static void *
132 scan_dynamic_states_and_fluids (void *dummy1 SCM_UNUSED,
133 void *dummy2 SCM_UNUSED,
134 void *dummy3 SCM_UNUSED)
135 {
136 SCM *statep, *fluidp;
137
138 /* Scan all fluids and deallocate the unmarked ones.
139 */
140 fluidp = &all_fluids;
141 while (!scm_is_null (*fluidp))
142 {
143 if (!SCM_GC_MARK_P (*fluidp))
144 {
145 allocated_fluids_num -= 1;
146 allocated_fluids[FLUID_NUM (*fluidp)] = 0;
147 *fluidp = FLUID_NEXT (*fluidp);
148 }
149 else
150 fluidp = FLUID_NEXT_LOC (*fluidp);
151 }
152
153 /* Scan all dynamic states and remove the unmarked ones. The live
154 ones are updated for unallocated fluids.
155 */
156 statep = &all_dynamic_states;
157 while (!scm_is_null (*statep))
158 {
159 if (!SCM_GC_MARK_P (*statep))
160 *statep = DYNAMIC_STATE_NEXT (*statep);
161 else
162 {
163 SCM fluids = DYNAMIC_STATE_FLUIDS (*statep);
164 size_t len, i;
165
166 len = SCM_SIMPLE_VECTOR_LENGTH (fluids);
167 for (i = 0; i < len && i < allocated_fluids_len; i++)
168 if (allocated_fluids[i] == 0)
169 SCM_SIMPLE_VECTOR_SET (fluids, i, SCM_BOOL_F);
170
171 statep = DYNAMIC_STATE_NEXT_LOC (*statep);
172 }
173 }
174
175 return NULL;
176 }
177
178 static size_t
179 fluid_free (SCM fluid)
180 {
181 /* The real work is done in scan_dynamic_states_and_fluids. We can
182 not touch allocated_fluids etc here since a smob free routine can
183 be run at any time, in any thread.
184 */
185 return 0;
186 }
187
188 static int
189 fluid_print (SCM exp, SCM port, scm_print_state *pstate SCM_UNUSED)
190 {
191 scm_puts ("#<fluid ", port);
192 scm_intprint ((int) FLUID_NUM (exp), 10, port);
193 scm_putc ('>', port);
194 return 1;
195 }
196
197 static size_t
198 next_fluid_num ()
199 {
200 size_t n;
201
202 scm_dynwind_begin (0);
203 scm_i_dynwind_pthread_mutex_lock (&fluid_admin_mutex);
204
205 if ((allocated_fluids_len > 0) &&
206 (allocated_fluids_num == allocated_fluids_len))
207 {
208 /* All fluid numbers are in use. Run a GC to try to free some
209 up.
210 */
211 scm_gc ();
212 }
213
214 if (allocated_fluids_num < allocated_fluids_len)
215 {
216 for (n = 0; n < allocated_fluids_len; n++)
217 if (allocated_fluids[n] == 0)
218 break;
219 }
220 else
221 {
222 /* During the following call, the GC might run and elements of
223 allocated_fluids might bet set to zero. Also,
224 allocated_fluids and allocated_fluids_len are used to scan
225 all dynamic states during GC. Thus we need to make sure that
226 no GC can run while updating these two variables.
227 */
228
229 char *new_allocated_fluids =
230 scm_malloc (allocated_fluids_len + FLUID_GROW);
231
232 /* Copy over old values and initialize rest. GC can not run
233 during these two operations since there is no safe point in
234 them.
235 */
236 memcpy (new_allocated_fluids, allocated_fluids, allocated_fluids_len);
237 memset (new_allocated_fluids + allocated_fluids_len, 0, FLUID_GROW);
238 n = allocated_fluids_len;
239 allocated_fluids = new_allocated_fluids;
240 allocated_fluids_len += FLUID_GROW;
241
242 /* Now allocated_fluids and allocated_fluids_len are valid again
243 and we can allow GCs to occur.
244 */
245 resize_all_states ();
246 }
247
248 allocated_fluids_num += 1;
249 allocated_fluids[n] = 1;
250
251 scm_dynwind_end ();
252 return n;
253 }
254
255 SCM_DEFINE (scm_make_fluid, "make-fluid", 0, 0, 0,
256 (),
257 "Return a newly created fluid.\n"
258 "Fluids are objects that can hold one\n"
259 "value per dynamic state. That is, modifications to this value are\n"
260 "only visible to code that executes with the same dynamic state as\n"
261 "the modifying code. When a new dynamic state is constructed, it\n"
262 "inherits the values from its parent. Because each thread normally executes\n"
263 "with its own dynamic state, you can use fluids for thread local storage.")
264 #define FUNC_NAME s_scm_make_fluid
265 {
266 SCM fluid;
267
268 SCM_NEWSMOB2 (fluid, tc16_fluid,
269 (scm_t_bits) next_fluid_num (), SCM_UNPACK (SCM_EOL));
270
271 /* The GC must not run until the fluid is properly entered into the
272 list.
273 */
274 scm_i_scm_pthread_mutex_lock (&fluid_admin_mutex);
275 SET_FLUID_NEXT (fluid, all_fluids);
276 all_fluids = fluid;
277 scm_i_pthread_mutex_unlock (&fluid_admin_mutex);
278
279 return fluid;
280 }
281 #undef FUNC_NAME
282
283 SCM_DEFINE (scm_fluid_p, "fluid?", 1, 0, 0,
284 (SCM obj),
285 "Return @code{#t} iff @var{obj} is a fluid; otherwise, return\n"
286 "@code{#f}.")
287 #define FUNC_NAME s_scm_fluid_p
288 {
289 return scm_from_bool (IS_FLUID (obj));
290 }
291 #undef FUNC_NAME
292
293 int
294 scm_is_fluid (SCM obj)
295 {
296 return IS_FLUID (obj);
297 }
298
299 size_t
300 scm_i_fluid_num (SCM fluid)
301 {
302 return FLUID_NUM (fluid);
303 }
304
305 SCM_DEFINE (scm_fluid_ref, "fluid-ref", 1, 0, 0,
306 (SCM fluid),
307 "Return the value associated with @var{fluid} in the current\n"
308 "dynamic root. If @var{fluid} has not been set, then return\n"
309 "@code{#f}.")
310 #define FUNC_NAME s_scm_fluid_ref
311 {
312 SCM fluids = DYNAMIC_STATE_FLUIDS (SCM_I_CURRENT_THREAD->dynamic_state);
313
314 SCM_VALIDATE_FLUID (1, fluid);
315 return SCM_SIMPLE_VECTOR_REF (fluids, FLUID_NUM (fluid));
316 }
317 #undef FUNC_NAME
318
319 SCM
320 scm_i_fast_fluid_ref (size_t n)
321 {
322 SCM fluids = DYNAMIC_STATE_FLUIDS (SCM_I_CURRENT_THREAD->dynamic_state);
323 return SCM_SIMPLE_VECTOR_REF (fluids, n);
324 }
325
326 SCM_DEFINE (scm_fluid_set_x, "fluid-set!", 2, 0, 0,
327 (SCM fluid, SCM value),
328 "Set the value associated with @var{fluid} in the current dynamic root.")
329 #define FUNC_NAME s_scm_fluid_set_x
330 {
331 SCM fluids = DYNAMIC_STATE_FLUIDS (SCM_I_CURRENT_THREAD->dynamic_state);
332
333 SCM_VALIDATE_FLUID (1, fluid);
334 SCM_SIMPLE_VECTOR_SET (fluids, FLUID_NUM (fluid), value);
335 return SCM_UNSPECIFIED;
336 }
337 #undef FUNC_NAME
338
339 void
340 scm_i_fast_fluid_set_x (size_t n, SCM value)
341 {
342 SCM fluids = DYNAMIC_STATE_FLUIDS (SCM_I_CURRENT_THREAD->dynamic_state);
343 SCM_SIMPLE_VECTOR_SET (fluids, n, value);
344 }
345
346 static void
347 swap_fluids (SCM data)
348 {
349 SCM fluids = SCM_CAR (data), vals = SCM_CDR (data);
350
351 while (!SCM_NULL_OR_NIL_P (fluids))
352 {
353 SCM fl = SCM_CAR (fluids);
354 SCM old_val = scm_fluid_ref (fl);
355 scm_fluid_set_x (fl, SCM_CAR (vals));
356 SCM_SETCAR (vals, old_val);
357 fluids = SCM_CDR (fluids);
358 vals = SCM_CDR (vals);
359 }
360 }
361
362 /* Swap the fluid values in reverse order. This is important when the
363 same fluid appears multiple times in the fluids list.
364 */
365
366 static void
367 swap_fluids_reverse_aux (SCM fluids, SCM vals)
368 {
369 if (!SCM_NULL_OR_NIL_P (fluids))
370 {
371 SCM fl, old_val;
372
373 swap_fluids_reverse_aux (SCM_CDR (fluids), SCM_CDR (vals));
374 fl = SCM_CAR (fluids);
375 old_val = scm_fluid_ref (fl);
376 scm_fluid_set_x (fl, SCM_CAR (vals));
377 SCM_SETCAR (vals, old_val);
378 }
379 }
380
381 static void
382 swap_fluids_reverse (SCM data)
383 {
384 swap_fluids_reverse_aux (SCM_CAR (data), SCM_CDR (data));
385 }
386
387 static SCM
388 apply_thunk (void *thunk)
389 {
390 return scm_call_0 (SCM_PACK (thunk));
391 }
392
393 SCM_DEFINE (scm_with_fluids, "with-fluids*", 3, 0, 0,
394 (SCM fluids, SCM values, SCM thunk),
395 "Set @var{fluids} to @var{values} temporary, and call @var{thunk}.\n"
396 "@var{fluids} must be a list of fluids and @var{values} must be the same\n"
397 "number of their values to be applied. Each substitution is done\n"
398 "one after another. @var{thunk} must be a procedure with no argument.")
399 #define FUNC_NAME s_scm_with_fluids
400 {
401 return scm_c_with_fluids (fluids, values,
402 apply_thunk, (void *) SCM_UNPACK (thunk));
403 }
404 #undef FUNC_NAME
405
406 SCM
407 scm_c_with_fluids (SCM fluids, SCM values, SCM (*cproc) (), void *cdata)
408 #define FUNC_NAME "scm_c_with_fluids"
409 {
410 SCM ans, data;
411 long flen, vlen;
412
413 SCM_VALIDATE_LIST_COPYLEN (1, fluids, flen);
414 SCM_VALIDATE_LIST_COPYLEN (2, values, vlen);
415 if (flen != vlen)
416 scm_out_of_range (s_scm_with_fluids, values);
417
418 if (flen == 1)
419 return scm_c_with_fluid (SCM_CAR (fluids), SCM_CAR (values),
420 cproc, cdata);
421
422 data = scm_cons (fluids, values);
423 scm_dynwind_begin (SCM_F_DYNWIND_REWINDABLE);
424 scm_dynwind_rewind_handler_with_scm (swap_fluids, data,
425 SCM_F_WIND_EXPLICITLY);
426 scm_dynwind_unwind_handler_with_scm (swap_fluids_reverse, data,
427 SCM_F_WIND_EXPLICITLY);
428 ans = cproc (cdata);
429 scm_dynwind_end ();
430 return ans;
431 }
432 #undef FUNC_NAME
433
434 SCM_DEFINE (scm_with_fluid, "with-fluid*", 3, 0, 0,
435 (SCM fluid, SCM value, SCM thunk),
436 "Set @var{fluid} to @var{value} temporarily, and call @var{thunk}.\n"
437 "@var{thunk} must be a procedure with no argument.")
438 #define FUNC_NAME s_scm_with_fluid
439 {
440 return scm_c_with_fluid (fluid, value,
441 apply_thunk, (void *) SCM_UNPACK (thunk));
442 }
443 #undef FUNC_NAME
444
445 SCM
446 scm_c_with_fluid (SCM fluid, SCM value, SCM (*cproc) (), void *cdata)
447 #define FUNC_NAME "scm_c_with_fluid"
448 {
449 SCM ans;
450
451 scm_dynwind_begin (SCM_F_DYNWIND_REWINDABLE);
452 scm_dynwind_fluid (fluid, value);
453 ans = cproc (cdata);
454 scm_dynwind_end ();
455 return ans;
456 }
457 #undef FUNC_NAME
458
459 static void
460 swap_fluid (SCM data)
461 {
462 SCM f = SCM_CAR (data);
463 SCM t = scm_fluid_ref (f);
464 scm_fluid_set_x (f, SCM_CDR (data));
465 SCM_SETCDR (data, t);
466 }
467
468 void
469 scm_dynwind_fluid (SCM fluid, SCM value)
470 {
471 SCM data = scm_cons (fluid, value);
472 scm_dynwind_rewind_handler_with_scm (swap_fluid, data, SCM_F_WIND_EXPLICITLY);
473 scm_dynwind_unwind_handler_with_scm (swap_fluid, data, SCM_F_WIND_EXPLICITLY);
474 }
475
476 SCM
477 scm_i_make_initial_dynamic_state ()
478 {
479 SCM fluids = scm_c_make_vector (allocated_fluids_len, SCM_BOOL_F);
480 SCM state;
481 SCM_NEWSMOB2 (state, tc16_dynamic_state,
482 SCM_UNPACK (fluids), SCM_UNPACK (SCM_EOL));
483 all_dynamic_states = state;
484 return state;
485 }
486
487 SCM_DEFINE (scm_make_dynamic_state, "make-dynamic-state", 0, 1, 0,
488 (SCM parent),
489 "Return a copy of the dynamic state object @var{parent}\n"
490 "or of the current dynamic state when @var{parent} is omitted.")
491 #define FUNC_NAME s_scm_make_dynamic_state
492 {
493 SCM fluids, state;
494
495 if (SCM_UNBNDP (parent))
496 parent = scm_current_dynamic_state ();
497
498 scm_assert_smob_type (tc16_dynamic_state, parent);
499 fluids = scm_vector_copy (DYNAMIC_STATE_FLUIDS (parent));
500 SCM_NEWSMOB2 (state, tc16_dynamic_state,
501 SCM_UNPACK (fluids), SCM_UNPACK (SCM_EOL));
502
503 /* The GC must not run until the state is properly entered into the
504 list.
505 */
506 scm_i_scm_pthread_mutex_lock (&fluid_admin_mutex);
507 SET_DYNAMIC_STATE_NEXT (state, all_dynamic_states);
508 all_dynamic_states = state;
509 scm_i_pthread_mutex_unlock (&fluid_admin_mutex);
510
511 return state;
512 }
513 #undef FUNC_NAME
514
515 SCM_DEFINE (scm_dynamic_state_p, "dynamic-state?", 1, 0, 0,
516 (SCM obj),
517 "Return @code{#t} if @var{obj} is a dynamic state object;\n"
518 "return @code{#f} otherwise")
519 #define FUNC_NAME s_scm_dynamic_state_p
520 {
521 return scm_from_bool (IS_DYNAMIC_STATE (obj));
522 }
523 #undef FUNC_NAME
524
525 int
526 scm_is_dynamic_state (SCM obj)
527 {
528 return IS_DYNAMIC_STATE (obj);
529 }
530
531 SCM_DEFINE (scm_current_dynamic_state, "current-dynamic-state", 0, 0, 0,
532 (),
533 "Return the current dynamic state object.")
534 #define FUNC_NAME s_scm_current_dynamic_state
535 {
536 return SCM_I_CURRENT_THREAD->dynamic_state;
537 }
538 #undef FUNC_NAME
539
540 SCM_DEFINE (scm_set_current_dynamic_state, "set-current-dynamic-state", 1,0,0,
541 (SCM state),
542 "Set the current dynamic state object to @var{state}\n"
543 "and return the previous current dynamic state object.")
544 #define FUNC_NAME s_scm_set_current_dynamic_state
545 {
546 scm_i_thread *t = SCM_I_CURRENT_THREAD;
547 SCM old = t->dynamic_state;
548 scm_assert_smob_type (tc16_dynamic_state, state);
549 t->dynamic_state = state;
550 return old;
551 }
552 #undef FUNC_NAME
553
554 static void
555 swap_dynamic_state (SCM loc)
556 {
557 SCM_SETCAR (loc, scm_set_current_dynamic_state (SCM_CAR (loc)));
558 }
559
560 void
561 scm_dynwind_current_dynamic_state (SCM state)
562 {
563 SCM loc = scm_cons (state, SCM_EOL);
564 scm_assert_smob_type (tc16_dynamic_state, state);
565 scm_dynwind_rewind_handler_with_scm (swap_dynamic_state, loc,
566 SCM_F_WIND_EXPLICITLY);
567 scm_dynwind_unwind_handler_with_scm (swap_dynamic_state, loc,
568 SCM_F_WIND_EXPLICITLY);
569 }
570
571 void *
572 scm_c_with_dynamic_state (SCM state, void *(*func)(void *), void *data)
573 {
574 void *result;
575 scm_dynwind_begin (SCM_F_DYNWIND_REWINDABLE);
576 scm_dynwind_current_dynamic_state (state);
577 result = func (data);
578 scm_dynwind_end ();
579 return result;
580 }
581
582 SCM_DEFINE (scm_with_dynamic_state, "with-dynamic-state", 2, 0, 0,
583 (SCM state, SCM proc),
584 "Call @var{proc} while @var{state} is the current dynamic\n"
585 "state object.")
586 #define FUNC_NAME s_scm_with_dynamic_state
587 {
588 SCM result;
589 scm_dynwind_begin (SCM_F_DYNWIND_REWINDABLE);
590 scm_dynwind_current_dynamic_state (state);
591 result = scm_call_0 (proc);
592 scm_dynwind_end ();
593 return result;
594 }
595 #undef FUNC_NAME
596
597 void
598 scm_fluids_prehistory ()
599 {
600 tc16_fluid = scm_make_smob_type ("fluid", 0);
601 scm_set_smob_free (tc16_fluid, fluid_free);
602 scm_set_smob_print (tc16_fluid, fluid_print);
603
604 tc16_dynamic_state = scm_make_smob_type ("dynamic-state", 0);
605 scm_set_smob_mark (tc16_dynamic_state, scm_markcdr);
606
607 scm_c_hook_add (&scm_after_sweep_c_hook, scan_dynamic_states_and_fluids,
608 0, 0);
609 }
610
611 void
612 scm_init_fluids ()
613 {
614 #include "libguile/fluids.x"
615 }
616
617 /*
618 Local Variables:
619 c-file-style: "gnu"
620 End:
621 */