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