* iselect.c: #ifdef USE_THREADS around thread-related includes.
[bpt/guile.git] / libguile / init.c
CommitLineData
1e598865 1/* Copyright (C) 1995,1996,1997 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"
45
20e6290e
JB
46/* Everybody has an init function. */
47#include "alist.h"
20e6290e
JB
48#include "arbiters.h"
49#include "async.h"
0e44fcca 50#include "backtrace.h"
20e6290e
JB
51#include "boolean.h"
52#include "chars.h"
53#include "continuations.h"
54#ifdef DEBUG_EXTENSIONS
55#include "debug.h"
56#endif
70122cd3 57#include "dynl.h"
20e6290e
JB
58#include "dynwind.h"
59#include "eq.h"
60#include "error.h"
61#include "eval.h"
20e6290e 62#include "feature.h"
20e6290e 63#include "filesys.h"
ee3ea81d 64#include "fluids.h"
20e6290e
JB
65#include "fports.h"
66#include "gc.h"
67#include "gdbint.h"
68#include "gsubr.h"
69#include "hash.h"
70#include "hashtab.h"
44e8413c
MD
71#ifdef GUILE_ISELECT
72#include "iselect.h"
73#endif
20e6290e
JB
74#include "ioext.h"
75#include "kw.h"
76#include "list.h"
77#include "load.h"
78#include "mallocs.h"
370312ae 79#include "net_db.h"
20e6290e 80#include "numbers.h"
0c32d76c 81#include "objects.h"
20e6290e
JB
82#include "objprop.h"
83#include "options.h"
84#include "pairs.h"
85#include "ports.h"
86#include "posix.h"
f255378e
JB
87#ifdef HAVE_REGCOMP
88#include "regex-posix.h"
89#endif
20e6290e
JB
90#include "print.h"
91#include "procprop.h"
92#include "procs.h"
93#include "ramap.h"
94#include "read.h"
a2d4941f 95#include "readline.h"
20e6290e 96#include "scmsigs.h"
964edde7 97#include "script.h"
20e6290e 98#include "simpos.h"
a8be22fe 99#include "smob.h"
20e6290e
JB
100#include "socket.h"
101#include "srcprop.h"
102#include "stackchk.h"
0e44fcca 103#include "stacks.h"
20e6290e
JB
104#include "stime.h"
105#include "strings.h"
106#include "strop.h"
107#include "strorder.h"
108#include "strports.h"
109#include "struct.h"
110#include "symbols.h"
111#include "tag.h"
112#include "throw.h"
113#include "unif.h"
114#include "variable.h"
115#include "vectors.h"
116#include "version.h"
117#include "vports.h"
118#include "weaks.h"
119
a8be22fe
JB
120#include "init.h"
121
95b88819
GH
122#ifdef HAVE_STRING_H
123#include <string.h>
124#endif
125#ifdef HAVE_UNISTD_H
126#include <unistd.h>
127#endif
0f2d19dd
JB
128\f
129
1cdaaafb
JB
130static void scm_start_stack SCM_P ((void *base));
131static void scm_restart_stack SCM_P ((void * base));
132
133static void
134scm_start_stack (base)
0f2d19dd 135 void * base;
0f2d19dd 136{
9ef3d0ee 137 SCM root;
0f2d19dd 138
9ef3d0ee
MD
139 root = scm_permanent_object (scm_make_root (SCM_UNDEFINED));
140 scm_set_root (SCM_ROOT_STATE (root));
0f2d19dd
JB
141 scm_stack_base = base;
142
0f2d19dd
JB
143 scm_exitval = SCM_BOOL_F; /* vestigial */
144
dc19d1d2 145 scm_top_level_lookup_closure_var = SCM_BOOL_F;
0f2d19dd
JB
146 scm_system_transformer = SCM_BOOL_F;
147
5aab5d96 148 scm_the_last_stack_var = SCM_BOOL_F;
ee3ea81d
MV
149
150 scm_root->fluids = scm_make_initial_fluids ();
151
0f2d19dd
JB
152 /* Create an object to hold the root continuation.
153 */
154 SCM_NEWCELL (scm_rootcont);
1cdaaafb
JB
155 SCM_SETJMPBUF (scm_rootcont, scm_must_malloc ((long) sizeof (scm_contregs),
156 "continuation"));
898a256f 157 SCM_SETCAR (scm_rootcont, scm_tc7_contin);
4b5166ac 158 SCM_SEQ (scm_rootcont) = 0;
0f2d19dd
JB
159 /* The root continuation if further initialized by scm_restart_stack. */
160
161 /* Create the look-aside stack for variables that are shared between
162 * captured continuations.
163 */
1cdaaafb
JB
164 scm_continuation_stack = scm_make_vector (SCM_MAKINUM (512),
165 SCM_UNDEFINED, SCM_UNDEFINED);
0f2d19dd
JB
166 /* The continuation stack is further initialized by scm_restart_stack. */
167
1cdaaafb
JB
168 /* The remainder of stack initialization is factored out to another
169 * function so that if this stack is ever exitted, it can be
170 * re-entered using scm_restart_stack. */
0f2d19dd
JB
171 scm_restart_stack (base);
172}
173
174
1cdaaafb 175static void
0f2d19dd
JB
176scm_restart_stack (base)
177 void * base;
0f2d19dd
JB
178{
179 scm_dynwinds = SCM_EOL;
180 SCM_DYNENV (scm_rootcont) = SCM_EOL;
181 SCM_THROW_VALUE (scm_rootcont) = SCM_EOL;
4e1caa79 182#ifdef DEBUG_EXTENSIONS
4b5166ac 183 SCM_DFRAME (scm_rootcont) = scm_last_debug_frame = 0;
4e1caa79 184#endif
0f2d19dd
JB
185 SCM_BASE (scm_rootcont) = base;
186 scm_continuation_stack_ptr = SCM_MAKINUM (0);
187}
188
189#if 0
190static char remsg[] = "remove\n#define ", addmsg[] = "add\n#define ";
191
1cc91f1b
JB
192
193static void fixconfig SCM_P ((char *s1, char *s2, int s));
194
0f2d19dd
JB
195static void
196fixconfig (s1, s2, s)
197 char *s1;
198 char *s2;
199 int s;
0f2d19dd
JB
200{
201 fputs (s1, stderr);
202 fputs (s2, stderr);
203 fputs ("\nin ", stderr);
204 fputs (s ? "setjump" : "scmfig", stderr);
205 fputs (".h and recompile scm\n", stderr);
206 exit (1);
207}
208
209
1cc91f1b 210static void check_config SCM_P ((void));
0f2d19dd
JB
211
212static void
213check_config ()
214{
215 scm_sizet j;
216
217 j = HEAP_SEG_SIZE;
218 if (HEAP_SEG_SIZE != j)
219 fixconfig ("reduce", "size of HEAP_SEG_SIZE", 0);
220
221#ifdef SCM_SINGLES
222 if (sizeof (float) != sizeof (long))
223 fixconfig (remsg, "SCM_SINGLES", 0);
224#endif /* def SCM_SINGLES */
225
226
227#ifdef SCM_BIGDIG
228 if (2 * SCM_BITSPERDIG / SCM_CHAR_BIT > sizeof (long))
229 fixconfig (remsg, "SCM_BIGDIG", 0);
230#ifndef SCM_DIGSTOOBIG
231 if (SCM_DIGSPERLONG * sizeof (SCM_BIGDIG) > sizeof (long))
232 fixconfig (addmsg, "SCM_DIGSTOOBIG", 0);
233#endif
234#endif
235
236#ifdef SCM_STACK_GROWS_UP
237 if (((SCM_STACKITEM *) & j - stack_start_ptr) < 0)
238 fixconfig (remsg, "SCM_STACK_GROWS_UP", 1);
239#else
240 if ((stack_start_ptr - (SCM_STACKITEM *) & j) < 0)
241 fixconfig (addmsg, "SCM_STACK_GROWS_UP", 1);
242#endif
243}
244#endif
245
246
247\f
1cdaaafb
JB
248/* initializing standard and current I/O ports */
249
250/* Create standard ports from stdio stdin, stdout, and stderr. */
251static void
252scm_init_standard_ports ()
253{
94754080
JB
254 /* From the SCSH manual:
255
256 It can be useful to turn I/O buffering off in some cases, for
257 example when an I/O stream is to be shared by multiple
258 subprocesses. For this reason, scsh allocates an unbuffered port
259 for file descriptor 0 at start-up time.
260
261 Because shells frequently share stdin with subprocesses, if the
262 shell does buffered reads, it might ``steal'' input intended for
263 a subprocess. For this reason, all shells, including sh, csh,
264 and scsh, read stdin unbuffered. Applications that can tolerate
265 buffered input on stdin can reset \ex{(current-input-port)} to
266 block buffering for higher performance. */
1cdaaafb
JB
267 scm_def_inp = scm_stdio_to_port (stdin,
268 (isatty (fileno (stdin)) ? "r0" : "r"),
269 "standard input");
270 scm_def_outp = scm_stdio_to_port (stdout, "w", "standard output");
271 scm_def_errp = scm_stdio_to_port (stderr, "w", "standard error");
272
273 scm_cur_inp = scm_def_inp;
274 scm_cur_outp = scm_def_outp;
275 scm_cur_errp = scm_def_errp;
276}
277
278
279\f
0f2d19dd
JB
280#ifdef _UNICOS
281typedef int setjmp_type;
282#else
283typedef long setjmp_type;
284#endif
285
816a6f06
JB
286/* All the data needed to invoke the main function. */
287struct main_func_closure
288{
289 /* the function to call */
290 void (*main_func) SCM_P ((void *closure, int argc, char **argv));
291 void *closure; /* dummy data to pass it */
292 int argc;
293 char **argv; /* the argument list it should receive */
294};
295
296
297static void scm_boot_guile_1 SCM_P ((SCM_STACKITEM *base,
298 struct main_func_closure *closure));
299static SCM invoke_main_func SCM_P ((void *body_data, SCM jmpbuf));
1cdaaafb
JB
300
301
302/* Fire up the Guile Scheme interpreter.
303
304 Call MAIN_FUNC, passing it CLOSURE, ARGC, and ARGV. MAIN_FUNC
305 should do all the work of the program (initializing other packages,
306 reading user input, etc.) before returning. When MAIN_FUNC
307 returns, call exit (0); this function never returns. If you want
308 some other exit value, MAIN_FUNC may call exit itself.
0f2d19dd 309
1cdaaafb
JB
310 scm_boot_guile arranges for program-arguments to return the strings
311 given by ARGC and ARGV. If MAIN_FUNC modifies ARGC/ARGV, should
312 call scm_set_program_arguments with the final list, so Scheme code
313 will know which arguments have been processed.
c275ddc7 314
816a6f06
JB
315 scm_boot_guile establishes a catch-all catch handler which prints
316 an error message and exits the process. This means that Guile
317 exits in a coherent way when system errors occur and the user isn't
318 prepared to handle it. If the user doesn't like this behavior,
319 they can establish their own universal catcher to shadow this one.
320
1cdaaafb
JB
321 Why must the caller do all the real work from MAIN_FUNC? The
322 garbage collector assumes that all local variables of type SCM will
323 be above scm_boot_guile's stack frame on the stack. If you try to
324 manipulate SCM values after this function returns, it's the luck of
325 the draw whether the GC will be able to find the objects you
326 allocate. So, scm_boot_guile function exits, rather than
327 returning, to discourage people from making that mistake. */
328
329
330void
331scm_boot_guile (argc, argv, main_func, closure)
0f2d19dd
JB
332 int argc;
333 char ** argv;
1cdaaafb
JB
334 void (*main_func) ();
335 void *closure;
c275ddc7 336{
1cdaaafb
JB
337 /* The garbage collector uses the address of this variable as one
338 end of the stack, and the address of one of its own local
339 variables as the other end. */
c275ddc7 340 SCM_STACKITEM dummy;
816a6f06 341 struct main_func_closure c;
c275ddc7 342
816a6f06
JB
343 c.main_func = main_func;
344 c.closure = closure;
345 c.argc = argc;
346 c.argv = argv;
347
1595aa56 348 scm_boot_guile_1 (&dummy, &c);
c275ddc7
JB
349}
350
816a6f06 351
70122cd3
MV
352/* Record here whether SCM_BOOT_GUILE_1 has already been called. This
353 variable is now here and not inside SCM_BOOT_GUILE_1 so that one
354 can tweak it. This is necessary for unexec to work. (Hey, "1-live"
355 is the name of a local radiostation...) */
356
357int scm_boot_guile_1_live = 0;
1cdaaafb
JB
358
359static void
816a6f06 360scm_boot_guile_1 (base, closure)
c275ddc7 361 SCM_STACKITEM *base;
816a6f06 362 struct main_func_closure *closure;
0f2d19dd
JB
363{
364 static int initialized = 0;
70122cd3 365 /* static int live = 0; */
0f2d19dd 366 setjmp_type setjmp_val;
0f2d19dd 367
1cdaaafb 368 /* This function is not re-entrant. */
70122cd3 369 if (scm_boot_guile_1_live)
1cdaaafb 370 abort ();
0f2d19dd 371
70122cd3 372 scm_boot_guile_1_live = 1;
0f2d19dd
JB
373
374 scm_ints_disabled = 1;
375 scm_block_gc = 1;
376
377 if (initialized)
378 {
c275ddc7 379 scm_restart_stack (base);
0f2d19dd
JB
380 }
381 else
382 {
383 scm_ports_prehistory ();
384 scm_smob_prehistory ();
385 scm_tables_prehistory ();
386 scm_init_storage (0);
9ef3d0ee
MD
387 scm_init_root ();
388#ifdef USE_THREADS
a239e35b 389 scm_init_threads (base);
9ef3d0ee 390#endif
1cdaaafb 391 scm_start_stack (base);
0f2d19dd
JB
392 scm_init_gsubr ();
393 scm_init_feature ();
394 scm_init_alist ();
0f2d19dd
JB
395 scm_init_arbiters ();
396 scm_init_async ();
0e44fcca 397 scm_init_backtrace ();
0f2d19dd
JB
398 scm_init_boolean ();
399 scm_init_chars ();
400 scm_init_continuations ();
401 scm_init_dynwind ();
402 scm_init_eq ();
403 scm_init_error ();
ee3ea81d 404 scm_init_fluids ();
0f2d19dd 405 scm_init_fports ();
0f2d19dd
JB
406 scm_init_filesys ();
407 scm_init_gc ();
68cd9c71 408 scm_init_gdbint ();
0f2d19dd
JB
409 scm_init_hash ();
410 scm_init_hashtab ();
44e8413c
MD
411#ifdef GUILE_ISELECT
412 scm_init_iselect ();
413#endif
0f2d19dd
JB
414 scm_init_ioext ();
415 scm_init_kw ();
416 scm_init_list ();
417 scm_init_mallocs ();
370312ae 418 scm_init_net_db ();
0f2d19dd
JB
419 scm_init_numbers ();
420 scm_init_objprop ();
4e1caa79
MD
421#if DEBUG_EXTENSIONS
422 /* Excluding this until it's really needed makes the binary
423 * smaller after linking. */
424 scm_init_options ();
425#endif
0f2d19dd
JB
426 scm_init_pairs ();
427 scm_init_ports ();
428 scm_init_posix ();
f255378e
JB
429#ifdef HAVE_REGCOMP
430 scm_init_regex_posix ();
431#endif
0f2d19dd
JB
432 scm_init_procs ();
433 scm_init_procprop ();
0f2d19dd
JB
434 scm_init_scmsigs ();
435 scm_init_socket ();
4e1caa79
MD
436#ifdef DEBUG_EXTENSIONS
437 scm_init_srcprop ();
438#endif
0f2d19dd 439 scm_init_stackchk ();
7439c0b9 440 scm_init_struct (); /* Requires struct */
0e44fcca 441 scm_init_stacks ();
0f2d19dd 442 scm_init_strports ();
0f2d19dd
JB
443 scm_init_symbols ();
444 scm_init_tag ();
445 scm_init_load ();
0c32d76c 446 scm_init_objects (); /* Requires struct */
90b826c9 447 scm_init_print (); /* Requires struct */
0f2d19dd 448 scm_init_read ();
0f2d19dd
JB
449 scm_init_stime ();
450 scm_init_strings ();
451 scm_init_strorder ();
0f2d19dd
JB
452 scm_init_strop ();
453 scm_init_throw ();
454 scm_init_variable ();
455 scm_init_vectors ();
9d7e1edf 456 scm_init_version ();
0f2d19dd
JB
457 scm_init_weaks ();
458 scm_init_vports ();
459 scm_init_eval ();
0e44fcca
MD
460#ifdef DEBUG_EXTENSIONS
461 scm_init_debug (); /* Requires macro smobs */
462#endif
0f2d19dd
JB
463 scm_init_ramap ();
464 scm_init_unif ();
465 scm_init_simpos ();
24f93c27 466 scm_init_load_path ();
a2d4941f
JB
467#ifdef HAVE_LIBREADLINE
468 scm_init_readline ();
469#endif
1cdaaafb 470 scm_init_standard_ports ();
70122cd3 471 scm_init_dynamic_linking ();
0487b82f 472 scm_init_script ();
0f2d19dd
JB
473 initialized = 1;
474 }
475
476 scm_block_gc = 0; /* permit the gc to run */
477 /* ints still disabled */
478
1cdaaafb
JB
479#ifdef STACK_CHECKING
480 scm_stack_checking_enabled_p = SCM_STACK_CHECKING_P;
481#endif
0f2d19dd 482
1cdaaafb
JB
483 setjmp_val = setjmp (SCM_JMPBUF (scm_rootcont));
484 if (!setjmp_val)
485 {
816a6f06
JB
486 scm_set_program_arguments (closure->argc, closure->argv, 0);
487 scm_internal_catch (SCM_BOOL_T, invoke_main_func, closure,
488 scm_handle_by_message, 0);
1cdaaafb 489 }
0f2d19dd 490
1cdaaafb 491 scm_restore_signals ();
0f2d19dd 492
1cdaaafb
JB
493 /* This tick gives any pending
494 * asyncs a chance to run. This must be done after
495 * the call to scm_restore_signals.
496 */
497 SCM_ASYNC_TICK;
498
499 /* If the caller doesn't want this, they should return from
500 main_func themselves. */
501 exit (0);
0f2d19dd 502}
816a6f06
JB
503
504
505static SCM
506invoke_main_func (body_data, jmpbuf)
507 void *body_data;
508 SCM jmpbuf;
509{
510 struct main_func_closure *closure = (struct main_func_closure *) body_data;
511
512 (*closure->main_func) (closure->closure, closure->argc, closure->argv);
513
514 /* never reached */
515 return SCM_UNDEFINED;
516}