libguile/Makefile.am (snarfcppopts): Remove CFLAGS
[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
98eaef1b 6/* Copyright (C) 1996,2000,2001, 2006, 2008, 2009, 2010, 2011, 2012, 2013 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 30
9482a297
MV
31/* Fluids.
32
9ea31741
AW
33 Fluids are objects of a certain type that can hold one SCM value per
34 dynamic state. That is, modifications to this value are only visible
35 to code that executes with the same dynamic state as the modifying
36 code. When a new dynamic state is constructed, it inherits the
37 values from its parent. Because each thread executes with its own
38 dynamic state, you can use fluids for thread local storage.
39
40 Each fluid is identified by a small integer. This integer is used to
41 index a vector that holds the values of all fluids. A dynamic state
42 consists of this vector, wrapped in an object so that the vector can
43 grow.
9de87eea 44 */
9482a297 45
dc7da0be 46#define SCM_FLUID_P(x) (SCM_HAS_TYP7 (x, scm_tc7_fluid))
6f8d7b12 47#ifdef BUILDING_LIBGUILE
aafb4ed7
AW
48#define SCM_I_FLUID_NUM(x) ((size_t)(SCM_CELL_WORD_0 (x) >> 8))
49#define SCM_I_FLUID_DEFAULT(x) (SCM_CELL_OBJECT_1 (x))
6f8d7b12 50#endif
9482a297 51
33b001fd 52SCM_API SCM scm_make_fluid (void);
aafb4ed7 53SCM_API SCM scm_make_fluid_with_default (SCM dflt);
e01163b5 54SCM_API SCM scm_make_unbound_fluid (void);
9de87eea 55SCM_API int scm_is_fluid (SCM obj);
33b001fd
MV
56SCM_API SCM scm_fluid_p (SCM fl);
57SCM_API SCM scm_fluid_ref (SCM fluid);
58SCM_API SCM scm_fluid_set_x (SCM fluid, SCM value);
ef94624e
BT
59SCM_API SCM scm_fluid_unset_x (SCM fluid);
60SCM_API SCM scm_fluid_bound_p (SCM fluid);
9482a297 61
98eaef1b 62SCM_INTERNAL void scm_swap_fluid (SCM fluid, SCM value_box, SCM dynamic_state);
bb0229b5 63
33b001fd
MV
64SCM_API SCM scm_c_with_fluids (SCM fluids, SCM vals,
65 SCM (*cproc)(void *), void *cdata);
66SCM_API SCM scm_c_with_fluid (SCM fluid, SCM val,
67 SCM (*cproc)(void *), void *cdata);
68SCM_API SCM scm_with_fluids (SCM fluids, SCM vals, SCM thunk);
bebd3fba 69SCM_API SCM scm_with_fluid (SCM fluid, SCM val, SCM thunk);
b3460a50 70
661ae7ab 71SCM_API void scm_dynwind_fluid (SCM fluid, SCM value);
ef20bf70 72
6f8d7b12 73#ifdef BUILDING_LIBGUILE
dc7da0be 74#define SCM_I_DYNAMIC_STATE_P(x) (SCM_HAS_TYP7 (x, scm_tc7_dynamic_state))
5ef71027 75#define SCM_I_DYNAMIC_STATE_FLUIDS(x) SCM_PACK (SCM_CELL_WORD_1 (x))
6f8d7b12 76#endif
5ef71027 77
9de87eea
MV
78SCM_API SCM scm_make_dynamic_state (SCM parent);
79SCM_API SCM scm_dynamic_state_p (SCM obj);
80SCM_API int scm_is_dynamic_state (SCM obj);
81SCM_API SCM scm_current_dynamic_state (void);
82SCM_API SCM scm_set_current_dynamic_state (SCM state);
661ae7ab 83SCM_API void scm_dynwind_current_dynamic_state (SCM state);
9de87eea
MV
84SCM_API void *scm_c_with_dynamic_state (SCM state,
85 void *(*func)(void *), void *data);
86SCM_API SCM scm_with_dynamic_state (SCM state, SCM proc);
87
102dbb6f 88SCM_INTERNAL SCM scm_i_make_initial_dynamic_state (void);
9482a297 89
9ea31741 90SCM_INTERNAL void scm_i_fluid_print (SCM exp, SCM port, scm_print_state *pstate);
45cf2428 91SCM_INTERNAL void scm_i_dynamic_state_print (SCM exp, SCM port, scm_print_state *pstate);
102dbb6f 92SCM_INTERNAL void scm_init_fluids (void);
9482a297 93
dee01b01 94#endif /* SCM_FLUIDS_H */
89e00824
ML
95
96/*
97 Local Variables:
98 c-file-style: "gnu"
99 End:
100*/