Try to avoid `guile-test' failures when it can't display the name of a test.
[bpt/guile.git] / libguile / fluids.h
CommitLineData
9482a297
MV
1/* classes: h_files */
2
dee01b01
DH
3#ifndef SCM_FLUIDS_H
4#define SCM_FLUIDS_H
9482a297 5
bb0229b5 6/* Copyright (C) 1996,2000,2001, 2006, 2008, 2009, 2010 Free Software Foundation, Inc.
dee01b01 7 *
73be1d9e 8 * This library is free software; you can redistribute it and/or
53befeb7
NJ
9 * modify it under the terms of the GNU Lesser General Public License
10 * as published by the Free Software Foundation; either version 3 of
11 * the License, or (at your option) any later version.
dee01b01 12 *
53befeb7
NJ
13 * This library is distributed in the hope that it will be useful, but
14 * WITHOUT ANY WARRANTY; without even the implied warranty of
73be1d9e
MV
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * Lesser General Public License for more details.
dee01b01 17 *
73be1d9e
MV
18 * You should have received a copy of the GNU Lesser General Public
19 * License along with this library; if not, write to the Free Software
53befeb7
NJ
20 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
21 * 02110-1301 USA
73be1d9e 22 */
9482a297 23
dee01b01 24\f
d3a6bc94 25
9482a297
MV
26#include "libguile/__scm.h"
27#include "libguile/root.h"
28#include "libguile/vectors.h"
29
bb0229b5
AW
30/* These "with-fluids" objects live on the dynamic stack, and record previous
31 values of fluids. Guile uses shallow binding, so the current fluid values are
32 always in the same place for a given thread, in the dynamic-state vector.
33 */
34
35#define SCM_WITH_FLUIDS_P(x) (!SCM_IMP (x) && SCM_TYP7(x) == scm_tc7_with_fluids)
36#define SCM_WITH_FLUIDS_LEN(x) (SCM_CELL_WORD ((x), 0) >> 8)
37#define SCM_WITH_FLUIDS_NTH_FLUID(x,n) (SCM_CELL_OBJECT ((x), 1 + (n)*2))
38#define SCM_WITH_FLUIDS_NTH_VAL(x,n) (SCM_CELL_OBJECT ((x), 2 + (n)*2))
39#define SCM_WITH_FLUIDS_SET_NTH_VAL(x,n,v) (SCM_SET_CELL_OBJECT ((x), 2 + (n)*2, (v)))
40
41
9482a297
MV
42/* Fluids.
43
9ea31741
AW
44 Fluids are objects of a certain type that can hold one SCM value per
45 dynamic state. That is, modifications to this value are only visible
46 to code that executes with the same dynamic state as the modifying
47 code. When a new dynamic state is constructed, it inherits the
48 values from its parent. Because each thread executes with its own
49 dynamic state, you can use fluids for thread local storage.
50
51 Each fluid is identified by a small integer. This integer is used to
52 index a vector that holds the values of all fluids. A dynamic state
53 consists of this vector, wrapped in an object so that the vector can
54 grow.
9de87eea 55 */
9482a297 56
5ef71027
AW
57#define SCM_I_FLUID_P(x) (!SCM_IMP (x) && SCM_TYP7 (x) == scm_tc7_fluid)
58#define SCM_I_FLUID_NUM(x) ((size_t)SCM_CELL_WORD_1(x))
9482a297 59
33b001fd 60SCM_API SCM scm_make_fluid (void);
9de87eea 61SCM_API int scm_is_fluid (SCM obj);
33b001fd
MV
62SCM_API SCM scm_fluid_p (SCM fl);
63SCM_API SCM scm_fluid_ref (SCM fluid);
64SCM_API SCM scm_fluid_set_x (SCM fluid, SCM value);
9482a297 65
bb0229b5
AW
66SCM_INTERNAL SCM scm_i_make_with_fluids (size_t n, SCM *fluids, SCM *vals);
67SCM_INTERNAL void scm_i_swap_with_fluids (SCM with_fluids, SCM dynamic_state);
68
33b001fd
MV
69SCM_API SCM scm_c_with_fluids (SCM fluids, SCM vals,
70 SCM (*cproc)(void *), void *cdata);
71SCM_API SCM scm_c_with_fluid (SCM fluid, SCM val,
72 SCM (*cproc)(void *), void *cdata);
73SCM_API SCM scm_with_fluids (SCM fluids, SCM vals, SCM thunk);
bebd3fba 74SCM_API SCM scm_with_fluid (SCM fluid, SCM val, SCM thunk);
b3460a50 75
661ae7ab 76SCM_API void scm_dynwind_fluid (SCM fluid, SCM value);
ef20bf70 77
5ef71027
AW
78#define SCM_I_DYNAMIC_STATE_P(x) (!SCM_IMP (x) && SCM_TYP7 (x) == scm_tc7_dynamic_state)
79#define SCM_I_DYNAMIC_STATE_FLUIDS(x) SCM_PACK (SCM_CELL_WORD_1 (x))
80
9de87eea
MV
81SCM_API SCM scm_make_dynamic_state (SCM parent);
82SCM_API SCM scm_dynamic_state_p (SCM obj);
83SCM_API int scm_is_dynamic_state (SCM obj);
84SCM_API SCM scm_current_dynamic_state (void);
85SCM_API SCM scm_set_current_dynamic_state (SCM state);
661ae7ab 86SCM_API void scm_dynwind_current_dynamic_state (SCM state);
9de87eea
MV
87SCM_API void *scm_c_with_dynamic_state (SCM state,
88 void *(*func)(void *), void *data);
89SCM_API SCM scm_with_dynamic_state (SCM state, SCM proc);
90
102dbb6f 91SCM_INTERNAL SCM scm_i_make_initial_dynamic_state (void);
9482a297 92
9ea31741 93SCM_INTERNAL void scm_i_fluid_print (SCM exp, SCM port, scm_print_state *pstate);
45cf2428 94SCM_INTERNAL void scm_i_dynamic_state_print (SCM exp, SCM port, scm_print_state *pstate);
102dbb6f 95SCM_INTERNAL void scm_init_fluids (void);
9482a297 96
dee01b01 97#endif /* SCM_FLUIDS_H */
89e00824
ML
98
99/*
100 Local Variables:
101 c-file-style: "gnu"
102 End:
103*/