Add br-if-logtest opcode
[bpt/guile.git] / libguile / load.c
1 /* Copyright (C) 1995, 1996, 1998, 1999, 2000, 2001, 2004, 2006, 2008,
2 * 2009, 2010, 2011, 2012, 2013, 2014 Free Software Foundation, Inc.
3 *
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public License
6 * as published by the Free Software Foundation; either version 3 of
7 * the License, or (at your option) any later version.
8 *
9 * This library is distributed in the hope that it will be useful, but
10 * WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
13 *
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
17 * 02110-1301 USA
18 */
19
20
21 \f
22
23 #ifdef HAVE_CONFIG_H
24 # include <config.h>
25 #endif
26
27 #include <string.h>
28 #include <stdio.h>
29
30 #include "libguile/_scm.h"
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 #include <unistd.h>
53
54 #ifdef HAVE_PWD_H
55 #include <pwd.h>
56 #endif /* HAVE_PWD_H */
57
58 #ifndef R_OK
59 #define R_OK 4
60 #endif
61
62 #include <stat-time.h>
63
64 \f
65 /* Loading a file, given an absolute filename. */
66
67 /* Hook to run when we load a file, perhaps to announce the fact somewhere.
68 Applied to the full name of the file. */
69 static SCM *scm_loc_load_hook;
70
71 /* The current reader (a fluid). */
72 static SCM the_reader = SCM_BOOL_F;
73
74
75 SCM_DEFINE (scm_primitive_load, "primitive-load", 1, 0, 0,
76 (SCM filename),
77 "Load the file named @var{filename} and evaluate its contents in\n"
78 "the top-level environment. The load paths are not searched;\n"
79 "@var{filename} must either be a full pathname or be a pathname\n"
80 "relative to the current directory. If the variable\n"
81 "@code{%load-hook} is defined, it should be bound to a procedure\n"
82 "that will be called before any code is loaded. See the\n"
83 "documentation for @code{%load-hook} later in this section.")
84 #define FUNC_NAME s_scm_primitive_load
85 {
86 SCM hook = *scm_loc_load_hook;
87 SCM ret = SCM_UNSPECIFIED;
88
89 SCM_VALIDATE_STRING (1, filename);
90 if (scm_is_true (hook) && scm_is_false (scm_procedure_p (hook)))
91 SCM_MISC_ERROR ("value of %load-hook is neither a procedure nor #f",
92 SCM_EOL);
93
94 if (!scm_is_false (hook))
95 scm_call_1 (hook, filename);
96
97 {
98 SCM port;
99
100 port = scm_open_file_with_encoding (filename,
101 scm_from_latin1_string ("r"),
102 SCM_BOOL_T, /* guess_encoding */
103 scm_from_latin1_string ("UTF-8"));
104
105 scm_dynwind_begin (SCM_F_DYNWIND_REWINDABLE);
106 scm_i_dynwind_current_load_port (port);
107
108 while (1)
109 {
110 SCM reader, form;
111
112 /* Lookup and use the current reader to read the next
113 expression. */
114 reader = scm_fluid_ref (the_reader);
115 if (scm_is_false (reader))
116 form = scm_read (port);
117 else
118 form = scm_call_1 (reader, port);
119
120 if (SCM_EOF_OBJECT_P (form))
121 break;
122
123 ret = scm_primitive_eval_x (form);
124 }
125
126 scm_dynwind_end ();
127 scm_close_port (port);
128 }
129 return ret;
130 }
131 #undef FUNC_NAME
132
133 SCM
134 scm_c_primitive_load (const char *filename)
135 {
136 return scm_primitive_load (scm_from_locale_string (filename));
137 }
138
139 \f
140 /* Builtin path to scheme library files. */
141 #ifdef SCM_PKGDATA_DIR
142 SCM_DEFINE (scm_sys_package_data_dir, "%package-data-dir", 0, 0, 0,
143 (),
144 "Return the name of the directory where Scheme packages, modules and\n"
145 "libraries are kept. On most Unix systems, this will be\n"
146 "@samp{/usr/local/share/guile}.")
147 #define FUNC_NAME s_scm_sys_package_data_dir
148 {
149 return scm_from_locale_string (SCM_PKGDATA_DIR);
150 }
151 #undef FUNC_NAME
152 #endif /* SCM_PKGDATA_DIR */
153
154 #ifdef SCM_LIBRARY_DIR
155 SCM_DEFINE (scm_sys_library_dir, "%library-dir", 0,0,0,
156 (),
157 "Return the directory where the Guile Scheme library files are installed.\n"
158 "E.g., may return \"/usr/share/guile/1.3.5\".")
159 #define FUNC_NAME s_scm_sys_library_dir
160 {
161 return scm_from_locale_string (SCM_LIBRARY_DIR);
162 }
163 #undef FUNC_NAME
164 #endif /* SCM_LIBRARY_DIR */
165
166 #ifdef SCM_SITE_DIR
167 SCM_DEFINE (scm_sys_site_dir, "%site-dir", 0,0,0,
168 (),
169 "Return the directory where users should install Scheme code for use\n"
170 "with this version of Guile.\n\n"
171 "E.g., may return \"/usr/share/guile/site/" SCM_EFFECTIVE_VERSION "\".")
172 #define FUNC_NAME s_scm_sys_site_dir
173 {
174 return scm_from_locale_string (SCM_SITE_DIR);
175 }
176 #undef FUNC_NAME
177 #endif /* SCM_SITE_DIR */
178
179 #ifdef SCM_GLOBAL_SITE_DIR
180 SCM_DEFINE (scm_sys_global_site_dir, "%global-site-dir", 0,0,0,
181 (),
182 "Return the directory where users should install Scheme code for use\n"
183 "with all versions of Guile.\n\n"
184 "E.g., may return \"/usr/share/guile/site\".")
185 #define FUNC_NAME s_scm_sys_global_site_dir
186 {
187 return scm_from_locale_string (SCM_GLOBAL_SITE_DIR);
188 }
189 #undef FUNC_NAME
190 #endif /* SCM_GLOBAL_SITE_DIR */
191
192 #ifdef SCM_SITE_CCACHE_DIR
193 SCM_DEFINE (scm_sys_site_ccache_dir, "%site-ccache-dir", 0,0,0,
194 (),
195 "Return the directory where users should install compiled\n"
196 "@code{.go} files for use with this version of Guile.\n\n"
197 "E.g., may return \"/usr/lib/guile/" SCM_EFFECTIVE_VERSION "/site-ccache\".")
198 #define FUNC_NAME s_scm_sys_site_ccache_dir
199 {
200 return scm_from_locale_string (SCM_SITE_CCACHE_DIR);
201 }
202 #undef FUNC_NAME
203 #endif /* SCM_SITE_CCACHE_DIR */
204
205
206 \f
207 /* Initializing the load path, and searching it. */
208
209 /* List of names of directories we search for files to load. */
210 static SCM *scm_loc_load_path;
211
212 /* List of extensions we try adding to the filenames. */
213 static SCM *scm_loc_load_extensions;
214
215 /* Like %load-path and %load-extensions, but for compiled files. */
216 static SCM *scm_loc_load_compiled_path;
217 static SCM *scm_loc_load_compiled_extensions;
218
219 /* Whether we should try to auto-compile. */
220 static SCM *scm_loc_load_should_auto_compile;
221
222 /* Whether to treat all auto-compiled files as stale. */
223 static SCM *scm_loc_fresh_auto_compile;
224
225 /* The fallback path for auto-compilation */
226 static SCM *scm_loc_compile_fallback_path;
227
228 /* Ellipsis: "..." */
229 static SCM scm_ellipsis;
230
231 SCM_DEFINE (scm_parse_path, "parse-path", 1, 1, 0,
232 (SCM path, SCM tail),
233 "Parse @var{path}, which is expected to be a colon-separated\n"
234 "string, into a list and return the resulting list with\n"
235 "@var{tail} appended. If @var{path} is @code{#f}, @var{tail}\n"
236 "is returned.")
237 #define FUNC_NAME s_scm_parse_path
238 {
239 #ifdef __MINGW32__
240 SCM sep = SCM_MAKE_CHAR (';');
241 #else
242 SCM sep = SCM_MAKE_CHAR (':');
243 #endif
244
245 if (SCM_UNBNDP (tail))
246 tail = SCM_EOL;
247 return (scm_is_false (path)
248 ? tail
249 : scm_append_x (scm_list_2 (scm_string_split (path, sep), tail)));
250 }
251 #undef FUNC_NAME
252
253 SCM_DEFINE (scm_parse_path_with_ellipsis, "parse-path-with-ellipsis", 2, 0, 0,
254 (SCM path, SCM base),
255 "Parse @var{path}, which is expected to be a colon-separated\n"
256 "string, into a list and return the resulting list with\n"
257 "@var{base} (a list) spliced in place of the @code{...} path\n"
258 "component, if present, or else @var{base} is added to the end.\n"
259 "If @var{path} is @code{#f}, @var{base} is returned.")
260 #define FUNC_NAME s_scm_parse_path_with_ellipsis
261 {
262 SCM lst = scm_parse_path (path, SCM_EOL);
263 SCM walk = lst;
264 SCM *prev = &lst;
265
266 while (!scm_is_null (walk) &&
267 scm_is_false (scm_equal_p (scm_car (walk), scm_ellipsis)))
268 {
269 prev = SCM_CDRLOC (walk);
270 walk = *prev;
271 }
272 *prev = scm_is_null (walk)
273 ? base
274 : scm_append (scm_list_2 (base, scm_cdr (walk)));
275 return lst;
276 }
277 #undef FUNC_NAME
278
279
280 /* Initialize the global variable %load-path, given the value of the
281 SCM_SITE_DIR and SCM_LIBRARY_DIR preprocessor symbols and the
282 GUILE_LOAD_PATH environment variable. */
283 void
284 scm_init_load_path ()
285 {
286 char *env;
287 SCM path = SCM_EOL;
288 SCM cpath = SCM_EOL;
289
290 #ifdef SCM_LIBRARY_DIR
291 env = getenv ("GUILE_SYSTEM_PATH");
292 if (env && strcmp (env, "") == 0)
293 /* special-case interpret system-path=="" as meaning no system path instead
294 of '("") */
295 ;
296 else if (env)
297 path = scm_parse_path (scm_from_locale_string (env), path);
298 else
299 path = scm_list_4 (scm_from_locale_string (SCM_LIBRARY_DIR),
300 scm_from_locale_string (SCM_SITE_DIR),
301 scm_from_locale_string (SCM_GLOBAL_SITE_DIR),
302 scm_from_locale_string (SCM_PKGDATA_DIR));
303
304 env = getenv ("GUILE_SYSTEM_COMPILED_PATH");
305 if (env && strcmp (env, "") == 0)
306 /* like above */
307 ;
308 else if (env)
309 cpath = scm_parse_path (scm_from_locale_string (env), cpath);
310 else
311 {
312 cpath = scm_list_2 (scm_from_locale_string (SCM_CCACHE_DIR),
313 scm_from_locale_string (SCM_SITE_CCACHE_DIR));
314 }
315
316 #endif /* SCM_LIBRARY_DIR */
317
318 {
319 char cachedir[1024];
320 char *e;
321 #ifdef HAVE_GETPWENT
322 struct passwd *pwd;
323 #endif
324
325 #define FALLBACK_DIR \
326 "guile/ccache/" SCM_EFFECTIVE_VERSION "-" SCM_OBJCODE_MACHINE_VERSION_STRING
327
328 if ((e = getenv ("XDG_CACHE_HOME")))
329 snprintf (cachedir, sizeof(cachedir), "%s/" FALLBACK_DIR, e);
330 else if ((e = getenv ("HOME")))
331 snprintf (cachedir, sizeof(cachedir), "%s/.cache/" FALLBACK_DIR, e);
332 #ifdef HAVE_GETPWENT
333 else if ((pwd = getpwuid (getuid ())) && pwd->pw_dir)
334 snprintf (cachedir, sizeof(cachedir), "%s/.cache/" FALLBACK_DIR,
335 pwd->pw_dir);
336 #endif /* HAVE_GETPWENT */
337 #ifdef __MINGW32__
338 else if ((e = getenv ("LOCALAPPDATA")))
339 snprintf (cachedir, sizeof (cachedir), "%s/.cache/" FALLBACK_DIR, e);
340 else if ((e = getenv ("APPDATA")))
341 snprintf (cachedir, sizeof (cachedir), "%s/.cache/" FALLBACK_DIR, e);
342 #endif /* __MINGW32__ */
343 else
344 cachedir[0] = 0;
345
346 if (cachedir[0])
347 *scm_loc_compile_fallback_path = scm_from_locale_string (cachedir);
348 }
349
350 env = getenv ("GUILE_LOAD_PATH");
351 if (env)
352 path = scm_parse_path_with_ellipsis (scm_from_locale_string (env), path);
353
354 env = getenv ("GUILE_LOAD_COMPILED_PATH");
355 if (env)
356 cpath = scm_parse_path_with_ellipsis (scm_from_locale_string (env), cpath);
357
358 *scm_loc_load_path = path;
359 *scm_loc_load_compiled_path = cpath;
360 }
361
362 SCM scm_listofnullstr;
363
364 /* Utility functions for assembling C strings in a buffer.
365 */
366
367 struct stringbuf {
368 char *buf, *ptr;
369 size_t buf_len;
370 };
371
372 static void
373 stringbuf_free (void *data)
374 {
375 struct stringbuf *buf = (struct stringbuf *)data;
376 free (buf->buf);
377 }
378
379 static void
380 stringbuf_grow (struct stringbuf *buf)
381 {
382 size_t ptroff = buf->ptr - buf->buf;
383 buf->buf_len *= 2;
384 buf->buf = scm_realloc (buf->buf, buf->buf_len);
385 buf->ptr = buf->buf + ptroff;
386 }
387
388 static void
389 stringbuf_cat_locale_string (struct stringbuf *buf, SCM str)
390 {
391 size_t max_len = buf->buf_len - (buf->ptr - buf->buf) - 1;
392 size_t len = scm_to_locale_stringbuf (str, buf->ptr, max_len);
393 if (len > max_len)
394 {
395 /* buffer is too small, double its size and try again.
396 */
397 stringbuf_grow (buf);
398 stringbuf_cat_locale_string (buf, str);
399 }
400 else
401 {
402 /* string fits, terminate it and check for embedded '\0'.
403 */
404 buf->ptr[len] = '\0';
405 if (strlen (buf->ptr) != len)
406 scm_misc_error (NULL,
407 "string contains #\\nul character: ~S",
408 scm_list_1 (str));
409 buf->ptr += len;
410 }
411 }
412
413 static void
414 stringbuf_cat (struct stringbuf *buf, char *str)
415 {
416 size_t max_len = buf->buf_len - (buf->ptr - buf->buf) - 1;
417 size_t len = strlen (str);
418 if (len > max_len)
419 {
420 /* buffer is too small, double its size and try again.
421 */
422 stringbuf_grow (buf);
423 stringbuf_cat (buf, str);
424 }
425 else
426 {
427 /* string fits, copy it into buffer.
428 */
429 strcpy (buf->ptr, str);
430 buf->ptr += len;
431 }
432 }
433
434
435 static int
436 scm_c_string_has_an_ext (char *str, size_t len, SCM extensions)
437 {
438 for (; !scm_is_null (extensions); extensions = SCM_CDR (extensions))
439 {
440 char *ext;
441 size_t extlen;
442 int match;
443 ext = scm_to_locale_string (SCM_CAR (extensions));
444 extlen = strlen (ext);
445 match = (len > extlen && str[len - extlen - 1] == '.'
446 && strncmp (str + (len - extlen), ext, extlen) == 0);
447 free (ext);
448 if (match)
449 return 1;
450 }
451 return 0;
452 }
453
454 #ifdef __MINGW32__
455 #define FILE_NAME_SEPARATOR_STRING "\\"
456 #else
457 #define FILE_NAME_SEPARATOR_STRING "/"
458 #endif
459
460 static int
461 is_file_name_separator (SCM c)
462 {
463 if (scm_is_eq (c, SCM_MAKE_CHAR ('/')))
464 return 1;
465 #ifdef __MINGW32__
466 if (scm_is_eq (c, SCM_MAKE_CHAR ('\\')))
467 return 1;
468 #endif
469 return 0;
470 }
471
472 static int
473 is_drive_letter (SCM c)
474 {
475 #ifdef __MINGW32__
476 if (SCM_CHAR (c) >= 'a' && SCM_CHAR (c) <= 'z')
477 return 1;
478 else if (SCM_CHAR (c) >= 'A' && SCM_CHAR (c) <= 'Z')
479 return 1;
480 #endif
481 return 0;
482 }
483
484 static int
485 is_absolute_file_name (SCM filename)
486 {
487 size_t filename_len = scm_c_string_length (filename);
488
489 if (filename_len >= 1
490 && is_file_name_separator (scm_c_string_ref (filename, 0))
491 #ifdef __MINGW32__
492 /* On Windows, one initial separator indicates a drive-relative
493 path. Two separators indicate a Universal Naming Convention
494 (UNC) path. UNC paths are always absolute. */
495 && filename_len >= 2
496 && is_file_name_separator (scm_c_string_ref (filename, 1))
497 #endif
498 )
499 return 1;
500 if (filename_len >= 3
501 && is_drive_letter (scm_c_string_ref (filename, 0))
502 && scm_is_eq (scm_c_string_ref (filename, 1), SCM_MAKE_CHAR (':'))
503 && is_file_name_separator (scm_c_string_ref (filename, 2)))
504 return 1;
505 return 0;
506 }
507
508 /* Search PATH for a directory containing a file named FILENAME.
509 The file must be readable, and not a directory.
510 If we find one, return its full pathname; otherwise, return #f.
511 If FILENAME is absolute, return it unchanged.
512 We also fill *stat_buf corresponding to the returned pathname.
513 If given, EXTENSIONS is a list of strings; for each directory
514 in PATH, we search for FILENAME concatenated with each EXTENSION. */
515 static SCM
516 search_path (SCM path, SCM filename, SCM extensions, SCM require_exts,
517 struct stat *stat_buf)
518 {
519 struct stringbuf buf;
520 char *filename_chars;
521 size_t filename_len;
522 SCM result = SCM_BOOL_F;
523
524 if (scm_ilength (path) < 0)
525 scm_misc_error ("%search-path", "path is not a proper list: ~a",
526 scm_list_1 (path));
527 if (scm_ilength (extensions) < 0)
528 scm_misc_error ("%search-path", "bad extensions list: ~a",
529 scm_list_1 (extensions));
530
531 scm_dynwind_begin (0);
532
533 filename_chars = scm_to_locale_string (filename);
534 filename_len = strlen (filename_chars);
535 scm_dynwind_free (filename_chars);
536
537 /* If FILENAME is absolute and is still valid, return it unchanged. */
538 if (is_absolute_file_name (filename))
539 {
540 if ((scm_is_false (require_exts) ||
541 scm_c_string_has_an_ext (filename_chars, filename_len,
542 extensions))
543 && stat (filename_chars, stat_buf) == 0
544 && !(stat_buf->st_mode & S_IFDIR))
545 result = filename;
546 goto end;
547 }
548
549 /* If FILENAME has an extension, don't try to add EXTENSIONS to it. */
550 {
551 char *endp;
552
553 for (endp = filename_chars + filename_len - 1;
554 endp >= filename_chars;
555 endp--)
556 {
557 if (*endp == '.')
558 {
559 if (scm_is_true (require_exts) &&
560 !scm_c_string_has_an_ext (filename_chars, filename_len,
561 extensions))
562 {
563 /* This filename has an extension, but not one of the right
564 ones... */
565 goto end;
566 }
567 /* This filename already has an extension, so cancel the
568 list of extensions. */
569 extensions = SCM_EOL;
570 break;
571 }
572 else if (is_file_name_separator (SCM_MAKE_CHAR (*endp)))
573 /* This filename has no extension, so keep the current list
574 of extensions. */
575 break;
576 }
577 }
578
579 /* This simplifies the loop below a bit.
580 */
581 if (scm_is_null (extensions))
582 extensions = scm_listofnullstr;
583
584 buf.buf_len = 512;
585 buf.buf = scm_malloc (buf.buf_len);
586 scm_dynwind_unwind_handler (stringbuf_free, &buf, SCM_F_WIND_EXPLICITLY);
587
588 /* Try every path element.
589 */
590 for (; scm_is_pair (path); path = SCM_CDR (path))
591 {
592 SCM dir = SCM_CAR (path);
593 SCM exts;
594 size_t sans_ext_len;
595
596 buf.ptr = buf.buf;
597 stringbuf_cat_locale_string (&buf, dir);
598
599 /* Concatenate the path name and the filename. */
600
601 if (buf.ptr > buf.buf
602 && !is_file_name_separator (SCM_MAKE_CHAR (buf.ptr[-1])))
603 stringbuf_cat (&buf, FILE_NAME_SEPARATOR_STRING);
604
605 stringbuf_cat (&buf, filename_chars);
606 sans_ext_len = buf.ptr - buf.buf;
607
608 /* Try every extension. */
609 for (exts = extensions; scm_is_pair (exts); exts = SCM_CDR (exts))
610 {
611 SCM ext = SCM_CAR (exts);
612
613 buf.ptr = buf.buf + sans_ext_len;
614 stringbuf_cat_locale_string (&buf, ext);
615
616 /* If the file exists at all, we should return it. If the
617 file is inaccessible, then that's an error. */
618
619 if (stat (buf.buf, stat_buf) == 0
620 && ! (stat_buf->st_mode & S_IFDIR))
621 {
622 result = scm_from_locale_string (buf.buf);
623 goto end;
624 }
625 }
626
627 if (!SCM_NULL_OR_NIL_P (exts))
628 scm_wrong_type_arg_msg (NULL, 0, extensions, "proper list");
629 }
630
631 if (!SCM_NULL_OR_NIL_P (path))
632 scm_wrong_type_arg_msg (NULL, 0, path, "proper list");
633
634 end:
635 scm_dynwind_end ();
636 return result;
637 }
638
639 SCM_DEFINE (scm_search_path, "search-path", 2, 0, 1,
640 (SCM path, SCM filename, SCM rest),
641 "Search @var{path} for a directory containing a file named\n"
642 "@var{filename}. The file must be readable, and not a directory.\n"
643 "If we find one, return its full filename; otherwise, return\n"
644 "@code{#f}. If @var{filename} is absolute, return it unchanged.\n"
645 "If given, @var{rest} is a list of extension strings; for each\n"
646 "directory in @var{path}, we search for @var{filename}\n"
647 "concatenated with each extension.")
648 #define FUNC_NAME s_scm_search_path
649 {
650 SCM extensions, require_exts;
651 struct stat stat_buf;
652
653 if (SCM_UNBNDP (rest) || scm_is_null (rest))
654 {
655 /* Called either by Scheme code that didn't provide the optional
656 arguments, or C code that used the Guile 1.8 signature (2 required,
657 1 optional arg) and passed '() or nothing as the EXTENSIONS
658 argument. */
659 extensions = SCM_EOL;
660 require_exts = SCM_UNDEFINED;
661 }
662 else
663 {
664 if (scm_is_null (SCM_CAR (rest)) || scm_is_pair (SCM_CAR (rest)))
665 {
666 /* Called by Scheme code written for 1.9. */
667 extensions = SCM_CAR (rest);
668 if (scm_is_null (SCM_CDR (rest)))
669 require_exts = SCM_UNDEFINED;
670 else
671 {
672 require_exts = SCM_CADR (rest);
673 if (SCM_UNLIKELY (!scm_is_null (SCM_CDDR (rest))))
674 scm_wrong_num_args (scm_from_locale_string (FUNC_NAME));
675 }
676 }
677 else
678 {
679 /* Called by C code that uses the 1.8 signature, i.e., which
680 expects the 3rd argument to be EXTENSIONS. */
681 extensions = rest;
682 require_exts = SCM_UNDEFINED;
683 }
684 }
685
686 if (SCM_UNBNDP (extensions))
687 extensions = SCM_EOL;
688
689 if (SCM_UNBNDP (require_exts))
690 require_exts = SCM_BOOL_F;
691
692 return search_path (path, filename, extensions, require_exts, &stat_buf);
693 }
694 #undef FUNC_NAME
695
696
697 /* Search %load-path for a directory containing a file named FILENAME.
698 The file must be readable, and not a directory.
699 If we find one, return its full filename; otherwise, return #f.
700 If FILENAME is absolute, return it unchanged. */
701 SCM_DEFINE (scm_sys_search_load_path, "%search-load-path", 1, 0, 0,
702 (SCM filename),
703 "Search @var{%load-path} for the file named @var{filename},\n"
704 "which must be readable by the current user. If @var{filename}\n"
705 "is found in the list of paths to search or is an absolute\n"
706 "pathname, return its full pathname. Otherwise, return\n"
707 "@code{#f}. Filenames may have any of the optional extensions\n"
708 "in the @code{%load-extensions} list; @code{%search-load-path}\n"
709 "will try each extension automatically.")
710 #define FUNC_NAME s_scm_sys_search_load_path
711 {
712 struct stat stat_buf;
713
714 SCM_VALIDATE_STRING (1, filename);
715
716 return search_path (*scm_loc_load_path, filename, *scm_loc_load_extensions,
717 SCM_BOOL_F, &stat_buf);
718 }
719 #undef FUNC_NAME
720
721
722 /* Return true if COMPILED_FILENAME is newer than source file
723 FULL_FILENAME, false otherwise. */
724 static int
725 compiled_is_fresh (SCM full_filename, SCM compiled_filename,
726 struct stat *stat_source, struct stat *stat_compiled)
727 {
728 int compiled_is_newer;
729 struct timespec source_mtime, compiled_mtime;
730
731 source_mtime = get_stat_mtime (stat_source);
732 compiled_mtime = get_stat_mtime (stat_compiled);
733
734 if (source_mtime.tv_sec < compiled_mtime.tv_sec
735 || (source_mtime.tv_sec == compiled_mtime.tv_sec
736 && source_mtime.tv_nsec <= compiled_mtime.tv_nsec))
737 compiled_is_newer = 1;
738 else
739 {
740 compiled_is_newer = 0;
741 scm_puts_unlocked (";;; note: source file ", scm_current_error_port ());
742 scm_display (full_filename, scm_current_error_port ());
743 scm_puts_unlocked ("\n;;; newer than compiled ", scm_current_error_port ());
744 scm_display (compiled_filename, scm_current_error_port ());
745 scm_puts_unlocked ("\n", scm_current_error_port ());
746 }
747
748 return compiled_is_newer;
749 }
750
751 SCM_KEYWORD (kw_env, "env");
752 SCM_KEYWORD (kw_opts, "opts");
753
754 SCM_SYMBOL (sym_compile_file, "compile-file");
755 SCM_SYMBOL (sym_auto_compilation_options, "%auto-compilation-options");
756
757 static SCM
758 do_try_auto_compile (void *data)
759 {
760 SCM source = SCM_PACK_POINTER (data);
761 SCM comp_mod, compile_file;
762
763 scm_puts_unlocked (";;; compiling ", scm_current_error_port ());
764 scm_display (source, scm_current_error_port ());
765 scm_newline (scm_current_error_port ());
766
767 comp_mod = scm_c_resolve_module ("system base compile");
768 compile_file = scm_module_variable (comp_mod, sym_compile_file);
769
770 if (scm_is_true (compile_file))
771 {
772 /* Auto-compile in the context of the current module. */
773 SCM res, opts;
774 SCM args[5];
775
776 opts = scm_module_variable (scm_the_root_module (),
777 sym_auto_compilation_options);
778 if (SCM_VARIABLEP (opts))
779 opts = SCM_VARIABLE_REF (opts);
780 else
781 opts = SCM_EOL;
782
783 args[0] = source;
784 args[1] = kw_opts;
785 args[2] = opts;
786 args[3] = kw_env;
787 args[4] = scm_current_module ();
788
789 /* Assume `*current-warning-prefix*' has an appropriate value. */
790 res = scm_call_n (scm_variable_ref (compile_file), args, 5);
791
792 scm_puts_unlocked (";;; compiled ", scm_current_error_port ());
793 scm_display (res, scm_current_error_port ());
794 scm_newline (scm_current_error_port ());
795 return res;
796 }
797 else
798 {
799 scm_puts_unlocked (";;; it seems ", scm_current_error_port ());
800 scm_display (source, scm_current_error_port ());
801 scm_puts_unlocked ("\n;;; is part of the compiler; skipping auto-compilation\n",
802 scm_current_error_port ());
803 return SCM_BOOL_F;
804 }
805 }
806
807 static SCM
808 auto_compile_catch_handler (void *data, SCM tag, SCM throw_args)
809 {
810 SCM source = SCM_PACK_POINTER (data);
811 SCM oport, lines;
812
813 oport = scm_open_output_string ();
814 scm_print_exception (oport, SCM_BOOL_F, tag, throw_args);
815
816 scm_puts_unlocked (";;; WARNING: compilation of ", scm_current_warning_port ());
817 scm_display (source, scm_current_warning_port ());
818 scm_puts_unlocked (" failed:\n", scm_current_warning_port ());
819
820 lines = scm_string_split (scm_get_output_string (oport),
821 SCM_MAKE_CHAR ('\n'));
822 for (; scm_is_pair (lines); lines = scm_cdr (lines))
823 if (scm_c_string_length (scm_car (lines)))
824 {
825 scm_puts_unlocked (";;; ", scm_current_warning_port ());
826 scm_display (scm_car (lines), scm_current_warning_port ());
827 scm_newline (scm_current_warning_port ());
828 }
829
830 scm_close_port (oport);
831
832 return SCM_BOOL_F;
833 }
834
835 SCM_DEFINE (scm_sys_warn_auto_compilation_enabled, "%warn-auto-compilation-enabled", 0, 0, 0,
836 (void), "")
837 #define FUNC_NAME s_scm_sys_warn_auto_compilation_enabled
838 {
839 static int message_shown = 0;
840
841 if (!message_shown)
842 {
843 scm_puts_unlocked (";;; note: auto-compilation is enabled, set GUILE_AUTO_COMPILE=0\n"
844 ";;; or pass the --no-auto-compile argument to disable.\n",
845 scm_current_warning_port ());
846 message_shown = 1;
847 }
848
849 return SCM_UNSPECIFIED;
850 }
851 #undef FUNC_NAME
852
853 static SCM
854 scm_try_auto_compile (SCM source)
855 {
856 if (scm_is_false (*scm_loc_load_should_auto_compile))
857 return SCM_BOOL_F;
858
859 scm_sys_warn_auto_compilation_enabled ();
860 return scm_c_catch (SCM_BOOL_T,
861 do_try_auto_compile,
862 SCM_UNPACK_POINTER (source),
863 auto_compile_catch_handler,
864 SCM_UNPACK_POINTER (source),
865 NULL, NULL);
866 }
867
868 /* The auto-compilation code will residualize a .go file in the cache
869 dir: by default, $HOME/.cache/guile/2.0/ccache/PATH.go. This
870 function determines the PATH to use as a key into the compilation
871 cache. See also (system base compile):compiled-file-name. */
872 static SCM
873 canonical_suffix (SCM fname)
874 {
875 SCM canon;
876
877 /* CANON should be absolute. */
878 canon = scm_canonicalize_path (fname);
879
880 #ifdef __MINGW32__
881 {
882 size_t len = scm_c_string_length (canon);
883
884 /* On Windows, an absolute file name that doesn't start with a
885 separator starts with a drive component. Transform the drive
886 component to a file name element: c:\foo -> \c\foo. */
887 if (len >= 2
888 && is_absolute_file_name (canon)
889 && !is_file_name_separator (scm_c_string_ref (canon, 0)))
890 return scm_string_append
891 (scm_list_3 (scm_from_latin1_string (FILE_NAME_SEPARATOR_STRING),
892 scm_c_substring (canon, 0, 1),
893 scm_c_substring (canon, 2, len)));
894 }
895 #endif
896
897 return canon;
898 }
899
900 SCM_DEFINE (scm_primitive_load_path, "primitive-load-path", 0, 0, 1,
901 (SCM args),
902 "Search @var{%load-path} for the file named @var{filename} and\n"
903 "load it into the top-level environment.\n\n"
904 "If @var{filename} is a relative pathname and is not found in\n"
905 "the list of search paths, one of three things may happen,\n"
906 "depending on the optional second argument,\n"
907 "@var{exception_on_not_found}. If it is @code{#f}, @code{#f}\n"
908 "will be returned. If it is a procedure, it will be called\n"
909 "with no arguments. Otherwise an error is signalled.")
910 #define FUNC_NAME s_scm_primitive_load_path
911 {
912 SCM filename, exception_on_not_found;
913 SCM full_filename, compiled_filename;
914 int compiled_is_fallback = 0;
915 SCM hook = *scm_loc_load_hook;
916 struct stat stat_source, stat_compiled;
917
918 if (scm_is_true (hook) && scm_is_false (scm_procedure_p (hook)))
919 SCM_MISC_ERROR ("value of %load-hook is neither a procedure nor #f",
920 SCM_EOL);
921
922 if (scm_is_string (args))
923 {
924 /* C code written for 1.8 and earlier expects this function to take a
925 single argument (the file name). */
926 filename = args;
927 exception_on_not_found = SCM_UNDEFINED;
928 }
929 else
930 {
931 /* Starting from 1.9, this function takes 1 required and 1 optional
932 argument. */
933 long len;
934
935 SCM_VALIDATE_LIST_COPYLEN (SCM_ARG1, args, len);
936 if (len < 1 || len > 2)
937 scm_error_num_args_subr (FUNC_NAME);
938
939 filename = SCM_CAR (args);
940 SCM_VALIDATE_STRING (SCM_ARG1, filename);
941
942 exception_on_not_found = len > 1 ? SCM_CADR (args) : SCM_UNDEFINED;
943 }
944
945 if (SCM_UNBNDP (exception_on_not_found))
946 exception_on_not_found = SCM_BOOL_T;
947
948 full_filename = search_path (*scm_loc_load_path, filename,
949 *scm_loc_load_extensions, SCM_BOOL_F,
950 &stat_source);
951
952 compiled_filename =
953 search_path (*scm_loc_load_compiled_path, filename,
954 *scm_loc_load_compiled_extensions, SCM_BOOL_T,
955 &stat_compiled);
956
957 if (scm_is_false (compiled_filename)
958 && scm_is_true (full_filename)
959 && scm_is_true (*scm_loc_compile_fallback_path)
960 && scm_is_false (*scm_loc_fresh_auto_compile)
961 && scm_is_pair (*scm_loc_load_compiled_extensions)
962 && scm_is_string (scm_car (*scm_loc_load_compiled_extensions)))
963 {
964 SCM fallback;
965 char *fallback_chars;
966
967 fallback = scm_string_append
968 (scm_list_3 (*scm_loc_compile_fallback_path,
969 canonical_suffix (full_filename),
970 scm_car (*scm_loc_load_compiled_extensions)));
971
972 fallback_chars = scm_to_locale_string (fallback);
973 if (stat (fallback_chars, &stat_compiled) == 0)
974 {
975 compiled_filename = fallback;
976 compiled_is_fallback = 1;
977 }
978 free (fallback_chars);
979 }
980
981 if (scm_is_false (full_filename) && scm_is_false (compiled_filename))
982 {
983 if (scm_is_true (scm_procedure_p (exception_on_not_found)))
984 return scm_call_0 (exception_on_not_found);
985 else if (scm_is_false (exception_on_not_found))
986 return SCM_BOOL_F;
987 else
988 SCM_MISC_ERROR ("Unable to find file ~S in load path",
989 scm_list_1 (filename));
990 }
991
992 if (!scm_is_false (hook))
993 scm_call_1 (hook, (scm_is_true (full_filename)
994 ? full_filename : compiled_filename));
995
996 if (scm_is_false (full_filename)
997 || (scm_is_true (compiled_filename)
998 && compiled_is_fresh (full_filename, compiled_filename,
999 &stat_source, &stat_compiled)))
1000 return scm_load_compiled_with_vm (compiled_filename);
1001
1002 /* Perhaps there was the installed .go that was stale, but our fallback is
1003 fresh. Let's try that. Duplicating code, but perhaps that's OK. */
1004
1005 if (!compiled_is_fallback
1006 && scm_is_true (*scm_loc_compile_fallback_path)
1007 && scm_is_false (*scm_loc_fresh_auto_compile)
1008 && scm_is_pair (*scm_loc_load_compiled_extensions)
1009 && scm_is_string (scm_car (*scm_loc_load_compiled_extensions)))
1010 {
1011 SCM fallback;
1012 char *fallback_chars;
1013 int stat_ret;
1014
1015 fallback = scm_string_append
1016 (scm_list_3 (*scm_loc_compile_fallback_path,
1017 canonical_suffix (full_filename),
1018 scm_car (*scm_loc_load_compiled_extensions)));
1019
1020 fallback_chars = scm_to_locale_string (fallback);
1021 stat_ret = stat (fallback_chars, &stat_compiled);
1022 free (fallback_chars);
1023
1024 if (stat_ret == 0 && compiled_is_fresh (full_filename, fallback,
1025 &stat_source, &stat_compiled))
1026 {
1027 scm_puts_unlocked (";;; found fresh local cache at ", scm_current_warning_port ());
1028 scm_display (fallback, scm_current_warning_port ());
1029 scm_newline (scm_current_warning_port ());
1030 return scm_load_compiled_with_vm (fallback);
1031 }
1032 }
1033
1034 /* Otherwise, we bottom out here. */
1035 {
1036 SCM freshly_compiled = scm_try_auto_compile (full_filename);
1037
1038 if (scm_is_true (freshly_compiled))
1039 return scm_load_compiled_with_vm (freshly_compiled);
1040 else
1041 return scm_primitive_load (full_filename);
1042 }
1043 }
1044 #undef FUNC_NAME
1045
1046 SCM
1047 scm_c_primitive_load_path (const char *filename)
1048 {
1049 return scm_primitive_load_path (scm_from_locale_string (filename));
1050 }
1051
1052 void
1053 scm_init_eval_in_scheme (void)
1054 {
1055 SCM eval_scm, eval_go;
1056 struct stat stat_source, stat_compiled;
1057
1058 eval_scm = search_path (*scm_loc_load_path,
1059 scm_from_locale_string ("ice-9/eval.scm"),
1060 SCM_EOL, SCM_BOOL_F, &stat_source);
1061 eval_go = search_path (*scm_loc_load_compiled_path,
1062 scm_from_locale_string ("ice-9/eval.go"),
1063 SCM_EOL, SCM_BOOL_F, &stat_compiled);
1064
1065 if (scm_is_true (eval_scm) && scm_is_true (eval_go)
1066 && compiled_is_fresh (eval_scm, eval_go,
1067 &stat_source, &stat_compiled))
1068 scm_load_compiled_with_vm (eval_go);
1069 else
1070 /* if we have no eval.go, we shouldn't load any compiled code at all */
1071 *scm_loc_load_compiled_path = SCM_EOL;
1072 }
1073
1074 \f
1075 /* Information about the build environment. */
1076
1077 SCM_VARIABLE_INIT (sys_host_type, "%host-type",
1078 scm_from_locale_string (HOST_TYPE));
1079
1080
1081 /* Initialize the scheme variable %guile-build-info, based on data
1082 provided by the Makefile, via libpath.h. */
1083 static void
1084 init_build_info ()
1085 {
1086 static struct { char *name; char *value; } info[] = SCM_BUILD_INFO;
1087 SCM *loc = SCM_VARIABLE_LOC (scm_c_define ("%guile-build-info", SCM_EOL));
1088 unsigned long i;
1089
1090 for (i = 0; i < (sizeof (info) / sizeof (info[0])); i++)
1091 {
1092 SCM key = scm_from_utf8_symbol (info[i].name);
1093 SCM val = scm_from_locale_string (info[i].value);
1094 *loc = scm_acons (key, val, *loc);
1095 }
1096 #ifdef PACKAGE_PACKAGER
1097 *loc = scm_acons (scm_from_latin1_symbol ("packager"),
1098 scm_from_latin1_string (PACKAGE_PACKAGER),
1099 *loc);
1100 #endif
1101 #ifdef PACKAGE_PACKAGER_VERSION
1102 *loc = scm_acons (scm_from_latin1_symbol ("packager-version"),
1103 scm_from_latin1_string (PACKAGE_PACKAGER_VERSION),
1104 *loc);
1105 #endif
1106 #ifdef PACKAGE_PACKAGER_BUG_REPORTS
1107 *loc = scm_acons (scm_from_latin1_symbol ("packager-bug-reports"),
1108 scm_from_latin1_string (PACKAGE_PACKAGER_BUG_REPORTS),
1109 *loc);
1110 #endif
1111 }
1112
1113 \f
1114 void
1115 scm_init_load ()
1116 {
1117 scm_listofnullstr = scm_list_1 (scm_nullstr);
1118 scm_loc_load_path = SCM_VARIABLE_LOC (scm_c_define ("%load-path", SCM_EOL));
1119 scm_loc_load_extensions
1120 = SCM_VARIABLE_LOC (scm_c_define ("%load-extensions",
1121 scm_list_2 (scm_from_locale_string (".scm"),
1122 scm_nullstr)));
1123 scm_loc_load_compiled_path
1124 = SCM_VARIABLE_LOC (scm_c_define ("%load-compiled-path", SCM_EOL));
1125 scm_loc_load_compiled_extensions
1126 = SCM_VARIABLE_LOC (scm_c_define ("%load-compiled-extensions",
1127 scm_list_1 (scm_from_locale_string (".go"))));
1128 scm_loc_load_hook = SCM_VARIABLE_LOC (scm_c_define ("%load-hook", SCM_BOOL_F));
1129
1130 scm_loc_compile_fallback_path
1131 = SCM_VARIABLE_LOC (scm_c_define ("%compile-fallback-path", SCM_BOOL_F));
1132 scm_loc_load_should_auto_compile
1133 = SCM_VARIABLE_LOC (scm_c_define ("%load-should-auto-compile", SCM_BOOL_F));
1134 scm_loc_fresh_auto_compile
1135 = SCM_VARIABLE_LOC (scm_c_define ("%fresh-auto-compile", SCM_BOOL_F));
1136
1137 scm_ellipsis = scm_from_latin1_string ("...");
1138
1139 the_reader = scm_make_fluid_with_default (SCM_BOOL_F);
1140 scm_c_define("current-reader", the_reader);
1141
1142 scm_c_define ("load-compiled",
1143 scm_c_make_gsubr ("load-compiled/vm", 1, 0, 0,
1144 scm_load_compiled_with_vm));
1145
1146 init_build_info ();
1147
1148 #include "libguile/load.x"
1149 }
1150
1151 void
1152 scm_init_load_should_auto_compile ()
1153 {
1154 char *auto_compile = getenv ("GUILE_AUTO_COMPILE");
1155
1156 if (auto_compile && strcmp (auto_compile, "0") == 0)
1157 {
1158 *scm_loc_load_should_auto_compile = SCM_BOOL_F;
1159 *scm_loc_fresh_auto_compile = SCM_BOOL_F;
1160 }
1161 /* Allow "freshen" also. */
1162 else if (auto_compile && strncmp (auto_compile, "fresh", 5) == 0)
1163 {
1164 *scm_loc_load_should_auto_compile = SCM_BOOL_T;
1165 *scm_loc_fresh_auto_compile = SCM_BOOL_T;
1166 }
1167 else
1168 {
1169 *scm_loc_load_should_auto_compile = SCM_BOOL_T;
1170 *scm_loc_fresh_auto_compile = SCM_BOOL_F;
1171 }
1172 }
1173
1174
1175
1176 /*
1177 Local Variables:
1178 c-file-style: "gnu"
1179 End:
1180 */