top level fixes
[bpt/guile.git] / libguile / load.c
CommitLineData
c12da2be 1/* Copyright (C) 1995, 1996, 1998, 1999, 2000, 2001, 2004, 2006, 2008,
bc8e6d7d 2 * 2009, 2010, 2011, 2012, 2013, 2014 Free Software Foundation, Inc.
0f2d19dd 3 *
73be1d9e 4 * This library is free software; you can redistribute it and/or
53befeb7
NJ
5 * modify it under the terms of the GNU Lesser General Public License
6 * as published by the Free Software Foundation; either version 3 of
7 * the License, or (at your option) any later version.
0f2d19dd 8 *
53befeb7
NJ
9 * This library is distributed in the hope that it will be useful, but
10 * WITHOUT ANY WARRANTY; without even the implied warranty of
73be1d9e
MV
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
0f2d19dd 13 *
73be1d9e
MV
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the Free Software
53befeb7
NJ
16 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
17 * 02110-1301 USA
73be1d9e 18 */
1bbd0b84 19
1bbd0b84 20
0f2d19dd
JB
21\f
22
dbb605f5 23#ifdef HAVE_CONFIG_H
cbd41c89
RB
24# include <config.h>
25#endif
26
13070bd3 27#include <string.h>
7d04d68b 28#include <stdio.h>
13070bd3 29
a0599745
MD
30#include "libguile/_scm.h"
31#include "libguile/libpath.h"
32#include "libguile/fports.h"
33#include "libguile/read.h"
34#include "libguile/eval.h"
35#include "libguile/throw.h"
36#include "libguile/alist.h"
37#include "libguile/dynwind.h"
38#include "libguile/root.h"
39#include "libguile/strings.h"
f33b174d 40#include "libguile/modules.h"
7d04d68b 41#include "libguile/chars.h"
c44ca4fe 42#include "libguile/srfi-13.h"
a0599745
MD
43
44#include "libguile/validate.h"
45#include "libguile/load.h"
ec3a8ace 46#include "libguile/fluids.h"
06721500 47
22f4ee48
AW
48#include "libguile/vm.h" /* for load-compiled/vm */
49
06721500
JB
50#include <sys/types.h>
51#include <sys/stat.h>
06721500 52#include <unistd.h>
06721500 53
5b197db8
AW
54#ifdef HAVE_PWD_H
55#include <pwd.h>
56#endif /* HAVE_PWD_H */
57
06721500
JB
58#ifndef R_OK
59#define R_OK 4
60#endif
0f2d19dd 61
abca59fe
LC
62#include <stat-time.h>
63
0f2d19dd 64\f
06721500 65/* Loading a file, given an absolute filename. */
0f2d19dd 66
26544b96
JB
67/* Hook to run when we load a file, perhaps to announce the fact somewhere.
68 Applied to the full name of the file. */
69static SCM *scm_loc_load_hook;
70
ec3a8ace
NJ
71/* The current reader (a fluid). */
72static SCM the_reader = SCM_BOOL_F;
8b039053 73
ec3a8ace 74
3b3b36dd 75SCM_DEFINE (scm_primitive_load, "primitive-load", 1, 0, 0,
1bbd0b84 76 (SCM filename),
67e8151b
MG
77 "Load the file named @var{filename} and evaluate its contents in\n"
78 "the top-level environment. The load paths are not searched;\n"
79 "@var{filename} must either be a full pathname or be a pathname\n"
80 "relative to the current directory. If the variable\n"
81 "@code{%load-hook} is defined, it should be bound to a procedure\n"
82 "that will be called before any code is loaded. See the\n"
83 "documentation for @code{%load-hook} later in this section.")
1bbd0b84 84#define FUNC_NAME s_scm_primitive_load
0f2d19dd 85{
26544b96 86 SCM hook = *scm_loc_load_hook;
017eb4a6 87 SCM ret = SCM_UNSPECIFIED;
017eb4a6 88
a6d9e5ab 89 SCM_VALIDATE_STRING (1, filename);
bc36d050 90 if (scm_is_true (hook) && scm_is_false (scm_procedure_p (hook)))
2ade72d7
DH
91 SCM_MISC_ERROR ("value of %load-hook is neither a procedure nor #f",
92 SCM_EOL);
26544b96 93
bc36d050 94 if (!scm_is_false (hook))
fdc28395 95 scm_call_1 (hook, filename);
26544b96 96
017eb4a6
AW
97 {
98 SCM port;
99
4101d14f
MW
100 port = scm_open_file_with_encoding (filename,
101 scm_from_latin1_string ("r"),
102 SCM_BOOL_T, /* guess_encoding */
103 scm_from_latin1_string ("UTF-8"));
104
661ae7ab
MV
105 scm_dynwind_begin (SCM_F_DYNWIND_REWINDABLE);
106 scm_i_dynwind_current_load_port (port);
f8a1c9a8 107
b5623573
MV
108 while (1)
109 {
ec3a8ace
NJ
110 SCM reader, form;
111
112 /* Lookup and use the current reader to read the next
113 expression. */
8b039053 114 reader = scm_fluid_ref (the_reader);
393baa8a 115 if (scm_is_false (reader))
ec3a8ace
NJ
116 form = scm_read (port);
117 else
118 form = scm_call_1 (reader, port);
119
b5623573
MV
120 if (SCM_EOF_OBJECT_P (form))
121 break;
ec3a8ace 122
017eb4a6 123 ret = scm_primitive_eval_x (form);
b5623573
MV
124 }
125
661ae7ab 126 scm_dynwind_end ();
0f2d19dd
JB
127 scm_close_port (port);
128 }
017eb4a6 129 return ret;
0f2d19dd 130}
1bbd0b84 131#undef FUNC_NAME
0f2d19dd 132
c519b272
MV
133SCM
134scm_c_primitive_load (const char *filename)
135{
cc95e00a 136 return scm_primitive_load (scm_from_locale_string (filename));
c519b272
MV
137}
138
0f2d19dd 139\f
3feedb00
MD
140/* Builtin path to scheme library files. */
141#ifdef SCM_PKGDATA_DIR
a1ec6916 142SCM_DEFINE (scm_sys_package_data_dir, "%package-data-dir", 0, 0, 0,
1bbd0b84 143 (),
b380b885
MD
144 "Return the name of the directory where Scheme packages, modules and\n"
145 "libraries are kept. On most Unix systems, this will be\n"
146 "@samp{/usr/local/share/guile}.")
1bbd0b84 147#define FUNC_NAME s_scm_sys_package_data_dir
3feedb00 148{
cc95e00a 149 return scm_from_locale_string (SCM_PKGDATA_DIR);
3feedb00 150}
1bbd0b84 151#undef FUNC_NAME
3feedb00
MD
152#endif /* SCM_PKGDATA_DIR */
153
e8e9b690 154#ifdef SCM_LIBRARY_DIR
a1ec6916 155SCM_DEFINE (scm_sys_library_dir, "%library-dir", 0,0,0,
e8e9b690 156 (),
b380b885
MD
157 "Return the directory where the Guile Scheme library files are installed.\n"
158 "E.g., may return \"/usr/share/guile/1.3.5\".")
e8e9b690
GB
159#define FUNC_NAME s_scm_sys_library_dir
160{
cc95e00a 161 return scm_from_locale_string (SCM_LIBRARY_DIR);
e8e9b690
GB
162}
163#undef FUNC_NAME
164#endif /* SCM_LIBRARY_DIR */
165
166#ifdef SCM_SITE_DIR
a1ec6916 167SCM_DEFINE (scm_sys_site_dir, "%site-dir", 0,0,0,
e8e9b690 168 (),
bc325e76
AW
169 "Return the directory where users should install Scheme code for use\n"
170 "with this version of Guile.\n\n"
171 "E.g., may return \"/usr/share/guile/site/" SCM_EFFECTIVE_VERSION "\".")
e8e9b690
GB
172#define FUNC_NAME s_scm_sys_site_dir
173{
cc95e00a 174 return scm_from_locale_string (SCM_SITE_DIR);
e8e9b690
GB
175}
176#undef FUNC_NAME
177#endif /* SCM_SITE_DIR */
178
bc325e76
AW
179#ifdef SCM_GLOBAL_SITE_DIR
180SCM_DEFINE (scm_sys_global_site_dir, "%global-site-dir", 0,0,0,
181 (),
182 "Return the directory where users should install Scheme code for use\n"
183 "with all versions of Guile.\n\n"
184 "E.g., may return \"/usr/share/guile/site\".")
185#define FUNC_NAME s_scm_sys_global_site_dir
186{
187 return scm_from_locale_string (SCM_GLOBAL_SITE_DIR);
188}
189#undef FUNC_NAME
190#endif /* SCM_GLOBAL_SITE_DIR */
e8e9b690 191
988ca6b2
JE
192#ifdef SCM_SITE_CCACHE_DIR
193SCM_DEFINE (scm_sys_site_ccache_dir, "%site-ccache-dir", 0,0,0,
194 (),
195 "Return the directory where users should install compiled\n"
196 "@code{.go} files for use with this version of Guile.\n\n"
197 "E.g., may return \"/usr/lib/guile/" SCM_EFFECTIVE_VERSION "/site-ccache\".")
198#define FUNC_NAME s_scm_sys_site_ccache_dir
199{
200 return scm_from_locale_string (SCM_SITE_CCACHE_DIR);
201}
202#undef FUNC_NAME
203#endif /* SCM_SITE_CCACHE_DIR */
204
e8e9b690 205
3feedb00 206\f
06721500 207/* Initializing the load path, and searching it. */
0f2d19dd 208
26544b96 209/* List of names of directories we search for files to load. */
06721500
JB
210static SCM *scm_loc_load_path;
211
26544b96
JB
212/* List of extensions we try adding to the filenames. */
213static SCM *scm_loc_load_extensions;
214
5b197db8
AW
215/* Like %load-path and %load-extensions, but for compiled files. */
216static SCM *scm_loc_load_compiled_path;
22f4ee48
AW
217static SCM *scm_loc_load_compiled_extensions;
218
ee001750 219/* Whether we should try to auto-compile. */
6f06e8d3 220static SCM *scm_loc_load_should_auto_compile;
01cddfc1 221
1e56cff2
AW
222/* Whether to treat all auto-compiled files as stale. */
223static SCM *scm_loc_fresh_auto_compile;
224
6f06e8d3 225/* The fallback path for auto-compilation */
5ea401bf 226static SCM *scm_loc_compile_fallback_path;
01cddfc1 227
bd31bce6
MW
228/* Ellipsis: "..." */
229static SCM scm_ellipsis;
230
a1ec6916 231SCM_DEFINE (scm_parse_path, "parse-path", 1, 1, 0,
1bbd0b84 232 (SCM path, SCM tail),
d91788cb
MG
233 "Parse @var{path}, which is expected to be a colon-separated\n"
234 "string, into a list and return the resulting list with\n"
235 "@var{tail} appended. If @var{path} is @code{#f}, @var{tail}\n"
236 "is returned.")
1bbd0b84 237#define FUNC_NAME s_scm_parse_path
04e8fb0a 238{
7d04d68b
MV
239#ifdef __MINGW32__
240 SCM sep = SCM_MAKE_CHAR (';');
241#else
242 SCM sep = SCM_MAKE_CHAR (':');
243#endif
244
04e8fb0a
MD
245 if (SCM_UNBNDP (tail))
246 tail = SCM_EOL;
7888309b 247 return (scm_is_false (path)
04e8fb0a 248 ? tail
7d04d68b 249 : scm_append_x (scm_list_2 (scm_string_split (path, sep), tail)));
04e8fb0a 250}
1bbd0b84 251#undef FUNC_NAME
04e8fb0a 252
bd31bce6
MW
253SCM_DEFINE (scm_parse_path_with_ellipsis, "parse-path-with-ellipsis", 2, 0, 0,
254 (SCM path, SCM base),
255 "Parse @var{path}, which is expected to be a colon-separated\n"
256 "string, into a list and return the resulting list with\n"
257 "@var{base} (a list) spliced in place of the @code{...} path\n"
258 "component, if present, or else @var{base} is added to the end.\n"
259 "If @var{path} is @code{#f}, @var{base} is returned.")
260#define FUNC_NAME s_scm_parse_path_with_ellipsis
261{
262 SCM lst = scm_parse_path (path, SCM_EOL);
263 SCM walk = lst;
264 SCM *prev = &lst;
265
266 while (!scm_is_null (walk) &&
267 scm_is_false (scm_equal_p (scm_car (walk), scm_ellipsis)))
268 {
269 prev = SCM_CDRLOC (walk);
270 walk = *prev;
271 }
272 *prev = scm_is_null (walk)
273 ? base
274 : scm_append (scm_list_2 (base, scm_cdr (walk)));
275 return lst;
276}
277#undef FUNC_NAME
278
04e8fb0a 279
06721500 280/* Initialize the global variable %load-path, given the value of the
3feedb00 281 SCM_SITE_DIR and SCM_LIBRARY_DIR preprocessor symbols and the
01cddfc1 282 GUILE_LOAD_PATH environment variable. */
0f2d19dd 283void
06721500
JB
284scm_init_load_path ()
285{
11c5e0bf 286 char *env;
06721500 287 SCM path = SCM_EOL;
5b197db8 288 SCM cpath = SCM_EOL;
06721500 289
3feedb00 290#ifdef SCM_LIBRARY_DIR
02b84691
AW
291 env = getenv ("GUILE_SYSTEM_PATH");
292 if (env && strcmp (env, "") == 0)
293 /* special-case interpret system-path=="" as meaning no system path instead
294 of '("") */
295 ;
296 else if (env)
297 path = scm_parse_path (scm_from_locale_string (env), path);
298 else
bc325e76 299 path = scm_list_4 (scm_from_locale_string (SCM_LIBRARY_DIR),
3c98a49c 300 scm_from_locale_string (SCM_SITE_DIR),
bc325e76 301 scm_from_locale_string (SCM_GLOBAL_SITE_DIR),
02b84691 302 scm_from_locale_string (SCM_PKGDATA_DIR));
5b197db8
AW
303
304 env = getenv ("GUILE_SYSTEM_COMPILED_PATH");
305 if (env && strcmp (env, "") == 0)
306 /* like above */
307 ;
308 else if (env)
309 cpath = scm_parse_path (scm_from_locale_string (env), cpath);
310 else
9957641b
AW
311 {
312 cpath = scm_list_2 (scm_from_locale_string (SCM_CCACHE_DIR),
313 scm_from_locale_string (SCM_SITE_CCACHE_DIR));
314 }
3c997c4b 315
3feedb00 316#endif /* SCM_LIBRARY_DIR */
06721500 317
3c997c4b 318 {
179fe336
AW
319 char cachedir[1024];
320 char *e;
321#ifdef HAVE_GETPWENT
322 struct passwd *pwd;
323#endif
5b197db8 324
6e5c02b8
AW
325#define FALLBACK_DIR \
326 "guile/ccache/" SCM_EFFECTIVE_VERSION "-" SCM_OBJCODE_MACHINE_VERSION_STRING
179fe336
AW
327
328 if ((e = getenv ("XDG_CACHE_HOME")))
48a0fe4d 329 snprintf (cachedir, sizeof(cachedir), "%s/" FALLBACK_DIR, e);
179fe336
AW
330 else if ((e = getenv ("HOME")))
331 snprintf (cachedir, sizeof(cachedir), "%s/.cache/" FALLBACK_DIR, e);
5b197db8 332#ifdef HAVE_GETPWENT
179fe336
AW
333 else if ((pwd = getpwuid (getuid ())) && pwd->pw_dir)
334 snprintf (cachedir, sizeof(cachedir), "%s/.cache/" FALLBACK_DIR,
335 pwd->pw_dir);
5b197db8 336#endif /* HAVE_GETPWENT */
284019a2
JN
337#ifdef __MINGW32__
338 else if ((e = getenv ("LOCALAPPDATA")))
339 snprintf (cachedir, sizeof (cachedir), "%s/.cache/" FALLBACK_DIR, e);
340 else if ((e = getenv ("APPDATA")))
341 snprintf (cachedir, sizeof (cachedir), "%s/.cache/" FALLBACK_DIR, e);
342#endif /* __MINGW32__ */
179fe336
AW
343 else
344 cachedir[0] = 0;
345
346 if (cachedir[0])
347 *scm_loc_compile_fallback_path = scm_from_locale_string (cachedir);
3c997c4b 348 }
06721500 349
11c5e0bf
MV
350 env = getenv ("GUILE_LOAD_PATH");
351 if (env)
bd31bce6 352 path = scm_parse_path_with_ellipsis (scm_from_locale_string (env), path);
01cddfc1 353
5b197db8
AW
354 env = getenv ("GUILE_LOAD_COMPILED_PATH");
355 if (env)
bd31bce6 356 cpath = scm_parse_path_with_ellipsis (scm_from_locale_string (env), cpath);
5b197db8 357
06721500 358 *scm_loc_load_path = path;
5b197db8 359 *scm_loc_load_compiled_path = cpath;
06721500
JB
360}
361
04e8fb0a 362SCM scm_listofnullstr;
06721500 363
7d04d68b
MV
364/* Utility functions for assembling C strings in a buffer.
365 */
366
367struct stringbuf {
368 char *buf, *ptr;
369 size_t buf_len;
370};
371
372static void
373stringbuf_free (void *data)
374{
375 struct stringbuf *buf = (struct stringbuf *)data;
376 free (buf->buf);
377}
378
379static void
380stringbuf_grow (struct stringbuf *buf)
381{
382 size_t ptroff = buf->ptr - buf->buf;
383 buf->buf_len *= 2;
7d04d68b
MV
384 buf->buf = scm_realloc (buf->buf, buf->buf_len);
385 buf->ptr = buf->buf + ptroff;
386}
387
388static void
389stringbuf_cat_locale_string (struct stringbuf *buf, SCM str)
390{
391 size_t max_len = buf->buf_len - (buf->ptr - buf->buf) - 1;
392 size_t len = scm_to_locale_stringbuf (str, buf->ptr, max_len);
393 if (len > max_len)
394 {
395 /* buffer is too small, double its size and try again.
396 */
397 stringbuf_grow (buf);
398 stringbuf_cat_locale_string (buf, str);
399 }
400 else
401 {
402 /* string fits, terminate it and check for embedded '\0'.
403 */
404 buf->ptr[len] = '\0';
405 if (strlen (buf->ptr) != len)
406 scm_misc_error (NULL,
407 "string contains #\\nul character: ~S",
408 scm_list_1 (str));
409 buf->ptr += len;
410 }
411}
412
413static void
414stringbuf_cat (struct stringbuf *buf, char *str)
415{
416 size_t max_len = buf->buf_len - (buf->ptr - buf->buf) - 1;
417 size_t len = strlen (str);
418 if (len > max_len)
419 {
420 /* buffer is too small, double its size and try again.
421 */
422 stringbuf_grow (buf);
423 stringbuf_cat (buf, str);
424 }
425 else
426 {
427 /* string fits, copy it into buffer.
428 */
429 strcpy (buf->ptr, str);
430 buf->ptr += len;
431 }
432}
433
434
22f4ee48
AW
435static int
436scm_c_string_has_an_ext (char *str, size_t len, SCM extensions)
437{
438 for (; !scm_is_null (extensions); extensions = SCM_CDR (extensions))
439 {
440 char *ext;
441 size_t extlen;
442 int match;
443 ext = scm_to_locale_string (SCM_CAR (extensions));
444 extlen = strlen (ext);
445 match = (len > extlen && str[len - extlen - 1] == '.'
446 && strncmp (str + (len - extlen), ext, extlen) == 0);
447 free (ext);
448 if (match)
449 return 1;
450 }
451 return 0;
452}
453
4bab7f01
AW
454#ifdef __MINGW32__
455#define FILE_NAME_SEPARATOR_STRING "\\"
456#else
457#define FILE_NAME_SEPARATOR_STRING "/"
458#endif
459
460static int
461is_file_name_separator (SCM c)
462{
e6a7a86d 463 if (scm_is_eq (c, SCM_MAKE_CHAR ('/')))
4bab7f01
AW
464 return 1;
465#ifdef __MINGW32__
e6a7a86d 466 if (scm_is_eq (c, SCM_MAKE_CHAR ('\\')))
4bab7f01
AW
467 return 1;
468#endif
469 return 0;
470}
471
472static int
473is_drive_letter (SCM c)
474{
475#ifdef __MINGW32__
476 if (SCM_CHAR (c) >= 'a' && SCM_CHAR (c) <= 'z')
477 return 1;
478 else if (SCM_CHAR (c) >= 'A' && SCM_CHAR (c) <= 'Z')
479 return 1;
480#endif
481 return 0;
482}
483
484static int
e20cec74 485is_absolute_file_name (SCM filename)
4bab7f01 486{
e20cec74
AW
487 size_t filename_len = scm_c_string_length (filename);
488
4bab7f01 489 if (filename_len >= 1
e20cec74 490 && is_file_name_separator (scm_c_string_ref (filename, 0))
4bab7f01
AW
491#ifdef __MINGW32__
492 /* On Windows, one initial separator indicates a drive-relative
493 path. Two separators indicate a Universal Naming Convention
494 (UNC) path. UNC paths are always absolute. */
495 && filename_len >= 2
e20cec74 496 && is_file_name_separator (scm_c_string_ref (filename, 1))
4bab7f01
AW
497#endif
498 )
499 return 1;
500 if (filename_len >= 3
e20cec74
AW
501 && is_drive_letter (scm_c_string_ref (filename, 0))
502 && scm_is_eq (scm_c_string_ref (filename, 1), SCM_MAKE_CHAR (':'))
503 && is_file_name_separator (scm_c_string_ref (filename, 2)))
4bab7f01
AW
504 return 1;
505 return 0;
506}
507
04e8fb0a 508/* Search PATH for a directory containing a file named FILENAME.
06721500 509 The file must be readable, and not a directory.
c12da2be 510 If we find one, return its full pathname; otherwise, return #f.
56384176 511 If FILENAME is absolute, return it unchanged.
c12da2be 512 We also fill *stat_buf corresponding to the returned pathname.
56384176
JB
513 If given, EXTENSIONS is a list of strings; for each directory
514 in PATH, we search for FILENAME concatenated with each EXTENSION. */
a6e1e050
AW
515static SCM
516search_path (SCM path, SCM filename, SCM extensions, SCM require_exts,
517 struct stat *stat_buf)
06721500 518{
7d04d68b 519 struct stringbuf buf;
56384176 520 char *filename_chars;
7d04d68b
MV
521 size_t filename_len;
522 SCM result = SCM_BOOL_F;
06721500 523
a6e1e050
AW
524 if (scm_ilength (path) < 0)
525 scm_misc_error ("%search-path", "path is not a proper list: ~a",
526 scm_list_1 (path));
527 if (scm_ilength (extensions) < 0)
528 scm_misc_error ("%search-path", "bad extensions list: ~a",
529 scm_list_1 (extensions));
22f4ee48 530
661ae7ab 531 scm_dynwind_begin (0);
7d04d68b
MV
532
533 filename_chars = scm_to_locale_string (filename);
534 filename_len = strlen (filename_chars);
661ae7ab 535 scm_dynwind_free (filename_chars);
06721500 536
c12da2be 537 /* If FILENAME is absolute and is still valid, return it unchanged. */
e20cec74 538 if (is_absolute_file_name (filename))
7d04d68b 539 {
c12da2be
MW
540 if ((scm_is_false (require_exts) ||
541 scm_c_string_has_an_ext (filename_chars, filename_len,
22f4ee48 542 extensions))
c12da2be
MW
543 && stat (filename_chars, stat_buf) == 0
544 && !(stat_buf->st_mode & S_IFDIR))
545 result = filename;
546 goto end;
7d04d68b 547 }
26544b96 548
56384176
JB
549 /* If FILENAME has an extension, don't try to add EXTENSIONS to it. */
550 {
551 char *endp;
552
553 for (endp = filename_chars + filename_len - 1;
554 endp >= filename_chars;
555 endp--)
556 {
557 if (*endp == '.')
558 {
22f4ee48
AW
559 if (scm_is_true (require_exts) &&
560 !scm_c_string_has_an_ext (filename_chars, filename_len,
561 extensions))
562 {
563 /* This filename has an extension, but not one of the right
564 ones... */
c12da2be 565 goto end;
22f4ee48 566 }
56384176
JB
567 /* This filename already has an extension, so cancel the
568 list of extensions. */
569 extensions = SCM_EOL;
570 break;
571 }
4bab7f01 572 else if (is_file_name_separator (SCM_MAKE_CHAR (*endp)))
56384176
JB
573 /* This filename has no extension, so keep the current list
574 of extensions. */
575 break;
576 }
577 }
578
7d04d68b
MV
579 /* This simplifies the loop below a bit.
580 */
d2e53ed6 581 if (scm_is_null (extensions))
7d04d68b 582 extensions = scm_listofnullstr;
06721500 583
7d04d68b
MV
584 buf.buf_len = 512;
585 buf.buf = scm_malloc (buf.buf_len);
661ae7ab 586 scm_dynwind_unwind_handler (stringbuf_free, &buf, SCM_F_WIND_EXPLICITLY);
0a74e31d 587
7d04d68b
MV
588 /* Try every path element.
589 */
d2e53ed6 590 for (; scm_is_pair (path); path = SCM_CDR (path))
7d04d68b
MV
591 {
592 SCM dir = SCM_CAR (path);
593 SCM exts;
594 size_t sans_ext_len;
595
596 buf.ptr = buf.buf;
597 stringbuf_cat_locale_string (&buf, dir);
598
599 /* Concatenate the path name and the filename. */
600
4bab7f01
AW
601 if (buf.ptr > buf.buf
602 && !is_file_name_separator (SCM_MAKE_CHAR (buf.ptr[-1])))
603 stringbuf_cat (&buf, FILE_NAME_SEPARATOR_STRING);
7d04d68b
MV
604
605 stringbuf_cat (&buf, filename_chars);
606 sans_ext_len = buf.ptr - buf.buf;
607
608 /* Try every extension. */
d2e53ed6 609 for (exts = extensions; scm_is_pair (exts); exts = SCM_CDR (exts))
7d04d68b
MV
610 {
611 SCM ext = SCM_CAR (exts);
7d04d68b
MV
612
613 buf.ptr = buf.buf + sans_ext_len;
614 stringbuf_cat_locale_string (&buf, ext);
615
616 /* If the file exists at all, we should return it. If the
617 file is inaccessible, then that's an error. */
618
a6e1e050
AW
619 if (stat (buf.buf, stat_buf) == 0
620 && ! (stat_buf->st_mode & S_IFDIR))
7d04d68b
MV
621 {
622 result = scm_from_locale_string (buf.buf);
623 goto end;
624 }
625 }
626
627 if (!SCM_NULL_OR_NIL_P (exts))
628 scm_wrong_type_arg_msg (NULL, 0, extensions, "proper list");
629 }
56384176 630
7d04d68b
MV
631 if (!SCM_NULL_OR_NIL_P (path))
632 scm_wrong_type_arg_msg (NULL, 0, path, "proper list");
56384176 633
7d04d68b 634 end:
661ae7ab 635 scm_dynwind_end ();
7d04d68b 636 return result;
06721500 637}
a6e1e050
AW
638
639SCM_DEFINE (scm_search_path, "search-path", 2, 0, 1,
640 (SCM path, SCM filename, SCM rest),
641 "Search @var{path} for a directory containing a file named\n"
642 "@var{filename}. The file must be readable, and not a directory.\n"
643 "If we find one, return its full filename; otherwise, return\n"
644 "@code{#f}. If @var{filename} is absolute, return it unchanged.\n"
b7e64f8b 645 "If given, @var{rest} is a list of extension strings; for each\n"
a6e1e050 646 "directory in @var{path}, we search for @var{filename}\n"
b7e64f8b 647 "concatenated with each extension.")
a6e1e050
AW
648#define FUNC_NAME s_scm_search_path
649{
650 SCM extensions, require_exts;
651 struct stat stat_buf;
652
653 if (SCM_UNBNDP (rest) || scm_is_null (rest))
654 {
655 /* Called either by Scheme code that didn't provide the optional
656 arguments, or C code that used the Guile 1.8 signature (2 required,
657 1 optional arg) and passed '() or nothing as the EXTENSIONS
658 argument. */
659 extensions = SCM_EOL;
660 require_exts = SCM_UNDEFINED;
661 }
662 else
663 {
664 if (scm_is_null (SCM_CAR (rest)) || scm_is_pair (SCM_CAR (rest)))
665 {
666 /* Called by Scheme code written for 1.9. */
667 extensions = SCM_CAR (rest);
668 if (scm_is_null (SCM_CDR (rest)))
669 require_exts = SCM_UNDEFINED;
670 else
671 {
672 require_exts = SCM_CADR (rest);
673 if (SCM_UNLIKELY (!scm_is_null (SCM_CDDR (rest))))
674 scm_wrong_num_args (scm_from_locale_string (FUNC_NAME));
675 }
676 }
677 else
678 {
679 /* Called by C code that uses the 1.8 signature, i.e., which
680 expects the 3rd argument to be EXTENSIONS. */
681 extensions = rest;
682 require_exts = SCM_UNDEFINED;
683 }
684 }
685
686 if (SCM_UNBNDP (extensions))
687 extensions = SCM_EOL;
688
689 if (SCM_UNBNDP (require_exts))
690 require_exts = SCM_BOOL_F;
691
692 return search_path (path, filename, extensions, require_exts, &stat_buf);
693}
1bbd0b84 694#undef FUNC_NAME
06721500
JB
695
696
04e8fb0a
MD
697/* Search %load-path for a directory containing a file named FILENAME.
698 The file must be readable, and not a directory.
699 If we find one, return its full filename; otherwise, return #f.
700 If FILENAME is absolute, return it unchanged. */
3b3b36dd 701SCM_DEFINE (scm_sys_search_load_path, "%search-load-path", 1, 0, 0,
67e8151b
MG
702 (SCM filename),
703 "Search @var{%load-path} for the file named @var{filename},\n"
704 "which must be readable by the current user. If @var{filename}\n"
705 "is found in the list of paths to search or is an absolute\n"
706 "pathname, return its full pathname. Otherwise, return\n"
707 "@code{#f}. Filenames may have any of the optional extensions\n"
708 "in the @code{%load-extensions} list; @code{%search-load-path}\n"
709 "will try each extension automatically.")
1bbd0b84 710#define FUNC_NAME s_scm_sys_search_load_path
04e8fb0a 711{
a6e1e050
AW
712 struct stat stat_buf;
713
a6d9e5ab 714 SCM_VALIDATE_STRING (1, filename);
1bbd0b84 715
a6e1e050
AW
716 return search_path (*scm_loc_load_path, filename, *scm_loc_load_extensions,
717 SCM_BOOL_F, &stat_buf);
04e8fb0a 718}
1bbd0b84 719#undef FUNC_NAME
04e8fb0a
MD
720
721
abca59fe 722/* Return true if COMPILED_FILENAME is newer than source file
a6e1e050 723 FULL_FILENAME, false otherwise. */
1d022387 724static int
a6e1e050
AW
725compiled_is_fresh (SCM full_filename, SCM compiled_filename,
726 struct stat *stat_source, struct stat *stat_compiled)
1d022387 727{
722a4fb9 728 int compiled_is_newer;
a6e1e050 729 struct timespec source_mtime, compiled_mtime;
1d022387 730
a6e1e050
AW
731 source_mtime = get_stat_mtime (stat_source);
732 compiled_mtime = get_stat_mtime (stat_compiled);
fefd60ba 733
a6e1e050
AW
734 if (source_mtime.tv_sec < compiled_mtime.tv_sec
735 || (source_mtime.tv_sec == compiled_mtime.tv_sec
736 && source_mtime.tv_nsec <= compiled_mtime.tv_nsec))
737 compiled_is_newer = 1;
738 else
1d022387 739 {
a6e1e050 740 compiled_is_newer = 0;
0607ebbf 741 scm_puts_unlocked (";;; note: source file ", scm_current_error_port ());
a6e1e050 742 scm_display (full_filename, scm_current_error_port ());
0607ebbf 743 scm_puts_unlocked ("\n;;; newer than compiled ", scm_current_error_port ());
a6e1e050 744 scm_display (compiled_filename, scm_current_error_port ());
0607ebbf 745 scm_puts_unlocked ("\n", scm_current_error_port ());
1d022387 746 }
abca59fe
LC
747
748 return compiled_is_newer;
1d022387
AW
749}
750
87c595c7 751SCM_KEYWORD (kw_env, "env");
5a79300f
LC
752SCM_KEYWORD (kw_opts, "opts");
753
754SCM_SYMBOL (sym_compile_file, "compile-file");
755SCM_SYMBOL (sym_auto_compilation_options, "%auto-compilation-options");
87c595c7 756
1d022387 757static SCM
6f06e8d3 758do_try_auto_compile (void *data)
1d022387 759{
21041372 760 SCM source = SCM_PACK_POINTER (data);
3c997c4b 761 SCM comp_mod, compile_file;
ee001750 762
0607ebbf 763 scm_puts_unlocked (";;; compiling ", scm_current_error_port ());
3c997c4b 764 scm_display (source, scm_current_error_port ());
ee001750
AW
765 scm_newline (scm_current_error_port ());
766
767 comp_mod = scm_c_resolve_module ("system base compile");
5a79300f 768 compile_file = scm_module_variable (comp_mod, sym_compile_file);
ee001750 769
3c997c4b
AW
770 if (scm_is_true (compile_file))
771 {
87c595c7 772 /* Auto-compile in the context of the current module. */
5a79300f
LC
773 SCM res, opts;
774 SCM args[5];
775
776 opts = scm_module_variable (scm_the_root_module (),
777 sym_auto_compilation_options);
778 if (SCM_VARIABLEP (opts))
779 opts = SCM_VARIABLE_REF (opts);
780 else
781 opts = SCM_EOL;
782
783 args[0] = source;
784 args[1] = kw_opts;
785 args[2] = opts;
786 args[3] = kw_env;
787 args[4] = scm_current_module ();
788
789 /* Assume `*current-warning-prefix*' has an appropriate value. */
790 res = scm_call_n (scm_variable_ref (compile_file), args, 5);
791
0607ebbf 792 scm_puts_unlocked (";;; compiled ", scm_current_error_port ());
3c997c4b
AW
793 scm_display (res, scm_current_error_port ());
794 scm_newline (scm_current_error_port ());
795 return res;
796 }
797 else
798 {
0607ebbf 799 scm_puts_unlocked (";;; it seems ", scm_current_error_port ());
3c997c4b 800 scm_display (source, scm_current_error_port ());
0607ebbf 801 scm_puts_unlocked ("\n;;; is part of the compiler; skipping auto-compilation\n",
3c997c4b
AW
802 scm_current_error_port ());
803 return SCM_BOOL_F;
804 }
ee001750
AW
805}
806
807static SCM
6f06e8d3 808auto_compile_catch_handler (void *data, SCM tag, SCM throw_args)
ee001750 809{
21041372 810 SCM source = SCM_PACK_POINTER (data);
669ea4eb
AW
811 SCM oport, lines;
812
813 oport = scm_open_output_string ();
814 scm_print_exception (oport, SCM_BOOL_F, tag, throw_args);
815
04ec290f 816 scm_puts_unlocked (";;; WARNING: compilation of ", scm_current_warning_port ());
2c27dd57 817 scm_display (source, scm_current_warning_port ());
04ec290f 818 scm_puts_unlocked (" failed:\n", scm_current_warning_port ());
669ea4eb
AW
819
820 lines = scm_string_split (scm_get_output_string (oport),
821 SCM_MAKE_CHAR ('\n'));
822 for (; scm_is_pair (lines); lines = scm_cdr (lines))
823 if (scm_c_string_length (scm_car (lines)))
824 {
04ec290f 825 scm_puts_unlocked (";;; ", scm_current_warning_port ());
2c27dd57
AW
826 scm_display (scm_car (lines), scm_current_warning_port ());
827 scm_newline (scm_current_warning_port ());
669ea4eb
AW
828 }
829
830 scm_close_port (oport);
831
1d022387
AW
832 return SCM_BOOL_F;
833}
834
6f06e8d3 835SCM_DEFINE (scm_sys_warn_auto_compilation_enabled, "%warn-auto-compilation-enabled", 0, 0, 0,
9591a2b0 836 (void), "")
6f06e8d3 837#define FUNC_NAME s_scm_sys_warn_auto_compilation_enabled
ee001750
AW
838{
839 static int message_shown = 0;
ee001750
AW
840
841 if (!message_shown)
842 {
0607ebbf 843 scm_puts_unlocked (";;; note: auto-compilation is enabled, set GUILE_AUTO_COMPILE=0\n"
6f06e8d3 844 ";;; or pass the --no-auto-compile argument to disable.\n",
2c27dd57 845 scm_current_warning_port ());
ee001750
AW
846 message_shown = 1;
847 }
848
9591a2b0
AW
849 return SCM_UNSPECIFIED;
850}
15058484 851#undef FUNC_NAME
9591a2b0 852
9591a2b0 853static SCM
6f06e8d3 854scm_try_auto_compile (SCM source)
9591a2b0 855{
6f06e8d3 856 if (scm_is_false (*scm_loc_load_should_auto_compile))
9591a2b0
AW
857 return SCM_BOOL_F;
858
6f06e8d3 859 scm_sys_warn_auto_compilation_enabled ();
ee001750 860 return scm_c_catch (SCM_BOOL_T,
6f06e8d3 861 do_try_auto_compile,
21041372 862 SCM_UNPACK_POINTER (source),
6f06e8d3 863 auto_compile_catch_handler,
21041372 864 SCM_UNPACK_POINTER (source),
ee001750
AW
865 NULL, NULL);
866}
867
4bab7f01
AW
868/* The auto-compilation code will residualize a .go file in the cache
869 dir: by default, $HOME/.cache/guile/2.0/ccache/PATH.go. This
870 function determines the PATH to use as a key into the compilation
871 cache. See also (system base compile):compiled-file-name. */
6934d9e7 872static SCM
e4f6e855 873canonical_suffix (SCM fname)
6934d9e7 874{
e4f6e855 875 SCM canon;
e4f6e855 876
4bab7f01 877 /* CANON should be absolute. */
e4f6e855 878 canon = scm_canonicalize_path (fname);
6934d9e7 879
4bab7f01
AW
880#ifdef __MINGW32__
881 {
882 size_t len = scm_c_string_length (canon);
883
884 /* On Windows, an absolute file name that doesn't start with a
885 separator starts with a drive component. Transform the drive
886 component to a file name element: c:\foo -> \c\foo. */
887 if (len >= 2
888 && is_absolute_file_name (canon)
889 && !is_file_name_separator (scm_c_string_ref (canon, 0)))
890 return scm_string_append
891 (scm_list_3 (scm_from_latin1_string (FILE_NAME_SEPARATOR_STRING),
892 scm_c_substring (canon, 0, 1),
893 scm_c_substring (canon, 2, len)));
894 }
895#endif
896
897 return canon;
6934d9e7
AW
898}
899
31ab99de
LC
900SCM_DEFINE (scm_primitive_load_path, "primitive-load-path", 0, 0, 1,
901 (SCM args),
67e8151b 902 "Search @var{%load-path} for the file named @var{filename} and\n"
f6fd2c03
AW
903 "load it into the top-level environment.\n\n"
904 "If @var{filename} is a relative pathname and is not found in\n"
905 "the list of search paths, one of three things may happen,\n"
906 "depending on the optional second argument,\n"
907 "@var{exception_on_not_found}. If it is @code{#f}, @code{#f}\n"
908 "will be returned. If it is a procedure, it will be called\n"
909 "with no arguments. Otherwise an error is signalled.")
1bbd0b84 910#define FUNC_NAME s_scm_primitive_load_path
06721500 911{
31ab99de 912 SCM filename, exception_on_not_found;
22f4ee48 913 SCM full_filename, compiled_filename;
628132c5 914 int compiled_is_fallback = 0;
dcada7d8 915 SCM hook = *scm_loc_load_hook;
a6e1e050 916 struct stat stat_source, stat_compiled;
dcada7d8
AW
917
918 if (scm_is_true (hook) && scm_is_false (scm_procedure_p (hook)))
919 SCM_MISC_ERROR ("value of %load-hook is neither a procedure nor #f",
920 SCM_EOL);
26544b96 921
31ab99de
LC
922 if (scm_is_string (args))
923 {
924 /* C code written for 1.8 and earlier expects this function to take a
925 single argument (the file name). */
926 filename = args;
927 exception_on_not_found = SCM_UNDEFINED;
928 }
929 else
930 {
931 /* Starting from 1.9, this function takes 1 required and 1 optional
932 argument. */
933 long len;
934
935 SCM_VALIDATE_LIST_COPYLEN (SCM_ARG1, args, len);
936 if (len < 1 || len > 2)
937 scm_error_num_args_subr (FUNC_NAME);
938
939 filename = SCM_CAR (args);
940 SCM_VALIDATE_STRING (SCM_ARG1, filename);
941
942 exception_on_not_found = len > 1 ? SCM_CADR (args) : SCM_UNDEFINED;
943 }
944
0fb81f95
AW
945 if (SCM_UNBNDP (exception_on_not_found))
946 exception_on_not_found = SCM_BOOL_T;
26544b96 947
a6e1e050
AW
948 full_filename = search_path (*scm_loc_load_path, filename,
949 *scm_loc_load_extensions, SCM_BOOL_F,
950 &stat_source);
eba5ea7a 951
88cbb421 952 compiled_filename =
a6e1e050
AW
953 search_path (*scm_loc_load_compiled_path, filename,
954 *scm_loc_load_compiled_extensions, SCM_BOOL_T,
955 &stat_compiled);
88cbb421 956
5ea401bf
AW
957 if (scm_is_false (compiled_filename)
958 && scm_is_true (full_filename)
3c997c4b 959 && scm_is_true (*scm_loc_compile_fallback_path)
1e56cff2 960 && scm_is_false (*scm_loc_fresh_auto_compile)
3c997c4b
AW
961 && scm_is_pair (*scm_loc_load_compiled_extensions)
962 && scm_is_string (scm_car (*scm_loc_load_compiled_extensions)))
5ea401bf 963 {
a6e1e050
AW
964 SCM fallback;
965 char *fallback_chars;
966
967 fallback = scm_string_append
3c997c4b 968 (scm_list_3 (*scm_loc_compile_fallback_path,
e4f6e855 969 canonical_suffix (full_filename),
3c997c4b 970 scm_car (*scm_loc_load_compiled_extensions)));
a6e1e050
AW
971
972 fallback_chars = scm_to_locale_string (fallback);
973 if (stat (fallback_chars, &stat_compiled) == 0)
628132c5
AW
974 {
975 compiled_filename = fallback;
976 compiled_is_fallback = 1;
977 }
a6e1e050 978 free (fallback_chars);
5ea401bf
AW
979 }
980
22f4ee48 981 if (scm_is_false (full_filename) && scm_is_false (compiled_filename))
0fb81f95 982 {
f6fd2c03
AW
983 if (scm_is_true (scm_procedure_p (exception_on_not_found)))
984 return scm_call_0 (exception_on_not_found);
985 else if (scm_is_false (exception_on_not_found))
986 return SCM_BOOL_F;
987 else
0fb81f95
AW
988 SCM_MISC_ERROR ("Unable to find file ~S in load path",
989 scm_list_1 (filename));
0fb81f95 990 }
22f4ee48 991
dcada7d8
AW
992 if (!scm_is_false (hook))
993 scm_call_1 (hook, (scm_is_true (full_filename)
994 ? full_filename : compiled_filename));
995
1d022387
AW
996 if (scm_is_false (full_filename)
997 || (scm_is_true (compiled_filename)
a6e1e050
AW
998 && compiled_is_fresh (full_filename, compiled_filename,
999 &stat_source, &stat_compiled)))
22f4ee48
AW
1000 return scm_load_compiled_with_vm (compiled_filename);
1001
628132c5
AW
1002 /* Perhaps there was the installed .go that was stale, but our fallback is
1003 fresh. Let's try that. Duplicating code, but perhaps that's OK. */
1004
1005 if (!compiled_is_fallback
1006 && scm_is_true (*scm_loc_compile_fallback_path)
1e56cff2 1007 && scm_is_false (*scm_loc_fresh_auto_compile)
628132c5
AW
1008 && scm_is_pair (*scm_loc_load_compiled_extensions)
1009 && scm_is_string (scm_car (*scm_loc_load_compiled_extensions)))
1010 {
a6e1e050
AW
1011 SCM fallback;
1012 char *fallback_chars;
1013 int stat_ret;
1014
1015 fallback = scm_string_append
628132c5 1016 (scm_list_3 (*scm_loc_compile_fallback_path,
e4f6e855 1017 canonical_suffix (full_filename),
628132c5 1018 scm_car (*scm_loc_load_compiled_extensions)));
a6e1e050
AW
1019
1020 fallback_chars = scm_to_locale_string (fallback);
1021 stat_ret = stat (fallback_chars, &stat_compiled);
1022 free (fallback_chars);
1023
1024 if (stat_ret == 0 && compiled_is_fresh (full_filename, fallback,
1025 &stat_source, &stat_compiled))
628132c5 1026 {
04ec290f 1027 scm_puts_unlocked (";;; found fresh local cache at ", scm_current_warning_port ());
2c27dd57
AW
1028 scm_display (fallback, scm_current_warning_port ());
1029 scm_newline (scm_current_warning_port ());
5950cc3f 1030 return scm_load_compiled_with_vm (fallback);
628132c5 1031 }
3c997c4b 1032 }
628132c5
AW
1033
1034 /* Otherwise, we bottom out here. */
22f4ee48 1035 {
6f06e8d3 1036 SCM freshly_compiled = scm_try_auto_compile (full_filename);
22f4ee48 1037
628132c5
AW
1038 if (scm_is_true (freshly_compiled))
1039 return scm_load_compiled_with_vm (freshly_compiled);
22f4ee48 1040 else
628132c5 1041 return scm_primitive_load (full_filename);
22f4ee48 1042 }
06721500 1043}
1bbd0b84 1044#undef FUNC_NAME
06721500 1045
c519b272
MV
1046SCM
1047scm_c_primitive_load_path (const char *filename)
1048{
31ab99de 1049 return scm_primitive_load_path (scm_from_locale_string (filename));
c519b272
MV
1050}
1051
5f161164
AW
1052void
1053scm_init_eval_in_scheme (void)
1054{
1055 SCM eval_scm, eval_go;
a6e1e050
AW
1056 struct stat stat_source, stat_compiled;
1057
1058 eval_scm = search_path (*scm_loc_load_path,
1059 scm_from_locale_string ("ice-9/eval.scm"),
1060 SCM_EOL, SCM_BOOL_F, &stat_source);
1061 eval_go = search_path (*scm_loc_load_compiled_path,
1062 scm_from_locale_string ("ice-9/eval.go"),
1063 SCM_EOL, SCM_BOOL_F, &stat_compiled);
5f161164
AW
1064
1065 if (scm_is_true (eval_scm) && scm_is_true (eval_go)
a6e1e050
AW
1066 && compiled_is_fresh (eval_scm, eval_go,
1067 &stat_source, &stat_compiled))
5f161164 1068 scm_load_compiled_with_vm (eval_go);
ed1bf2c8
AW
1069 else
1070 /* if we have no eval.go, we shouldn't load any compiled code at all */
1071 *scm_loc_load_compiled_path = SCM_EOL;
5f161164
AW
1072}
1073
06721500 1074\f
e151bee6 1075/* Information about the build environment. */
06721500 1076
d7a22073
LC
1077SCM_VARIABLE_INIT (sys_host_type, "%host-type",
1078 scm_from_locale_string (HOST_TYPE));
1079
1080
e151bee6
JB
1081/* Initialize the scheme variable %guile-build-info, based on data
1082 provided by the Makefile, via libpath.h. */
1083static void
1084init_build_info ()
1085{
1086 static struct { char *name; char *value; } info[] = SCM_BUILD_INFO;
86d31dfe 1087 SCM *loc = SCM_VARIABLE_LOC (scm_c_define ("%guile-build-info", SCM_EOL));
c014a02e 1088 unsigned long i;
e151bee6
JB
1089
1090 for (i = 0; i < (sizeof (info) / sizeof (info[0])); i++)
cc95e00a 1091 {
25d50a05 1092 SCM key = scm_from_utf8_symbol (info[i].name);
cc95e00a
MV
1093 SCM val = scm_from_locale_string (info[i].value);
1094 *loc = scm_acons (key, val, *loc);
1095 }
26ac1e3f
AW
1096#ifdef PACKAGE_PACKAGER
1097 *loc = scm_acons (scm_from_latin1_symbol ("packager"),
1098 scm_from_latin1_string (PACKAGE_PACKAGER),
1099 *loc);
1100#endif
1101#ifdef PACKAGE_PACKAGER_VERSION
1102 *loc = scm_acons (scm_from_latin1_symbol ("packager-version"),
1103 scm_from_latin1_string (PACKAGE_PACKAGER_VERSION),
1104 *loc);
1105#endif
1106#ifdef PACKAGE_PACKAGER_BUG_REPORTS
1107 *loc = scm_acons (scm_from_latin1_symbol ("packager-bug-reports"),
1108 scm_from_latin1_string (PACKAGE_PACKAGER_BUG_REPORTS),
1109 *loc);
1110#endif
e151bee6
JB
1111}
1112
e151bee6 1113\f
0f2d19dd
JB
1114void
1115scm_init_load ()
0f2d19dd 1116{
f39448c5 1117 scm_listofnullstr = scm_list_1 (scm_nullstr);
86d31dfe 1118 scm_loc_load_path = SCM_VARIABLE_LOC (scm_c_define ("%load-path", SCM_EOL));
26544b96 1119 scm_loc_load_extensions
86d31dfe 1120 = SCM_VARIABLE_LOC (scm_c_define ("%load-extensions",
cc95e00a
MV
1121 scm_list_2 (scm_from_locale_string (".scm"),
1122 scm_nullstr)));
5b197db8
AW
1123 scm_loc_load_compiled_path
1124 = SCM_VARIABLE_LOC (scm_c_define ("%load-compiled-path", SCM_EOL));
22f4ee48
AW
1125 scm_loc_load_compiled_extensions
1126 = SCM_VARIABLE_LOC (scm_c_define ("%load-compiled-extensions",
1127 scm_list_1 (scm_from_locale_string (".go"))));
86d31dfe 1128 scm_loc_load_hook = SCM_VARIABLE_LOC (scm_c_define ("%load-hook", SCM_BOOL_F));
06721500 1129
5ea401bf
AW
1130 scm_loc_compile_fallback_path
1131 = SCM_VARIABLE_LOC (scm_c_define ("%compile-fallback-path", SCM_BOOL_F));
6f06e8d3
AW
1132 scm_loc_load_should_auto_compile
1133 = SCM_VARIABLE_LOC (scm_c_define ("%load-should-auto-compile", SCM_BOOL_F));
1e56cff2
AW
1134 scm_loc_fresh_auto_compile
1135 = SCM_VARIABLE_LOC (scm_c_define ("%fresh-auto-compile", SCM_BOOL_F));
5ea401bf 1136
bd31bce6
MW
1137 scm_ellipsis = scm_from_latin1_string ("...");
1138
c81c2ad3 1139 the_reader = scm_make_fluid_with_default (SCM_BOOL_F);
ec3a8ace
NJ
1140 scm_c_define("current-reader", the_reader);
1141
a6029b97
AW
1142 scm_c_define ("load-compiled",
1143 scm_c_make_gsubr ("load-compiled/vm", 1, 0, 0,
1144 scm_load_compiled_with_vm));
1145
e151bee6
JB
1146 init_build_info ();
1147
a0599745 1148#include "libguile/load.x"
0f2d19dd 1149}
89e00824 1150
6128f34c 1151void
6f06e8d3 1152scm_init_load_should_auto_compile ()
6128f34c 1153{
1e56cff2
AW
1154 char *auto_compile = getenv ("GUILE_AUTO_COMPILE");
1155
1156 if (auto_compile && strcmp (auto_compile, "0") == 0)
1157 {
1158 *scm_loc_load_should_auto_compile = SCM_BOOL_F;
1159 *scm_loc_fresh_auto_compile = SCM_BOOL_F;
1160 }
1161 /* Allow "freshen" also. */
1162 else if (auto_compile && strncmp (auto_compile, "fresh", 5) == 0)
1163 {
1164 *scm_loc_load_should_auto_compile = SCM_BOOL_T;
1165 *scm_loc_fresh_auto_compile = SCM_BOOL_T;
1166 }
1167 else
1168 {
1169 *scm_loc_load_should_auto_compile = SCM_BOOL_T;
1170 *scm_loc_fresh_auto_compile = SCM_BOOL_F;
1171 }
6128f34c
AW
1172}
1173
1174
1175
89e00824
ML
1176/*
1177 Local Variables:
1178 c-file-style: "gnu"
1179 End:
1180*/