1997-07-18 16:26:47 +00:00
|
|
|
|
/* classes: h_files */
|
|
|
|
|
|
|
2001-08-31 12:13:50 +00:00
|
|
|
|
#ifndef SCM_FLUIDS_H
|
|
|
|
|
|
#define SCM_FLUIDS_H
|
1997-07-18 16:26:47 +00:00
|
|
|
|
|
2010-02-18 17:10:29 +01:00
|
|
|
|
/* Copyright (C) 1996,2000,2001, 2006, 2008, 2009, 2010 Free Software Foundation, Inc.
|
2001-08-31 12:13:50 +00:00
|
|
|
|
*
|
2003-04-05 19:15:35 +00:00
|
|
|
|
* This library is free software; you can redistribute it and/or
|
2009-06-17 00:22:09 +01:00
|
|
|
|
* modify it under the terms of the GNU Lesser General Public License
|
|
|
|
|
|
* as published by the Free Software Foundation; either version 3 of
|
|
|
|
|
|
* the License, or (at your option) any later version.
|
2001-08-31 12:13:50 +00:00
|
|
|
|
*
|
2009-06-17 00:22:09 +01:00
|
|
|
|
* This library is distributed in the hope that it will be useful, but
|
|
|
|
|
|
* WITHOUT ANY WARRANTY; without even the implied warranty of
|
2003-04-05 19:15:35 +00:00
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
|
|
* Lesser General Public License for more details.
|
2001-08-31 12:13:50 +00:00
|
|
|
|
*
|
2003-04-05 19:15:35 +00:00
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
|
|
* License along with this library; if not, write to the Free Software
|
2009-06-17 00:22:09 +01:00
|
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
|
|
|
|
|
|
* 02110-1301 USA
|
2003-04-05 19:15:35 +00:00
|
|
|
|
*/
|
1997-07-18 16:26:47 +00:00
|
|
|
|
|
2001-08-31 12:13:50 +00:00
|
|
|
|
|
1999-12-16 03:46:42 +00:00
|
|
|
|
|
1997-07-18 16:26:47 +00:00
|
|
|
|
#include "libguile/__scm.h"
|
|
|
|
|
|
#include "libguile/root.h"
|
|
|
|
|
|
#include "libguile/vectors.h"
|
|
|
|
|
|
|
2010-02-18 17:10:29 +01:00
|
|
|
|
/* These "with-fluids" objects live on the dynamic stack, and record previous
|
|
|
|
|
|
values of fluids. Guile uses shallow binding, so the current fluid values are
|
|
|
|
|
|
always in the same place for a given thread, in the dynamic-state vector.
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#define SCM_WITH_FLUIDS_P(x) (!SCM_IMP (x) && SCM_TYP7(x) == scm_tc7_with_fluids)
|
|
|
|
|
|
#define SCM_WITH_FLUIDS_LEN(x) (SCM_CELL_WORD ((x), 0) >> 8)
|
|
|
|
|
|
#define SCM_WITH_FLUIDS_NTH_FLUID(x,n) (SCM_CELL_OBJECT ((x), 1 + (n)*2))
|
|
|
|
|
|
#define SCM_WITH_FLUIDS_NTH_VAL(x,n) (SCM_CELL_OBJECT ((x), 2 + (n)*2))
|
|
|
|
|
|
#define SCM_WITH_FLUIDS_SET_NTH_VAL(x,n,v) (SCM_SET_CELL_OBJECT ((x), 2 + (n)*2, (v)))
|
|
|
|
|
|
|
|
|
|
|
|
|
1997-07-18 16:26:47 +00:00
|
|
|
|
/* Fluids.
|
|
|
|
|
|
|
fluids are tc7 objects
If you're wondering what I'm doing, I'm trying to eventually reimplement
smobs in terms of structs, so that applicable smobs can just follow the
applicable struct dispatch path. But to do that I have to get structs
initialized before things that use smobs, which means transforming a
bunch of smobby things to tc7 things. But this transformation is good
for performance anyway, and we currently have a glut of unused tc7s,
so here we go...
* libguile/tags.h (scm_tc7_fluid, scm_tc7_dynamic_state): Fluids (and
dynamic states) now have tc7s.
* libguile/fluids.h: Remove scm_fluids_prehistory, and add internal
scm_i_fluid_print. Update a comment.
* libguile/fluids.c: Update for tc7 representation. Also remove the next
pointers while we're at it, as they aren't used in the new BDW GC.
* libguile/eq.c (scm_equal_p): Remove the hashtable case. Hashtables
could never be equal? before, I don't see why to add stubs doing the
same thing now.
* libguile/print.c (iprin1):
* libguile/gc.c (scm_i_tag_name):
* libguile/evalext.c (scm_self_evaluating_p): Add fluid and
dynamic_state cases.
* libguile/goops.h: Remove scm_class_hashtable; it will be static.
* libguile/goops.c: Make <hashtable> static, and add <fluid> and
<dynamic-state> classes.
* libguile/hashtab.h:
* libguile/hashtab.c: Remove scm_i_hashtable_equal_p.
* libguile/init.c (scm_i_init_guile): Remove call to fluids_prehistory.
2009-12-05 10:52:18 +01:00
|
|
|
|
Fluids are objects of a certain type that can hold one SCM value per
|
|
|
|
|
|
dynamic state. That is, modifications to this value are only visible
|
|
|
|
|
|
to code that executes with the same dynamic state as the modifying
|
|
|
|
|
|
code. When a new dynamic state is constructed, it inherits the
|
|
|
|
|
|
values from its parent. Because each thread executes with its own
|
|
|
|
|
|
dynamic state, you can use fluids for thread local storage.
|
|
|
|
|
|
|
|
|
|
|
|
Each fluid is identified by a small integer. This integer is used to
|
|
|
|
|
|
index a vector that holds the values of all fluids. A dynamic state
|
|
|
|
|
|
consists of this vector, wrapped in an object so that the vector can
|
|
|
|
|
|
grow.
|
2005-03-02 20:42:01 +00:00
|
|
|
|
*/
|
1997-07-18 16:26:47 +00:00
|
|
|
|
|
|
|
|
|
|
/* The fastest way to acces/modify the value of a fluid. These macros
|
2005-03-02 20:42:01 +00:00
|
|
|
|
do no error checking at all. The first argument is the index
|
|
|
|
|
|
number of the fluid, obtained via SCM_FLUID_NUM, not the fluid
|
|
|
|
|
|
itself. You must make sure that the fluid remains protected as
|
|
|
|
|
|
long you use its number since numbers of unused fluids are reused
|
|
|
|
|
|
eventually.
|
|
|
|
|
|
*/
|
1997-07-18 16:26:47 +00:00
|
|
|
|
|
2001-11-02 00:19:12 +00:00
|
|
|
|
SCM_API SCM scm_make_fluid (void);
|
2005-03-02 20:42:01 +00:00
|
|
|
|
SCM_API int scm_is_fluid (SCM obj);
|
2001-11-02 00:19:12 +00:00
|
|
|
|
SCM_API SCM scm_fluid_p (SCM fl);
|
|
|
|
|
|
SCM_API SCM scm_fluid_ref (SCM fluid);
|
|
|
|
|
|
SCM_API SCM scm_fluid_set_x (SCM fluid, SCM value);
|
1997-07-18 16:26:47 +00:00
|
|
|
|
|
2010-02-18 17:10:29 +01:00
|
|
|
|
SCM_INTERNAL SCM scm_i_make_with_fluids (size_t n, SCM *fluids, SCM *vals);
|
|
|
|
|
|
SCM_INTERNAL void scm_i_swap_with_fluids (SCM with_fluids, SCM dynamic_state);
|
|
|
|
|
|
|
2001-11-02 00:19:12 +00:00
|
|
|
|
SCM_API SCM scm_c_with_fluids (SCM fluids, SCM vals,
|
|
|
|
|
|
SCM (*cproc)(void *), void *cdata);
|
|
|
|
|
|
SCM_API SCM scm_c_with_fluid (SCM fluid, SCM val,
|
|
|
|
|
|
SCM (*cproc)(void *), void *cdata);
|
|
|
|
|
|
SCM_API SCM scm_with_fluids (SCM fluids, SCM vals, SCM thunk);
|
2004-01-07 19:47:18 +00:00
|
|
|
|
SCM_API SCM scm_with_fluid (SCM fluid, SCM val, SCM thunk);
|
1997-07-26 20:08:42 +00:00
|
|
|
|
|
2006-01-29 00:23:28 +00:00
|
|
|
|
SCM_API void scm_dynwind_fluid (SCM fluid, SCM value);
|
2004-01-07 18:08:52 +00:00
|
|
|
|
|
2005-03-02 20:42:01 +00:00
|
|
|
|
SCM_API SCM scm_make_dynamic_state (SCM parent);
|
|
|
|
|
|
SCM_API SCM scm_dynamic_state_p (SCM obj);
|
|
|
|
|
|
SCM_API int scm_is_dynamic_state (SCM obj);
|
|
|
|
|
|
SCM_API SCM scm_current_dynamic_state (void);
|
|
|
|
|
|
SCM_API SCM scm_set_current_dynamic_state (SCM state);
|
2006-01-29 00:23:28 +00:00
|
|
|
|
SCM_API void scm_dynwind_current_dynamic_state (SCM state);
|
2005-03-02 20:42:01 +00:00
|
|
|
|
SCM_API void *scm_c_with_dynamic_state (SCM state,
|
|
|
|
|
|
void *(*func)(void *), void *data);
|
|
|
|
|
|
SCM_API SCM scm_with_dynamic_state (SCM state, SCM proc);
|
|
|
|
|
|
|
2008-05-14 05:20:47 +02:00
|
|
|
|
SCM_INTERNAL SCM scm_i_make_initial_dynamic_state (void);
|
1997-07-18 16:26:47 +00:00
|
|
|
|
|
fluids are tc7 objects
If you're wondering what I'm doing, I'm trying to eventually reimplement
smobs in terms of structs, so that applicable smobs can just follow the
applicable struct dispatch path. But to do that I have to get structs
initialized before things that use smobs, which means transforming a
bunch of smobby things to tc7 things. But this transformation is good
for performance anyway, and we currently have a glut of unused tc7s,
so here we go...
* libguile/tags.h (scm_tc7_fluid, scm_tc7_dynamic_state): Fluids (and
dynamic states) now have tc7s.
* libguile/fluids.h: Remove scm_fluids_prehistory, and add internal
scm_i_fluid_print. Update a comment.
* libguile/fluids.c: Update for tc7 representation. Also remove the next
pointers while we're at it, as they aren't used in the new BDW GC.
* libguile/eq.c (scm_equal_p): Remove the hashtable case. Hashtables
could never be equal? before, I don't see why to add stubs doing the
same thing now.
* libguile/print.c (iprin1):
* libguile/gc.c (scm_i_tag_name):
* libguile/evalext.c (scm_self_evaluating_p): Add fluid and
dynamic_state cases.
* libguile/goops.h: Remove scm_class_hashtable; it will be static.
* libguile/goops.c: Make <hashtable> static, and add <fluid> and
<dynamic-state> classes.
* libguile/hashtab.h:
* libguile/hashtab.c: Remove scm_i_hashtable_equal_p.
* libguile/init.c (scm_i_init_guile): Remove call to fluids_prehistory.
2009-12-05 10:52:18 +01:00
|
|
|
|
SCM_INTERNAL void scm_i_fluid_print (SCM exp, SCM port, scm_print_state *pstate);
|
2009-12-05 10:55:37 +01:00
|
|
|
|
SCM_INTERNAL void scm_i_dynamic_state_print (SCM exp, SCM port, scm_print_state *pstate);
|
2008-05-14 05:20:47 +02:00
|
|
|
|
SCM_INTERNAL void scm_init_fluids (void);
|
1997-07-18 16:26:47 +00:00
|
|
|
|
|
2001-08-31 12:13:50 +00:00
|
|
|
|
#endif /* SCM_FLUIDS_H */
|
2000-03-19 19:01:16 +00:00
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
|
Local Variables:
|
|
|
|
|
|
c-file-style: "gnu"
|
|
|
|
|
|
End:
|
|
|
|
|
|
*/
|