Use Gnulib's `stat-time' module; update Gnulib.
[bpt/guile.git] / libguile / load.c
CommitLineData
e29dcaf3 1/* Copyright (C) 1995,1996,1998,1999,2000,2001, 2004, 2006, 2008, 2009, 2010 Free Software Foundation, Inc.
0f2d19dd 2 *
73be1d9e 3 * This library is free software; you can redistribute it and/or
53befeb7
NJ
4 * modify it under the terms of the GNU Lesser General Public License
5 * as published by the Free Software Foundation; either version 3 of
6 * the License, or (at your option) any later version.
0f2d19dd 7 *
53befeb7
NJ
8 * This library is distributed in the hope that it will be useful, but
9 * WITHOUT ANY WARRANTY; without even the implied warranty of
73be1d9e
MV
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 * Lesser General Public License for more details.
0f2d19dd 12 *
73be1d9e
MV
13 * You should have received a copy of the GNU Lesser General Public
14 * License along with this library; if not, write to the Free Software
53befeb7
NJ
15 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
16 * 02110-1301 USA
73be1d9e 17 */
1bbd0b84 18
1bbd0b84 19
0f2d19dd
JB
20\f
21
dbb605f5 22#ifdef HAVE_CONFIG_H
cbd41c89
RB
23# include <config.h>
24#endif
25
13070bd3 26#include <string.h>
7d04d68b 27#include <stdio.h>
13070bd3 28
a0599745 29#include "libguile/_scm.h"
655aadf4 30#include "libguile/private-gc.h" /* scm_getenv_int */
a0599745
MD
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>
52
53#ifdef HAVE_UNISTD_H
54#include <unistd.h>
55#endif /* HAVE_UNISTD_H */
56
5b197db8
AW
57#ifdef HAVE_PWD_H
58#include <pwd.h>
59#endif /* HAVE_PWD_H */
60
06721500
JB
61#ifndef R_OK
62#define R_OK 4
63#endif
0f2d19dd
JB
64
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;
889975e5 88 char *encoding;
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
1bbd0b84 97 { /* scope */
b5623573 98 SCM port = scm_open_file (filename, scm_from_locale_string ("r"));
661ae7ab
MV
99 scm_dynwind_begin (SCM_F_DYNWIND_REWINDABLE);
100 scm_i_dynwind_current_load_port (port);
f8a1c9a8
LC
101
102 encoding = scm_i_scan_for_encoding (port);
889975e5 103 if (encoding)
f8a1c9a8 104 scm_i_set_port_encoding_x (port, encoding);
889975e5 105 else
f8a1c9a8 106 /* The file has no encoding declared. We'll presume Latin-1. */
889975e5 107 scm_i_set_port_encoding_x (port, NULL);
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);
ec3a8ace
NJ
116 if (reader == SCM_BOOL_F)
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
b5623573
MV
124 scm_primitive_eval_x (form);
125 }
126
661ae7ab 127 scm_dynwind_end ();
0f2d19dd
JB
128 scm_close_port (port);
129 }
b59b97ba 130 return SCM_UNSPECIFIED;
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
GB
192
193
3feedb00 194\f
06721500 195/* Initializing the load path, and searching it. */
0f2d19dd 196
26544b96 197/* List of names of directories we search for files to load. */
06721500
JB
198static SCM *scm_loc_load_path;
199
26544b96
JB
200/* List of extensions we try adding to the filenames. */
201static SCM *scm_loc_load_extensions;
202
5b197db8
AW
203/* Like %load-path and %load-extensions, but for compiled files. */
204static SCM *scm_loc_load_compiled_path;
22f4ee48
AW
205static SCM *scm_loc_load_compiled_extensions;
206
ee001750
AW
207/* Whether we should try to auto-compile. */
208static SCM *scm_loc_load_should_autocompile;
01cddfc1 209
5ea401bf
AW
210/* The fallback path for autocompilation */
211static SCM *scm_loc_compile_fallback_path;
01cddfc1 212
a1ec6916 213SCM_DEFINE (scm_parse_path, "parse-path", 1, 1, 0,
1bbd0b84 214 (SCM path, SCM tail),
d91788cb
MG
215 "Parse @var{path}, which is expected to be a colon-separated\n"
216 "string, into a list and return the resulting list with\n"
217 "@var{tail} appended. If @var{path} is @code{#f}, @var{tail}\n"
218 "is returned.")
1bbd0b84 219#define FUNC_NAME s_scm_parse_path
04e8fb0a 220{
7d04d68b
MV
221#ifdef __MINGW32__
222 SCM sep = SCM_MAKE_CHAR (';');
223#else
224 SCM sep = SCM_MAKE_CHAR (':');
225#endif
226
04e8fb0a
MD
227 if (SCM_UNBNDP (tail))
228 tail = SCM_EOL;
7888309b 229 return (scm_is_false (path)
04e8fb0a 230 ? tail
7d04d68b 231 : scm_append_x (scm_list_2 (scm_string_split (path, sep), tail)));
04e8fb0a 232}
1bbd0b84 233#undef FUNC_NAME
04e8fb0a
MD
234
235
06721500 236/* Initialize the global variable %load-path, given the value of the
3feedb00 237 SCM_SITE_DIR and SCM_LIBRARY_DIR preprocessor symbols and the
01cddfc1 238 GUILE_LOAD_PATH environment variable. */
0f2d19dd 239void
06721500
JB
240scm_init_load_path ()
241{
11c5e0bf 242 char *env;
06721500 243 SCM path = SCM_EOL;
5b197db8 244 SCM cpath = SCM_EOL;
06721500 245
3feedb00 246#ifdef SCM_LIBRARY_DIR
02b84691
AW
247 env = getenv ("GUILE_SYSTEM_PATH");
248 if (env && strcmp (env, "") == 0)
249 /* special-case interpret system-path=="" as meaning no system path instead
250 of '("") */
251 ;
252 else if (env)
253 path = scm_parse_path (scm_from_locale_string (env), path);
254 else
bc325e76 255 path = scm_list_4 (scm_from_locale_string (SCM_LIBRARY_DIR),
3c98a49c 256 scm_from_locale_string (SCM_SITE_DIR),
bc325e76 257 scm_from_locale_string (SCM_GLOBAL_SITE_DIR),
02b84691 258 scm_from_locale_string (SCM_PKGDATA_DIR));
5b197db8
AW
259
260 env = getenv ("GUILE_SYSTEM_COMPILED_PATH");
261 if (env && strcmp (env, "") == 0)
262 /* like above */
263 ;
264 else if (env)
265 cpath = scm_parse_path (scm_from_locale_string (env), cpath);
266 else
3c997c4b
AW
267 cpath = scm_cons (scm_from_locale_string (SCM_CCACHE_DIR), cpath);
268
3feedb00 269#endif /* SCM_LIBRARY_DIR */
06721500 270
3c997c4b 271 {
179fe336
AW
272 char cachedir[1024];
273 char *e;
274#ifdef HAVE_GETPWENT
275 struct passwd *pwd;
276#endif
5b197db8 277
6e5c02b8
AW
278#define FALLBACK_DIR \
279 "guile/ccache/" SCM_EFFECTIVE_VERSION "-" SCM_OBJCODE_MACHINE_VERSION_STRING
179fe336
AW
280
281 if ((e = getenv ("XDG_CACHE_HOME")))
48a0fe4d 282 snprintf (cachedir, sizeof(cachedir), "%s/" FALLBACK_DIR, e);
179fe336
AW
283 else if ((e = getenv ("HOME")))
284 snprintf (cachedir, sizeof(cachedir), "%s/.cache/" FALLBACK_DIR, e);
5b197db8 285#ifdef HAVE_GETPWENT
179fe336
AW
286 else if ((pwd = getpwuid (getuid ())) && pwd->pw_dir)
287 snprintf (cachedir, sizeof(cachedir), "%s/.cache/" FALLBACK_DIR,
288 pwd->pw_dir);
5b197db8 289#endif /* HAVE_GETPWENT */
179fe336
AW
290 else
291 cachedir[0] = 0;
292
293 if (cachedir[0])
294 *scm_loc_compile_fallback_path = scm_from_locale_string (cachedir);
3c997c4b 295 }
06721500 296
11c5e0bf
MV
297 env = getenv ("GUILE_LOAD_PATH");
298 if (env)
299 path = scm_parse_path (scm_from_locale_string (env), path);
01cddfc1 300
5b197db8
AW
301 env = getenv ("GUILE_LOAD_COMPILED_PATH");
302 if (env)
303 cpath = scm_parse_path (scm_from_locale_string (env), cpath);
304
06721500 305 *scm_loc_load_path = path;
5b197db8 306 *scm_loc_load_compiled_path = cpath;
06721500
JB
307}
308
04e8fb0a 309SCM scm_listofnullstr;
06721500 310
7d04d68b
MV
311/* Utility functions for assembling C strings in a buffer.
312 */
313
314struct stringbuf {
315 char *buf, *ptr;
316 size_t buf_len;
317};
318
319static void
320stringbuf_free (void *data)
321{
322 struct stringbuf *buf = (struct stringbuf *)data;
323 free (buf->buf);
324}
325
326static void
327stringbuf_grow (struct stringbuf *buf)
328{
329 size_t ptroff = buf->ptr - buf->buf;
330 buf->buf_len *= 2;
7d04d68b
MV
331 buf->buf = scm_realloc (buf->buf, buf->buf_len);
332 buf->ptr = buf->buf + ptroff;
333}
334
335static void
336stringbuf_cat_locale_string (struct stringbuf *buf, SCM str)
337{
338 size_t max_len = buf->buf_len - (buf->ptr - buf->buf) - 1;
339 size_t len = scm_to_locale_stringbuf (str, buf->ptr, max_len);
340 if (len > max_len)
341 {
342 /* buffer is too small, double its size and try again.
343 */
344 stringbuf_grow (buf);
345 stringbuf_cat_locale_string (buf, str);
346 }
347 else
348 {
349 /* string fits, terminate it and check for embedded '\0'.
350 */
351 buf->ptr[len] = '\0';
352 if (strlen (buf->ptr) != len)
353 scm_misc_error (NULL,
354 "string contains #\\nul character: ~S",
355 scm_list_1 (str));
356 buf->ptr += len;
357 }
358}
359
360static void
361stringbuf_cat (struct stringbuf *buf, char *str)
362{
363 size_t max_len = buf->buf_len - (buf->ptr - buf->buf) - 1;
364 size_t len = strlen (str);
365 if (len > max_len)
366 {
367 /* buffer is too small, double its size and try again.
368 */
369 stringbuf_grow (buf);
370 stringbuf_cat (buf, str);
371 }
372 else
373 {
374 /* string fits, copy it into buffer.
375 */
376 strcpy (buf->ptr, str);
377 buf->ptr += len;
378 }
379}
380
381
22f4ee48
AW
382static int
383scm_c_string_has_an_ext (char *str, size_t len, SCM extensions)
384{
385 for (; !scm_is_null (extensions); extensions = SCM_CDR (extensions))
386 {
387 char *ext;
388 size_t extlen;
389 int match;
390 ext = scm_to_locale_string (SCM_CAR (extensions));
391 extlen = strlen (ext);
392 match = (len > extlen && str[len - extlen - 1] == '.'
393 && strncmp (str + (len - extlen), ext, extlen) == 0);
394 free (ext);
395 if (match)
396 return 1;
397 }
398 return 0;
399}
400
04e8fb0a 401/* Search PATH for a directory containing a file named FILENAME.
06721500 402 The file must be readable, and not a directory.
26544b96 403 If we find one, return its full filename; otherwise, return #f.
56384176
JB
404 If FILENAME is absolute, return it unchanged.
405 If given, EXTENSIONS is a list of strings; for each directory
406 in PATH, we search for FILENAME concatenated with each EXTENSION. */
88cbb421
LC
407SCM_DEFINE (scm_search_path, "search-path", 2, 0, 1,
408 (SCM path, SCM filename, SCM rest),
d91788cb
MG
409 "Search @var{path} for a directory containing a file named\n"
410 "@var{filename}. The file must be readable, and not a directory.\n"
411 "If we find one, return its full filename; otherwise, return\n"
412 "@code{#f}. If @var{filename} is absolute, return it unchanged.\n"
413 "If given, @var{extensions} is a list of strings; for each\n"
414 "directory in @var{path}, we search for @var{filename}\n"
415 "concatenated with each @var{extension}.")
1bbd0b84 416#define FUNC_NAME s_scm_search_path
06721500 417{
7d04d68b 418 struct stringbuf buf;
56384176 419 char *filename_chars;
7d04d68b 420 size_t filename_len;
88cbb421 421 SCM extensions, require_exts;
7d04d68b 422 SCM result = SCM_BOOL_F;
06721500 423
e29dcaf3 424 if (SCM_UNBNDP (rest) || scm_is_null (rest))
88cbb421
LC
425 {
426 /* Called either by Scheme code that didn't provide the optional
427 arguments, or C code that used the Guile 1.8 signature (2 required,
e29dcaf3
LC
428 1 optional arg) and passed '() or nothing as the EXTENSIONS
429 argument. */
88cbb421
LC
430 extensions = SCM_EOL;
431 require_exts = SCM_UNDEFINED;
432 }
433 else
434 {
435 if (scm_is_null (SCM_CAR (rest)) || scm_is_pair (SCM_CAR (rest)))
436 {
437 /* Called by Scheme code written for 1.9. */
438 extensions = SCM_CAR (rest);
439 if (scm_is_null (SCM_CDR (rest)))
440 require_exts = SCM_UNDEFINED;
441 else
442 {
443 require_exts = SCM_CADR (rest);
444 if (SCM_UNLIKELY (!scm_is_null (SCM_CDDR (rest))))
445 scm_wrong_num_args (scm_from_locale_string (FUNC_NAME));
446 }
447 }
448 else
449 {
450 /* Called by C code that uses the 1.8 signature, i.e., which
451 expects the 3rd argument to be EXTENSIONS. */
452 extensions = rest;
453 require_exts = SCM_UNDEFINED;
454 }
455 }
456
04e8fb0a 457 if (SCM_UNBNDP (extensions))
56384176 458 extensions = SCM_EOL;
56384176 459
88cbb421
LC
460 SCM_VALIDATE_LIST (3, extensions);
461
22f4ee48
AW
462 if (SCM_UNBNDP (require_exts))
463 require_exts = SCM_BOOL_F;
464
661ae7ab 465 scm_dynwind_begin (0);
7d04d68b
MV
466
467 filename_chars = scm_to_locale_string (filename);
468 filename_len = strlen (filename_chars);
661ae7ab 469 scm_dynwind_free (filename_chars);
06721500 470
26544b96 471 /* If FILENAME is absolute, return it unchanged. */
2e945bcc
SJ
472#ifdef __MINGW32__
473 if (((filename_len >= 1) &&
474 (filename_chars[0] == '/' || filename_chars[0] == '\\')) ||
475 ((filename_len >= 3) && filename_chars[1] == ':' &&
476 ((filename_chars[0] >= 'a' && filename_chars[0] <= 'z') ||
477 (filename_chars[0] >= 'A' && filename_chars[0] <= 'Z')) &&
478 (filename_chars[2] == '/' || filename_chars[2] == '\\')))
479#else
56384176 480 if (filename_len >= 1 && filename_chars[0] == '/')
2e945bcc 481#endif
7d04d68b 482 {
22f4ee48
AW
483 SCM res = filename;
484 if (scm_is_true (require_exts) &&
485 !scm_c_string_has_an_ext (filename_chars, filename_len,
486 extensions))
487 res = SCM_BOOL_F;
488
661ae7ab 489 scm_dynwind_end ();
22f4ee48 490 return res;
7d04d68b 491 }
26544b96 492
56384176
JB
493 /* If FILENAME has an extension, don't try to add EXTENSIONS to it. */
494 {
495 char *endp;
496
497 for (endp = filename_chars + filename_len - 1;
498 endp >= filename_chars;
499 endp--)
500 {
501 if (*endp == '.')
502 {
22f4ee48
AW
503 if (scm_is_true (require_exts) &&
504 !scm_c_string_has_an_ext (filename_chars, filename_len,
505 extensions))
506 {
507 /* This filename has an extension, but not one of the right
508 ones... */
509 scm_dynwind_end ();
510 return SCM_BOOL_F;
511 }
56384176
JB
512 /* This filename already has an extension, so cancel the
513 list of extensions. */
514 extensions = SCM_EOL;
515 break;
516 }
2e945bcc
SJ
517#ifdef __MINGW32__
518 else if (*endp == '/' || *endp == '\\')
519#else
56384176 520 else if (*endp == '/')
2e945bcc 521#endif
56384176
JB
522 /* This filename has no extension, so keep the current list
523 of extensions. */
524 break;
525 }
526 }
527
7d04d68b
MV
528 /* This simplifies the loop below a bit.
529 */
d2e53ed6 530 if (scm_is_null (extensions))
7d04d68b 531 extensions = scm_listofnullstr;
06721500 532
7d04d68b
MV
533 buf.buf_len = 512;
534 buf.buf = scm_malloc (buf.buf_len);
661ae7ab 535 scm_dynwind_unwind_handler (stringbuf_free, &buf, SCM_F_WIND_EXPLICITLY);
0a74e31d 536
7d04d68b
MV
537 /* Try every path element.
538 */
d2e53ed6 539 for (; scm_is_pair (path); path = SCM_CDR (path))
7d04d68b
MV
540 {
541 SCM dir = SCM_CAR (path);
542 SCM exts;
543 size_t sans_ext_len;
544
545 buf.ptr = buf.buf;
546 stringbuf_cat_locale_string (&buf, dir);
547
548 /* Concatenate the path name and the filename. */
549
2e945bcc 550#ifdef __MINGW32__
5a6d139b 551 if ((buf.ptr > buf.buf) && (buf.ptr[-1] != '/') && (buf.ptr[-1] != '\\'))
2e945bcc 552#else
5a6d139b 553 if ((buf.ptr > buf.buf) && (buf.ptr[-1] != '/'))
2e945bcc 554#endif
7d04d68b
MV
555 stringbuf_cat (&buf, "/");
556
557 stringbuf_cat (&buf, filename_chars);
558 sans_ext_len = buf.ptr - buf.buf;
559
560 /* Try every extension. */
d2e53ed6 561 for (exts = extensions; scm_is_pair (exts); exts = SCM_CDR (exts))
7d04d68b
MV
562 {
563 SCM ext = SCM_CAR (exts);
564 struct stat mode;
565
566 buf.ptr = buf.buf + sans_ext_len;
567 stringbuf_cat_locale_string (&buf, ext);
568
569 /* If the file exists at all, we should return it. If the
570 file is inaccessible, then that's an error. */
571
7d04d68b
MV
572 if (stat (buf.buf, &mode) == 0
573 && ! (mode.st_mode & S_IFDIR))
574 {
575 result = scm_from_locale_string (buf.buf);
576 goto end;
577 }
578 }
579
580 if (!SCM_NULL_OR_NIL_P (exts))
581 scm_wrong_type_arg_msg (NULL, 0, extensions, "proper list");
582 }
56384176 583
7d04d68b
MV
584 if (!SCM_NULL_OR_NIL_P (path))
585 scm_wrong_type_arg_msg (NULL, 0, path, "proper list");
56384176 586
7d04d68b 587 end:
661ae7ab 588 scm_dynwind_end ();
7d04d68b 589 return result;
06721500 590}
1bbd0b84 591#undef FUNC_NAME
06721500
JB
592
593
04e8fb0a
MD
594/* Search %load-path for a directory containing a file named FILENAME.
595 The file must be readable, and not a directory.
596 If we find one, return its full filename; otherwise, return #f.
597 If FILENAME is absolute, return it unchanged. */
3b3b36dd 598SCM_DEFINE (scm_sys_search_load_path, "%search-load-path", 1, 0, 0,
67e8151b
MG
599 (SCM filename),
600 "Search @var{%load-path} for the file named @var{filename},\n"
601 "which must be readable by the current user. If @var{filename}\n"
602 "is found in the list of paths to search or is an absolute\n"
603 "pathname, return its full pathname. Otherwise, return\n"
604 "@code{#f}. Filenames may have any of the optional extensions\n"
605 "in the @code{%load-extensions} list; @code{%search-load-path}\n"
606 "will try each extension automatically.")
1bbd0b84 607#define FUNC_NAME s_scm_sys_search_load_path
04e8fb0a
MD
608{
609 SCM path = *scm_loc_load_path;
610 SCM exts = *scm_loc_load_extensions;
a6d9e5ab 611 SCM_VALIDATE_STRING (1, filename);
1bbd0b84 612
2ade72d7
DH
613 if (scm_ilength (path) < 0)
614 SCM_MISC_ERROR ("%load-path is not a proper list", SCM_EOL);
615 if (scm_ilength (exts) < 0)
616 SCM_MISC_ERROR ("%load-extension list is not a proper list", SCM_EOL);
88cbb421 617 return scm_search_path (path, filename, exts);
04e8fb0a 618}
1bbd0b84 619#undef FUNC_NAME
04e8fb0a
MD
620
621
1d022387 622static int
535fb833 623compiled_is_fresh (SCM full_filename, SCM compiled_filename)
1d022387
AW
624{
625 char *source, *compiled;
626 struct stat stat_source, stat_compiled;
627 int res;
628
629 source = scm_to_locale_string (full_filename);
630 compiled = scm_to_locale_string (compiled_filename);
fefd60ba 631
1d022387
AW
632 if (stat (source, &stat_source) == 0
633 && stat (compiled, &stat_compiled) == 0
fefd60ba 634 && stat_source.st_mtime <= stat_compiled.st_mtime)
1d022387
AW
635 {
636 res = 1;
637 }
638 else
639 {
640 scm_puts (";;; note: source file ", scm_current_error_port ());
641 scm_puts (source, scm_current_error_port ());
6fd367e7 642 scm_puts ("\n;;; newer than compiled ", scm_current_error_port ());
1d022387
AW
643 scm_puts (compiled, scm_current_error_port ());
644 scm_puts ("\n", scm_current_error_port ());
645 res = 0;
1d022387 646 }
3c997c4b 647
1d022387
AW
648 free (source);
649 free (compiled);
650 return res;
651}
652
87c595c7
LC
653SCM_KEYWORD (kw_env, "env");
654
1d022387 655static SCM
ee001750 656do_try_autocompile (void *data)
1d022387 657{
3c997c4b
AW
658 SCM source = PTR2SCM (data);
659 SCM comp_mod, compile_file;
ee001750
AW
660
661 scm_puts (";;; compiling ", scm_current_error_port ());
3c997c4b 662 scm_display (source, scm_current_error_port ());
ee001750
AW
663 scm_newline (scm_current_error_port ());
664
665 comp_mod = scm_c_resolve_module ("system base compile");
628132c5
AW
666 compile_file = scm_module_variable
667 (comp_mod, scm_from_locale_symbol ("compile-file"));
ee001750 668
3c997c4b
AW
669 if (scm_is_true (compile_file))
670 {
87c595c7
LC
671 /* Auto-compile in the context of the current module. */
672 SCM res = scm_call_3 (scm_variable_ref (compile_file), source,
673 kw_env, scm_current_module ());
3c997c4b
AW
674 scm_puts (";;; compiled ", scm_current_error_port ());
675 scm_display (res, scm_current_error_port ());
676 scm_newline (scm_current_error_port ());
677 return res;
678 }
679 else
680 {
681 scm_puts (";;; it seems ", scm_current_error_port ());
682 scm_display (source, scm_current_error_port ());
683 scm_puts ("\n;;; is part of the compiler; skipping autocompilation\n",
684 scm_current_error_port ());
685 return SCM_BOOL_F;
686 }
ee001750
AW
687}
688
689static SCM
690autocompile_catch_handler (void *data, SCM tag, SCM throw_args)
691{
3c997c4b 692 SCM source = PTR2SCM (data);
ee001750 693 scm_puts (";;; WARNING: compilation of ", scm_current_error_port ());
3c997c4b 694 scm_display (source, scm_current_error_port ());
6fd367e7 695 scm_puts (" failed:\n", scm_current_error_port ());
ee001750
AW
696 scm_puts (";;; key ", scm_current_error_port ());
697 scm_write (tag, scm_current_error_port ());
698 scm_puts (", throw args ", scm_current_error_port ());
699 scm_write (throw_args, scm_current_error_port ());
700 scm_newline (scm_current_error_port ());
1d022387
AW
701 return SCM_BOOL_F;
702}
703
9591a2b0
AW
704SCM_DEFINE (scm_sys_warn_autocompilation_enabled, "%warn-autocompilation-enabled", 0, 0, 0,
705 (void), "")
15058484 706#define FUNC_NAME s_scm_sys_warn_autocompilation_enabled
ee001750
AW
707{
708 static int message_shown = 0;
ee001750
AW
709
710 if (!message_shown)
711 {
712 scm_puts (";;; note: autocompilation is enabled, set GUILE_AUTO_COMPILE=0\n"
6fd367e7 713 ";;; or pass the --no-autocompile argument to disable.\n",
ee001750
AW
714 scm_current_error_port ());
715 message_shown = 1;
716 }
717
9591a2b0
AW
718 return SCM_UNSPECIFIED;
719}
15058484 720#undef FUNC_NAME
9591a2b0 721
9591a2b0
AW
722static SCM
723scm_try_autocompile (SCM source)
724{
725 if (scm_is_false (*scm_loc_load_should_autocompile))
726 return SCM_BOOL_F;
727
728 scm_sys_warn_autocompilation_enabled ();
ee001750
AW
729 return scm_c_catch (SCM_BOOL_T,
730 do_try_autocompile,
3c997c4b 731 SCM2PTR (source),
ee001750 732 autocompile_catch_handler,
3c997c4b 733 SCM2PTR (source),
ee001750
AW
734 NULL, NULL);
735}
736
31ab99de
LC
737SCM_DEFINE (scm_primitive_load_path, "primitive-load-path", 0, 0, 1,
738 (SCM args),
67e8151b
MG
739 "Search @var{%load-path} for the file named @var{filename} and\n"
740 "load it into the top-level environment. If @var{filename} is a\n"
741 "relative pathname and is not found in the list of search paths,\n"
0fb81f95
AW
742 "an error is signalled, unless the optional argument\n"
743 "@var{exception_on_not_found} is @code{#f}, in which case\n"
744 "@code{#f} is returned instead.")
1bbd0b84 745#define FUNC_NAME s_scm_primitive_load_path
06721500 746{
31ab99de 747 SCM filename, exception_on_not_found;
22f4ee48 748 SCM full_filename, compiled_filename;
628132c5 749 int compiled_is_fallback = 0;
26544b96 750
31ab99de
LC
751 if (scm_is_string (args))
752 {
753 /* C code written for 1.8 and earlier expects this function to take a
754 single argument (the file name). */
755 filename = args;
756 exception_on_not_found = SCM_UNDEFINED;
757 }
758 else
759 {
760 /* Starting from 1.9, this function takes 1 required and 1 optional
761 argument. */
762 long len;
763
764 SCM_VALIDATE_LIST_COPYLEN (SCM_ARG1, args, len);
765 if (len < 1 || len > 2)
766 scm_error_num_args_subr (FUNC_NAME);
767
768 filename = SCM_CAR (args);
769 SCM_VALIDATE_STRING (SCM_ARG1, filename);
770
771 exception_on_not_found = len > 1 ? SCM_CADR (args) : SCM_UNDEFINED;
772 }
773
0fb81f95
AW
774 if (SCM_UNBNDP (exception_on_not_found))
775 exception_on_not_found = SCM_BOOL_T;
26544b96 776
26544b96 777 full_filename = scm_sys_search_load_path (filename);
eba5ea7a
LC
778 if (scm_is_string (full_filename))
779 full_filename = scm_canonicalize_path (full_filename);
780
88cbb421
LC
781 compiled_filename =
782 scm_search_path (*scm_loc_load_compiled_path,
783 filename,
784 scm_list_2 (*scm_loc_load_compiled_extensions,
785 SCM_BOOL_T));
786
5ea401bf
AW
787 if (scm_is_false (compiled_filename)
788 && scm_is_true (full_filename)
3c997c4b
AW
789 && scm_is_true (*scm_loc_compile_fallback_path)
790 && scm_is_pair (*scm_loc_load_compiled_extensions)
791 && scm_is_string (scm_car (*scm_loc_load_compiled_extensions)))
5ea401bf 792 {
3c997c4b
AW
793 SCM fallback = scm_string_append
794 (scm_list_3 (*scm_loc_compile_fallback_path,
795 full_filename,
796 scm_car (*scm_loc_load_compiled_extensions)));
797 if (scm_is_true (scm_stat (fallback, SCM_BOOL_F)))
628132c5
AW
798 {
799 compiled_filename = fallback;
800 compiled_is_fallback = 1;
801 }
5ea401bf
AW
802 }
803
22f4ee48 804 if (scm_is_false (full_filename) && scm_is_false (compiled_filename))
0fb81f95
AW
805 {
806 if (scm_is_true (exception_on_not_found))
807 SCM_MISC_ERROR ("Unable to find file ~S in load path",
808 scm_list_1 (filename));
809 else
810 return SCM_BOOL_F;
811 }
22f4ee48 812
1d022387
AW
813 if (scm_is_false (full_filename)
814 || (scm_is_true (compiled_filename)
535fb833 815 && compiled_is_fresh (full_filename, compiled_filename)))
22f4ee48
AW
816 return scm_load_compiled_with_vm (compiled_filename);
817
628132c5
AW
818 /* Perhaps there was the installed .go that was stale, but our fallback is
819 fresh. Let's try that. Duplicating code, but perhaps that's OK. */
820
821 if (!compiled_is_fallback
822 && scm_is_true (*scm_loc_compile_fallback_path)
823 && scm_is_pair (*scm_loc_load_compiled_extensions)
824 && scm_is_string (scm_car (*scm_loc_load_compiled_extensions)))
825 {
826 SCM fallback = scm_string_append
827 (scm_list_3 (*scm_loc_compile_fallback_path,
828 full_filename,
829 scm_car (*scm_loc_load_compiled_extensions)));
830 if (scm_is_true (scm_stat (fallback, SCM_BOOL_F))
535fb833 831 && compiled_is_fresh (full_filename, fallback))
628132c5
AW
832 {
833 scm_puts (";;; found fresh local cache at ", scm_current_error_port ());
834 scm_display (fallback, scm_current_error_port ());
835 scm_newline (scm_current_error_port ());
5950cc3f 836 return scm_load_compiled_with_vm (fallback);
628132c5 837 }
3c997c4b 838 }
628132c5
AW
839
840 /* Otherwise, we bottom out here. */
22f4ee48 841 {
628132c5 842 SCM freshly_compiled = scm_try_autocompile (full_filename);
22f4ee48 843
628132c5
AW
844 if (scm_is_true (freshly_compiled))
845 return scm_load_compiled_with_vm (freshly_compiled);
22f4ee48 846 else
628132c5 847 return scm_primitive_load (full_filename);
22f4ee48 848 }
06721500 849}
1bbd0b84 850#undef FUNC_NAME
06721500 851
c519b272
MV
852SCM
853scm_c_primitive_load_path (const char *filename)
854{
31ab99de 855 return scm_primitive_load_path (scm_from_locale_string (filename));
c519b272
MV
856}
857
5f161164
AW
858void
859scm_init_eval_in_scheme (void)
860{
861 SCM eval_scm, eval_go;
862 eval_scm = scm_search_path (*scm_loc_load_path,
863 scm_from_locale_string ("ice-9/eval.scm"),
864 SCM_EOL);
865 eval_go = scm_search_path (*scm_loc_load_compiled_path,
866 scm_from_locale_string ("ice-9/eval.go"),
867 SCM_EOL);
868
869 if (scm_is_true (eval_scm) && scm_is_true (eval_go)
870 && compiled_is_fresh (eval_scm, eval_go))
871 scm_load_compiled_with_vm (eval_go);
ed1bf2c8
AW
872 else
873 /* if we have no eval.go, we shouldn't load any compiled code at all */
874 *scm_loc_load_compiled_path = SCM_EOL;
5f161164
AW
875}
876
06721500 877\f
e151bee6 878/* Information about the build environment. */
06721500 879
d7a22073
LC
880SCM_VARIABLE_INIT (sys_host_type, "%host-type",
881 scm_from_locale_string (HOST_TYPE));
882
883
e151bee6
JB
884/* Initialize the scheme variable %guile-build-info, based on data
885 provided by the Makefile, via libpath.h. */
886static void
887init_build_info ()
888{
889 static struct { char *name; char *value; } info[] = SCM_BUILD_INFO;
86d31dfe 890 SCM *loc = SCM_VARIABLE_LOC (scm_c_define ("%guile-build-info", SCM_EOL));
c014a02e 891 unsigned long i;
e151bee6
JB
892
893 for (i = 0; i < (sizeof (info) / sizeof (info[0])); i++)
cc95e00a
MV
894 {
895 SCM key = scm_from_locale_symbol (info[i].name);
896 SCM val = scm_from_locale_string (info[i].value);
897 *loc = scm_acons (key, val, *loc);
898 }
e151bee6
JB
899}
900
e151bee6 901\f
0f2d19dd
JB
902void
903scm_init_load ()
0f2d19dd 904{
f39448c5 905 scm_listofnullstr = scm_list_1 (scm_nullstr);
86d31dfe 906 scm_loc_load_path = SCM_VARIABLE_LOC (scm_c_define ("%load-path", SCM_EOL));
26544b96 907 scm_loc_load_extensions
86d31dfe 908 = SCM_VARIABLE_LOC (scm_c_define ("%load-extensions",
cc95e00a
MV
909 scm_list_2 (scm_from_locale_string (".scm"),
910 scm_nullstr)));
5b197db8
AW
911 scm_loc_load_compiled_path
912 = SCM_VARIABLE_LOC (scm_c_define ("%load-compiled-path", SCM_EOL));
22f4ee48
AW
913 scm_loc_load_compiled_extensions
914 = SCM_VARIABLE_LOC (scm_c_define ("%load-compiled-extensions",
915 scm_list_1 (scm_from_locale_string (".go"))));
86d31dfe 916 scm_loc_load_hook = SCM_VARIABLE_LOC (scm_c_define ("%load-hook", SCM_BOOL_F));
06721500 917
5ea401bf
AW
918 scm_loc_compile_fallback_path
919 = SCM_VARIABLE_LOC (scm_c_define ("%compile-fallback-path", SCM_BOOL_F));
6128f34c
AW
920 scm_loc_load_should_autocompile
921 = SCM_VARIABLE_LOC (scm_c_define ("%load-should-autocompile", SCM_BOOL_F));
5ea401bf 922
ec3a8ace 923 the_reader = scm_make_fluid ();
8b039053 924 scm_fluid_set_x (the_reader, SCM_BOOL_F);
ec3a8ace
NJ
925 scm_c_define("current-reader", the_reader);
926
a6029b97
AW
927 scm_c_define ("load-compiled",
928 scm_c_make_gsubr ("load-compiled/vm", 1, 0, 0,
929 scm_load_compiled_with_vm));
930
e151bee6
JB
931 init_build_info ();
932
a0599745 933#include "libguile/load.x"
0f2d19dd 934}
89e00824 935
6128f34c
AW
936void
937scm_init_load_should_autocompile ()
938{
939 *scm_loc_load_should_autocompile =
940 scm_from_bool (scm_getenv_int ("GUILE_AUTO_COMPILE", 1));
941}
942
943
944
89e00824
ML
945/*
946 Local Variables:
947 c-file-style: "gnu"
948 End:
949*/