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