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