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