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