Merge remote-tracking branch 'origin/stable-2.0'
[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 (scm_is_false (reader))
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 /* Whether to treat all auto-compiled files as stale. */
214 static SCM *scm_loc_fresh_auto_compile;
215
216 /* The fallback path for auto-compilation */
217 static SCM *scm_loc_compile_fallback_path;
218
219 SCM_DEFINE (scm_parse_path, "parse-path", 1, 1, 0,
220 (SCM path, SCM tail),
221 "Parse @var{path}, which is expected to be a colon-separated\n"
222 "string, into a list and return the resulting list with\n"
223 "@var{tail} appended. If @var{path} is @code{#f}, @var{tail}\n"
224 "is returned.")
225 #define FUNC_NAME s_scm_parse_path
226 {
227 #ifdef __MINGW32__
228 SCM sep = SCM_MAKE_CHAR (';');
229 #else
230 SCM sep = SCM_MAKE_CHAR (':');
231 #endif
232
233 if (SCM_UNBNDP (tail))
234 tail = SCM_EOL;
235 return (scm_is_false (path)
236 ? tail
237 : scm_append_x (scm_list_2 (scm_string_split (path, sep), tail)));
238 }
239 #undef FUNC_NAME
240
241
242 /* Initialize the global variable %load-path, given the value of the
243 SCM_SITE_DIR and SCM_LIBRARY_DIR preprocessor symbols and the
244 GUILE_LOAD_PATH environment variable. */
245 void
246 scm_init_load_path ()
247 {
248 char *env;
249 SCM path = SCM_EOL;
250 SCM cpath = SCM_EOL;
251
252 #ifdef SCM_LIBRARY_DIR
253 env = getenv ("GUILE_SYSTEM_PATH");
254 if (env && strcmp (env, "") == 0)
255 /* special-case interpret system-path=="" as meaning no system path instead
256 of '("") */
257 ;
258 else if (env)
259 path = scm_parse_path (scm_from_locale_string (env), path);
260 else
261 path = scm_list_4 (scm_from_locale_string (SCM_LIBRARY_DIR),
262 scm_from_locale_string (SCM_SITE_DIR),
263 scm_from_locale_string (SCM_GLOBAL_SITE_DIR),
264 scm_from_locale_string (SCM_PKGDATA_DIR));
265
266 env = getenv ("GUILE_SYSTEM_COMPILED_PATH");
267 if (env && strcmp (env, "") == 0)
268 /* like above */
269 ;
270 else if (env)
271 cpath = scm_parse_path (scm_from_locale_string (env), cpath);
272 else
273 {
274 cpath = scm_list_2 (scm_from_locale_string (SCM_CCACHE_DIR),
275 scm_from_locale_string (SCM_SITE_CCACHE_DIR));
276 }
277
278 #endif /* SCM_LIBRARY_DIR */
279
280 {
281 char cachedir[1024];
282 char *e;
283 #ifdef HAVE_GETPWENT
284 struct passwd *pwd;
285 #endif
286
287 #define FALLBACK_DIR \
288 "guile/ccache/" SCM_EFFECTIVE_VERSION "-" SCM_OBJCODE_MACHINE_VERSION_STRING
289
290 if ((e = getenv ("XDG_CACHE_HOME")))
291 snprintf (cachedir, sizeof(cachedir), "%s/" FALLBACK_DIR, e);
292 else if ((e = getenv ("HOME")))
293 snprintf (cachedir, sizeof(cachedir), "%s/.cache/" FALLBACK_DIR, e);
294 #ifdef HAVE_GETPWENT
295 else if ((pwd = getpwuid (getuid ())) && pwd->pw_dir)
296 snprintf (cachedir, sizeof(cachedir), "%s/.cache/" FALLBACK_DIR,
297 pwd->pw_dir);
298 #endif /* HAVE_GETPWENT */
299 #ifdef __MINGW32__
300 else if ((e = getenv ("LOCALAPPDATA")))
301 snprintf (cachedir, sizeof (cachedir), "%s/.cache/" FALLBACK_DIR, e);
302 else if ((e = getenv ("APPDATA")))
303 snprintf (cachedir, sizeof (cachedir), "%s/.cache/" FALLBACK_DIR, e);
304 #endif /* __MINGW32__ */
305 else
306 cachedir[0] = 0;
307
308 if (cachedir[0])
309 *scm_loc_compile_fallback_path = scm_from_locale_string (cachedir);
310 }
311
312 env = getenv ("GUILE_LOAD_PATH");
313 if (env)
314 path = scm_parse_path (scm_from_locale_string (env), path);
315
316 env = getenv ("GUILE_LOAD_COMPILED_PATH");
317 if (env)
318 cpath = scm_parse_path (scm_from_locale_string (env), cpath);
319
320 *scm_loc_load_path = path;
321 *scm_loc_load_compiled_path = cpath;
322 }
323
324 SCM scm_listofnullstr;
325
326 /* Utility functions for assembling C strings in a buffer.
327 */
328
329 struct stringbuf {
330 char *buf, *ptr;
331 size_t buf_len;
332 };
333
334 static void
335 stringbuf_free (void *data)
336 {
337 struct stringbuf *buf = (struct stringbuf *)data;
338 free (buf->buf);
339 }
340
341 static void
342 stringbuf_grow (struct stringbuf *buf)
343 {
344 size_t ptroff = buf->ptr - buf->buf;
345 buf->buf_len *= 2;
346 buf->buf = scm_realloc (buf->buf, buf->buf_len);
347 buf->ptr = buf->buf + ptroff;
348 }
349
350 static void
351 stringbuf_cat_locale_string (struct stringbuf *buf, SCM str)
352 {
353 size_t max_len = buf->buf_len - (buf->ptr - buf->buf) - 1;
354 size_t len = scm_to_locale_stringbuf (str, buf->ptr, max_len);
355 if (len > max_len)
356 {
357 /* buffer is too small, double its size and try again.
358 */
359 stringbuf_grow (buf);
360 stringbuf_cat_locale_string (buf, str);
361 }
362 else
363 {
364 /* string fits, terminate it and check for embedded '\0'.
365 */
366 buf->ptr[len] = '\0';
367 if (strlen (buf->ptr) != len)
368 scm_misc_error (NULL,
369 "string contains #\\nul character: ~S",
370 scm_list_1 (str));
371 buf->ptr += len;
372 }
373 }
374
375 static void
376 stringbuf_cat (struct stringbuf *buf, char *str)
377 {
378 size_t max_len = buf->buf_len - (buf->ptr - buf->buf) - 1;
379 size_t len = strlen (str);
380 if (len > max_len)
381 {
382 /* buffer is too small, double its size and try again.
383 */
384 stringbuf_grow (buf);
385 stringbuf_cat (buf, str);
386 }
387 else
388 {
389 /* string fits, copy it into buffer.
390 */
391 strcpy (buf->ptr, str);
392 buf->ptr += len;
393 }
394 }
395
396
397 static int
398 scm_c_string_has_an_ext (char *str, size_t len, SCM extensions)
399 {
400 for (; !scm_is_null (extensions); extensions = SCM_CDR (extensions))
401 {
402 char *ext;
403 size_t extlen;
404 int match;
405 ext = scm_to_locale_string (SCM_CAR (extensions));
406 extlen = strlen (ext);
407 match = (len > extlen && str[len - extlen - 1] == '.'
408 && strncmp (str + (len - extlen), ext, extlen) == 0);
409 free (ext);
410 if (match)
411 return 1;
412 }
413 return 0;
414 }
415
416 /* Search PATH for a directory containing a file named FILENAME.
417 The file must be readable, and not a directory.
418 If we find one, return its full filename; otherwise, return #f.
419 If FILENAME is absolute, return it unchanged.
420 If given, EXTENSIONS is a list of strings; for each directory
421 in PATH, we search for FILENAME concatenated with each EXTENSION. */
422 static SCM
423 search_path (SCM path, SCM filename, SCM extensions, SCM require_exts,
424 struct stat *stat_buf)
425 {
426 struct stringbuf buf;
427 char *filename_chars;
428 size_t filename_len;
429 SCM result = SCM_BOOL_F;
430
431 if (scm_ilength (path) < 0)
432 scm_misc_error ("%search-path", "path is not a proper list: ~a",
433 scm_list_1 (path));
434 if (scm_ilength (extensions) < 0)
435 scm_misc_error ("%search-path", "bad extensions list: ~a",
436 scm_list_1 (extensions));
437
438 scm_dynwind_begin (0);
439
440 filename_chars = scm_to_locale_string (filename);
441 filename_len = strlen (filename_chars);
442 scm_dynwind_free (filename_chars);
443
444 /* If FILENAME is absolute, return it unchanged. */
445 #ifdef __MINGW32__
446 if (((filename_len >= 1) &&
447 (filename_chars[0] == '/' || filename_chars[0] == '\\')) ||
448 ((filename_len >= 3) && filename_chars[1] == ':' &&
449 ((filename_chars[0] >= 'a' && filename_chars[0] <= 'z') ||
450 (filename_chars[0] >= 'A' && filename_chars[0] <= 'Z')) &&
451 (filename_chars[2] == '/' || filename_chars[2] == '\\')))
452 #else
453 if (filename_len >= 1 && filename_chars[0] == '/')
454 #endif
455 {
456 SCM res = filename;
457 if (scm_is_true (require_exts) &&
458 !scm_c_string_has_an_ext (filename_chars, filename_len,
459 extensions))
460 res = SCM_BOOL_F;
461
462 scm_dynwind_end ();
463 return res;
464 }
465
466 /* If FILENAME has an extension, don't try to add EXTENSIONS to it. */
467 {
468 char *endp;
469
470 for (endp = filename_chars + filename_len - 1;
471 endp >= filename_chars;
472 endp--)
473 {
474 if (*endp == '.')
475 {
476 if (scm_is_true (require_exts) &&
477 !scm_c_string_has_an_ext (filename_chars, filename_len,
478 extensions))
479 {
480 /* This filename has an extension, but not one of the right
481 ones... */
482 scm_dynwind_end ();
483 return SCM_BOOL_F;
484 }
485 /* This filename already has an extension, so cancel the
486 list of extensions. */
487 extensions = SCM_EOL;
488 break;
489 }
490 #ifdef __MINGW32__
491 else if (*endp == '/' || *endp == '\\')
492 #else
493 else if (*endp == '/')
494 #endif
495 /* This filename has no extension, so keep the current list
496 of extensions. */
497 break;
498 }
499 }
500
501 /* This simplifies the loop below a bit.
502 */
503 if (scm_is_null (extensions))
504 extensions = scm_listofnullstr;
505
506 buf.buf_len = 512;
507 buf.buf = scm_malloc (buf.buf_len);
508 scm_dynwind_unwind_handler (stringbuf_free, &buf, SCM_F_WIND_EXPLICITLY);
509
510 /* Try every path element.
511 */
512 for (; scm_is_pair (path); path = SCM_CDR (path))
513 {
514 SCM dir = SCM_CAR (path);
515 SCM exts;
516 size_t sans_ext_len;
517
518 buf.ptr = buf.buf;
519 stringbuf_cat_locale_string (&buf, dir);
520
521 /* Concatenate the path name and the filename. */
522
523 #ifdef __MINGW32__
524 if ((buf.ptr > buf.buf) && (buf.ptr[-1] != '/') && (buf.ptr[-1] != '\\'))
525 #else
526 if ((buf.ptr > buf.buf) && (buf.ptr[-1] != '/'))
527 #endif
528 stringbuf_cat (&buf, "/");
529
530 stringbuf_cat (&buf, filename_chars);
531 sans_ext_len = buf.ptr - buf.buf;
532
533 /* Try every extension. */
534 for (exts = extensions; scm_is_pair (exts); exts = SCM_CDR (exts))
535 {
536 SCM ext = SCM_CAR (exts);
537
538 buf.ptr = buf.buf + sans_ext_len;
539 stringbuf_cat_locale_string (&buf, ext);
540
541 /* If the file exists at all, we should return it. If the
542 file is inaccessible, then that's an error. */
543
544 if (stat (buf.buf, stat_buf) == 0
545 && ! (stat_buf->st_mode & S_IFDIR))
546 {
547 result = scm_from_locale_string (buf.buf);
548 goto end;
549 }
550 }
551
552 if (!SCM_NULL_OR_NIL_P (exts))
553 scm_wrong_type_arg_msg (NULL, 0, extensions, "proper list");
554 }
555
556 if (!SCM_NULL_OR_NIL_P (path))
557 scm_wrong_type_arg_msg (NULL, 0, path, "proper list");
558
559 end:
560 scm_dynwind_end ();
561 return result;
562 }
563
564 SCM_DEFINE (scm_search_path, "search-path", 2, 0, 1,
565 (SCM path, SCM filename, SCM rest),
566 "Search @var{path} for a directory containing a file named\n"
567 "@var{filename}. The file must be readable, and not a directory.\n"
568 "If we find one, return its full filename; otherwise, return\n"
569 "@code{#f}. If @var{filename} is absolute, return it unchanged.\n"
570 "If given, @var{extensions} is a list of strings; for each\n"
571 "directory in @var{path}, we search for @var{filename}\n"
572 "concatenated with each @var{extension}.")
573 #define FUNC_NAME s_scm_search_path
574 {
575 SCM extensions, require_exts;
576 struct stat stat_buf;
577
578 if (SCM_UNBNDP (rest) || scm_is_null (rest))
579 {
580 /* Called either by Scheme code that didn't provide the optional
581 arguments, or C code that used the Guile 1.8 signature (2 required,
582 1 optional arg) and passed '() or nothing as the EXTENSIONS
583 argument. */
584 extensions = SCM_EOL;
585 require_exts = SCM_UNDEFINED;
586 }
587 else
588 {
589 if (scm_is_null (SCM_CAR (rest)) || scm_is_pair (SCM_CAR (rest)))
590 {
591 /* Called by Scheme code written for 1.9. */
592 extensions = SCM_CAR (rest);
593 if (scm_is_null (SCM_CDR (rest)))
594 require_exts = SCM_UNDEFINED;
595 else
596 {
597 require_exts = SCM_CADR (rest);
598 if (SCM_UNLIKELY (!scm_is_null (SCM_CDDR (rest))))
599 scm_wrong_num_args (scm_from_locale_string (FUNC_NAME));
600 }
601 }
602 else
603 {
604 /* Called by C code that uses the 1.8 signature, i.e., which
605 expects the 3rd argument to be EXTENSIONS. */
606 extensions = rest;
607 require_exts = SCM_UNDEFINED;
608 }
609 }
610
611 if (SCM_UNBNDP (extensions))
612 extensions = SCM_EOL;
613
614 if (SCM_UNBNDP (require_exts))
615 require_exts = SCM_BOOL_F;
616
617 return search_path (path, filename, extensions, require_exts, &stat_buf);
618 }
619 #undef FUNC_NAME
620
621
622 /* Search %load-path for a directory containing a file named FILENAME.
623 The file must be readable, and not a directory.
624 If we find one, return its full filename; otherwise, return #f.
625 If FILENAME is absolute, return it unchanged. */
626 SCM_DEFINE (scm_sys_search_load_path, "%search-load-path", 1, 0, 0,
627 (SCM filename),
628 "Search @var{%load-path} for the file named @var{filename},\n"
629 "which must be readable by the current user. If @var{filename}\n"
630 "is found in the list of paths to search or is an absolute\n"
631 "pathname, return its full pathname. Otherwise, return\n"
632 "@code{#f}. Filenames may have any of the optional extensions\n"
633 "in the @code{%load-extensions} list; @code{%search-load-path}\n"
634 "will try each extension automatically.")
635 #define FUNC_NAME s_scm_sys_search_load_path
636 {
637 struct stat stat_buf;
638
639 SCM_VALIDATE_STRING (1, filename);
640
641 return search_path (*scm_loc_load_path, filename, *scm_loc_load_extensions,
642 SCM_BOOL_F, &stat_buf);
643 }
644 #undef FUNC_NAME
645
646
647 /* Return true if COMPILED_FILENAME is newer than source file
648 FULL_FILENAME, false otherwise. */
649 static int
650 compiled_is_fresh (SCM full_filename, SCM compiled_filename,
651 struct stat *stat_source, struct stat *stat_compiled)
652 {
653 int compiled_is_newer;
654 struct timespec source_mtime, compiled_mtime;
655
656 source_mtime = get_stat_mtime (stat_source);
657 compiled_mtime = get_stat_mtime (stat_compiled);
658
659 if (source_mtime.tv_sec < compiled_mtime.tv_sec
660 || (source_mtime.tv_sec == compiled_mtime.tv_sec
661 && source_mtime.tv_nsec <= compiled_mtime.tv_nsec))
662 compiled_is_newer = 1;
663 else
664 {
665 compiled_is_newer = 0;
666 scm_puts_unlocked (";;; note: source file ", scm_current_error_port ());
667 scm_display (full_filename, scm_current_error_port ());
668 scm_puts_unlocked ("\n;;; newer than compiled ", scm_current_error_port ());
669 scm_display (compiled_filename, scm_current_error_port ());
670 scm_puts_unlocked ("\n", scm_current_error_port ());
671 }
672
673 return compiled_is_newer;
674 }
675
676 SCM_KEYWORD (kw_env, "env");
677 SCM_KEYWORD (kw_opts, "opts");
678
679 SCM_SYMBOL (sym_compile_file, "compile-file");
680 SCM_SYMBOL (sym_auto_compilation_options, "%auto-compilation-options");
681
682 static SCM
683 do_try_auto_compile (void *data)
684 {
685 SCM source = SCM_PACK_POINTER (data);
686 SCM comp_mod, compile_file;
687
688 scm_puts_unlocked (";;; compiling ", scm_current_error_port ());
689 scm_display (source, scm_current_error_port ());
690 scm_newline (scm_current_error_port ());
691
692 comp_mod = scm_c_resolve_module ("system base compile");
693 compile_file = scm_module_variable (comp_mod, sym_compile_file);
694
695 if (scm_is_true (compile_file))
696 {
697 /* Auto-compile in the context of the current module. */
698 SCM res, opts;
699 SCM args[5];
700
701 opts = scm_module_variable (scm_the_root_module (),
702 sym_auto_compilation_options);
703 if (SCM_VARIABLEP (opts))
704 opts = SCM_VARIABLE_REF (opts);
705 else
706 opts = SCM_EOL;
707
708 args[0] = source;
709 args[1] = kw_opts;
710 args[2] = opts;
711 args[3] = kw_env;
712 args[4] = scm_current_module ();
713
714 /* Assume `*current-warning-prefix*' has an appropriate value. */
715 res = scm_call_n (scm_variable_ref (compile_file), args, 5);
716
717 scm_puts_unlocked (";;; compiled ", scm_current_error_port ());
718 scm_display (res, scm_current_error_port ());
719 scm_newline (scm_current_error_port ());
720 return res;
721 }
722 else
723 {
724 scm_puts_unlocked (";;; it seems ", scm_current_error_port ());
725 scm_display (source, scm_current_error_port ());
726 scm_puts_unlocked ("\n;;; is part of the compiler; skipping auto-compilation\n",
727 scm_current_error_port ());
728 return SCM_BOOL_F;
729 }
730 }
731
732 static SCM
733 auto_compile_catch_handler (void *data, SCM tag, SCM throw_args)
734 {
735 SCM source = SCM_PACK_POINTER (data);
736 SCM oport, lines;
737
738 oport = scm_open_output_string ();
739 scm_print_exception (oport, SCM_BOOL_F, tag, throw_args);
740
741 scm_puts_unlocked (";;; WARNING: compilation of ", scm_current_error_port ());
742 scm_display (source, scm_current_error_port ());
743 scm_puts_unlocked (" failed:\n", scm_current_error_port ());
744
745 lines = scm_string_split (scm_get_output_string (oport),
746 SCM_MAKE_CHAR ('\n'));
747 for (; scm_is_pair (lines); lines = scm_cdr (lines))
748 if (scm_c_string_length (scm_car (lines)))
749 {
750 scm_puts_unlocked (";;; ", scm_current_error_port ());
751 scm_display (scm_car (lines), scm_current_error_port ());
752 scm_newline (scm_current_error_port ());
753 }
754
755 scm_close_port (oport);
756
757 return SCM_BOOL_F;
758 }
759
760 SCM_DEFINE (scm_sys_warn_auto_compilation_enabled, "%warn-auto-compilation-enabled", 0, 0, 0,
761 (void), "")
762 #define FUNC_NAME s_scm_sys_warn_auto_compilation_enabled
763 {
764 static int message_shown = 0;
765
766 if (!message_shown)
767 {
768 scm_puts_unlocked (";;; note: auto-compilation is enabled, set GUILE_AUTO_COMPILE=0\n"
769 ";;; or pass the --no-auto-compile argument to disable.\n",
770 scm_current_error_port ());
771 message_shown = 1;
772 }
773
774 return SCM_UNSPECIFIED;
775 }
776 #undef FUNC_NAME
777
778 static SCM
779 scm_try_auto_compile (SCM source)
780 {
781 if (scm_is_false (*scm_loc_load_should_auto_compile))
782 return SCM_BOOL_F;
783
784 scm_sys_warn_auto_compilation_enabled ();
785 return scm_c_catch (SCM_BOOL_T,
786 do_try_auto_compile,
787 SCM_UNPACK_POINTER (source),
788 auto_compile_catch_handler,
789 SCM_UNPACK_POINTER (source),
790 NULL, NULL);
791 }
792
793 /* See also (system base compile):compiled-file-name. */
794 static SCM
795 canonical_suffix (SCM fname)
796 {
797 SCM canon;
798 size_t len;
799
800 canon = scm_canonicalize_path (fname);
801 len = scm_c_string_length (canon);
802
803 if (len > 1 && scm_is_eq (scm_c_string_ref (canon, 0), SCM_MAKE_CHAR ('/')))
804 return canon;
805 else if (len > 2 && scm_is_eq (scm_c_string_ref (canon, 1), SCM_MAKE_CHAR (':')))
806 return scm_string_append (scm_list_3 (scm_from_latin1_string ("/"),
807 scm_c_substring (canon, 0, 1),
808 scm_c_substring (canon, 2, len)));
809 else
810 return canon;
811 }
812
813 SCM_DEFINE (scm_primitive_load_path, "primitive-load-path", 0, 0, 1,
814 (SCM args),
815 "Search @var{%load-path} for the file named @var{filename} and\n"
816 "load it into the top-level environment. If @var{filename} is a\n"
817 "relative pathname and is not found in the list of search paths,\n"
818 "an error is signalled, unless the optional argument\n"
819 "@var{exception_on_not_found} is @code{#f}, in which case\n"
820 "@code{#f} is returned instead.")
821 #define FUNC_NAME s_scm_primitive_load_path
822 {
823 SCM filename, exception_on_not_found;
824 SCM full_filename, compiled_filename;
825 int compiled_is_fallback = 0;
826 SCM hook = *scm_loc_load_hook;
827 struct stat stat_source, stat_compiled;
828
829 if (scm_is_true (hook) && scm_is_false (scm_procedure_p (hook)))
830 SCM_MISC_ERROR ("value of %load-hook is neither a procedure nor #f",
831 SCM_EOL);
832
833 if (scm_is_string (args))
834 {
835 /* C code written for 1.8 and earlier expects this function to take a
836 single argument (the file name). */
837 filename = args;
838 exception_on_not_found = SCM_UNDEFINED;
839 }
840 else
841 {
842 /* Starting from 1.9, this function takes 1 required and 1 optional
843 argument. */
844 long len;
845
846 SCM_VALIDATE_LIST_COPYLEN (SCM_ARG1, args, len);
847 if (len < 1 || len > 2)
848 scm_error_num_args_subr (FUNC_NAME);
849
850 filename = SCM_CAR (args);
851 SCM_VALIDATE_STRING (SCM_ARG1, filename);
852
853 exception_on_not_found = len > 1 ? SCM_CADR (args) : SCM_UNDEFINED;
854 }
855
856 if (SCM_UNBNDP (exception_on_not_found))
857 exception_on_not_found = SCM_BOOL_T;
858
859 full_filename = search_path (*scm_loc_load_path, filename,
860 *scm_loc_load_extensions, SCM_BOOL_F,
861 &stat_source);
862
863 compiled_filename =
864 search_path (*scm_loc_load_compiled_path, filename,
865 *scm_loc_load_compiled_extensions, SCM_BOOL_T,
866 &stat_compiled);
867
868 if (scm_is_false (compiled_filename)
869 && scm_is_true (full_filename)
870 && scm_is_true (*scm_loc_compile_fallback_path)
871 && scm_is_false (*scm_loc_fresh_auto_compile)
872 && scm_is_pair (*scm_loc_load_compiled_extensions)
873 && scm_is_string (scm_car (*scm_loc_load_compiled_extensions)))
874 {
875 SCM fallback;
876 char *fallback_chars;
877
878 fallback = scm_string_append
879 (scm_list_3 (*scm_loc_compile_fallback_path,
880 canonical_suffix (full_filename),
881 scm_car (*scm_loc_load_compiled_extensions)));
882
883 fallback_chars = scm_to_locale_string (fallback);
884 if (stat (fallback_chars, &stat_compiled) == 0)
885 {
886 compiled_filename = fallback;
887 compiled_is_fallback = 1;
888 }
889 free (fallback_chars);
890 }
891
892 if (scm_is_false (full_filename) && scm_is_false (compiled_filename))
893 {
894 if (scm_is_true (exception_on_not_found))
895 SCM_MISC_ERROR ("Unable to find file ~S in load path",
896 scm_list_1 (filename));
897 else
898 return SCM_BOOL_F;
899 }
900
901 if (!scm_is_false (hook))
902 scm_call_1 (hook, (scm_is_true (full_filename)
903 ? full_filename : compiled_filename));
904
905 if (scm_is_false (full_filename)
906 || (scm_is_true (compiled_filename)
907 && compiled_is_fresh (full_filename, compiled_filename,
908 &stat_source, &stat_compiled)))
909 return scm_load_compiled_with_vm (compiled_filename);
910
911 /* Perhaps there was the installed .go that was stale, but our fallback is
912 fresh. Let's try that. Duplicating code, but perhaps that's OK. */
913
914 if (!compiled_is_fallback
915 && scm_is_true (*scm_loc_compile_fallback_path)
916 && scm_is_false (*scm_loc_fresh_auto_compile)
917 && scm_is_pair (*scm_loc_load_compiled_extensions)
918 && scm_is_string (scm_car (*scm_loc_load_compiled_extensions)))
919 {
920 SCM fallback;
921 char *fallback_chars;
922 int stat_ret;
923
924 fallback = scm_string_append
925 (scm_list_3 (*scm_loc_compile_fallback_path,
926 canonical_suffix (full_filename),
927 scm_car (*scm_loc_load_compiled_extensions)));
928
929 fallback_chars = scm_to_locale_string (fallback);
930 stat_ret = stat (fallback_chars, &stat_compiled);
931 free (fallback_chars);
932
933 if (stat_ret == 0 && compiled_is_fresh (full_filename, fallback,
934 &stat_source, &stat_compiled))
935 {
936 scm_puts_unlocked (";;; found fresh local cache at ", scm_current_error_port ());
937 scm_display (fallback, scm_current_error_port ());
938 scm_newline (scm_current_error_port ());
939 return scm_load_compiled_with_vm (fallback);
940 }
941 }
942
943 /* Otherwise, we bottom out here. */
944 {
945 SCM freshly_compiled = scm_try_auto_compile (full_filename);
946
947 if (scm_is_true (freshly_compiled))
948 return scm_load_compiled_with_vm (freshly_compiled);
949 else
950 return scm_primitive_load (full_filename);
951 }
952 }
953 #undef FUNC_NAME
954
955 SCM
956 scm_c_primitive_load_path (const char *filename)
957 {
958 return scm_primitive_load_path (scm_from_locale_string (filename));
959 }
960
961 void
962 scm_init_eval_in_scheme (void)
963 {
964 SCM eval_scm, eval_go;
965 struct stat stat_source, stat_compiled;
966
967 eval_scm = search_path (*scm_loc_load_path,
968 scm_from_locale_string ("ice-9/eval.scm"),
969 SCM_EOL, SCM_BOOL_F, &stat_source);
970 eval_go = search_path (*scm_loc_load_compiled_path,
971 scm_from_locale_string ("ice-9/eval.go"),
972 SCM_EOL, SCM_BOOL_F, &stat_compiled);
973
974 if (scm_is_true (eval_scm) && scm_is_true (eval_go)
975 && compiled_is_fresh (eval_scm, eval_go,
976 &stat_source, &stat_compiled))
977 scm_load_compiled_with_vm (eval_go);
978 else
979 /* if we have no eval.go, we shouldn't load any compiled code at all */
980 *scm_loc_load_compiled_path = SCM_EOL;
981 }
982
983 \f
984 /* Information about the build environment. */
985
986 SCM_VARIABLE_INIT (sys_host_type, "%host-type",
987 scm_from_locale_string (HOST_TYPE));
988
989
990 /* Initialize the scheme variable %guile-build-info, based on data
991 provided by the Makefile, via libpath.h. */
992 static void
993 init_build_info ()
994 {
995 static struct { char *name; char *value; } info[] = SCM_BUILD_INFO;
996 SCM *loc = SCM_VARIABLE_LOC (scm_c_define ("%guile-build-info", SCM_EOL));
997 unsigned long i;
998
999 for (i = 0; i < (sizeof (info) / sizeof (info[0])); i++)
1000 {
1001 SCM key = scm_from_utf8_symbol (info[i].name);
1002 SCM val = scm_from_locale_string (info[i].value);
1003 *loc = scm_acons (key, val, *loc);
1004 }
1005 #ifdef PACKAGE_PACKAGER
1006 *loc = scm_acons (scm_from_latin1_symbol ("packager"),
1007 scm_from_latin1_string (PACKAGE_PACKAGER),
1008 *loc);
1009 #endif
1010 #ifdef PACKAGE_PACKAGER_VERSION
1011 *loc = scm_acons (scm_from_latin1_symbol ("packager-version"),
1012 scm_from_latin1_string (PACKAGE_PACKAGER_VERSION),
1013 *loc);
1014 #endif
1015 #ifdef PACKAGE_PACKAGER_BUG_REPORTS
1016 *loc = scm_acons (scm_from_latin1_symbol ("packager-bug-reports"),
1017 scm_from_latin1_string (PACKAGE_PACKAGER_BUG_REPORTS),
1018 *loc);
1019 #endif
1020 }
1021
1022 \f
1023 void
1024 scm_init_load ()
1025 {
1026 scm_listofnullstr = scm_list_1 (scm_nullstr);
1027 scm_loc_load_path = SCM_VARIABLE_LOC (scm_c_define ("%load-path", SCM_EOL));
1028 scm_loc_load_extensions
1029 = SCM_VARIABLE_LOC (scm_c_define ("%load-extensions",
1030 scm_list_2 (scm_from_locale_string (".scm"),
1031 scm_nullstr)));
1032 scm_loc_load_compiled_path
1033 = SCM_VARIABLE_LOC (scm_c_define ("%load-compiled-path", SCM_EOL));
1034 scm_loc_load_compiled_extensions
1035 = SCM_VARIABLE_LOC (scm_c_define ("%load-compiled-extensions",
1036 scm_list_1 (scm_from_locale_string (".go"))));
1037 scm_loc_load_hook = SCM_VARIABLE_LOC (scm_c_define ("%load-hook", SCM_BOOL_F));
1038
1039 scm_loc_compile_fallback_path
1040 = SCM_VARIABLE_LOC (scm_c_define ("%compile-fallback-path", SCM_BOOL_F));
1041 scm_loc_load_should_auto_compile
1042 = SCM_VARIABLE_LOC (scm_c_define ("%load-should-auto-compile", SCM_BOOL_F));
1043 scm_loc_fresh_auto_compile
1044 = SCM_VARIABLE_LOC (scm_c_define ("%fresh-auto-compile", SCM_BOOL_F));
1045
1046 the_reader = scm_make_fluid ();
1047 scm_fluid_set_x (the_reader, SCM_BOOL_F);
1048 scm_c_define("current-reader", the_reader);
1049
1050 scm_c_define ("load-compiled",
1051 scm_c_make_gsubr ("load-compiled/vm", 1, 0, 0,
1052 scm_load_compiled_with_vm));
1053
1054 init_build_info ();
1055
1056 #include "libguile/load.x"
1057 }
1058
1059 void
1060 scm_init_load_should_auto_compile ()
1061 {
1062 char *auto_compile = getenv ("GUILE_AUTO_COMPILE");
1063
1064 if (auto_compile && strcmp (auto_compile, "0") == 0)
1065 {
1066 *scm_loc_load_should_auto_compile = SCM_BOOL_F;
1067 *scm_loc_fresh_auto_compile = SCM_BOOL_F;
1068 }
1069 /* Allow "freshen" also. */
1070 else if (auto_compile && strncmp (auto_compile, "fresh", 5) == 0)
1071 {
1072 *scm_loc_load_should_auto_compile = SCM_BOOL_T;
1073 *scm_loc_fresh_auto_compile = SCM_BOOL_T;
1074 }
1075 else
1076 {
1077 *scm_loc_load_should_auto_compile = SCM_BOOL_T;
1078 *scm_loc_fresh_auto_compile = SCM_BOOL_F;
1079 }
1080 }
1081
1082
1083
1084 /*
1085 Local Variables:
1086 c-file-style: "gnu"
1087 End:
1088 */