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