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