add with-fluids objects and primitive syntax
[bpt/guile.git] / libguile / fluids.c
1 /* Copyright (C) 1996,1997,2000,2001, 2004, 2006, 2007, 2008, 2009, 2010 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 License
5 * as published by the Free Software Foundation; either version 3 of
6 * the License, or (at your option) any later version.
7 *
8 * This library is distributed in the hope that it will be useful, but
9 * 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
16 * 02110-1301 USA
17 */
18
19 #ifdef HAVE_CONFIG_H
20 # include <config.h>
21 #endif
22
23 #include <stdio.h>
24 #include <string.h>
25 #include <assert.h>
26
27 #include "libguile/_scm.h"
28 #include "libguile/print.h"
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"
34 #include "libguile/deprecation.h"
35 #include "libguile/lang.h"
36 #include "libguile/validate.h"
37
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 */
58
59 static 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 */
64 static size_t allocated_fluids_len = 0;
65 static size_t allocated_fluids_num = 0;
66 static char *allocated_fluids = NULL;
67
68 #define IS_FLUID(x) (!SCM_IMP (x) && SCM_TYP7 (x) == scm_tc7_fluid)
69 #define FLUID_NUM(x) ((size_t)SCM_CELL_WORD_1(x))
70
71 #define IS_DYNAMIC_STATE(x) (!SCM_IMP (x) && SCM_TYP7 (x) == scm_tc7_dynamic_state)
72 #define DYNAMIC_STATE_FLUIDS(x) SCM_PACK (SCM_CELL_WORD_1 (x))
73 #define SET_DYNAMIC_STATE_FLUIDS(x, y) SCM_SET_CELL_WORD_1 ((x), (SCM_UNPACK (y)))
74
75
76 \f
77 /* Grow STATE so that it can hold up to ALLOCATED_FLUIDS_NUM fluids. */
78 static void
79 grow_dynamic_state (SCM state)
80 {
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);
84
85 retry:
86 new_len = allocated_fluids_num;
87 new_fluids = scm_c_make_vector (new_len, SCM_BOOL_F);
88
89 scm_i_pthread_mutex_lock (&fluid_admin_mutex);
90 if (new_len != allocated_fluids_num)
91 {
92 /* We lost the race. */
93 scm_i_pthread_mutex_unlock (&fluid_admin_mutex);
94 goto retry;
95 }
96
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);
105 }
106
107 void
108 scm_i_fluid_print (SCM exp, SCM port, scm_print_state *pstate SCM_UNUSED)
109 {
110 scm_puts ("#<fluid ", port);
111 scm_intprint ((int) FLUID_NUM (exp), 10, port);
112 scm_putc ('>', port);
113 }
114
115 void
116 scm_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
123 static size_t
124 next_fluid_num ()
125 {
126 size_t n;
127
128 scm_dynwind_begin (0);
129 scm_i_dynwind_pthread_mutex_lock (&fluid_admin_mutex);
130
131 if ((allocated_fluids_len > 0) &&
132 (allocated_fluids_num == allocated_fluids_len))
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 {
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. */
152 char *new_allocated_fluids =
153 scm_gc_malloc (allocated_fluids_len + FLUID_GROW,
154 "allocated fluids");
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;
163
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!'. */
167 allocated_fluids = new_allocated_fluids;
168 allocated_fluids_len += FLUID_GROW;
169 }
170
171 allocated_fluids_num += 1;
172 allocated_fluids[n] = 1;
173
174 scm_dynwind_end ();
175 return n;
176 }
177
178 SCM_DEFINE (scm_make_fluid, "make-fluid", 0, 0, 0,
179 (),
180 "Return a newly created fluid.\n"
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.")
187 #define FUNC_NAME s_scm_make_fluid
188 {
189 return scm_cell (scm_tc7_fluid, (scm_t_bits) next_fluid_num ());
190 }
191 #undef FUNC_NAME
192
193 SCM_DEFINE (scm_fluid_p, "fluid?", 1, 0, 0,
194 (SCM obj),
195 "Return @code{#t} iff @var{obj} is a fluid; otherwise, return\n"
196 "@code{#f}.")
197 #define FUNC_NAME s_scm_fluid_p
198 {
199 return scm_from_bool (IS_FLUID (obj));
200 }
201 #undef FUNC_NAME
202
203 int
204 scm_is_fluid (SCM obj)
205 {
206 return IS_FLUID (obj);
207 }
208
209
210
211 SCM_DEFINE (scm_fluid_ref, "fluid-ref", 1, 0, 0,
212 (SCM fluid),
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}.")
216 #define FUNC_NAME s_scm_fluid_ref
217 {
218 SCM fluids = DYNAMIC_STATE_FLUIDS (SCM_I_CURRENT_THREAD->dynamic_state);
219
220 SCM_VALIDATE_FLUID (1, fluid);
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
235 return SCM_SIMPLE_VECTOR_REF (fluids, FLUID_NUM (fluid));
236 }
237 #undef FUNC_NAME
238
239 SCM_DEFINE (scm_fluid_set_x, "fluid-set!", 2, 0, 0,
240 (SCM fluid, SCM value),
241 "Set the value associated with @var{fluid} in the current dynamic root.")
242 #define FUNC_NAME s_scm_fluid_set_x
243 {
244 SCM fluids = DYNAMIC_STATE_FLUIDS (SCM_I_CURRENT_THREAD->dynamic_state);
245
246 SCM_VALIDATE_FLUID (1, fluid);
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
261 SCM_SIMPLE_VECTOR_SET (fluids, FLUID_NUM (fluid), value);
262 return SCM_UNSPECIFIED;
263 }
264 #undef FUNC_NAME
265
266 static SCM
267 apply_thunk (void *thunk)
268 {
269 return scm_call_0 (SCM_PACK (thunk));
270 }
271
272 SCM
273 scm_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--)
296 {
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]);
301 }
302
303 return ret;
304 }
305
306 void
307 scm_i_swap_with_fluids (SCM wf, SCM dynstate)
308 {
309 SCM fluids;
310 size_t i, max = 0;
311
312 fluids = DYNAMIC_STATE_FLUIDS (dynstate);
313
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++)
318 {
319 size_t num = FLUID_NUM (SCM_WITH_FLUIDS_NTH_FLUID (wf, i));
320 max = (max > num) ? max : num;
321 }
322
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);
329
330 /* Lazily grow the current thread's dynamic state. */
331 grow_dynamic_state (dynstate);
332
333 fluids = DYNAMIC_STATE_FLUIDS (dynstate);
334 }
335
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
350 SCM_DEFINE (scm_with_fluids, "with-fluids*", 3, 0, 0,
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.")
356 #define FUNC_NAME s_scm_with_fluids
357 {
358 return scm_c_with_fluids (fluids, values,
359 apply_thunk, (void *) SCM_UNPACK (thunk));
360 }
361 #undef FUNC_NAME
362
363 SCM
364 scm_c_with_fluids (SCM fluids, SCM values, SCM (*cproc) (), void *cdata)
365 #define FUNC_NAME "scm_c_with_fluids"
366 {
367 SCM wf, ans;
368 long flen, vlen, i;
369 SCM *fluidsv, *valuesv;
370
371 SCM_VALIDATE_LIST_COPYLEN (1, fluids, flen);
372 SCM_VALIDATE_LIST_COPYLEN (2, values, vlen);
373 if (flen != vlen)
374 scm_out_of_range (s_scm_with_fluids, values);
375
376 if (SCM_UNLIKELY (flen == 0))
377 return cproc (cdata);
378
379 fluidsv = alloca (sizeof(SCM)*flen);
380 valuesv = alloca (sizeof(SCM)*flen);
381
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 ()));
393 ans = cproc (cdata);
394 scm_i_swap_with_fluids (wf, SCM_I_CURRENT_THREAD->dynamic_state);
395 scm_i_set_dynwinds (scm_cdr (scm_i_dynwinds ()));
396
397 return ans;
398 }
399 #undef FUNC_NAME
400
401 SCM_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
412 SCM
413 scm_c_with_fluid (SCM fluid, SCM value, SCM (*cproc) (), void *cdata)
414 #define FUNC_NAME "scm_c_with_fluid"
415 {
416 SCM ans, wf;
417
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 ()));
421 ans = cproc (cdata);
422 scm_i_swap_with_fluids (wf, SCM_I_CURRENT_THREAD->dynamic_state);
423 scm_i_set_dynwinds (scm_cdr (scm_i_dynwinds ()));
424
425 return ans;
426 }
427 #undef FUNC_NAME
428
429 static void
430 swap_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
438 void
439 scm_dynwind_fluid (SCM fluid, SCM value)
440 {
441 SCM data = scm_cons (fluid, value);
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);
444 }
445
446 SCM
447 scm_i_make_initial_dynamic_state ()
448 {
449 SCM fluids = scm_c_make_vector (allocated_fluids_len, SCM_BOOL_F);
450 return scm_cell (scm_tc7_dynamic_state, SCM_UNPACK (fluids));
451 }
452
453 SCM_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 {
459 SCM fluids;
460
461 if (SCM_UNBNDP (parent))
462 parent = scm_current_dynamic_state ();
463
464 SCM_ASSERT (IS_DYNAMIC_STATE (parent), parent, SCM_ARG1, FUNC_NAME);
465 fluids = scm_vector_copy (DYNAMIC_STATE_FLUIDS (parent));
466 return scm_cell (scm_tc7_dynamic_state, SCM_UNPACK (fluids));
467 }
468 #undef FUNC_NAME
469
470 SCM_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
480 int
481 scm_is_dynamic_state (SCM obj)
482 {
483 return IS_DYNAMIC_STATE (obj);
484 }
485
486 SCM_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
495 SCM_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;
503 SCM_ASSERT (IS_DYNAMIC_STATE (state), state, SCM_ARG1, FUNC_NAME);
504 t->dynamic_state = state;
505 return old;
506 }
507 #undef FUNC_NAME
508
509 static void
510 swap_dynamic_state (SCM loc)
511 {
512 SCM_SETCAR (loc, scm_set_current_dynamic_state (SCM_CAR (loc)));
513 }
514
515 void
516 scm_dynwind_current_dynamic_state (SCM state)
517 {
518 SCM loc = scm_cons (state, SCM_EOL);
519 SCM_ASSERT (IS_DYNAMIC_STATE (state), state, SCM_ARG1, NULL);
520 scm_dynwind_rewind_handler_with_scm (swap_dynamic_state, loc,
521 SCM_F_WIND_EXPLICITLY);
522 scm_dynwind_unwind_handler_with_scm (swap_dynamic_state, loc,
523 SCM_F_WIND_EXPLICITLY);
524 }
525
526 void *
527 scm_c_with_dynamic_state (SCM state, void *(*func)(void *), void *data)
528 {
529 void *result;
530 scm_dynwind_begin (SCM_F_DYNWIND_REWINDABLE);
531 scm_dynwind_current_dynamic_state (state);
532 result = func (data);
533 scm_dynwind_end ();
534 return result;
535 }
536
537 SCM_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;
544 scm_dynwind_begin (SCM_F_DYNWIND_REWINDABLE);
545 scm_dynwind_current_dynamic_state (state);
546 result = scm_call_0 (proc);
547 scm_dynwind_end ();
548 return result;
549 }
550 #undef FUNC_NAME
551
552
553 void
554 scm_init_fluids ()
555 {
556 #include "libguile/fluids.x"
557 }
558
559 /*
560 Local Variables:
561 c-file-style: "gnu"
562 End:
563 */