fix unnecessary call to canonicalize_path in load-path fast case
[bpt/guile.git] / libguile / load.c
CommitLineData
4a655e50 1/* Copyright (C) 1995,1996,1998,1999,2000,2001, 2004, 2006, 2008, 2009, 2010, 2011 Free Software Foundation, Inc.
0f2d19dd 2 *
73be1d9e 3 * This library is free software; you can redistribute it and/or
53befeb7
NJ
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.
0f2d19dd 7 *
53befeb7
NJ
8 * This library is distributed in the hope that it will be useful, but
9 * WITHOUT ANY WARRANTY; without even the implied warranty of
73be1d9e
MV
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 * Lesser General Public License for more details.
0f2d19dd 12 *
73be1d9e
MV
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
53befeb7
NJ
15 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
16 * 02110-1301 USA
73be1d9e 17 */
1bbd0b84 18
1bbd0b84 19
0f2d19dd
JB
20\f
21
dbb605f5 22#ifdef HAVE_CONFIG_H
cbd41c89
RB
23# include <config.h>
24#endif
25
13070bd3 26#include <string.h>
7d04d68b 27#include <stdio.h>
13070bd3 28
a0599745 29#include "libguile/_scm.h"
655aadf4 30#include "libguile/private-gc.h" /* scm_getenv_int */
a0599745
MD
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"
f33b174d 40#include "libguile/modules.h"
7d04d68b 41#include "libguile/chars.h"
c44ca4fe 42#include "libguile/srfi-13.h"
a0599745
MD
43
44#include "libguile/validate.h"
45#include "libguile/load.h"
ec3a8ace 46#include "libguile/fluids.h"
06721500 47
22f4ee48
AW
48#include "libguile/vm.h" /* for load-compiled/vm */
49
06721500
JB
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
5b197db8
AW
57#ifdef HAVE_PWD_H
58#include <pwd.h>
59#endif /* HAVE_PWD_H */
60
06721500
JB
61#ifndef R_OK
62#define R_OK 4
63#endif
0f2d19dd 64
abca59fe
LC
65#include <stat-time.h>
66
0f2d19dd 67\f
06721500 68/* Loading a file, given an absolute filename. */
0f2d19dd 69
26544b96
JB
70/* Hook to run when we load a file, perhaps to announce the fact somewhere.
71 Applied to the full name of the file. */
72static SCM *scm_loc_load_hook;
73
ec3a8ace
NJ
74/* The current reader (a fluid). */
75static SCM the_reader = SCM_BOOL_F;
8b039053 76
ec3a8ace 77
3b3b36dd 78SCM_DEFINE (scm_primitive_load, "primitive-load", 1, 0, 0,
1bbd0b84 79 (SCM filename),
67e8151b
MG
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.")
1bbd0b84 87#define FUNC_NAME s_scm_primitive_load
0f2d19dd 88{
26544b96 89 SCM hook = *scm_loc_load_hook;
889975e5 90 char *encoding;
a6d9e5ab 91 SCM_VALIDATE_STRING (1, filename);
bc36d050 92 if (scm_is_true (hook) && scm_is_false (scm_procedure_p (hook)))
2ade72d7
DH
93 SCM_MISC_ERROR ("value of %load-hook is neither a procedure nor #f",
94 SCM_EOL);
26544b96 95
bc36d050 96 if (!scm_is_false (hook))
fdc28395 97 scm_call_1 (hook, filename);
26544b96 98
1bbd0b84 99 { /* scope */
b5623573 100 SCM port = scm_open_file (filename, scm_from_locale_string ("r"));
661ae7ab
MV
101 scm_dynwind_begin (SCM_F_DYNWIND_REWINDABLE);
102 scm_i_dynwind_current_load_port (port);
f8a1c9a8
LC
103
104 encoding = scm_i_scan_for_encoding (port);
889975e5 105 if (encoding)
f8a1c9a8 106 scm_i_set_port_encoding_x (port, encoding);
889975e5 107 else
eb7a16a9
AW
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");
f8a1c9a8 111
b5623573
MV
112 while (1)
113 {
ec3a8ace
NJ
114 SCM reader, form;
115
116 /* Lookup and use the current reader to read the next
117 expression. */
8b039053 118 reader = scm_fluid_ref (the_reader);
393baa8a 119 if (scm_is_false (reader))
ec3a8ace
NJ
120 form = scm_read (port);
121 else
122 form = scm_call_1 (reader, port);
123
b5623573
MV
124 if (SCM_EOF_OBJECT_P (form))
125 break;
ec3a8ace 126
b5623573
MV
127 scm_primitive_eval_x (form);
128 }
129
661ae7ab 130 scm_dynwind_end ();
0f2d19dd
JB
131 scm_close_port (port);
132 }
b59b97ba 133 return SCM_UNSPECIFIED;
0f2d19dd 134}
1bbd0b84 135#undef FUNC_NAME
0f2d19dd 136
c519b272
MV
137SCM
138scm_c_primitive_load (const char *filename)
139{
cc95e00a 140 return scm_primitive_load (scm_from_locale_string (filename));
c519b272
MV
141}
142
0f2d19dd 143\f
3feedb00
MD
144/* Builtin path to scheme library files. */
145#ifdef SCM_PKGDATA_DIR
a1ec6916 146SCM_DEFINE (scm_sys_package_data_dir, "%package-data-dir", 0, 0, 0,
1bbd0b84 147 (),
b380b885
MD
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}.")
1bbd0b84 151#define FUNC_NAME s_scm_sys_package_data_dir
3feedb00 152{
cc95e00a 153 return scm_from_locale_string (SCM_PKGDATA_DIR);
3feedb00 154}
1bbd0b84 155#undef FUNC_NAME
3feedb00
MD
156#endif /* SCM_PKGDATA_DIR */
157
e8e9b690 158#ifdef SCM_LIBRARY_DIR
a1ec6916 159SCM_DEFINE (scm_sys_library_dir, "%library-dir", 0,0,0,
e8e9b690 160 (),
b380b885
MD
161 "Return the directory where the Guile Scheme library files are installed.\n"
162 "E.g., may return \"/usr/share/guile/1.3.5\".")
e8e9b690
GB
163#define FUNC_NAME s_scm_sys_library_dir
164{
cc95e00a 165 return scm_from_locale_string (SCM_LIBRARY_DIR);
e8e9b690
GB
166}
167#undef FUNC_NAME
168#endif /* SCM_LIBRARY_DIR */
169
170#ifdef SCM_SITE_DIR
a1ec6916 171SCM_DEFINE (scm_sys_site_dir, "%site-dir", 0,0,0,
e8e9b690 172 (),
bc325e76
AW
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 "\".")
e8e9b690
GB
176#define FUNC_NAME s_scm_sys_site_dir
177{
cc95e00a 178 return scm_from_locale_string (SCM_SITE_DIR);
e8e9b690
GB
179}
180#undef FUNC_NAME
181#endif /* SCM_SITE_DIR */
182
bc325e76
AW
183#ifdef SCM_GLOBAL_SITE_DIR
184SCM_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 */
e8e9b690
GB
195
196
3feedb00 197\f
06721500 198/* Initializing the load path, and searching it. */
0f2d19dd 199
26544b96 200/* List of names of directories we search for files to load. */
06721500
JB
201static SCM *scm_loc_load_path;
202
26544b96
JB
203/* List of extensions we try adding to the filenames. */
204static SCM *scm_loc_load_extensions;
205
5b197db8
AW
206/* Like %load-path and %load-extensions, but for compiled files. */
207static SCM *scm_loc_load_compiled_path;
22f4ee48
AW
208static SCM *scm_loc_load_compiled_extensions;
209
ee001750 210/* Whether we should try to auto-compile. */
6f06e8d3 211static SCM *scm_loc_load_should_auto_compile;
01cddfc1 212
1e56cff2
AW
213/* Whether to treat all auto-compiled files as stale. */
214static SCM *scm_loc_fresh_auto_compile;
215
6f06e8d3 216/* The fallback path for auto-compilation */
5ea401bf 217static SCM *scm_loc_compile_fallback_path;
01cddfc1 218
a1ec6916 219SCM_DEFINE (scm_parse_path, "parse-path", 1, 1, 0,
1bbd0b84 220 (SCM path, SCM tail),
d91788cb
MG
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.")
1bbd0b84 225#define FUNC_NAME s_scm_parse_path
04e8fb0a 226{
7d04d68b
MV
227#ifdef __MINGW32__
228 SCM sep = SCM_MAKE_CHAR (';');
229#else
230 SCM sep = SCM_MAKE_CHAR (':');
231#endif
232
04e8fb0a
MD
233 if (SCM_UNBNDP (tail))
234 tail = SCM_EOL;
7888309b 235 return (scm_is_false (path)
04e8fb0a 236 ? tail
7d04d68b 237 : scm_append_x (scm_list_2 (scm_string_split (path, sep), tail)));
04e8fb0a 238}
1bbd0b84 239#undef FUNC_NAME
04e8fb0a
MD
240
241
06721500 242/* Initialize the global variable %load-path, given the value of the
3feedb00 243 SCM_SITE_DIR and SCM_LIBRARY_DIR preprocessor symbols and the
01cddfc1 244 GUILE_LOAD_PATH environment variable. */
0f2d19dd 245void
06721500
JB
246scm_init_load_path ()
247{
11c5e0bf 248 char *env;
06721500 249 SCM path = SCM_EOL;
5b197db8 250 SCM cpath = SCM_EOL;
06721500 251
3feedb00 252#ifdef SCM_LIBRARY_DIR
02b84691
AW
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
bc325e76 261 path = scm_list_4 (scm_from_locale_string (SCM_LIBRARY_DIR),
3c98a49c 262 scm_from_locale_string (SCM_SITE_DIR),
bc325e76 263 scm_from_locale_string (SCM_GLOBAL_SITE_DIR),
02b84691 264 scm_from_locale_string (SCM_PKGDATA_DIR));
5b197db8
AW
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
9957641b
AW
273 {
274 cpath = scm_list_2 (scm_from_locale_string (SCM_CCACHE_DIR),
275 scm_from_locale_string (SCM_SITE_CCACHE_DIR));
276 }
3c997c4b 277
3feedb00 278#endif /* SCM_LIBRARY_DIR */
06721500 279
3c997c4b 280 {
179fe336
AW
281 char cachedir[1024];
282 char *e;
283#ifdef HAVE_GETPWENT
284 struct passwd *pwd;
285#endif
5b197db8 286
6e5c02b8
AW
287#define FALLBACK_DIR \
288 "guile/ccache/" SCM_EFFECTIVE_VERSION "-" SCM_OBJCODE_MACHINE_VERSION_STRING
179fe336
AW
289
290 if ((e = getenv ("XDG_CACHE_HOME")))
48a0fe4d 291 snprintf (cachedir, sizeof(cachedir), "%s/" FALLBACK_DIR, e);
179fe336
AW
292 else if ((e = getenv ("HOME")))
293 snprintf (cachedir, sizeof(cachedir), "%s/.cache/" FALLBACK_DIR, e);
5b197db8 294#ifdef HAVE_GETPWENT
179fe336
AW
295 else if ((pwd = getpwuid (getuid ())) && pwd->pw_dir)
296 snprintf (cachedir, sizeof(cachedir), "%s/.cache/" FALLBACK_DIR,
297 pwd->pw_dir);
5b197db8 298#endif /* HAVE_GETPWENT */
284019a2
JN
299#ifdef __MINGW32__
300 else if ((e = getenv ("LOCALAPPDATA")))
301 snprintf (cachedir, sizeof (cachedir), "%s/.cache/" FALLBACK_DIR, e);
302 else if ((e = getenv ("APPDATA")))
303 snprintf (cachedir, sizeof (cachedir), "%s/.cache/" FALLBACK_DIR, e);
304#endif /* __MINGW32__ */
179fe336
AW
305 else
306 cachedir[0] = 0;
307
308 if (cachedir[0])
309 *scm_loc_compile_fallback_path = scm_from_locale_string (cachedir);
3c997c4b 310 }
06721500 311
11c5e0bf
MV
312 env = getenv ("GUILE_LOAD_PATH");
313 if (env)
314 path = scm_parse_path (scm_from_locale_string (env), path);
01cddfc1 315
5b197db8
AW
316 env = getenv ("GUILE_LOAD_COMPILED_PATH");
317 if (env)
318 cpath = scm_parse_path (scm_from_locale_string (env), cpath);
319
06721500 320 *scm_loc_load_path = path;
5b197db8 321 *scm_loc_load_compiled_path = cpath;
06721500
JB
322}
323
04e8fb0a 324SCM scm_listofnullstr;
06721500 325
7d04d68b
MV
326/* Utility functions for assembling C strings in a buffer.
327 */
328
329struct stringbuf {
330 char *buf, *ptr;
331 size_t buf_len;
332};
333
334static void
335stringbuf_free (void *data)
336{
337 struct stringbuf *buf = (struct stringbuf *)data;
338 free (buf->buf);
339}
340
341static void
342stringbuf_grow (struct stringbuf *buf)
343{
344 size_t ptroff = buf->ptr - buf->buf;
345 buf->buf_len *= 2;
7d04d68b
MV
346 buf->buf = scm_realloc (buf->buf, buf->buf_len);
347 buf->ptr = buf->buf + ptroff;
348}
349
350static void
351stringbuf_cat_locale_string (struct stringbuf *buf, SCM str)
352{
353 size_t max_len = buf->buf_len - (buf->ptr - buf->buf) - 1;
354 size_t len = scm_to_locale_stringbuf (str, buf->ptr, max_len);
355 if (len > max_len)
356 {
357 /* buffer is too small, double its size and try again.
358 */
359 stringbuf_grow (buf);
360 stringbuf_cat_locale_string (buf, str);
361 }
362 else
363 {
364 /* string fits, terminate it and check for embedded '\0'.
365 */
366 buf->ptr[len] = '\0';
367 if (strlen (buf->ptr) != len)
368 scm_misc_error (NULL,
369 "string contains #\\nul character: ~S",
370 scm_list_1 (str));
371 buf->ptr += len;
372 }
373}
374
375static void
376stringbuf_cat (struct stringbuf *buf, char *str)
377{
378 size_t max_len = buf->buf_len - (buf->ptr - buf->buf) - 1;
379 size_t len = strlen (str);
380 if (len > max_len)
381 {
382 /* buffer is too small, double its size and try again.
383 */
384 stringbuf_grow (buf);
385 stringbuf_cat (buf, str);
386 }
387 else
388 {
389 /* string fits, copy it into buffer.
390 */
391 strcpy (buf->ptr, str);
392 buf->ptr += len;
393 }
394}
395
396
22f4ee48
AW
397static int
398scm_c_string_has_an_ext (char *str, size_t len, SCM extensions)
399{
400 for (; !scm_is_null (extensions); extensions = SCM_CDR (extensions))
401 {
402 char *ext;
403 size_t extlen;
404 int match;
405 ext = scm_to_locale_string (SCM_CAR (extensions));
406 extlen = strlen (ext);
407 match = (len > extlen && str[len - extlen - 1] == '.'
408 && strncmp (str + (len - extlen), ext, extlen) == 0);
409 free (ext);
410 if (match)
411 return 1;
412 }
413 return 0;
414}
415
04e8fb0a 416/* Search PATH for a directory containing a file named FILENAME.
06721500 417 The file must be readable, and not a directory.
26544b96 418 If we find one, return its full filename; otherwise, return #f.
56384176
JB
419 If FILENAME is absolute, return it unchanged.
420 If given, EXTENSIONS is a list of strings; for each directory
421 in PATH, we search for FILENAME concatenated with each EXTENSION. */
88cbb421
LC
422SCM_DEFINE (scm_search_path, "search-path", 2, 0, 1,
423 (SCM path, SCM filename, SCM rest),
d91788cb
MG
424 "Search @var{path} for a directory containing a file named\n"
425 "@var{filename}. The file must be readable, and not a directory.\n"
426 "If we find one, return its full filename; otherwise, return\n"
427 "@code{#f}. If @var{filename} is absolute, return it unchanged.\n"
428 "If given, @var{extensions} is a list of strings; for each\n"
429 "directory in @var{path}, we search for @var{filename}\n"
430 "concatenated with each @var{extension}.")
1bbd0b84 431#define FUNC_NAME s_scm_search_path
06721500 432{
7d04d68b 433 struct stringbuf buf;
56384176 434 char *filename_chars;
7d04d68b 435 size_t filename_len;
88cbb421 436 SCM extensions, require_exts;
7d04d68b 437 SCM result = SCM_BOOL_F;
06721500 438
e29dcaf3 439 if (SCM_UNBNDP (rest) || scm_is_null (rest))
88cbb421
LC
440 {
441 /* Called either by Scheme code that didn't provide the optional
442 arguments, or C code that used the Guile 1.8 signature (2 required,
e29dcaf3
LC
443 1 optional arg) and passed '() or nothing as the EXTENSIONS
444 argument. */
88cbb421
LC
445 extensions = SCM_EOL;
446 require_exts = SCM_UNDEFINED;
447 }
448 else
449 {
450 if (scm_is_null (SCM_CAR (rest)) || scm_is_pair (SCM_CAR (rest)))
451 {
452 /* Called by Scheme code written for 1.9. */
453 extensions = SCM_CAR (rest);
454 if (scm_is_null (SCM_CDR (rest)))
455 require_exts = SCM_UNDEFINED;
456 else
457 {
458 require_exts = SCM_CADR (rest);
459 if (SCM_UNLIKELY (!scm_is_null (SCM_CDDR (rest))))
460 scm_wrong_num_args (scm_from_locale_string (FUNC_NAME));
461 }
462 }
463 else
464 {
465 /* Called by C code that uses the 1.8 signature, i.e., which
466 expects the 3rd argument to be EXTENSIONS. */
467 extensions = rest;
468 require_exts = SCM_UNDEFINED;
469 }
470 }
471
04e8fb0a 472 if (SCM_UNBNDP (extensions))
56384176 473 extensions = SCM_EOL;
56384176 474
88cbb421
LC
475 SCM_VALIDATE_LIST (3, extensions);
476
22f4ee48
AW
477 if (SCM_UNBNDP (require_exts))
478 require_exts = SCM_BOOL_F;
479
661ae7ab 480 scm_dynwind_begin (0);
7d04d68b
MV
481
482 filename_chars = scm_to_locale_string (filename);
483 filename_len = strlen (filename_chars);
661ae7ab 484 scm_dynwind_free (filename_chars);
06721500 485
26544b96 486 /* If FILENAME is absolute, return it unchanged. */
2e945bcc
SJ
487#ifdef __MINGW32__
488 if (((filename_len >= 1) &&
489 (filename_chars[0] == '/' || filename_chars[0] == '\\')) ||
490 ((filename_len >= 3) && filename_chars[1] == ':' &&
491 ((filename_chars[0] >= 'a' && filename_chars[0] <= 'z') ||
492 (filename_chars[0] >= 'A' && filename_chars[0] <= 'Z')) &&
493 (filename_chars[2] == '/' || filename_chars[2] == '\\')))
494#else
56384176 495 if (filename_len >= 1 && filename_chars[0] == '/')
2e945bcc 496#endif
7d04d68b 497 {
22f4ee48
AW
498 SCM res = filename;
499 if (scm_is_true (require_exts) &&
500 !scm_c_string_has_an_ext (filename_chars, filename_len,
501 extensions))
502 res = SCM_BOOL_F;
503
661ae7ab 504 scm_dynwind_end ();
22f4ee48 505 return res;
7d04d68b 506 }
26544b96 507
56384176
JB
508 /* If FILENAME has an extension, don't try to add EXTENSIONS to it. */
509 {
510 char *endp;
511
512 for (endp = filename_chars + filename_len - 1;
513 endp >= filename_chars;
514 endp--)
515 {
516 if (*endp == '.')
517 {
22f4ee48
AW
518 if (scm_is_true (require_exts) &&
519 !scm_c_string_has_an_ext (filename_chars, filename_len,
520 extensions))
521 {
522 /* This filename has an extension, but not one of the right
523 ones... */
524 scm_dynwind_end ();
525 return SCM_BOOL_F;
526 }
56384176
JB
527 /* This filename already has an extension, so cancel the
528 list of extensions. */
529 extensions = SCM_EOL;
530 break;
531 }
2e945bcc
SJ
532#ifdef __MINGW32__
533 else if (*endp == '/' || *endp == '\\')
534#else
56384176 535 else if (*endp == '/')
2e945bcc 536#endif
56384176
JB
537 /* This filename has no extension, so keep the current list
538 of extensions. */
539 break;
540 }
541 }
542
7d04d68b
MV
543 /* This simplifies the loop below a bit.
544 */
d2e53ed6 545 if (scm_is_null (extensions))
7d04d68b 546 extensions = scm_listofnullstr;
06721500 547
7d04d68b
MV
548 buf.buf_len = 512;
549 buf.buf = scm_malloc (buf.buf_len);
661ae7ab 550 scm_dynwind_unwind_handler (stringbuf_free, &buf, SCM_F_WIND_EXPLICITLY);
0a74e31d 551
7d04d68b
MV
552 /* Try every path element.
553 */
d2e53ed6 554 for (; scm_is_pair (path); path = SCM_CDR (path))
7d04d68b
MV
555 {
556 SCM dir = SCM_CAR (path);
557 SCM exts;
558 size_t sans_ext_len;
559
560 buf.ptr = buf.buf;
561 stringbuf_cat_locale_string (&buf, dir);
562
563 /* Concatenate the path name and the filename. */
564
2e945bcc 565#ifdef __MINGW32__
5a6d139b 566 if ((buf.ptr > buf.buf) && (buf.ptr[-1] != '/') && (buf.ptr[-1] != '\\'))
2e945bcc 567#else
5a6d139b 568 if ((buf.ptr > buf.buf) && (buf.ptr[-1] != '/'))
2e945bcc 569#endif
7d04d68b
MV
570 stringbuf_cat (&buf, "/");
571
572 stringbuf_cat (&buf, filename_chars);
573 sans_ext_len = buf.ptr - buf.buf;
574
575 /* Try every extension. */
d2e53ed6 576 for (exts = extensions; scm_is_pair (exts); exts = SCM_CDR (exts))
7d04d68b
MV
577 {
578 SCM ext = SCM_CAR (exts);
579 struct stat mode;
580
581 buf.ptr = buf.buf + sans_ext_len;
582 stringbuf_cat_locale_string (&buf, ext);
583
584 /* If the file exists at all, we should return it. If the
585 file is inaccessible, then that's an error. */
586
7d04d68b
MV
587 if (stat (buf.buf, &mode) == 0
588 && ! (mode.st_mode & S_IFDIR))
589 {
590 result = scm_from_locale_string (buf.buf);
591 goto end;
592 }
593 }
594
595 if (!SCM_NULL_OR_NIL_P (exts))
596 scm_wrong_type_arg_msg (NULL, 0, extensions, "proper list");
597 }
56384176 598
7d04d68b
MV
599 if (!SCM_NULL_OR_NIL_P (path))
600 scm_wrong_type_arg_msg (NULL, 0, path, "proper list");
56384176 601
7d04d68b 602 end:
661ae7ab 603 scm_dynwind_end ();
7d04d68b 604 return result;
06721500 605}
1bbd0b84 606#undef FUNC_NAME
06721500
JB
607
608
04e8fb0a
MD
609/* Search %load-path for a directory containing a file named FILENAME.
610 The file must be readable, and not a directory.
611 If we find one, return its full filename; otherwise, return #f.
612 If FILENAME is absolute, return it unchanged. */
3b3b36dd 613SCM_DEFINE (scm_sys_search_load_path, "%search-load-path", 1, 0, 0,
67e8151b
MG
614 (SCM filename),
615 "Search @var{%load-path} for the file named @var{filename},\n"
616 "which must be readable by the current user. If @var{filename}\n"
617 "is found in the list of paths to search or is an absolute\n"
618 "pathname, return its full pathname. Otherwise, return\n"
619 "@code{#f}. Filenames may have any of the optional extensions\n"
620 "in the @code{%load-extensions} list; @code{%search-load-path}\n"
621 "will try each extension automatically.")
1bbd0b84 622#define FUNC_NAME s_scm_sys_search_load_path
04e8fb0a
MD
623{
624 SCM path = *scm_loc_load_path;
625 SCM exts = *scm_loc_load_extensions;
a6d9e5ab 626 SCM_VALIDATE_STRING (1, filename);
1bbd0b84 627
2ade72d7
DH
628 if (scm_ilength (path) < 0)
629 SCM_MISC_ERROR ("%load-path is not a proper list", SCM_EOL);
630 if (scm_ilength (exts) < 0)
631 SCM_MISC_ERROR ("%load-extension list is not a proper list", SCM_EOL);
88cbb421 632 return scm_search_path (path, filename, exts);
04e8fb0a 633}
1bbd0b84 634#undef FUNC_NAME
04e8fb0a
MD
635
636
abca59fe
LC
637/* Return true if COMPILED_FILENAME is newer than source file
638 FULL_FILENAME, false otherwise. Also return false if one of the
639 files cannot be stat'd. */
1d022387 640static int
535fb833 641compiled_is_fresh (SCM full_filename, SCM compiled_filename)
1d022387
AW
642{
643 char *source, *compiled;
644 struct stat stat_source, stat_compiled;
722a4fb9 645 int compiled_is_newer;
1d022387
AW
646
647 source = scm_to_locale_string (full_filename);
648 compiled = scm_to_locale_string (compiled_filename);
fefd60ba 649
1d022387 650 if (stat (source, &stat_source) == 0
abca59fe 651 && stat (compiled, &stat_compiled) == 0)
1d022387 652 {
abca59fe
LC
653 struct timespec source_mtime, compiled_mtime;
654
655 source_mtime = get_stat_mtime (&stat_source);
656 compiled_mtime = get_stat_mtime (&stat_compiled);
657
658 if (source_mtime.tv_sec < compiled_mtime.tv_sec
659 || (source_mtime.tv_sec == compiled_mtime.tv_sec
660 && source_mtime.tv_nsec <= compiled_mtime.tv_nsec))
661 compiled_is_newer = 1;
722a4fb9
LC
662 else
663 {
664 compiled_is_newer = 0;
665 scm_puts (";;; note: source file ", scm_current_error_port ());
666 scm_puts (source, scm_current_error_port ());
667 scm_puts ("\n;;; newer than compiled ", scm_current_error_port ());
668 scm_puts (compiled, scm_current_error_port ());
669 scm_puts ("\n", scm_current_error_port ());
670 }
1d022387 671 }
722a4fb9
LC
672 else
673 /* At least one of the files isn't accessible. */
674 compiled_is_newer = 0;
3c997c4b 675
1d022387
AW
676 free (source);
677 free (compiled);
abca59fe
LC
678
679 return compiled_is_newer;
1d022387
AW
680}
681
87c595c7 682SCM_KEYWORD (kw_env, "env");
5a79300f
LC
683SCM_KEYWORD (kw_opts, "opts");
684
685SCM_SYMBOL (sym_compile_file, "compile-file");
686SCM_SYMBOL (sym_auto_compilation_options, "%auto-compilation-options");
87c595c7 687
1d022387 688static SCM
6f06e8d3 689do_try_auto_compile (void *data)
1d022387 690{
3c997c4b
AW
691 SCM source = PTR2SCM (data);
692 SCM comp_mod, compile_file;
ee001750
AW
693
694 scm_puts (";;; compiling ", scm_current_error_port ());
3c997c4b 695 scm_display (source, scm_current_error_port ());
ee001750
AW
696 scm_newline (scm_current_error_port ());
697
698 comp_mod = scm_c_resolve_module ("system base compile");
5a79300f 699 compile_file = scm_module_variable (comp_mod, sym_compile_file);
ee001750 700
3c997c4b
AW
701 if (scm_is_true (compile_file))
702 {
87c595c7 703 /* Auto-compile in the context of the current module. */
5a79300f
LC
704 SCM res, opts;
705 SCM args[5];
706
707 opts = scm_module_variable (scm_the_root_module (),
708 sym_auto_compilation_options);
709 if (SCM_VARIABLEP (opts))
710 opts = SCM_VARIABLE_REF (opts);
711 else
712 opts = SCM_EOL;
713
714 args[0] = source;
715 args[1] = kw_opts;
716 args[2] = opts;
717 args[3] = kw_env;
718 args[4] = scm_current_module ();
719
720 /* Assume `*current-warning-prefix*' has an appropriate value. */
721 res = scm_call_n (scm_variable_ref (compile_file), args, 5);
722
3c997c4b
AW
723 scm_puts (";;; compiled ", scm_current_error_port ());
724 scm_display (res, scm_current_error_port ());
725 scm_newline (scm_current_error_port ());
726 return res;
727 }
728 else
729 {
730 scm_puts (";;; it seems ", scm_current_error_port ());
731 scm_display (source, scm_current_error_port ());
6f06e8d3 732 scm_puts ("\n;;; is part of the compiler; skipping auto-compilation\n",
3c997c4b
AW
733 scm_current_error_port ());
734 return SCM_BOOL_F;
735 }
ee001750
AW
736}
737
738static SCM
6f06e8d3 739auto_compile_catch_handler (void *data, SCM tag, SCM throw_args)
ee001750 740{
3c997c4b 741 SCM source = PTR2SCM (data);
669ea4eb
AW
742 SCM oport, lines;
743
744 oport = scm_open_output_string ();
745 scm_print_exception (oport, SCM_BOOL_F, tag, throw_args);
746
ee001750 747 scm_puts (";;; WARNING: compilation of ", scm_current_error_port ());
3c997c4b 748 scm_display (source, scm_current_error_port ());
6fd367e7 749 scm_puts (" failed:\n", scm_current_error_port ());
669ea4eb
AW
750
751 lines = scm_string_split (scm_get_output_string (oport),
752 SCM_MAKE_CHAR ('\n'));
753 for (; scm_is_pair (lines); lines = scm_cdr (lines))
754 if (scm_c_string_length (scm_car (lines)))
755 {
756 scm_puts (";;; ", scm_current_error_port ());
757 scm_display (scm_car (lines), scm_current_error_port ());
758 scm_newline (scm_current_error_port ());
759 }
760
761 scm_close_port (oport);
762
1d022387
AW
763 return SCM_BOOL_F;
764}
765
6f06e8d3 766SCM_DEFINE (scm_sys_warn_auto_compilation_enabled, "%warn-auto-compilation-enabled", 0, 0, 0,
9591a2b0 767 (void), "")
6f06e8d3 768#define FUNC_NAME s_scm_sys_warn_auto_compilation_enabled
ee001750
AW
769{
770 static int message_shown = 0;
ee001750
AW
771
772 if (!message_shown)
773 {
6f06e8d3
AW
774 scm_puts (";;; note: auto-compilation is enabled, set GUILE_AUTO_COMPILE=0\n"
775 ";;; or pass the --no-auto-compile argument to disable.\n",
ee001750
AW
776 scm_current_error_port ());
777 message_shown = 1;
778 }
779
9591a2b0
AW
780 return SCM_UNSPECIFIED;
781}
15058484 782#undef FUNC_NAME
9591a2b0 783
9591a2b0 784static SCM
6f06e8d3 785scm_try_auto_compile (SCM source)
9591a2b0 786{
6f06e8d3 787 if (scm_is_false (*scm_loc_load_should_auto_compile))
9591a2b0
AW
788 return SCM_BOOL_F;
789
6f06e8d3 790 scm_sys_warn_auto_compilation_enabled ();
ee001750 791 return scm_c_catch (SCM_BOOL_T,
6f06e8d3 792 do_try_auto_compile,
3c997c4b 793 SCM2PTR (source),
6f06e8d3 794 auto_compile_catch_handler,
3c997c4b 795 SCM2PTR (source),
ee001750
AW
796 NULL, NULL);
797}
798
6934d9e7
AW
799/* See also (system base compile):compiled-file-name. */
800static SCM
e4f6e855 801canonical_suffix (SCM fname)
6934d9e7 802{
e4f6e855
AW
803 SCM canon;
804 size_t len;
805
806 canon = scm_canonicalize_path (fname);
807 len = scm_c_string_length (canon);
6934d9e7
AW
808
809 if (len > 1 && scm_is_eq (scm_c_string_ref (canon, 0), SCM_MAKE_CHAR ('/')))
810 return canon;
811 else if (len > 2 && scm_is_eq (scm_c_string_ref (canon, 1), SCM_MAKE_CHAR (':')))
812 return scm_string_append (scm_list_3 (scm_from_latin1_string ("/"),
813 scm_c_substring (canon, 0, 1),
814 scm_c_substring (canon, 2, len)));
815 else
816 return canon;
817}
818
31ab99de
LC
819SCM_DEFINE (scm_primitive_load_path, "primitive-load-path", 0, 0, 1,
820 (SCM args),
67e8151b
MG
821 "Search @var{%load-path} for the file named @var{filename} and\n"
822 "load it into the top-level environment. If @var{filename} is a\n"
823 "relative pathname and is not found in the list of search paths,\n"
0fb81f95
AW
824 "an error is signalled, unless the optional argument\n"
825 "@var{exception_on_not_found} is @code{#f}, in which case\n"
826 "@code{#f} is returned instead.")
1bbd0b84 827#define FUNC_NAME s_scm_primitive_load_path
06721500 828{
31ab99de 829 SCM filename, exception_on_not_found;
22f4ee48 830 SCM full_filename, compiled_filename;
628132c5 831 int compiled_is_fallback = 0;
dcada7d8
AW
832 SCM hook = *scm_loc_load_hook;
833
834 if (scm_is_true (hook) && scm_is_false (scm_procedure_p (hook)))
835 SCM_MISC_ERROR ("value of %load-hook is neither a procedure nor #f",
836 SCM_EOL);
26544b96 837
31ab99de
LC
838 if (scm_is_string (args))
839 {
840 /* C code written for 1.8 and earlier expects this function to take a
841 single argument (the file name). */
842 filename = args;
843 exception_on_not_found = SCM_UNDEFINED;
844 }
845 else
846 {
847 /* Starting from 1.9, this function takes 1 required and 1 optional
848 argument. */
849 long len;
850
851 SCM_VALIDATE_LIST_COPYLEN (SCM_ARG1, args, len);
852 if (len < 1 || len > 2)
853 scm_error_num_args_subr (FUNC_NAME);
854
855 filename = SCM_CAR (args);
856 SCM_VALIDATE_STRING (SCM_ARG1, filename);
857
858 exception_on_not_found = len > 1 ? SCM_CADR (args) : SCM_UNDEFINED;
859 }
860
0fb81f95
AW
861 if (SCM_UNBNDP (exception_on_not_found))
862 exception_on_not_found = SCM_BOOL_T;
26544b96 863
26544b96 864 full_filename = scm_sys_search_load_path (filename);
eba5ea7a 865
88cbb421
LC
866 compiled_filename =
867 scm_search_path (*scm_loc_load_compiled_path,
868 filename,
869 scm_list_2 (*scm_loc_load_compiled_extensions,
870 SCM_BOOL_T));
871
5ea401bf
AW
872 if (scm_is_false (compiled_filename)
873 && scm_is_true (full_filename)
3c997c4b 874 && scm_is_true (*scm_loc_compile_fallback_path)
1e56cff2 875 && scm_is_false (*scm_loc_fresh_auto_compile)
3c997c4b
AW
876 && scm_is_pair (*scm_loc_load_compiled_extensions)
877 && scm_is_string (scm_car (*scm_loc_load_compiled_extensions)))
5ea401bf 878 {
3c997c4b
AW
879 SCM fallback = scm_string_append
880 (scm_list_3 (*scm_loc_compile_fallback_path,
e4f6e855 881 canonical_suffix (full_filename),
3c997c4b
AW
882 scm_car (*scm_loc_load_compiled_extensions)));
883 if (scm_is_true (scm_stat (fallback, SCM_BOOL_F)))
628132c5
AW
884 {
885 compiled_filename = fallback;
886 compiled_is_fallback = 1;
887 }
5ea401bf
AW
888 }
889
22f4ee48 890 if (scm_is_false (full_filename) && scm_is_false (compiled_filename))
0fb81f95
AW
891 {
892 if (scm_is_true (exception_on_not_found))
893 SCM_MISC_ERROR ("Unable to find file ~S in load path",
894 scm_list_1 (filename));
895 else
896 return SCM_BOOL_F;
897 }
22f4ee48 898
dcada7d8
AW
899 if (!scm_is_false (hook))
900 scm_call_1 (hook, (scm_is_true (full_filename)
901 ? full_filename : compiled_filename));
902
1d022387
AW
903 if (scm_is_false (full_filename)
904 || (scm_is_true (compiled_filename)
535fb833 905 && compiled_is_fresh (full_filename, compiled_filename)))
22f4ee48
AW
906 return scm_load_compiled_with_vm (compiled_filename);
907
628132c5
AW
908 /* Perhaps there was the installed .go that was stale, but our fallback is
909 fresh. Let's try that. Duplicating code, but perhaps that's OK. */
910
911 if (!compiled_is_fallback
912 && scm_is_true (*scm_loc_compile_fallback_path)
1e56cff2 913 && scm_is_false (*scm_loc_fresh_auto_compile)
628132c5
AW
914 && scm_is_pair (*scm_loc_load_compiled_extensions)
915 && scm_is_string (scm_car (*scm_loc_load_compiled_extensions)))
916 {
917 SCM fallback = scm_string_append
918 (scm_list_3 (*scm_loc_compile_fallback_path,
e4f6e855 919 canonical_suffix (full_filename),
628132c5
AW
920 scm_car (*scm_loc_load_compiled_extensions)));
921 if (scm_is_true (scm_stat (fallback, SCM_BOOL_F))
535fb833 922 && compiled_is_fresh (full_filename, fallback))
628132c5
AW
923 {
924 scm_puts (";;; found fresh local cache at ", scm_current_error_port ());
925 scm_display (fallback, scm_current_error_port ());
926 scm_newline (scm_current_error_port ());
5950cc3f 927 return scm_load_compiled_with_vm (fallback);
628132c5 928 }
3c997c4b 929 }
628132c5
AW
930
931 /* Otherwise, we bottom out here. */
22f4ee48 932 {
6f06e8d3 933 SCM freshly_compiled = scm_try_auto_compile (full_filename);
22f4ee48 934
628132c5
AW
935 if (scm_is_true (freshly_compiled))
936 return scm_load_compiled_with_vm (freshly_compiled);
22f4ee48 937 else
628132c5 938 return scm_primitive_load (full_filename);
22f4ee48 939 }
06721500 940}
1bbd0b84 941#undef FUNC_NAME
06721500 942
c519b272
MV
943SCM
944scm_c_primitive_load_path (const char *filename)
945{
31ab99de 946 return scm_primitive_load_path (scm_from_locale_string (filename));
c519b272
MV
947}
948
5f161164
AW
949void
950scm_init_eval_in_scheme (void)
951{
952 SCM eval_scm, eval_go;
953 eval_scm = scm_search_path (*scm_loc_load_path,
954 scm_from_locale_string ("ice-9/eval.scm"),
955 SCM_EOL);
956 eval_go = scm_search_path (*scm_loc_load_compiled_path,
957 scm_from_locale_string ("ice-9/eval.go"),
958 SCM_EOL);
959
960 if (scm_is_true (eval_scm) && scm_is_true (eval_go)
961 && compiled_is_fresh (eval_scm, eval_go))
962 scm_load_compiled_with_vm (eval_go);
ed1bf2c8
AW
963 else
964 /* if we have no eval.go, we shouldn't load any compiled code at all */
965 *scm_loc_load_compiled_path = SCM_EOL;
5f161164
AW
966}
967
06721500 968\f
e151bee6 969/* Information about the build environment. */
06721500 970
d7a22073
LC
971SCM_VARIABLE_INIT (sys_host_type, "%host-type",
972 scm_from_locale_string (HOST_TYPE));
973
974
e151bee6
JB
975/* Initialize the scheme variable %guile-build-info, based on data
976 provided by the Makefile, via libpath.h. */
977static void
978init_build_info ()
979{
980 static struct { char *name; char *value; } info[] = SCM_BUILD_INFO;
86d31dfe 981 SCM *loc = SCM_VARIABLE_LOC (scm_c_define ("%guile-build-info", SCM_EOL));
c014a02e 982 unsigned long i;
e151bee6
JB
983
984 for (i = 0; i < (sizeof (info) / sizeof (info[0])); i++)
cc95e00a
MV
985 {
986 SCM key = scm_from_locale_symbol (info[i].name);
987 SCM val = scm_from_locale_string (info[i].value);
988 *loc = scm_acons (key, val, *loc);
989 }
26ac1e3f
AW
990#ifdef PACKAGE_PACKAGER
991 *loc = scm_acons (scm_from_latin1_symbol ("packager"),
992 scm_from_latin1_string (PACKAGE_PACKAGER),
993 *loc);
994#endif
995#ifdef PACKAGE_PACKAGER_VERSION
996 *loc = scm_acons (scm_from_latin1_symbol ("packager-version"),
997 scm_from_latin1_string (PACKAGE_PACKAGER_VERSION),
998 *loc);
999#endif
1000#ifdef PACKAGE_PACKAGER_BUG_REPORTS
1001 *loc = scm_acons (scm_from_latin1_symbol ("packager-bug-reports"),
1002 scm_from_latin1_string (PACKAGE_PACKAGER_BUG_REPORTS),
1003 *loc);
1004#endif
e151bee6
JB
1005}
1006
e151bee6 1007\f
0f2d19dd
JB
1008void
1009scm_init_load ()
0f2d19dd 1010{
f39448c5 1011 scm_listofnullstr = scm_list_1 (scm_nullstr);
86d31dfe 1012 scm_loc_load_path = SCM_VARIABLE_LOC (scm_c_define ("%load-path", SCM_EOL));
26544b96 1013 scm_loc_load_extensions
86d31dfe 1014 = SCM_VARIABLE_LOC (scm_c_define ("%load-extensions",
cc95e00a
MV
1015 scm_list_2 (scm_from_locale_string (".scm"),
1016 scm_nullstr)));
5b197db8
AW
1017 scm_loc_load_compiled_path
1018 = SCM_VARIABLE_LOC (scm_c_define ("%load-compiled-path", SCM_EOL));
22f4ee48
AW
1019 scm_loc_load_compiled_extensions
1020 = SCM_VARIABLE_LOC (scm_c_define ("%load-compiled-extensions",
1021 scm_list_1 (scm_from_locale_string (".go"))));
86d31dfe 1022 scm_loc_load_hook = SCM_VARIABLE_LOC (scm_c_define ("%load-hook", SCM_BOOL_F));
06721500 1023
5ea401bf
AW
1024 scm_loc_compile_fallback_path
1025 = SCM_VARIABLE_LOC (scm_c_define ("%compile-fallback-path", SCM_BOOL_F));
6f06e8d3
AW
1026 scm_loc_load_should_auto_compile
1027 = SCM_VARIABLE_LOC (scm_c_define ("%load-should-auto-compile", SCM_BOOL_F));
1e56cff2
AW
1028 scm_loc_fresh_auto_compile
1029 = SCM_VARIABLE_LOC (scm_c_define ("%fresh-auto-compile", SCM_BOOL_F));
5ea401bf 1030
ec3a8ace 1031 the_reader = scm_make_fluid ();
8b039053 1032 scm_fluid_set_x (the_reader, SCM_BOOL_F);
ec3a8ace
NJ
1033 scm_c_define("current-reader", the_reader);
1034
a6029b97
AW
1035 scm_c_define ("load-compiled",
1036 scm_c_make_gsubr ("load-compiled/vm", 1, 0, 0,
1037 scm_load_compiled_with_vm));
1038
e151bee6
JB
1039 init_build_info ();
1040
a0599745 1041#include "libguile/load.x"
0f2d19dd 1042}
89e00824 1043
6128f34c 1044void
6f06e8d3 1045scm_init_load_should_auto_compile ()
6128f34c 1046{
1e56cff2
AW
1047 char *auto_compile = getenv ("GUILE_AUTO_COMPILE");
1048
1049 if (auto_compile && strcmp (auto_compile, "0") == 0)
1050 {
1051 *scm_loc_load_should_auto_compile = SCM_BOOL_F;
1052 *scm_loc_fresh_auto_compile = SCM_BOOL_F;
1053 }
1054 /* Allow "freshen" also. */
1055 else if (auto_compile && strncmp (auto_compile, "fresh", 5) == 0)
1056 {
1057 *scm_loc_load_should_auto_compile = SCM_BOOL_T;
1058 *scm_loc_fresh_auto_compile = SCM_BOOL_T;
1059 }
1060 else
1061 {
1062 *scm_loc_load_should_auto_compile = SCM_BOOL_T;
1063 *scm_loc_fresh_auto_compile = SCM_BOOL_F;
1064 }
6128f34c
AW
1065}
1066
1067
1068
89e00824
ML
1069/*
1070 Local Variables:
1071 c-file-style: "gnu"
1072 End:
1073*/