separate the load-compiled path from the load path
[bpt/guile.git] / libguile / load.c
1 /* Copyright (C) 1995,1996,1998,1999,2000,2001, 2004, 2006 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
5 * License as published by the Free Software Foundation; either
6 * version 2.1 of the License, or (at your option) any later version.
7 *
8 * This library is distributed in the hope that it will be useful,
9 * but 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 02110-1301 USA
16 */
17
18
19 \f
20
21 #ifdef HAVE_CONFIG_H
22 # include <config.h>
23 #endif
24
25 #include <string.h>
26 #include <stdio.h>
27
28 #include "libguile/_scm.h"
29 #include "libguile/libpath.h"
30 #include "libguile/fports.h"
31 #include "libguile/read.h"
32 #include "libguile/eval.h"
33 #include "libguile/throw.h"
34 #include "libguile/alist.h"
35 #include "libguile/dynwind.h"
36 #include "libguile/root.h"
37 #include "libguile/strings.h"
38 #include "libguile/modules.h"
39 #include "libguile/lang.h"
40 #include "libguile/chars.h"
41 #include "libguile/srfi-13.h"
42
43 #include "libguile/validate.h"
44 #include "libguile/load.h"
45 #include "libguile/fluids.h"
46
47 #include "libguile/vm.h" /* for load-compiled/vm */
48
49 #include <sys/types.h>
50 #include <sys/stat.h>
51
52 #ifdef HAVE_UNISTD_H
53 #include <unistd.h>
54 #endif /* HAVE_UNISTD_H */
55
56 #ifdef HAVE_PWD_H
57 #include <pwd.h>
58 #endif /* HAVE_PWD_H */
59
60 #ifndef R_OK
61 #define R_OK 4
62 #endif
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 static size_t the_reader_fluid_num = 0;
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_VALIDATE_STRING (1, filename);
88 if (scm_is_true (hook) && scm_is_false (scm_procedure_p (hook)))
89 SCM_MISC_ERROR ("value of %load-hook is neither a procedure nor #f",
90 SCM_EOL);
91
92 if (!scm_is_false (hook))
93 scm_call_1 (hook, filename);
94
95 { /* scope */
96 SCM port = scm_open_file (filename, scm_from_locale_string ("r"));
97 scm_dynwind_begin (SCM_F_DYNWIND_REWINDABLE);
98 scm_i_dynwind_current_load_port (port);
99
100 while (1)
101 {
102 SCM reader, form;
103
104 /* Lookup and use the current reader to read the next
105 expression. */
106 reader = SCM_FAST_FLUID_REF (the_reader_fluid_num);
107 if (reader == SCM_BOOL_F)
108 form = scm_read (port);
109 else
110 form = scm_call_1 (reader, port);
111
112 if (SCM_EOF_OBJECT_P (form))
113 break;
114
115 scm_primitive_eval_x (form);
116 }
117
118 scm_dynwind_end ();
119 scm_close_port (port);
120 }
121 return SCM_UNSPECIFIED;
122 }
123 #undef FUNC_NAME
124
125 SCM
126 scm_c_primitive_load (const char *filename)
127 {
128 return scm_primitive_load (scm_from_locale_string (filename));
129 }
130
131 \f
132 /* Builtin path to scheme library files. */
133 #ifdef SCM_PKGDATA_DIR
134 SCM_DEFINE (scm_sys_package_data_dir, "%package-data-dir", 0, 0, 0,
135 (),
136 "Return the name of the directory where Scheme packages, modules and\n"
137 "libraries are kept. On most Unix systems, this will be\n"
138 "@samp{/usr/local/share/guile}.")
139 #define FUNC_NAME s_scm_sys_package_data_dir
140 {
141 return scm_from_locale_string (SCM_PKGDATA_DIR);
142 }
143 #undef FUNC_NAME
144 #endif /* SCM_PKGDATA_DIR */
145
146 #ifdef SCM_LIBRARY_DIR
147 SCM_DEFINE (scm_sys_library_dir, "%library-dir", 0,0,0,
148 (),
149 "Return the directory where the Guile Scheme library files are installed.\n"
150 "E.g., may return \"/usr/share/guile/1.3.5\".")
151 #define FUNC_NAME s_scm_sys_library_dir
152 {
153 return scm_from_locale_string (SCM_LIBRARY_DIR);
154 }
155 #undef FUNC_NAME
156 #endif /* SCM_LIBRARY_DIR */
157
158 #ifdef SCM_SITE_DIR
159 SCM_DEFINE (scm_sys_site_dir, "%site-dir", 0,0,0,
160 (),
161 "Return the directory where the Guile site files are installed.\n"
162 "E.g., may return \"/usr/share/guile/site\".")
163 #define FUNC_NAME s_scm_sys_site_dir
164 {
165 return scm_from_locale_string (SCM_SITE_DIR);
166 }
167 #undef FUNC_NAME
168 #endif /* SCM_SITE_DIR */
169
170
171
172 \f
173 /* Initializing the load path, and searching it. */
174
175 /* List of names of directories we search for files to load. */
176 static SCM *scm_loc_load_path;
177
178 /* List of extensions we try adding to the filenames. */
179 static SCM *scm_loc_load_extensions;
180
181 /* Like %load-path and %load-extensions, but for compiled files. */
182 static SCM *scm_loc_load_compiled_path;
183 static SCM *scm_loc_load_compiled_extensions;
184
185
186 SCM_DEFINE (scm_parse_path, "parse-path", 1, 1, 0,
187 (SCM path, SCM tail),
188 "Parse @var{path}, which is expected to be a colon-separated\n"
189 "string, into a list and return the resulting list with\n"
190 "@var{tail} appended. If @var{path} is @code{#f}, @var{tail}\n"
191 "is returned.")
192 #define FUNC_NAME s_scm_parse_path
193 {
194 #ifdef __MINGW32__
195 SCM sep = SCM_MAKE_CHAR (';');
196 #else
197 SCM sep = SCM_MAKE_CHAR (':');
198 #endif
199
200 if (SCM_UNBNDP (tail))
201 tail = SCM_EOL;
202 return (scm_is_false (path)
203 ? tail
204 : scm_append_x (scm_list_2 (scm_string_split (path, sep), tail)));
205 }
206 #undef FUNC_NAME
207
208
209 /* Initialize the global variable %load-path, given the value of the
210 SCM_SITE_DIR and SCM_LIBRARY_DIR preprocessor symbols and the
211 GUILE_LOAD_PATH environment variable. */
212 void
213 scm_init_load_path ()
214 {
215 char *env;
216 SCM path = SCM_EOL;
217 SCM cpath = SCM_EOL;
218
219 #ifdef SCM_LIBRARY_DIR
220 env = getenv ("GUILE_SYSTEM_PATH");
221 if (env && strcmp (env, "") == 0)
222 /* special-case interpret system-path=="" as meaning no system path instead
223 of '("") */
224 ;
225 else if (env)
226 path = scm_parse_path (scm_from_locale_string (env), path);
227 else
228 path = scm_list_3 (scm_from_locale_string (SCM_SITE_DIR),
229 scm_from_locale_string (SCM_LIBRARY_DIR),
230 scm_from_locale_string (SCM_PKGDATA_DIR));
231
232 env = getenv ("GUILE_SYSTEM_COMPILED_PATH");
233 if (env && strcmp (env, "") == 0)
234 /* like above */
235 ;
236 else if (env)
237 cpath = scm_parse_path (scm_from_locale_string (env), cpath);
238 else
239 {
240 char *home;
241
242 home = getenv ("HOME");
243 #ifdef HAVE_GETPWENT
244 if (!home)
245 {
246 struct passwd *pwd;
247 pwd = getpwuid (getuid ());
248 if (pwd)
249 home = pwd->pw_dir;
250 }
251 #endif /* HAVE_GETPWENT */
252 if (home)
253 { char buf[1024];
254 snprintf (buf, sizeof(buf),
255 "%s/.guile-ccache/" SCM_EFFECTIVE_VERSION, home);
256 cpath = scm_cons (scm_from_locale_string (buf), cpath);
257 }
258
259 cpath = scm_cons (scm_from_locale_string (SCM_CCACHE_DIR), cpath);
260 }
261 #endif /* SCM_LIBRARY_DIR */
262
263 env = getenv ("GUILE_LOAD_PATH");
264 if (env)
265 path = scm_parse_path (scm_from_locale_string (env), path);
266
267 env = getenv ("GUILE_LOAD_COMPILED_PATH");
268 if (env)
269 cpath = scm_parse_path (scm_from_locale_string (env), cpath);
270
271 *scm_loc_load_path = path;
272 *scm_loc_load_compiled_path = cpath;
273 }
274
275 SCM scm_listofnullstr;
276
277 /* Utility functions for assembling C strings in a buffer.
278 */
279
280 struct stringbuf {
281 char *buf, *ptr;
282 size_t buf_len;
283 };
284
285 static void
286 stringbuf_free (void *data)
287 {
288 struct stringbuf *buf = (struct stringbuf *)data;
289 free (buf->buf);
290 }
291
292 static void
293 stringbuf_grow (struct stringbuf *buf)
294 {
295 size_t ptroff = buf->ptr - buf->buf;
296 buf->buf_len *= 2;
297 buf->buf = scm_realloc (buf->buf, buf->buf_len);
298 buf->ptr = buf->buf + ptroff;
299 }
300
301 static void
302 stringbuf_cat_locale_string (struct stringbuf *buf, SCM str)
303 {
304 size_t max_len = buf->buf_len - (buf->ptr - buf->buf) - 1;
305 size_t len = scm_to_locale_stringbuf (str, buf->ptr, max_len);
306 if (len > max_len)
307 {
308 /* buffer is too small, double its size and try again.
309 */
310 stringbuf_grow (buf);
311 stringbuf_cat_locale_string (buf, str);
312 }
313 else
314 {
315 /* string fits, terminate it and check for embedded '\0'.
316 */
317 buf->ptr[len] = '\0';
318 if (strlen (buf->ptr) != len)
319 scm_misc_error (NULL,
320 "string contains #\\nul character: ~S",
321 scm_list_1 (str));
322 buf->ptr += len;
323 }
324 }
325
326 static void
327 stringbuf_cat (struct stringbuf *buf, char *str)
328 {
329 size_t max_len = buf->buf_len - (buf->ptr - buf->buf) - 1;
330 size_t len = strlen (str);
331 if (len > max_len)
332 {
333 /* buffer is too small, double its size and try again.
334 */
335 stringbuf_grow (buf);
336 stringbuf_cat (buf, str);
337 }
338 else
339 {
340 /* string fits, copy it into buffer.
341 */
342 strcpy (buf->ptr, str);
343 buf->ptr += len;
344 }
345 }
346
347
348 static int
349 scm_c_string_has_an_ext (char *str, size_t len, SCM extensions)
350 {
351 for (; !scm_is_null (extensions); extensions = SCM_CDR (extensions))
352 {
353 char *ext;
354 size_t extlen;
355 int match;
356 ext = scm_to_locale_string (SCM_CAR (extensions));
357 extlen = strlen (ext);
358 match = (len > extlen && str[len - extlen - 1] == '.'
359 && strncmp (str + (len - extlen), ext, extlen) == 0);
360 free (ext);
361 if (match)
362 return 1;
363 }
364 return 0;
365 }
366
367 /* Search PATH for a directory containing a file named FILENAME.
368 The file must be readable, and not a directory.
369 If we find one, return its full filename; otherwise, return #f.
370 If FILENAME is absolute, return it unchanged.
371 If given, EXTENSIONS is a list of strings; for each directory
372 in PATH, we search for FILENAME concatenated with each EXTENSION. */
373 SCM_DEFINE (scm_search_path, "search-path", 2, 2, 0,
374 (SCM path, SCM filename, SCM extensions, SCM require_exts),
375 "Search @var{path} for a directory containing a file named\n"
376 "@var{filename}. The file must be readable, and not a directory.\n"
377 "If we find one, return its full filename; otherwise, return\n"
378 "@code{#f}. If @var{filename} is absolute, return it unchanged.\n"
379 "If given, @var{extensions} is a list of strings; for each\n"
380 "directory in @var{path}, we search for @var{filename}\n"
381 "concatenated with each @var{extension}.")
382 #define FUNC_NAME s_scm_search_path
383 {
384 struct stringbuf buf;
385 char *filename_chars;
386 size_t filename_len;
387 SCM result = SCM_BOOL_F;
388
389 if (SCM_UNBNDP (extensions))
390 extensions = SCM_EOL;
391
392 if (SCM_UNBNDP (require_exts))
393 require_exts = SCM_BOOL_F;
394
395 scm_dynwind_begin (0);
396
397 filename_chars = scm_to_locale_string (filename);
398 filename_len = strlen (filename_chars);
399 scm_dynwind_free (filename_chars);
400
401 /* If FILENAME is absolute, return it unchanged. */
402 #ifdef __MINGW32__
403 if (((filename_len >= 1) &&
404 (filename_chars[0] == '/' || filename_chars[0] == '\\')) ||
405 ((filename_len >= 3) && filename_chars[1] == ':' &&
406 ((filename_chars[0] >= 'a' && filename_chars[0] <= 'z') ||
407 (filename_chars[0] >= 'A' && filename_chars[0] <= 'Z')) &&
408 (filename_chars[2] == '/' || filename_chars[2] == '\\')))
409 #else
410 if (filename_len >= 1 && filename_chars[0] == '/')
411 #endif
412 {
413 SCM res = filename;
414 if (scm_is_true (require_exts) &&
415 !scm_c_string_has_an_ext (filename_chars, filename_len,
416 extensions))
417 res = SCM_BOOL_F;
418
419 scm_dynwind_end ();
420 return res;
421 }
422
423 /* If FILENAME has an extension, don't try to add EXTENSIONS to it. */
424 {
425 char *endp;
426
427 for (endp = filename_chars + filename_len - 1;
428 endp >= filename_chars;
429 endp--)
430 {
431 if (*endp == '.')
432 {
433 if (scm_is_true (require_exts) &&
434 !scm_c_string_has_an_ext (filename_chars, filename_len,
435 extensions))
436 {
437 /* This filename has an extension, but not one of the right
438 ones... */
439 scm_dynwind_end ();
440 return SCM_BOOL_F;
441 }
442 /* This filename already has an extension, so cancel the
443 list of extensions. */
444 extensions = SCM_EOL;
445 break;
446 }
447 #ifdef __MINGW32__
448 else if (*endp == '/' || *endp == '\\')
449 #else
450 else if (*endp == '/')
451 #endif
452 /* This filename has no extension, so keep the current list
453 of extensions. */
454 break;
455 }
456 }
457
458 /* This simplifies the loop below a bit.
459 */
460 if (scm_is_null (extensions))
461 extensions = scm_listofnullstr;
462
463 buf.buf_len = 512;
464 buf.buf = scm_malloc (buf.buf_len);
465 scm_dynwind_unwind_handler (stringbuf_free, &buf, SCM_F_WIND_EXPLICITLY);
466
467 /* Try every path element.
468 */
469 for (; scm_is_pair (path); path = SCM_CDR (path))
470 {
471 SCM dir = SCM_CAR (path);
472 SCM exts;
473 size_t sans_ext_len;
474
475 buf.ptr = buf.buf;
476 stringbuf_cat_locale_string (&buf, dir);
477
478 /* Concatenate the path name and the filename. */
479
480 #ifdef __MINGW32__
481 if ((buf.ptr > buf.buf) && (buf.ptr[-1] != '/') && (buf.ptr[-1] != '\\'))
482 #else
483 if ((buf.ptr > buf.buf) && (buf.ptr[-1] != '/'))
484 #endif
485 stringbuf_cat (&buf, "/");
486
487 stringbuf_cat (&buf, filename_chars);
488 sans_ext_len = buf.ptr - buf.buf;
489
490 /* Try every extension. */
491 for (exts = extensions; scm_is_pair (exts); exts = SCM_CDR (exts))
492 {
493 SCM ext = SCM_CAR (exts);
494 struct stat mode;
495
496 buf.ptr = buf.buf + sans_ext_len;
497 stringbuf_cat_locale_string (&buf, ext);
498
499 /* If the file exists at all, we should return it. If the
500 file is inaccessible, then that's an error. */
501
502 if (stat (buf.buf, &mode) == 0
503 && ! (mode.st_mode & S_IFDIR))
504 {
505 result = scm_from_locale_string (buf.buf);
506 goto end;
507 }
508 }
509
510 if (!SCM_NULL_OR_NIL_P (exts))
511 scm_wrong_type_arg_msg (NULL, 0, extensions, "proper list");
512 }
513
514 if (!SCM_NULL_OR_NIL_P (path))
515 scm_wrong_type_arg_msg (NULL, 0, path, "proper list");
516
517 end:
518 scm_dynwind_end ();
519 return result;
520 }
521 #undef FUNC_NAME
522
523
524 /* Search %load-path for a directory containing a file named FILENAME.
525 The file must be readable, and not a directory.
526 If we find one, return its full filename; otherwise, return #f.
527 If FILENAME is absolute, return it unchanged. */
528 SCM_DEFINE (scm_sys_search_load_path, "%search-load-path", 1, 0, 0,
529 (SCM filename),
530 "Search @var{%load-path} for the file named @var{filename},\n"
531 "which must be readable by the current user. If @var{filename}\n"
532 "is found in the list of paths to search or is an absolute\n"
533 "pathname, return its full pathname. Otherwise, return\n"
534 "@code{#f}. Filenames may have any of the optional extensions\n"
535 "in the @code{%load-extensions} list; @code{%search-load-path}\n"
536 "will try each extension automatically.")
537 #define FUNC_NAME s_scm_sys_search_load_path
538 {
539 SCM path = *scm_loc_load_path;
540 SCM exts = *scm_loc_load_extensions;
541 SCM_VALIDATE_STRING (1, filename);
542
543 if (scm_ilength (path) < 0)
544 SCM_MISC_ERROR ("%load-path is not a proper list", SCM_EOL);
545 if (scm_ilength (exts) < 0)
546 SCM_MISC_ERROR ("%load-extension list is not a proper list", SCM_EOL);
547 return scm_search_path (path, filename, exts, SCM_UNDEFINED);
548 }
549 #undef FUNC_NAME
550
551
552 SCM_DEFINE (scm_primitive_load_path, "primitive-load-path", 1, 0, 0,
553 (SCM filename),
554 "Search @var{%load-path} for the file named @var{filename} and\n"
555 "load it into the top-level environment. If @var{filename} is a\n"
556 "relative pathname and is not found in the list of search paths,\n"
557 "an error is signalled.")
558 #define FUNC_NAME s_scm_primitive_load_path
559 {
560 SCM full_filename, compiled_filename;
561
562 full_filename = scm_sys_search_load_path (filename);
563 compiled_filename = scm_search_path (*scm_loc_load_compiled_path,
564 filename,
565 *scm_loc_load_compiled_extensions,
566 SCM_BOOL_T);
567
568 if (scm_is_false (full_filename) && scm_is_false (compiled_filename))
569 SCM_MISC_ERROR ("Unable to find file ~S in load path",
570 scm_list_1 (filename));
571
572 if (scm_is_false (compiled_filename))
573 /* FIXME: autocompile here */
574 return scm_primitive_load (full_filename);
575
576 if (scm_is_false (full_filename))
577 return scm_load_compiled_with_vm (compiled_filename);
578
579 {
580 char *source, *compiled;
581 struct stat stat_source, stat_compiled;
582
583 source = scm_to_locale_string (full_filename);
584 compiled = scm_to_locale_string (compiled_filename);
585
586 if (stat (source, &stat_source) == 0
587 && stat (compiled, &stat_compiled) == 0
588 && stat_source.st_mtime <= stat_compiled.st_mtime)
589 {
590 free (source);
591 free (compiled);
592 return scm_load_compiled_with_vm (compiled_filename);
593 }
594 else
595 {
596 scm_puts (";;; note: source file ", scm_current_error_port ());
597 scm_puts (source, scm_current_error_port ());
598 scm_puts (" newer than compiled ", scm_current_error_port ());
599 scm_puts (compiled, scm_current_error_port ());
600 scm_puts ("\n", scm_current_error_port ());
601 free (source);
602 free (compiled);
603 return scm_primitive_load (full_filename);
604 }
605 }
606 }
607 #undef FUNC_NAME
608
609 SCM
610 scm_c_primitive_load_path (const char *filename)
611 {
612 return scm_primitive_load_path (scm_from_locale_string (filename));
613 }
614
615 \f
616 /* Information about the build environment. */
617
618 /* Initialize the scheme variable %guile-build-info, based on data
619 provided by the Makefile, via libpath.h. */
620 static void
621 init_build_info ()
622 {
623 static struct { char *name; char *value; } info[] = SCM_BUILD_INFO;
624 SCM *loc = SCM_VARIABLE_LOC (scm_c_define ("%guile-build-info", SCM_EOL));
625 unsigned long i;
626
627 for (i = 0; i < (sizeof (info) / sizeof (info[0])); i++)
628 {
629 SCM key = scm_from_locale_symbol (info[i].name);
630 SCM val = scm_from_locale_string (info[i].value);
631 *loc = scm_acons (key, val, *loc);
632 }
633 }
634
635 \f
636 void
637 scm_init_load ()
638 {
639 scm_listofnullstr = scm_permanent_object (scm_list_1 (scm_nullstr));
640 scm_loc_load_path = SCM_VARIABLE_LOC (scm_c_define ("%load-path", SCM_EOL));
641 scm_loc_load_extensions
642 = SCM_VARIABLE_LOC (scm_c_define ("%load-extensions",
643 scm_list_2 (scm_from_locale_string (".scm"),
644 scm_nullstr)));
645 scm_loc_load_compiled_path
646 = SCM_VARIABLE_LOC (scm_c_define ("%load-compiled-path", SCM_EOL));
647 scm_loc_load_compiled_extensions
648 = SCM_VARIABLE_LOC (scm_c_define ("%load-compiled-extensions",
649 scm_list_1 (scm_from_locale_string (".go"))));
650 scm_loc_load_hook = SCM_VARIABLE_LOC (scm_c_define ("%load-hook", SCM_BOOL_F));
651
652 the_reader = scm_make_fluid ();
653 the_reader_fluid_num = SCM_FLUID_NUM (the_reader);
654 SCM_FAST_FLUID_SET_X (the_reader_fluid_num, SCM_BOOL_F);
655 scm_c_define("current-reader", the_reader);
656
657 init_build_info ();
658
659 #include "libguile/load.x"
660 }
661
662 /*
663 Local Variables:
664 c-file-style: "gnu"
665 End:
666 */