fluids.c 7.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269
  1. /* Copyright (C) 1996, 1997, 2000, 2002 Free Software Foundation, Inc.
  2. *
  3. * This program is free software; you can redistribute it and/or modify
  4. * it under the terms of the GNU General Public License as published by
  5. * the Free Software Foundation; either version 2, or (at your option)
  6. * any later version.
  7. *
  8. * This program is distributed in the hope that it will be useful,
  9. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. * GNU General Public License for more details.
  12. *
  13. * You should have received a copy of the GNU General Public License
  14. * along with this software; see the file COPYING. If not, write to
  15. * the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
  16. * Boston, MA 02111-1307 USA
  17. *
  18. * As a special exception, the Free Software Foundation gives permission
  19. * for additional uses of the text contained in its release of GUILE.
  20. *
  21. * The exception is that, if you link the GUILE library with other files
  22. * to produce an executable, this does not by itself cause the
  23. * resulting executable to be covered by the GNU General Public License.
  24. * Your use of that executable is in no way restricted on account of
  25. * linking the GUILE library code into it.
  26. *
  27. * This exception does not however invalidate any other reasons why
  28. * the executable file might be covered by the GNU General Public License.
  29. *
  30. * This exception applies only to the code released by the
  31. * Free Software Foundation under the name GUILE. If you copy
  32. * code from other Free Software Foundation releases into a copy of
  33. * GUILE, as the General Public License permits, the exception does
  34. * not apply to the code that you add in this way. To avoid misleading
  35. * anyone as to the status of such modified files, you must delete
  36. * this exception notice from them.
  37. *
  38. * If you write modifications of your own for GUILE, it is your choice
  39. * whether to permit this exception to apply to your modifications.
  40. * If you do not wish that, delete this exception notice. */
  41. #include "libguile/_scm.h"
  42. #include "libguile/print.h"
  43. #include "libguile/smob.h"
  44. #include "libguile/dynwind.h"
  45. #include "libguile/fluids.h"
  46. #include "libguile/alist.h"
  47. #include "libguile/eval.h"
  48. #include "libguile/ports.h"
  49. #define INITIAL_FLUIDS 10
  50. #include "libguile/validate.h"
  51. static volatile int n_fluids;
  52. long scm_tc16_fluid;
  53. SCM
  54. scm_make_initial_fluids ()
  55. {
  56. return scm_make_vector (SCM_MAKINUM (INITIAL_FLUIDS),
  57. SCM_BOOL_F);
  58. }
  59. static void
  60. grow_fluids (scm_root_state *root_state, int new_length)
  61. {
  62. SCM old_fluids, new_fluids;
  63. int old_length, i;
  64. old_fluids = root_state->fluids;
  65. old_length = SCM_LENGTH (old_fluids);
  66. new_fluids = scm_make_vector (SCM_MAKINUM (new_length), SCM_BOOL_F);
  67. i = 0;
  68. while (i < old_length)
  69. {
  70. SCM_VELTS(new_fluids)[i] = SCM_VELTS(old_fluids)[i];
  71. i++;
  72. }
  73. while (i < new_length)
  74. {
  75. SCM_VELTS(new_fluids)[i] = SCM_BOOL_F;
  76. i++;
  77. }
  78. root_state->fluids = new_fluids;
  79. }
  80. void
  81. scm_copy_fluids (scm_root_state *root_state)
  82. {
  83. grow_fluids (root_state, SCM_LENGTH(root_state->fluids));
  84. }
  85. static int
  86. print_fluid (SCM exp, SCM port, scm_print_state *pstate)
  87. {
  88. scm_puts ("#<fluid ", port);
  89. scm_intprint ((int) SCM_FLUID_NUM (exp), 10, port);
  90. scm_putc ('>', port);
  91. return 1;
  92. }
  93. static int
  94. next_fluid_num ()
  95. {
  96. int n;
  97. #ifdef USE_THREADS
  98. SCM_THREAD_CRITICAL_SECTION_START;
  99. #endif
  100. n = n_fluids++;
  101. #ifdef USE_THREADS
  102. SCM_THREAD_CRITICAL_SECTION_END;
  103. #endif
  104. return n;
  105. }
  106. SCM_DEFINE (scm_make_fluid, "make-fluid", 0, 0, 0,
  107. (),
  108. "Return a newly created fluid.\n"
  109. "Fluids are objects of a certain type (a smob) that can hold one SCM\n"
  110. "value per dynamic root. That is, modifications to this value are\n"
  111. "only visible to code that executes within the same dynamic root as\n"
  112. "the modifying code. When a new dynamic root is constructed, it\n"
  113. "inherits the values from its parent. Because each thread executes\n"
  114. "in its own dynamic root, you can use fluids for thread local storage.")
  115. #define FUNC_NAME s_scm_make_fluid
  116. {
  117. int n;
  118. SCM_DEFER_INTS;
  119. n = next_fluid_num ();
  120. SCM_RETURN_NEWSMOB (scm_tc16_fluid, n);
  121. }
  122. #undef FUNC_NAME
  123. SCM_DEFINE (scm_fluid_p, "fluid?", 1, 0, 0,
  124. (SCM obj),
  125. "Return #t iff @var{obj} is a fluid; otherwise, return #f.")
  126. #define FUNC_NAME s_scm_fluid_p
  127. {
  128. return SCM_BOOL(SCM_FLUIDP (obj));
  129. }
  130. #undef FUNC_NAME
  131. SCM_DEFINE (scm_fluid_ref, "fluid-ref", 1, 0, 0,
  132. (SCM fluid),
  133. "Return the value associated with @var{fluid} in the current dynamic root.\n"
  134. "If @var{fluid} has not been set, then this returns #f.")
  135. #define FUNC_NAME s_scm_fluid_ref
  136. {
  137. int n;
  138. SCM_VALIDATE_FLUID (1, fluid);
  139. n = SCM_FLUID_NUM (fluid);
  140. if (SCM_LENGTH (scm_root->fluids) <= n)
  141. grow_fluids (scm_root, n+1);
  142. return SCM_VELTS(scm_root->fluids)[n];
  143. }
  144. #undef FUNC_NAME
  145. SCM_DEFINE (scm_fluid_set_x, "fluid-set!", 2, 0, 0,
  146. (SCM fluid, SCM value),
  147. "Set the value associated with @var{fluid} in the current dynamic root.")
  148. #define FUNC_NAME s_scm_fluid_set_x
  149. {
  150. int n;
  151. SCM_VALIDATE_FLUID (1, fluid);
  152. n = SCM_FLUID_NUM (fluid);
  153. if (SCM_LENGTH (scm_root->fluids) <= n)
  154. grow_fluids (scm_root, n+1);
  155. SCM_VELTS(scm_root->fluids)[n] = value;
  156. return value;
  157. }
  158. #undef FUNC_NAME
  159. void
  160. scm_swap_fluids (SCM fluids, SCM vals)
  161. {
  162. while (SCM_NIMP (fluids))
  163. {
  164. SCM fl = SCM_CAR (fluids);
  165. SCM old_val = scm_fluid_ref (fl);
  166. scm_fluid_set_x (fl, SCM_CAR (vals));
  167. SCM_SETCAR (vals, old_val);
  168. fluids = SCM_CDR (fluids);
  169. vals = SCM_CDR (vals);
  170. }
  171. }
  172. /* Swap the fluid values in reverse order. This is important when the
  173. same fluid appears multiple times in the fluids list. */
  174. void
  175. scm_swap_fluids_reverse (SCM fluids, SCM vals)
  176. {
  177. if (SCM_NIMP (fluids))
  178. {
  179. SCM fl, old_val;
  180. scm_swap_fluids_reverse (SCM_CDR (fluids), SCM_CDR (vals));
  181. fl = SCM_CAR (fluids);
  182. old_val = scm_fluid_ref (fl);
  183. scm_fluid_set_x (fl, SCM_CAR (vals));
  184. SCM_SETCAR (vals, old_val);
  185. }
  186. }
  187. static SCM
  188. apply_thunk (void *thunk)
  189. {
  190. return scm_apply (SCM_PACK (thunk), SCM_EOL, SCM_EOL);
  191. }
  192. SCM_DEFINE (scm_with_fluids, "with-fluids*", 3, 0, 0,
  193. (SCM fluids, SCM values, SCM thunk),
  194. "Set @var{fluids} to @var{values} temporary, and call @var{thunk}.\n"
  195. "@var{fluids} must be a list of fluids and @var{values} must be the same\n"
  196. "number of their values to be applied. Each substitution is done\n"
  197. "one after another. @var{thunk} must be a procedure with no argument.")
  198. #define FUNC_NAME s_scm_with_fluids
  199. {
  200. return scm_internal_with_fluids (fluids, values, apply_thunk, (void *) SCM_UNPACK (thunk));
  201. }
  202. #undef FUNC_NAME
  203. SCM
  204. scm_internal_with_fluids (SCM fluids, SCM values, SCM (*cproc) (), void *cdata)
  205. #define FUNC_NAME "scm_internal_with_fluids"
  206. {
  207. SCM ans;
  208. int flen, vlen;
  209. SCM_VALIDATE_LIST_COPYLEN (1, fluids, flen);
  210. SCM_VALIDATE_LIST_COPYLEN (2, values, vlen);
  211. if (flen != vlen)
  212. scm_out_of_range (s_scm_with_fluids, values);
  213. scm_swap_fluids (fluids, values);
  214. scm_dynwinds = scm_acons (fluids, values, scm_dynwinds);
  215. ans = cproc (cdata);
  216. scm_dynwinds = SCM_CDR (scm_dynwinds);
  217. scm_swap_fluids_reverse (fluids, values);
  218. return ans;
  219. }
  220. #undef FUNC_NAME
  221. void
  222. scm_init_fluids ()
  223. {
  224. scm_tc16_fluid = scm_make_smob_type_mfpe ("fluid", 0,
  225. NULL, NULL, print_fluid, NULL);
  226. #include "libguile/fluids.x"
  227. }
  228. /*
  229. Local Variables:
  230. c-file-style: "gnu"
  231. End:
  232. */