Changes from arch/CVS synchronization
[bpt/guile.git] / libguile / fluids.c
CommitLineData
2b829bbb 1/* Copyright (C) 1996,1997,2000,2001, 2004, 2006 Free Software Foundation, Inc.
9482a297 2 *
73be1d9e
MV
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.
9482a297 7 *
73be1d9e
MV
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.
9482a297 12 *
73be1d9e
MV
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
92205699 15 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
73be1d9e 16 */
9482a297 17
9de87eea
MV
18#include <stdio.h>
19#include <string.h>
1bbd0b84 20
a0599745
MD
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"
143e0902 29#include "libguile/deprecation.h"
c96d76b8 30#include "libguile/lang.h"
a0599745 31#include "libguile/validate.h"
9482a297 32
9de87eea
MV
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*/
9482a297 53
9de87eea
MV
54static 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 */
59static size_t allocated_fluids_len = 0;
60static size_t allocated_fluids_num = 0;
61static char *allocated_fluids = NULL;
62
63static 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)
645dd3fc 68#define FLUID_NEXT_LOC(x) SCM_SMOB_OBJECT_2_LOC(x)
9de87eea
MV
69#define SET_FLUID_NEXT(x,y) SCM_SET_SMOB_OBJECT_2((x), (y))
70
71static 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)
645dd3fc 77#define DYNAMIC_STATE_NEXT_LOC(x) SCM_SMOB_OBJECT_2_LOC(x)
9de87eea
MV
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 */
82static SCM all_dynamic_states = SCM_EOL;
83static SCM all_fluids = SCM_EOL;
84
9de87eea
MV
85/* Make sure that all states have the right size. This must be called
86 while fluid_admin_mutex is held.
87*/
9482a297 88static void
b5fa979c 89resize_all_states ()
9de87eea 90{
b5fa979c
MV
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 */
9de87eea 102
b5fa979c
MV
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);
9de87eea 109
b5fa979c 110 scm_i_thread_put_to_sleep ();
9de87eea
MV
111 for (state = all_dynamic_states; !scm_is_null (state);
112 state = DYNAMIC_STATE_NEXT (state))
b5fa979c
MV
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);
9de87eea 117
b5fa979c
MV
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 ();
9de87eea
MV
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 */
131static void *
132scan_dynamic_states_and_fluids (void *dummy1 SCM_UNUSED,
133 void *dummy2 SCM_UNUSED,
134 void *dummy3 SCM_UNUSED)
9482a297 135{
9de87eea 136 SCM *statep, *fluidp;
9482a297 137
9de87eea
MV
138 /* Scan all fluids and deallocate the unmarked ones.
139 */
140 fluidp = &all_fluids;
141 while (!scm_is_null (*fluidp))
9482a297 142 {
9de87eea
MV
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
645dd3fc 150 fluidp = FLUID_NEXT_LOC (*fluidp);
9482a297 151 }
9de87eea
MV
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))
9482a297 158 {
9de87eea
MV
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
645dd3fc 171 statep = DYNAMIC_STATE_NEXT_LOC (*statep);
9de87eea 172 }
9482a297
MV
173 }
174
9de87eea 175 return NULL;
9482a297
MV
176}
177
9de87eea
MV
178static size_t
179fluid_free (SCM fluid)
9482a297 180{
9de87eea
MV
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;
9482a297
MV
186}
187
9482a297 188static int
e81d98ec 189fluid_print (SCM exp, SCM port, scm_print_state *pstate SCM_UNUSED)
9482a297 190{
ed4d7cee 191 scm_puts ("#<fluid ", port);
9de87eea 192 scm_intprint ((int) FLUID_NUM (exp), 10, port);
ed4d7cee
GB
193 scm_putc ('>', port);
194 return 1;
9482a297
MV
195}
196
9de87eea 197static size_t
ed4d7cee 198next_fluid_num ()
9482a297 199{
9de87eea
MV
200 size_t n;
201
661ae7ab
MV
202 scm_dynwind_begin (0);
203 scm_i_dynwind_pthread_mutex_lock (&fluid_admin_mutex);
9de87eea 204
29295b0c
NJ
205 if ((allocated_fluids_len > 0) &&
206 (allocated_fluids_num == allocated_fluids_len))
9de87eea
MV
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 */
b5fa979c 245 resize_all_states ();
9de87eea
MV
246 }
247
248 allocated_fluids_num += 1;
249 allocated_fluids[n] = 1;
250
661ae7ab 251 scm_dynwind_end ();
9482a297
MV
252 return n;
253}
254
a1ec6916 255SCM_DEFINE (scm_make_fluid, "make-fluid", 0, 0, 0,
ed4d7cee
GB
256 (),
257 "Return a newly created fluid.\n"
9de87eea
MV
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.")
1bbd0b84 264#define FUNC_NAME s_scm_make_fluid
9482a297 265{
9de87eea 266 SCM fluid;
9482a297 267
9de87eea
MV
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 */
b5fa979c 274 scm_i_scm_pthread_mutex_lock (&fluid_admin_mutex);
9de87eea
MV
275 SET_FLUID_NEXT (fluid, all_fluids);
276 all_fluids = fluid;
b5fa979c 277 scm_i_pthread_mutex_unlock (&fluid_admin_mutex);
9de87eea
MV
278
279 return fluid;
9482a297 280}
1bbd0b84 281#undef FUNC_NAME
9482a297 282
a1ec6916 283SCM_DEFINE (scm_fluid_p, "fluid?", 1, 0, 0,
ed4d7cee 284 (SCM obj),
1e6808ea
MG
285 "Return @code{#t} iff @var{obj} is a fluid; otherwise, return\n"
286 "@code{#f}.")
1bbd0b84 287#define FUNC_NAME s_scm_fluid_p
b3460a50 288{
9de87eea 289 return scm_from_bool (IS_FLUID (obj));
b3460a50 290}
1bbd0b84 291#undef FUNC_NAME
b3460a50 292
9de87eea
MV
293int
294scm_is_fluid (SCM obj)
295{
296 return IS_FLUID (obj);
297}
298
299size_t
300scm_i_fluid_num (SCM fluid)
301{
302 return FLUID_NUM (fluid);
303}
304
a1ec6916 305SCM_DEFINE (scm_fluid_ref, "fluid-ref", 1, 0, 0,
ed4d7cee 306 (SCM fluid),
1e6808ea
MG
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}.")
1bbd0b84 310#define FUNC_NAME s_scm_fluid_ref
9482a297 311{
9de87eea 312 SCM fluids = DYNAMIC_STATE_FLUIDS (SCM_I_CURRENT_THREAD->dynamic_state);
9482a297 313
ed4d7cee 314 SCM_VALIDATE_FLUID (1, fluid);
9de87eea 315 return SCM_SIMPLE_VECTOR_REF (fluids, FLUID_NUM (fluid));
9482a297 316}
1bbd0b84 317#undef FUNC_NAME
9482a297 318
9de87eea
MV
319SCM
320scm_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
a1ec6916 326SCM_DEFINE (scm_fluid_set_x, "fluid-set!", 2, 0, 0,
ed4d7cee
GB
327 (SCM fluid, SCM value),
328 "Set the value associated with @var{fluid} in the current dynamic root.")
1bbd0b84 329#define FUNC_NAME s_scm_fluid_set_x
9482a297 330{
9de87eea 331 SCM fluids = DYNAMIC_STATE_FLUIDS (SCM_I_CURRENT_THREAD->dynamic_state);
9482a297 332
ed4d7cee 333 SCM_VALIDATE_FLUID (1, fluid);
9de87eea 334 SCM_SIMPLE_VECTOR_SET (fluids, FLUID_NUM (fluid), value);
86f9f9ae 335 return SCM_UNSPECIFIED;
9482a297 336}
1bbd0b84 337#undef FUNC_NAME
9482a297 338
9de87eea
MV
339void
340scm_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
bebd3fba
MV
346static void
347swap_fluids (SCM data)
b3460a50 348{
bebd3fba
MV
349 SCM fluids = SCM_CAR (data), vals = SCM_CDR (data);
350
c96d76b8 351 while (!SCM_NULL_OR_NIL_P (fluids))
b3460a50
MV
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
9de87eea
MV
363 same fluid appears multiple times in the fluids list.
364*/
b3460a50 365
bebd3fba
MV
366static void
367swap_fluids_reverse_aux (SCM fluids, SCM vals)
b3460a50 368{
c96d76b8 369 if (!SCM_NULL_OR_NIL_P (fluids))
b3460a50
MV
370 {
371 SCM fl, old_val;
372
bebd3fba 373 swap_fluids_reverse_aux (SCM_CDR (fluids), SCM_CDR (vals));
b3460a50
MV
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
bebd3fba
MV
381static void
382swap_fluids_reverse (SCM data)
383{
384 swap_fluids_reverse_aux (SCM_CAR (data), SCM_CDR (data));
385}
1bbd0b84
GB
386
387static SCM
388apply_thunk (void *thunk)
389{
fdc28395 390 return scm_call_0 (SCM_PACK (thunk));
1bbd0b84
GB
391}
392
a1ec6916 393SCM_DEFINE (scm_with_fluids, "with-fluids*", 3, 0, 0,
ed4d7cee
GB
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.")
1bbd0b84
GB
399#define FUNC_NAME s_scm_with_fluids
400{
bebd3fba
MV
401 return scm_c_with_fluids (fluids, values,
402 apply_thunk, (void *) SCM_UNPACK (thunk));
1bbd0b84
GB
403}
404#undef FUNC_NAME
b3460a50
MV
405
406SCM
143e0902
MV
407scm_c_with_fluids (SCM fluids, SCM values, SCM (*cproc) (), void *cdata)
408#define FUNC_NAME "scm_c_with_fluids"
b3460a50 409{
bebd3fba 410 SCM ans, data;
c014a02e 411 long flen, vlen;
b3460a50 412
c1bfcf60 413 SCM_VALIDATE_LIST_COPYLEN (1, fluids, flen);
ed4d7cee 414 SCM_VALIDATE_LIST_COPYLEN (2, values, vlen);
b3460a50 415 if (flen != vlen)
ed4d7cee 416 scm_out_of_range (s_scm_with_fluids, values);
b3460a50 417
bebd3fba
MV
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);
661ae7ab
MV
423 scm_dynwind_begin (SCM_F_DYNWIND_REWINDABLE);
424 scm_dynwind_rewind_handler_with_scm (swap_fluids, data,
16c5cac2 425 SCM_F_WIND_EXPLICITLY);
661ae7ab 426 scm_dynwind_unwind_handler_with_scm (swap_fluids_reverse, data,
16c5cac2 427 SCM_F_WIND_EXPLICITLY);
b3460a50 428 ans = cproc (cdata);
661ae7ab 429 scm_dynwind_end ();
b3460a50
MV
430 return ans;
431}
c1bfcf60 432#undef FUNC_NAME
b3460a50 433
bebd3fba
MV
434SCM_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
143e0902
MV
445SCM
446scm_c_with_fluid (SCM fluid, SCM value, SCM (*cproc) (), void *cdata)
447#define FUNC_NAME "scm_c_with_fluid"
448{
bebd3fba
MV
449 SCM ans;
450
661ae7ab
MV
451 scm_dynwind_begin (SCM_F_DYNWIND_REWINDABLE);
452 scm_dynwind_fluid (fluid, value);
bebd3fba 453 ans = cproc (cdata);
661ae7ab 454 scm_dynwind_end ();
bebd3fba 455 return ans;
143e0902
MV
456}
457#undef FUNC_NAME
b3460a50 458
ef20bf70
MV
459static void
460swap_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
468void
661ae7ab 469scm_dynwind_fluid (SCM fluid, SCM value)
ef20bf70
MV
470{
471 SCM data = scm_cons (fluid, value);
661ae7ab
MV
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);
ef20bf70
MV
474}
475
9de87eea
MV
476SCM
477scm_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
487SCM_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 */
b5fa979c 506 scm_i_scm_pthread_mutex_lock (&fluid_admin_mutex);
9de87eea
MV
507 SET_DYNAMIC_STATE_NEXT (state, all_dynamic_states);
508 all_dynamic_states = state;
b5fa979c 509 scm_i_pthread_mutex_unlock (&fluid_admin_mutex);
9de87eea 510
9de87eea
MV
511 return state;
512}
513#undef FUNC_NAME
514
515SCM_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
525int
526scm_is_dynamic_state (SCM obj)
527{
528 return IS_DYNAMIC_STATE (obj);
529}
530
531SCM_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
540SCM_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
554static void
555swap_dynamic_state (SCM loc)
556{
557 SCM_SETCAR (loc, scm_set_current_dynamic_state (SCM_CAR (loc)));
558}
559
560void
661ae7ab 561scm_dynwind_current_dynamic_state (SCM state)
9de87eea
MV
562{
563 SCM loc = scm_cons (state, SCM_EOL);
564 scm_assert_smob_type (tc16_dynamic_state, state);
661ae7ab 565 scm_dynwind_rewind_handler_with_scm (swap_dynamic_state, loc,
9de87eea 566 SCM_F_WIND_EXPLICITLY);
661ae7ab 567 scm_dynwind_unwind_handler_with_scm (swap_dynamic_state, loc,
9de87eea
MV
568 SCM_F_WIND_EXPLICITLY);
569}
570
571void *
572scm_c_with_dynamic_state (SCM state, void *(*func)(void *), void *data)
573{
574 void *result;
661ae7ab
MV
575 scm_dynwind_begin (SCM_F_DYNWIND_REWINDABLE);
576 scm_dynwind_current_dynamic_state (state);
9de87eea 577 result = func (data);
661ae7ab 578 scm_dynwind_end ();
9de87eea
MV
579 return result;
580}
581
582SCM_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;
661ae7ab
MV
589 scm_dynwind_begin (SCM_F_DYNWIND_REWINDABLE);
590 scm_dynwind_current_dynamic_state (state);
9de87eea 591 result = scm_call_0 (proc);
661ae7ab 592 scm_dynwind_end ();
9de87eea
MV
593 return result;
594}
595#undef FUNC_NAME
596
597void
598scm_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
9482a297
MV
611void
612scm_init_fluids ()
613{
a0599745 614#include "libguile/fluids.x"
9482a297 615}
89e00824
ML
616
617/*
618 Local Variables:
619 c-file-style: "gnu"
620 End:
621*/