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