fluids.h exposes more of its interface, internally at least
[bpt/guile.git] / libguile / fluids.c
CommitLineData
bb0229b5 1/* Copyright (C) 1996,1997,2000,2001, 2004, 2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc.
9482a297 2 *
73be1d9e 3 * This library is free software; you can redistribute it and/or
53befeb7
NJ
4 * modify it under the terms of the GNU Lesser General Public License
5 * as published by the Free Software Foundation; either version 3 of
6 * the License, or (at your option) any later version.
9482a297 7 *
53befeb7
NJ
8 * This library is distributed in the hope that it will be useful, but
9 * WITHOUT ANY WARRANTY; without even the implied warranty of
73be1d9e
MV
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
53befeb7
NJ
15 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
16 * 02110-1301 USA
73be1d9e 17 */
9482a297 18
dbb605f5
LC
19#ifdef HAVE_CONFIG_H
20# include <config.h>
21#endif
22
9de87eea
MV
23#include <stdio.h>
24#include <string.h>
8b039053 25#include <assert.h>
1bbd0b84 26
a0599745
MD
27#include "libguile/_scm.h"
28#include "libguile/print.h"
a0599745
MD
29#include "libguile/dynwind.h"
30#include "libguile/fluids.h"
31#include "libguile/alist.h"
32#include "libguile/eval.h"
33#include "libguile/ports.h"
143e0902 34#include "libguile/deprecation.h"
c96d76b8 35#include "libguile/lang.h"
a0599745 36#include "libguile/validate.h"
9482a297 37
9de87eea
MV
38#define FLUID_GROW 20
39
40/* A lot of the complexity below stems from the desire to reuse fluid
41 slots. Normally, fluids should be pretty global and long-lived
42 things, so that reusing their slots should not be overly critical,
43 but it is the right thing to do nevertheless. The code therefore
44 puts the burdon on allocating and collection fluids and keeps
45 accessing fluids lock free. This is achieved by manipulating the
46 global state of the fluid machinery mostly in single threaded
47 sections.
48
49 Reusing a fluid slot means that it must be reset to #f in all
50 dynamic states. We do this by maintaining a weak list of all
51 dynamic states, which is used after a GC to do the resetting.
52
53 Also, the fluid vectors in the dynamic states need to grow from
54 time to time when more fluids are created. We do this in a single
55 threaded section so that threads do not need to lock when accessing
56 a fluid in the normal way.
57*/
9482a297 58
9de87eea
MV
59static scm_i_pthread_mutex_t fluid_admin_mutex = SCM_I_PTHREAD_MUTEX_INITIALIZER;
60
61/* Protected by fluid_admin_mutex, but also accessed during GC. See
62 next_fluid_num for a discussion of this.
63 */
64static size_t allocated_fluids_len = 0;
65static size_t allocated_fluids_num = 0;
66static char *allocated_fluids = NULL;
67
5ef71027
AW
68#define IS_FLUID(x) SCM_I_FLUID_P (x)
69#define FLUID_NUM(x) SCM_I_FLUID_NUM (x)
9de87eea 70
5ef71027
AW
71#define IS_DYNAMIC_STATE(x) SCM_I_DYNAMIC_STATE_P (x)
72#define DYNAMIC_STATE_FLUIDS(x) SCM_I_DYNAMIC_STATE_FLUIDS (x)
9ea31741 73#define SET_DYNAMIC_STATE_FLUIDS(x, y) SCM_SET_CELL_WORD_1 ((x), (SCM_UNPACK (y)))
9de87eea 74
9de87eea 75
8b039053
LC
76\f
77/* Grow STATE so that it can hold up to ALLOCATED_FLUIDS_NUM fluids. */
9482a297 78static void
8b039053 79grow_dynamic_state (SCM state)
9de87eea 80{
8b039053
LC
81 SCM new_fluids;
82 SCM old_fluids = DYNAMIC_STATE_FLUIDS (state);
83 size_t i, new_len, old_len = SCM_SIMPLE_VECTOR_LENGTH (old_fluids);
9de87eea 84
8b039053
LC
85 retry:
86 new_len = allocated_fluids_num;
87 new_fluids = scm_c_make_vector (new_len, SCM_BOOL_F);
9de87eea 88
8b039053
LC
89 scm_i_pthread_mutex_lock (&fluid_admin_mutex);
90 if (new_len != allocated_fluids_num)
9482a297 91 {
8b039053
LC
92 /* We lost the race. */
93 scm_i_pthread_mutex_unlock (&fluid_admin_mutex);
94 goto retry;
9482a297
MV
95 }
96
8b039053
LC
97 assert (allocated_fluids_num > old_len);
98
99 for (i = 0; i < old_len; i++)
100 SCM_SIMPLE_VECTOR_SET (new_fluids, i,
101 SCM_SIMPLE_VECTOR_REF (old_fluids, i));
102 SET_DYNAMIC_STATE_FLUIDS (state, new_fluids);
103
104 scm_i_pthread_mutex_unlock (&fluid_admin_mutex);
9482a297
MV
105}
106
9ea31741
AW
107void
108scm_i_fluid_print (SCM exp, SCM port, scm_print_state *pstate SCM_UNUSED)
9482a297 109{
ed4d7cee 110 scm_puts ("#<fluid ", port);
9de87eea 111 scm_intprint ((int) FLUID_NUM (exp), 10, port);
ed4d7cee 112 scm_putc ('>', port);
9482a297
MV
113}
114
45cf2428
AW
115void
116scm_i_dynamic_state_print (SCM exp, SCM port, scm_print_state *pstate SCM_UNUSED)
117{
118 scm_puts ("#<dynamic-state ", port);
119 scm_intprint (SCM_UNPACK (exp), 16, port);
120 scm_putc ('>', port);
121}
122
9de87eea 123static size_t
ed4d7cee 124next_fluid_num ()
9482a297 125{
9de87eea
MV
126 size_t n;
127
661ae7ab
MV
128 scm_dynwind_begin (0);
129 scm_i_dynwind_pthread_mutex_lock (&fluid_admin_mutex);
9de87eea 130
29295b0c
NJ
131 if ((allocated_fluids_len > 0) &&
132 (allocated_fluids_num == allocated_fluids_len))
9de87eea
MV
133 {
134 /* All fluid numbers are in use. Run a GC to try to free some
135 up.
136 */
137 scm_gc ();
138 }
139
140 if (allocated_fluids_num < allocated_fluids_len)
141 {
142 for (n = 0; n < allocated_fluids_len; n++)
143 if (allocated_fluids[n] == 0)
144 break;
145 }
146 else
147 {
8b039053
LC
148 /* Grow the vector of allocated fluids. */
149 /* FIXME: Since we use `scm_malloc ()', ALLOCATED_FLUIDS is scanned by
150 the GC; therefore, all fluids remain reachable for the entire
151 program lifetime. Hopefully this is not a problem in practice. */
d3075c52 152 char *new_allocated_fluids =
33ed7a16
LC
153 scm_gc_malloc (allocated_fluids_len + FLUID_GROW,
154 "allocated fluids");
9de87eea
MV
155
156 /* Copy over old values and initialize rest. GC can not run
157 during these two operations since there is no safe point in
158 them.
159 */
160 memcpy (new_allocated_fluids, allocated_fluids, allocated_fluids_len);
161 memset (new_allocated_fluids + allocated_fluids_len, 0, FLUID_GROW);
162 n = allocated_fluids_len;
d3075c52 163
8b039053
LC
164 /* Update the vector of allocated fluids. Dynamic states will
165 eventually be lazily grown to accomodate the new value of
166 ALLOCATED_FLUIDS_LEN in `fluid-ref' and `fluid-set!'. */
9de87eea
MV
167 allocated_fluids = new_allocated_fluids;
168 allocated_fluids_len += FLUID_GROW;
9de87eea
MV
169 }
170
171 allocated_fluids_num += 1;
172 allocated_fluids[n] = 1;
173
661ae7ab 174 scm_dynwind_end ();
9482a297
MV
175 return n;
176}
177
a1ec6916 178SCM_DEFINE (scm_make_fluid, "make-fluid", 0, 0, 0,
ed4d7cee
GB
179 (),
180 "Return a newly created fluid.\n"
9de87eea
MV
181 "Fluids are objects that can hold one\n"
182 "value per dynamic state. That is, modifications to this value are\n"
183 "only visible to code that executes with the same dynamic state as\n"
184 "the modifying code. When a new dynamic state is constructed, it\n"
185 "inherits the values from its parent. Because each thread normally executes\n"
186 "with its own dynamic state, you can use fluids for thread local storage.")
1bbd0b84 187#define FUNC_NAME s_scm_make_fluid
9482a297 188{
9ea31741 189 return scm_cell (scm_tc7_fluid, (scm_t_bits) next_fluid_num ());
9482a297 190}
1bbd0b84 191#undef FUNC_NAME
9482a297 192
a1ec6916 193SCM_DEFINE (scm_fluid_p, "fluid?", 1, 0, 0,
ed4d7cee 194 (SCM obj),
1e6808ea
MG
195 "Return @code{#t} iff @var{obj} is a fluid; otherwise, return\n"
196 "@code{#f}.")
1bbd0b84 197#define FUNC_NAME s_scm_fluid_p
b3460a50 198{
9de87eea 199 return scm_from_bool (IS_FLUID (obj));
b3460a50 200}
1bbd0b84 201#undef FUNC_NAME
b3460a50 202
9de87eea
MV
203int
204scm_is_fluid (SCM obj)
205{
206 return IS_FLUID (obj);
207}
208
8b039053 209
9de87eea 210
a1ec6916 211SCM_DEFINE (scm_fluid_ref, "fluid-ref", 1, 0, 0,
ed4d7cee 212 (SCM fluid),
1e6808ea
MG
213 "Return the value associated with @var{fluid} in the current\n"
214 "dynamic root. If @var{fluid} has not been set, then return\n"
215 "@code{#f}.")
1bbd0b84 216#define FUNC_NAME s_scm_fluid_ref
9482a297 217{
9de87eea 218 SCM fluids = DYNAMIC_STATE_FLUIDS (SCM_I_CURRENT_THREAD->dynamic_state);
9482a297 219
ed4d7cee 220 SCM_VALIDATE_FLUID (1, fluid);
8b039053
LC
221
222 if (SCM_UNLIKELY (FLUID_NUM (fluid) >= SCM_SIMPLE_VECTOR_LENGTH (fluids)))
223 {
224 /* We should only get there when the current thread's dynamic state
225 turns out to be too small compared to the set of currently allocated
226 fluids. */
227 assert (SCM_SIMPLE_VECTOR_LENGTH (fluids) < allocated_fluids_num);
228
229 /* Lazily grow the current thread's dynamic state. */
230 grow_dynamic_state (SCM_I_CURRENT_THREAD->dynamic_state);
231
232 fluids = DYNAMIC_STATE_FLUIDS (SCM_I_CURRENT_THREAD->dynamic_state);
233 }
234
9de87eea 235 return SCM_SIMPLE_VECTOR_REF (fluids, FLUID_NUM (fluid));
9482a297 236}
1bbd0b84 237#undef FUNC_NAME
9482a297 238
a1ec6916 239SCM_DEFINE (scm_fluid_set_x, "fluid-set!", 2, 0, 0,
ed4d7cee
GB
240 (SCM fluid, SCM value),
241 "Set the value associated with @var{fluid} in the current dynamic root.")
1bbd0b84 242#define FUNC_NAME s_scm_fluid_set_x
9482a297 243{
9de87eea 244 SCM fluids = DYNAMIC_STATE_FLUIDS (SCM_I_CURRENT_THREAD->dynamic_state);
9482a297 245
ed4d7cee 246 SCM_VALIDATE_FLUID (1, fluid);
8b039053
LC
247
248 if (SCM_UNLIKELY (FLUID_NUM (fluid) >= SCM_SIMPLE_VECTOR_LENGTH (fluids)))
249 {
250 /* We should only get there when the current thread's dynamic state
251 turns out to be too small compared to the set of currently allocated
252 fluids. */
253 assert (SCM_SIMPLE_VECTOR_LENGTH (fluids) < allocated_fluids_num);
254
255 /* Lazily grow the current thread's dynamic state. */
256 grow_dynamic_state (SCM_I_CURRENT_THREAD->dynamic_state);
257
258 fluids = DYNAMIC_STATE_FLUIDS (SCM_I_CURRENT_THREAD->dynamic_state);
259 }
260
9de87eea 261 SCM_SIMPLE_VECTOR_SET (fluids, FLUID_NUM (fluid), value);
86f9f9ae 262 return SCM_UNSPECIFIED;
9482a297 263}
1bbd0b84 264#undef FUNC_NAME
9482a297 265
bb0229b5
AW
266static SCM
267apply_thunk (void *thunk)
b3460a50 268{
bb0229b5
AW
269 return scm_call_0 (SCM_PACK (thunk));
270}
271
272SCM
273scm_i_make_with_fluids (size_t n, SCM *fluids, SCM *vals)
274{
275 SCM ret;
276
277 /* Ensure that there are no duplicates in the fluids set -- an N^2 operation,
278 but N will usually be small, so perhaps that's OK. */
279 {
280 size_t i, j = n;
281
282 while (j--)
283 for (i = 0; i < j; i++)
284 if (fluids[i] == fluids[j])
285 {
286 vals[i] = vals[j]; /* later bindings win */
287 n--;
288 break;
289 }
290 }
291
292 ret = scm_words (scm_tc7_with_fluids | (n << 8), 1 + n*2);
293 SCM_SET_CELL_WORD_1 (ret, n);
294
295 while (n--)
b3460a50 296 {
bb0229b5
AW
297 if (SCM_UNLIKELY (!IS_FLUID (fluids[n])))
298 scm_wrong_type_arg ("with-fluids", 0, fluids[n]);
299 SCM_SET_CELL_OBJECT (ret, 1 + n * 2, fluids[n]);
300 SCM_SET_CELL_OBJECT (ret, 2 + n * 2, vals[n]);
b3460a50 301 }
bb0229b5
AW
302
303 return ret;
b3460a50 304}
bb0229b5
AW
305
306void
307scm_i_swap_with_fluids (SCM wf, SCM dynstate)
308{
309 SCM fluids;
310 size_t i, max = 0;
b3460a50 311
bb0229b5 312 fluids = DYNAMIC_STATE_FLUIDS (dynstate);
b3460a50 313
bb0229b5
AW
314 /* We could cache the max in the with-fluids, but that would take more mem,
315 and we're touching all the fluids anyway, so this per-swap traversal should
316 be OK. */
317 for (i = 0; i < SCM_WITH_FLUIDS_LEN (wf); i++)
b3460a50 318 {
bb0229b5
AW
319 size_t num = FLUID_NUM (SCM_WITH_FLUIDS_NTH_FLUID (wf, i));
320 max = (max > num) ? max : num;
b3460a50 321 }
b3460a50 322
bb0229b5
AW
323 if (SCM_UNLIKELY (max >= SCM_SIMPLE_VECTOR_LENGTH (fluids)))
324 {
325 /* We should only get there when the current thread's dynamic state turns
326 out to be too small compared to the set of currently allocated
327 fluids. */
328 assert (SCM_SIMPLE_VECTOR_LENGTH (fluids) < allocated_fluids_num);
1bbd0b84 329
bb0229b5
AW
330 /* Lazily grow the current thread's dynamic state. */
331 grow_dynamic_state (dynstate);
332
333 fluids = DYNAMIC_STATE_FLUIDS (dynstate);
334 }
1bbd0b84 335
bb0229b5
AW
336 /* Bind the fluids. Order doesn't matter, as all fluids are distinct. */
337 for (i = 0; i < SCM_WITH_FLUIDS_LEN (wf); i++)
338 {
339 size_t fluid_num;
340 SCM x;
341
342 fluid_num = FLUID_NUM (SCM_WITH_FLUIDS_NTH_FLUID (wf, i));
343 x = SCM_SIMPLE_VECTOR_REF (fluids, fluid_num);
344 SCM_SIMPLE_VECTOR_SET (fluids, fluid_num,
345 SCM_WITH_FLUIDS_NTH_VAL (wf, i));
346 SCM_WITH_FLUIDS_SET_NTH_VAL (wf, i, x);
347 }
348}
349
a1ec6916 350SCM_DEFINE (scm_with_fluids, "with-fluids*", 3, 0, 0,
ed4d7cee
GB
351 (SCM fluids, SCM values, SCM thunk),
352 "Set @var{fluids} to @var{values} temporary, and call @var{thunk}.\n"
353 "@var{fluids} must be a list of fluids and @var{values} must be the same\n"
354 "number of their values to be applied. Each substitution is done\n"
355 "one after another. @var{thunk} must be a procedure with no argument.")
1bbd0b84
GB
356#define FUNC_NAME s_scm_with_fluids
357{
bebd3fba
MV
358 return scm_c_with_fluids (fluids, values,
359 apply_thunk, (void *) SCM_UNPACK (thunk));
1bbd0b84
GB
360}
361#undef FUNC_NAME
b3460a50
MV
362
363SCM
143e0902
MV
364scm_c_with_fluids (SCM fluids, SCM values, SCM (*cproc) (), void *cdata)
365#define FUNC_NAME "scm_c_with_fluids"
b3460a50 366{
bb0229b5
AW
367 SCM wf, ans;
368 long flen, vlen, i;
369 SCM *fluidsv, *valuesv;
b3460a50 370
c1bfcf60 371 SCM_VALIDATE_LIST_COPYLEN (1, fluids, flen);
ed4d7cee 372 SCM_VALIDATE_LIST_COPYLEN (2, values, vlen);
b3460a50 373 if (flen != vlen)
ed4d7cee 374 scm_out_of_range (s_scm_with_fluids, values);
b3460a50 375
bb0229b5
AW
376 if (SCM_UNLIKELY (flen == 0))
377 return cproc (cdata);
378
379 fluidsv = alloca (sizeof(SCM)*flen);
380 valuesv = alloca (sizeof(SCM)*flen);
bebd3fba 381
bb0229b5
AW
382 for (i = 0; i < flen; i++)
383 {
384 fluidsv[i] = SCM_CAR (fluids);
385 fluids = SCM_CDR (fluids);
386 valuesv[i] = SCM_CAR (values);
387 values = SCM_CDR (values);
388 }
389
390 wf = scm_i_make_with_fluids (flen, fluidsv, valuesv);
391 scm_i_swap_with_fluids (wf, SCM_I_CURRENT_THREAD->dynamic_state);
392 scm_i_set_dynwinds (scm_cons (wf, scm_i_dynwinds ()));
b3460a50 393 ans = cproc (cdata);
bb0229b5
AW
394 scm_i_swap_with_fluids (wf, SCM_I_CURRENT_THREAD->dynamic_state);
395 scm_i_set_dynwinds (scm_cdr (scm_i_dynwinds ()));
396
b3460a50
MV
397 return ans;
398}
c1bfcf60 399#undef FUNC_NAME
b3460a50 400
bebd3fba
MV
401SCM_DEFINE (scm_with_fluid, "with-fluid*", 3, 0, 0,
402 (SCM fluid, SCM value, SCM thunk),
403 "Set @var{fluid} to @var{value} temporarily, and call @var{thunk}.\n"
404 "@var{thunk} must be a procedure with no argument.")
405#define FUNC_NAME s_scm_with_fluid
406{
407 return scm_c_with_fluid (fluid, value,
408 apply_thunk, (void *) SCM_UNPACK (thunk));
409}
410#undef FUNC_NAME
411
143e0902
MV
412SCM
413scm_c_with_fluid (SCM fluid, SCM value, SCM (*cproc) (), void *cdata)
414#define FUNC_NAME "scm_c_with_fluid"
415{
bb0229b5 416 SCM ans, wf;
bebd3fba 417
bb0229b5
AW
418 wf = scm_i_make_with_fluids (1, &fluid, &value);
419 scm_i_swap_with_fluids (wf, SCM_I_CURRENT_THREAD->dynamic_state);
420 scm_i_set_dynwinds (scm_cons (wf, scm_i_dynwinds ()));
bebd3fba 421 ans = cproc (cdata);
bb0229b5
AW
422 scm_i_swap_with_fluids (wf, SCM_I_CURRENT_THREAD->dynamic_state);
423 scm_i_set_dynwinds (scm_cdr (scm_i_dynwinds ()));
424
bebd3fba 425 return ans;
143e0902
MV
426}
427#undef FUNC_NAME
b3460a50 428
ef20bf70
MV
429static void
430swap_fluid (SCM data)
431{
432 SCM f = SCM_CAR (data);
433 SCM t = scm_fluid_ref (f);
434 scm_fluid_set_x (f, SCM_CDR (data));
435 SCM_SETCDR (data, t);
436}
437
438void
661ae7ab 439scm_dynwind_fluid (SCM fluid, SCM value)
ef20bf70
MV
440{
441 SCM data = scm_cons (fluid, value);
661ae7ab
MV
442 scm_dynwind_rewind_handler_with_scm (swap_fluid, data, SCM_F_WIND_EXPLICITLY);
443 scm_dynwind_unwind_handler_with_scm (swap_fluid, data, SCM_F_WIND_EXPLICITLY);
ef20bf70
MV
444}
445
9de87eea
MV
446SCM
447scm_i_make_initial_dynamic_state ()
448{
449 SCM fluids = scm_c_make_vector (allocated_fluids_len, SCM_BOOL_F);
9ea31741 450 return scm_cell (scm_tc7_dynamic_state, SCM_UNPACK (fluids));
9de87eea
MV
451}
452
453SCM_DEFINE (scm_make_dynamic_state, "make-dynamic-state", 0, 1, 0,
454 (SCM parent),
455 "Return a copy of the dynamic state object @var{parent}\n"
456 "or of the current dynamic state when @var{parent} is omitted.")
457#define FUNC_NAME s_scm_make_dynamic_state
458{
9ea31741 459 SCM fluids;
9de87eea
MV
460
461 if (SCM_UNBNDP (parent))
462 parent = scm_current_dynamic_state ();
463
9ea31741 464 SCM_ASSERT (IS_DYNAMIC_STATE (parent), parent, SCM_ARG1, FUNC_NAME);
9de87eea 465 fluids = scm_vector_copy (DYNAMIC_STATE_FLUIDS (parent));
9ea31741 466 return scm_cell (scm_tc7_dynamic_state, SCM_UNPACK (fluids));
9de87eea
MV
467}
468#undef FUNC_NAME
469
470SCM_DEFINE (scm_dynamic_state_p, "dynamic-state?", 1, 0, 0,
471 (SCM obj),
472 "Return @code{#t} if @var{obj} is a dynamic state object;\n"
473 "return @code{#f} otherwise")
474#define FUNC_NAME s_scm_dynamic_state_p
475{
476 return scm_from_bool (IS_DYNAMIC_STATE (obj));
477}
478#undef FUNC_NAME
479
480int
481scm_is_dynamic_state (SCM obj)
482{
483 return IS_DYNAMIC_STATE (obj);
484}
485
486SCM_DEFINE (scm_current_dynamic_state, "current-dynamic-state", 0, 0, 0,
487 (),
488 "Return the current dynamic state object.")
489#define FUNC_NAME s_scm_current_dynamic_state
490{
491 return SCM_I_CURRENT_THREAD->dynamic_state;
492}
493#undef FUNC_NAME
494
495SCM_DEFINE (scm_set_current_dynamic_state, "set-current-dynamic-state", 1,0,0,
496 (SCM state),
497 "Set the current dynamic state object to @var{state}\n"
498 "and return the previous current dynamic state object.")
499#define FUNC_NAME s_scm_set_current_dynamic_state
500{
501 scm_i_thread *t = SCM_I_CURRENT_THREAD;
502 SCM old = t->dynamic_state;
9ea31741 503 SCM_ASSERT (IS_DYNAMIC_STATE (state), state, SCM_ARG1, FUNC_NAME);
9de87eea
MV
504 t->dynamic_state = state;
505 return old;
506}
507#undef FUNC_NAME
508
509static void
510swap_dynamic_state (SCM loc)
511{
512 SCM_SETCAR (loc, scm_set_current_dynamic_state (SCM_CAR (loc)));
513}
514
515void
661ae7ab 516scm_dynwind_current_dynamic_state (SCM state)
9de87eea
MV
517{
518 SCM loc = scm_cons (state, SCM_EOL);
9ea31741 519 SCM_ASSERT (IS_DYNAMIC_STATE (state), state, SCM_ARG1, NULL);
661ae7ab 520 scm_dynwind_rewind_handler_with_scm (swap_dynamic_state, loc,
9de87eea 521 SCM_F_WIND_EXPLICITLY);
661ae7ab 522 scm_dynwind_unwind_handler_with_scm (swap_dynamic_state, loc,
9de87eea
MV
523 SCM_F_WIND_EXPLICITLY);
524}
525
526void *
527scm_c_with_dynamic_state (SCM state, void *(*func)(void *), void *data)
528{
529 void *result;
661ae7ab
MV
530 scm_dynwind_begin (SCM_F_DYNWIND_REWINDABLE);
531 scm_dynwind_current_dynamic_state (state);
9de87eea 532 result = func (data);
661ae7ab 533 scm_dynwind_end ();
9de87eea
MV
534 return result;
535}
536
537SCM_DEFINE (scm_with_dynamic_state, "with-dynamic-state", 2, 0, 0,
538 (SCM state, SCM proc),
539 "Call @var{proc} while @var{state} is the current dynamic\n"
540 "state object.")
541#define FUNC_NAME s_scm_with_dynamic_state
542{
543 SCM result;
661ae7ab
MV
544 scm_dynwind_begin (SCM_F_DYNWIND_REWINDABLE);
545 scm_dynwind_current_dynamic_state (state);
9de87eea 546 result = scm_call_0 (proc);
661ae7ab 547 scm_dynwind_end ();
9de87eea
MV
548 return result;
549}
550#undef FUNC_NAME
551
9de87eea 552
9482a297
MV
553void
554scm_init_fluids ()
555{
a0599745 556#include "libguile/fluids.x"
9482a297 557}
89e00824
ML
558
559/*
560 Local Variables:
561 c-file-style: "gnu"
562 End:
563*/