Correct, update, improve and clean up a lot of docstrings in order to make
[bpt/guile.git] / libguile / dynwind.c
CommitLineData
bd47429e 1/* Copyright (C) 1995, 1996, 1998, 1999, 2000 Free Software Foundation, Inc.
0f2d19dd
JB
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
82892bed
JB
15 * the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
16 * Boston, MA 02111-1307 USA
0f2d19dd
JB
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.
82892bed 40 * If you do not wish that, delete this exception notice. */
1bbd0b84
GB
41
42/* Software engineering face-lift by Greg J. Badros, 11-Dec-1999,
43 gjb@cs.washington.edu, http://www.cs.washington.edu/homes/gjb */
44
0f2d19dd
JB
45\f
46
a0599745
MD
47#include "libguile/_scm.h"
48#include "libguile/eval.h"
49#include "libguile/alist.h"
50#include "libguile/fluids.h"
51#include "libguile/ports.h"
52#include "libguile/smob.h"
0f2d19dd 53
a0599745 54#include "libguile/dynwind.h"
0f2d19dd
JB
55\f
56
57/* {Dynamic wind}
b3460a50
MV
58
59 Things that can be on the wind list:
60
61 (enter-proc . leave-proc) dynamic-wind
62 (tag . jmpbuf) catch
63 (tag . lazy-catch) lazy-catch
64 tag is either a symbol or a boolean
65
66 ((fluid ...) . (value ...)) with-fluids
67
68*/
0f2d19dd
JB
69
70
71
3b3b36dd 72SCM_DEFINE (scm_dynamic_wind, "dynamic-wind", 3, 0, 0,
1e6808ea
MG
73 (SCM in_guard, SCM thunk, SCM out_guard),
74 "All three arguments must be 0-argument procedures.\n"
75 "@var{in_guard} is called, then @var{thunk}, then\n"
76 "@var{out_guard}.\n"
77 "\n"
78 "If, any time during the execution of @var{thunk}, the\n"
79 "continuation of the @code{dynamic_wind} expression is escaped\n"
80 "non-locally, @var{out_guard} is called. If the continuation of\n"
81 "the dynamic-wind is re-entered, @var{in_guard} is called. Thus\n"
82 "@var{in_guard} and @var{out_guard} may be called any number of\n"
83 "times.\n"
84 "@lisp\n"
b380b885 85 "(define x 'normal-binding)\n"
1e6808ea 86 "@result{} x\n"
b380b885
MD
87 "(define a-cont (call-with-current-continuation \n"
88 " (lambda (escape)\n"
89 " (let ((old-x x))\n"
90 " (dynamic-wind\n"
91 " ;; in-guard:\n"
92 " ;;\n"
1e6808ea
MG
93 " (lambda () (set! x 'special-binding))\n"
94 "\n"
b380b885
MD
95 " ;; thunk\n"
96 " ;;\n"
97 " (lambda () (display x) (newline)\n"
98 " (call-with-current-continuation escape)\n"
99 " (display x) (newline)\n"
1e6808ea
MG
100 " x)\n"
101 "\n"
b380b885
MD
102 " ;; out-guard:\n"
103 " ;;\n"
1e6808ea
MG
104 " (lambda () (set! x old-x)))))))\n"
105 "\n"
b380b885
MD
106 ";; Prints: \n"
107 "special-binding\n"
108 ";; Evaluates to:\n"
1e6808ea 109 "@result{} a-cont\n"
b380b885 110 "x\n"
1e6808ea 111 "@result{} normal-binding\n"
b380b885
MD
112 "(a-cont #f)\n"
113 ";; Prints:\n"
114 "special-binding\n"
115 ";; Evaluates to:\n"
1e6808ea 116 "@result{} a-cont ;; the value of the (define a-cont...)\n"
b380b885 117 "x\n"
1e6808ea 118 "@result{} normal-binding\n"
b380b885
MD
119 "a-cont\n"
120 "@result{} special-binding\n"
1e6808ea 121 "@end lisp")
1bbd0b84 122#define FUNC_NAME s_scm_dynamic_wind
0f2d19dd
JB
123{
124 SCM ans;
1e6808ea
MG
125 SCM_ASSERT (SCM_NFALSEP (scm_thunk_p (out_guard)),
126 out_guard,
1bbd0b84 127 SCM_ARG3, FUNC_NAME);
1e6808ea
MG
128 scm_apply (in_guard, SCM_EOL, SCM_EOL);
129 scm_dynwinds = scm_acons (in_guard, out_guard, scm_dynwinds);
130 ans = scm_apply (thunk, SCM_EOL, SCM_EOL);
0f2d19dd 131 scm_dynwinds = SCM_CDR (scm_dynwinds);
1e6808ea 132 scm_apply (out_guard, SCM_EOL, SCM_EOL);
0f2d19dd
JB
133 return ans;
134}
1bbd0b84 135#undef FUNC_NAME
0f2d19dd 136
3346a90f
MD
137/* The implementation of a C-callable dynamic-wind,
138 * scm_internal_dynamic_wind, requires packaging of C pointers in a
139 * smob. Objects of this type are pushed onto the dynwind chain.
140 */
141
e841c3e0 142#define SCM_GUARDSP(obj) SCM_TYP16_PREDICATE (tc16_guards, obj)
bd47429e
MD
143#define SCM_BEFORE_GUARD(obj) ((scm_guard_t) SCM_CELL_WORD (obj, 1))
144#define SCM_AFTER_GUARD(obj) ((scm_guard_t) SCM_CELL_WORD (obj, 2))
145#define SCM_GUARD_DATA(obj) ((void *) SCM_CELL_WORD (obj, 3))
3346a90f 146
e841c3e0 147static scm_bits_t tc16_guards;
3346a90f 148
3346a90f 149static int
e841c3e0 150guards_print (SCM exp, SCM port, scm_print_state *pstate)
3346a90f
MD
151{
152 scm_puts ("#<guards ", port);
f1267706 153 scm_intprint (SCM_UNPACK (SCM_CDR (exp)), 16, port);
3346a90f
MD
154 scm_putc ('>', port);
155 return 1;
156}
157
3346a90f
MD
158SCM
159scm_internal_dynamic_wind (scm_guard_t before,
160 scm_inner_t inner,
161 scm_guard_t after,
162 void *inner_data,
163 void *guard_data)
164{
165 SCM guards, ans;
3346a90f 166 before (guard_data);
843524cc
DH
167 SCM_NEWSMOB3 (guards, tc16_guards, (scm_bits_t) before,
168 (scm_bits_t) after, (scm_bits_t) guard_data);
3346a90f
MD
169 scm_dynwinds = scm_acons (guards, SCM_BOOL_F, scm_dynwinds);
170 ans = inner (inner_data);
171 scm_dynwinds = SCM_CDR (scm_dynwinds);
172 after (guard_data);
173 return ans;
174}
1cc91f1b 175
c2654ef0 176#ifdef GUILE_DEBUG
a1ec6916 177SCM_DEFINE (scm_wind_chain, "wind-chain", 0, 0, 0,
1bbd0b84 178 (),
156149ad
MG
179 "Return the current wind chain. The wind chain contains all\n"
180 "information required by @code{dynamic-wind} to call its\n"
181 "argument thunks when entering/exiting its scope.")
1bbd0b84 182#define FUNC_NAME s_scm_wind_chain
c2654ef0
MD
183{
184 return scm_dynwinds;
185}
1bbd0b84 186#undef FUNC_NAME
c2654ef0
MD
187#endif
188
6778caf9
MD
189static void
190scm_swap_bindings (SCM glocs, SCM vals)
191{
192 SCM tmp;
193 while (SCM_NIMP (vals))
194 {
195 tmp = SCM_GLOC_VAL (SCM_CAR (glocs));
15237f30
MD
196 SCM_SETCDR (SCM_PACK (SCM_UNPACK (SCM_CAR (glocs)) - 1L),
197 SCM_CAR (vals));
6778caf9
MD
198 SCM_SETCAR (vals, tmp);
199 glocs = SCM_CDR (glocs);
200 vals = SCM_CDR (vals);
201 }
202}
c2654ef0 203
0f2d19dd 204void
6e8d25a6 205scm_dowinds (SCM to, long delta)
0f2d19dd
JB
206{
207 tail:
843524cc 208 if (SCM_EQ_P (to, scm_dynwinds));
0f2d19dd
JB
209 else if (0 > delta)
210 {
211 SCM wind_elt;
212 SCM wind_key;
213
214 scm_dowinds (SCM_CDR (to), 1 + delta);
215 wind_elt = SCM_CAR (to);
216#if 0
217 if (SCM_INUMP (wind_elt))
218 {
219 scm_cross_dynwind_binding_scope (wind_elt, 0);
220 }
221 else
222#endif
223 {
224 wind_key = SCM_CAR (wind_elt);
6778caf9
MD
225 /* key = #t | symbol | thunk | list of glocs | list of fluids */
226 if (SCM_NIMP (wind_key))
b3460a50 227 {
6778caf9
MD
228 if (SCM_TYP3 (wind_key) == scm_tc3_cons_gloc)
229 scm_swap_bindings (wind_key, SCM_CDR (wind_elt));
4725c298
MD
230 else if (SCM_TYP3 (wind_key) == scm_tc3_cons)
231 scm_swap_fluids (wind_key, SCM_CDR (wind_elt));
232 else if (SCM_GUARDSP (wind_key))
233 SCM_BEFORE_GUARD (wind_key) (SCM_GUARD_DATA (wind_key));
234 else if (SCM_TYP3 (wind_key) == scm_tc3_closure)
235 scm_apply (wind_key, SCM_EOL, SCM_EOL);
b3460a50 236 }
0f2d19dd
JB
237 }
238 scm_dynwinds = to;
239 }
240 else
241 {
242 SCM from;
243 SCM wind_elt;
244 SCM wind_key;
245
246 from = SCM_CDR (SCM_CAR (scm_dynwinds));
247 wind_elt = SCM_CAR (scm_dynwinds);
248 scm_dynwinds = SCM_CDR (scm_dynwinds);
249#if 0
250 if (SCM_INUMP (wind_elt))
251 {
252 scm_cross_dynwind_binding_scope (wind_elt, 0);
253 }
254 else
255#endif
256 {
257 wind_key = SCM_CAR (wind_elt);
6778caf9 258 if (SCM_NIMP (wind_key))
b3460a50 259 {
6778caf9
MD
260 if (SCM_TYP3 (wind_key) == scm_tc3_cons_gloc)
261 scm_swap_bindings (wind_key, from);
4725c298
MD
262 else if (SCM_TYP3 (wind_key) == scm_tc3_cons)
263 scm_swap_fluids_reverse (wind_key, from);
264 else if (SCM_GUARDSP (wind_key))
265 SCM_AFTER_GUARD (wind_key) (SCM_GUARD_DATA (wind_key));
266 else if (SCM_TYP3 (wind_key) == scm_tc3_closure)
267 scm_apply (from, SCM_EOL, SCM_EOL);
b3460a50 268 }
0f2d19dd
JB
269 }
270 delta--;
271 goto tail; /* scm_dowinds(to, delta-1); */
272 }
273}
274
275
1cc91f1b 276
0f2d19dd
JB
277void
278scm_init_dynwind ()
0f2d19dd 279{
e841c3e0
KN
280 tc16_guards = scm_make_smob_type ("guards", 0);
281 scm_set_smob_print (tc16_guards, guards_print);
8dc9439f 282#ifndef SCM_MAGIC_SNARFER
a0599745 283#include "libguile/dynwind.x"
8dc9439f 284#endif
0f2d19dd 285}
89e00824
ML
286
287/*
288 Local Variables:
289 c-file-style: "gnu"
290 End:
291*/