* root.c (scm_make_root): Initialize all the fields of the new
[bpt/guile.git] / libguile / root.c
CommitLineData
4ea1f83d 1/* Copyright (C) 1995,1996,1997,1998, 1999 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. */
0f2d19dd
JB
41\f
42
43#include <stdio.h>
44#include "_scm.h"
20e6290e 45#include "stackchk.h"
d564d753
MD
46#include "dynwind.h"
47#include "eval.h"
48#include "genio.h"
49#include "smob.h"
50#include "pairs.h"
51#include "throw.h"
d9dfcf80 52#include "fluids.h"
0f2d19dd 53
20e6290e 54#include "root.h"
0f2d19dd
JB
55\f
56
e71575d9
MV
57/* Define this if you want to try out the stack allocation of cwdr's
58 jumpbuf. It works for me but I'm still worried that the dynwinds
59 might be able to make a mess. */
60
61#undef USE_STACKJMPBUF
62
0f2d19dd 63SCM scm_sys_protects[SCM_NUM_PROTECTS];
d564d753
MD
64
65long scm_tc16_root;
66
67#ifndef USE_THREADS
68struct scm_root_state *scm_root;
69#endif
0f2d19dd
JB
70
71\f
72
d564d753
MD
73static SCM mark_root SCM_P ((SCM));
74
75static SCM
76mark_root (root)
77 SCM root;
78{
79 scm_root_state *s = SCM_ROOT_STATE (root);
dc53f026 80
d564d753
MD
81 scm_gc_mark (s->rootcont);
82 scm_gc_mark (s->dynwinds);
83 scm_gc_mark (s->continuation_stack);
84 scm_gc_mark (s->continuation_stack_ptr);
85 scm_gc_mark (s->progargs);
86 scm_gc_mark (s->exitval);
87 scm_gc_mark (s->cur_inp);
88 scm_gc_mark (s->cur_outp);
89 scm_gc_mark (s->cur_errp);
90 scm_gc_mark (s->def_inp);
91 scm_gc_mark (s->def_outp);
92 scm_gc_mark (s->def_errp);
903073d5 93 /* No need to gc mark def_loadp */
d9dfcf80 94 scm_gc_mark (s->fluids);
dc19d1d2 95 scm_gc_mark (s->top_level_lookup_closure_var);
d564d753
MD
96 scm_gc_mark (s->system_transformer);
97 return SCM_ROOT_STATE (root) -> parent;
98}
0f2d19dd 99
d564d753
MD
100
101static int print_root SCM_P ((SCM exp, SCM port, scm_print_state *pstate));
102
103static int
104print_root (exp, port, pstate)
105 SCM exp;
106 SCM port;
107 scm_print_state *pstate;
108{
b7f3516f 109 scm_puts ("#<root ", port);
d564d753 110 scm_intprint(SCM_SEQ (SCM_ROOT_STATE (exp) -> rootcont), 16, port);
b7f3516f 111 scm_putc('>', port);
d564d753
MD
112 return 1;
113}
114
d564d753
MD
115
116\f
117
118SCM
119scm_make_root (parent)
120 SCM parent;
121{
122 SCM root;
123 scm_root_state *root_state;
124
125 root_state = (scm_root_state *) scm_must_malloc (sizeof (scm_root_state),
126 "scm_make_root");
127 if (SCM_NIMP (parent) && SCM_ROOTP (parent))
128 {
129 memcpy (root_state, SCM_ROOT_STATE (parent), sizeof (scm_root_state));
d9dfcf80 130 scm_copy_fluids (root_state);
d564d753
MD
131 root_state->parent = parent;
132 }
133 else
134 {
135 root_state->parent = SCM_BOOL_F;
4ea1f83d
JB
136
137 /* Initialize everything right now, in case a GC happens early. */
138 root_state->rootcont
139 = root_state->dynwinds
140 = root_state->continuation_stack
141 = root_state->continuation_stack_ptr
142 = root_state->progargs
143 = root_state->exitval
144 = root_state->cur_inp
145 = root_state->cur_outp
146 = root_state->cur_errp
147 = root_state->def_inp
148 = root_state->def_outp
149 = root_state->def_errp
150 = root_state->cur_loadp
151 = root_state->fluids
152 = root_state->system_transformer
153 = root_state->top_level_lookup_closure_var
154 = root_state->handle
155 = root_state->parent
156 = SCM_BOOL_F;
d564d753 157 }
d564d753 158 SCM_REDEFER_INTS;
23a62151 159 SCM_NEWSMOB (root, scm_tc16_root, root_state);
d564d753
MD
160 root_state->handle = root;
161 SCM_REALLOW_INTS;
162 return root;
163}
164
1cc91f1b 165/* {call-with-dynamic-root}
d564d753
MD
166 *
167 * Suspending the current thread to evaluate a thunk on the
168 * same C stack but under a new root.
169 *
1cc91f1b 170 * Calls to call-with-dynamic-root return exactly once (unless
e71575d9 171 * the process is somehow exitted). */
d564d753 172
650fa1ab
JB
173/* Some questions about cwdr:
174
175 Couldn't the body just be a closure? Do we really need to pass
176 args through to it?
177
178 The semantics are a lot like catch's; in fact, we call
179 scm_internal_catch to take care of that part of things. Wouldn't
180 it be cleaner to say that uncaught throws just disappear into the
181 ether (or print a message to stderr), and let the caller use catch
182 themselves if they want to?
183
184 -JimB */
185
d564d753
MD
186#if 0
187SCM scm_exitval; /* INUM with return value */
188#endif
189static int n_dynamic_roots = 0;
190
650fa1ab 191
e71575d9
MV
192/* cwdr fills out both of these structures, and then passes a pointer
193 to them through scm_internal_catch to the cwdr_body and
194 cwdr_handler functions, to tell them how to behave and to get
195 information back from them.
650fa1ab
JB
196
197 A cwdr is a lot like a catch, except there is no tag (all
198 exceptions are caught), and the body procedure takes the arguments
e71575d9
MV
199 passed to cwdr as A1 and ARGS. The handler is also special since
200 it is not directly run from scm_internal_catch. It is executed
201 outside the new dynamic root. */
650fa1ab
JB
202
203struct cwdr_body_data {
650fa1ab
JB
204 /* Arguments to pass to the cwdr body function. */
205 SCM a1, args;
206
207 /* Scheme procedure to use as body of cwdr. */
208 SCM body_proc;
e71575d9
MV
209};
210
211struct cwdr_handler_data {
212 /* Do we need to run the handler? */
213 int run_handler;
f032b8a8 214
e71575d9
MV
215 /* The tag and args to pass it. */
216 SCM tag, args;
650fa1ab
JB
217};
218
219
220/* Invoke the body of a cwdr, assuming that the throw handler has
221 already been set up. DATA points to a struct set up by cwdr that
816a6f06
JB
222 says what proc to call, and what args to apply it to.
223
224 With a little thought, we could replace this with scm_body_thunk,
225 but I don't want to mess with that at the moment. */
650fa1ab 226static SCM
39752bec 227cwdr_body (void *data)
650fa1ab
JB
228{
229 struct cwdr_body_data *c = (struct cwdr_body_data *) data;
230
231 return scm_apply (c->body_proc, c->a1, c->args);
232}
233
e71575d9
MV
234/* Record the fact that the body of the cwdr has thrown. Record
235 enough information to invoke the handler later when the dynamic
236 root has been deestablished. */
650fa1ab 237
f032b8a8 238static SCM
e71575d9 239cwdr_handler (void *data, SCM tag, SCM args)
f032b8a8 240{
e71575d9 241 struct cwdr_handler_data *c = (struct cwdr_handler_data *) data;
f032b8a8 242
e71575d9
MV
243 c->run_handler = 1;
244 c->tag = tag;
245 c->args = args;
246 return SCM_UNSPECIFIED;
f032b8a8 247}
d564d753
MD
248
249/* This is the basic code for new root creation.
250 *
251 * WARNING! The order of actions in this routine is in many ways
252 * critical. E. g., it is essential that an error doesn't leave Guile
650fa1ab 253 * in a messed up state. */
d564d753 254
e71575d9
MV
255SCM
256scm_internal_cwdr (scm_catch_body_t body, void *body_data,
257 scm_catch_handler_t handler, void *handler_data,
258 SCM_STACKITEM *stack_start)
d564d753 259{
e71575d9
MV
260#ifdef USE_STACKJMPBUF
261 scm_contregs static_jmpbuf;
262#endif
d564d753 263 int old_ints_disabled = scm_ints_disabled;
8938d022 264 SCM old_rootcont, old_winds;
e71575d9 265 struct cwdr_handler_data my_handler_data;
d564d753
MD
266 SCM answer;
267
e71575d9 268 /* Create a fresh root continuation. */
d564d753
MD
269 {
270 SCM new_rootcont;
271 SCM_NEWCELL (new_rootcont);
272 SCM_REDEFER_INTS;
e71575d9
MV
273#ifdef USE_STACKJMPBUF
274 SCM_SETJMPBUF (new_rootcont, &static_jmpbuf);
275#else
d564d753 276 SCM_SETJMPBUF (new_rootcont,
0db18cf4 277 scm_must_malloc ((long) sizeof (scm_contregs),
d564d753 278 "inferior root continuation"));
e71575d9 279#endif
a6c64c3c 280 SCM_SETCAR (new_rootcont, scm_tc7_contin);
d564d753
MD
281 SCM_DYNENV (new_rootcont) = SCM_EOL;
282 SCM_BASE (new_rootcont) = stack_start;
8938d022 283 SCM_SEQ (new_rootcont) = ++n_dynamic_roots;
d564d753
MD
284#ifdef DEBUG_EXTENSIONS
285 SCM_DFRAME (new_rootcont) = 0;
286#endif
8938d022
MD
287 old_rootcont = scm_rootcont;
288 scm_rootcont = new_rootcont;
d564d753
MD
289 SCM_REALLOW_INTS;
290 }
291
8938d022
MD
292 /* Exit caller's dynamic state.
293 */
294 old_winds = scm_dynwinds;
295 scm_dowinds (SCM_EOL, scm_ilength (scm_dynwinds));
d564d753 296#ifdef DEBUG_EXTENSIONS
308277cb 297 SCM_DFRAME (old_rootcont) = scm_last_debug_frame;
8938d022 298 scm_last_debug_frame = 0;
d564d753 299#endif
650fa1ab 300
e71575d9
MV
301 {
302 my_handler_data.run_handler = 0;
816a6f06 303 answer = scm_internal_catch (SCM_BOOL_T,
e71575d9
MV
304 body, body_data,
305 cwdr_handler, &my_handler_data);
650fa1ab 306 }
e71575d9 307
d564d753
MD
308 scm_dowinds (old_winds, - scm_ilength (old_winds));
309 SCM_REDEFER_INTS;
e71575d9
MV
310#ifdef USE_STACKCJMPBUF
311 SCM_SETJMPBUF (scm_rootcont, NULL);
312#endif
d564d753 313#ifdef DEBUG_EXTENSIONS
308277cb 314 scm_last_debug_frame = SCM_DFRAME (old_rootcont);
d564d753 315#endif
308277cb 316 scm_rootcont = old_rootcont;
d564d753
MD
317 SCM_REALLOW_INTS;
318 scm_ints_disabled = old_ints_disabled;
e71575d9
MV
319
320 /* Now run the real handler iff the body did a throw. */
321 if (my_handler_data.run_handler)
322 return handler (handler_data, my_handler_data.tag, my_handler_data.args);
323 else
324 return answer;
d564d753
MD
325}
326
e71575d9
MV
327/* The original CWDR for invoking Scheme code with a Scheme handler. */
328
329static SCM
330cwdr (SCM proc, SCM a1, SCM args, SCM handler, SCM_STACKITEM *stack_start)
331{
332 struct cwdr_body_data c;
333
334 c.a1 = a1;
335 c.args = args;
336 c.body_proc = proc;
337
338 return scm_internal_cwdr (cwdr_body, &c,
339 scm_handle_by_proc, &handler,
340 stack_start);
341}
d564d753 342
8938d022 343SCM_PROC(s_call_with_dynamic_root, "call-with-dynamic-root", 2, 0, 0, scm_call_with_dynamic_root);
d564d753 344SCM
8938d022 345scm_call_with_dynamic_root (thunk, handler)
d564d753
MD
346 SCM thunk;
347 SCM handler;
d564d753
MD
348{
349 SCM_STACKITEM stack_place;
350
8938d022 351 return cwdr (thunk, SCM_EOL, SCM_EOL, handler, &stack_place);
d564d753
MD
352}
353
354SCM_PROC(s_dynamic_root, "dynamic-root", 0, 0, 0, scm_dynamic_root);
d564d753
MD
355SCM
356scm_dynamic_root ()
d564d753
MD
357{
358 return scm_ulong2num (SCM_SEQ (scm_root->rootcont));
359}
360
d564d753 361SCM
8938d022 362scm_apply_with_dynamic_root (proc, a1, args, handler)
d564d753
MD
363 SCM proc;
364 SCM a1;
365 SCM args;
1cc91f1b 366 SCM handler;
d564d753
MD
367{
368 SCM_STACKITEM stack_place;
8938d022 369 return cwdr (proc, a1, args, handler, &stack_place);
d564d753 370}
0f2d19dd
JB
371
372\f
373
374/* Call thunk(closure) underneath a top-level error handler.
375 * If an error occurs, pass the exitval through err_filter and return it.
376 * If no error occurs, return the value of thunk.
377 */
378
379
380#ifdef _UNICOS
381typedef int setjmp_type;
382#else
383typedef long setjmp_type;
384#endif
385
386
1cc91f1b 387
0f2d19dd
JB
388SCM
389scm_call_catching_errors (thunk, err_filter, closure)
390 SCM (*thunk)();
391 SCM (*err_filter)();
d564d753 392 void *closure;
0f2d19dd
JB
393{
394 SCM answer;
395 setjmp_type i;
faa6b3df 396#ifdef DEBUG_EXTENSIONS
8938d022 397 SCM_DFRAME (scm_rootcont) = scm_last_debug_frame;
faa6b3df 398#endif
0f2d19dd 399 i = setjmp (SCM_JMPBUF (scm_rootcont));
faa6b3df 400 scm_stack_checking_enabled_p = SCM_STACK_CHECKING_P;
0f2d19dd
JB
401 if (!i)
402 {
403 scm_gc_heap_lock = 0;
404 answer = thunk (closure);
405 }
406 else
407 {
408 scm_gc_heap_lock = 1;
409 answer = err_filter (scm_exitval, closure);
410 }
411 return answer;
412}
413
d564d753
MD
414void
415scm_init_root ()
416{
23a62151
MD
417 scm_tc16_root = scm_make_smob_type_mfpe ("root", sizeof (struct scm_root_state),
418 mark_root, NULL, print_root, NULL);
419
d564d753
MD
420#include "root.x"
421}