*** empty log message ***
[bpt/guile.git] / libguile / load.c
CommitLineData
af04791a 1/* Copyright (C) 1995,1996,1998,1999 Free Software Foundation, Inc.
0f2d19dd
JB
2 *
3 * This program is free software; you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License as published by
5 * the Free Software Foundation; either version 2, or (at your option)
6 * any later version.
7 *
8 * This program 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
11 * GNU General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License
14 * along with this software; see the file COPYING. If not, write to
82892bed
JB
15 * the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
16 * Boston, MA 02111-1307 USA
0f2d19dd
JB
17 *
18 * As a special exception, the Free Software Foundation gives permission
19 * for additional uses of the text contained in its release of GUILE.
20 *
21 * The exception is that, if you link the GUILE library with other files
22 * to produce an executable, this does not by itself cause the
23 * resulting executable to be covered by the GNU General Public License.
24 * Your use of that executable is in no way restricted on account of
25 * linking the GUILE library code into it.
26 *
27 * This exception does not however invalidate any other reasons why
28 * the executable file might be covered by the GNU General Public License.
29 *
30 * This exception applies only to the code released by the
31 * Free Software Foundation under the name GUILE. If you copy
32 * code from other Free Software Foundation releases into a copy of
33 * GUILE, as the General Public License permits, the exception does
34 * not apply to the code that you add in this way. To avoid misleading
35 * anyone as to the status of such modified files, you must delete
36 * this exception notice from them.
37 *
38 * If you write modifications of your own for GUILE, it is your choice
39 * whether to permit this exception to apply to your modifications.
82892bed 40 * If you do not wish that, delete this exception notice. */
1bbd0b84
GB
41
42/* Software engineering face-lift by Greg J. Badros, 11-Dec-1999,
43 gjb@cs.washington.edu, http://www.cs.washington.edu/homes/gjb */
44
0f2d19dd
JB
45\f
46
47#include <stdio.h>
48#include "_scm.h"
06721500 49#include "libpath.h"
20e6290e
JB
50#include "fports.h"
51#include "read.h"
52#include "eval.h"
b35d06a4 53#include "throw.h"
e151bee6 54#include "alist.h"
d7834b91 55#include "dynwind.h"
20e6290e 56
1bbd0b84 57#include "scm_validate.h"
20e6290e 58#include "load.h"
06721500
JB
59
60#include <sys/types.h>
61#include <sys/stat.h>
62
63#ifdef HAVE_UNISTD_H
64#include <unistd.h>
65#endif /* HAVE_UNISTD_H */
66
67#ifndef R_OK
68#define R_OK 4
69#endif
0f2d19dd
JB
70
71\f
06721500 72/* Loading a file, given an absolute filename. */
0f2d19dd 73
26544b96
JB
74/* Hook to run when we load a file, perhaps to announce the fact somewhere.
75 Applied to the full name of the file. */
76static SCM *scm_loc_load_hook;
77
c7023c69 78static void
d7834b91
MD
79swap_port (void *data)
80{
81 SCM *save_port = data, tmp = scm_cur_loadp;
82 scm_cur_loadp = *save_port;
83 *save_port = tmp;
84}
85
86static SCM
87load (void *data)
88{
89 SCM port = (SCM) data, form;
90 while (1)
91 {
92 form = scm_read (port);
93 if (SCM_EOF_OBJECT_P (form))
94 break;
95 scm_eval_x (form);
96 }
97 return SCM_UNSPECIFIED;
98}
99
3b3b36dd 100SCM_DEFINE (scm_primitive_load, "primitive-load", 1, 0, 0,
1bbd0b84 101 (SCM filename),
4079f87e
GB
102"Load @var{file} and evaluate its contents in the top-level environment.
103The load paths are not searched; @var{file} must either be a full
104pathname or be a pathname relative to the current directory. If the
105variable @code{%load-hook} is defined, it should be bound to a procedure
106that will be called before any code is loaded. See documentation for
107@code{%load-hook} later in this section.")
1bbd0b84 108#define FUNC_NAME s_scm_primitive_load
0f2d19dd 109{
26544b96 110 SCM hook = *scm_loc_load_hook;
3b3b36dd 111 SCM_VALIDATE_ROSTRING (1,filename);
26544b96
JB
112 SCM_ASSERT (hook == SCM_BOOL_F
113 || (scm_procedure_p (hook) == SCM_BOOL_T),
114 hook, "value of %load-hook is neither a procedure nor #f",
1bbd0b84 115 FUNC_NAME);
26544b96
JB
116
117 if (hook != SCM_BOOL_F)
118 scm_apply (hook, scm_listify (filename, SCM_UNDEFINED), SCM_EOL);
119
1bbd0b84 120 { /* scope */
d7834b91 121 SCM port, save_port;
0f2d19dd
JB
122 port = scm_open_file (filename,
123 scm_makfromstr ("r", (scm_sizet) sizeof (char), 0));
d7834b91
MD
124 save_port = port;
125 scm_internal_dynamic_wind (swap_port,
126 load,
127 swap_port,
128 (void *) port,
129 &save_port);
0f2d19dd
JB
130 scm_close_port (port);
131 }
b59b97ba 132 return SCM_UNSPECIFIED;
0f2d19dd 133}
1bbd0b84 134#undef FUNC_NAME
0f2d19dd
JB
135
136\f
3feedb00
MD
137/* Builtin path to scheme library files. */
138#ifdef SCM_PKGDATA_DIR
a1ec6916 139SCM_DEFINE (scm_sys_package_data_dir, "%package-data-dir", 0, 0, 0,
1bbd0b84 140 (),
4079f87e
GB
141"Return the name of the directory where Scheme packages, modules and
142libraries are kept. On most Unix systems, this will be
143@samp{/usr/local/share/guile}.")
1bbd0b84 144#define FUNC_NAME s_scm_sys_package_data_dir
3feedb00
MD
145{
146 return scm_makfrom0str (SCM_PKGDATA_DIR);
147}
1bbd0b84 148#undef FUNC_NAME
3feedb00
MD
149#endif /* SCM_PKGDATA_DIR */
150
e8e9b690 151#ifdef SCM_LIBRARY_DIR
a1ec6916 152SCM_DEFINE (scm_sys_library_dir, "%library-dir", 0,0,0,
e8e9b690
GB
153 (),
154"Return the directory where the Guile Scheme library files are installed.
155E.g., may return \"/usr/share/guile/1.3.5\".")
156#define FUNC_NAME s_scm_sys_library_dir
157{
158 return scm_makfrom0str(SCM_LIBRARY_DIR);
159}
160#undef FUNC_NAME
161#endif /* SCM_LIBRARY_DIR */
162
163#ifdef SCM_SITE_DIR
a1ec6916 164SCM_DEFINE (scm_sys_site_dir, "%site-dir", 0,0,0,
e8e9b690
GB
165 (),
166"Return the directory where the Guile site files are installed.
167E.g., may return \"/usr/share/guile/site\".")
168#define FUNC_NAME s_scm_sys_site_dir
169{
170 return scm_makfrom0str(SCM_SITE_DIR);
171}
172#undef FUNC_NAME
173#endif /* SCM_SITE_DIR */
174
175
176
3feedb00 177\f
06721500 178/* Initializing the load path, and searching it. */
0f2d19dd 179
26544b96 180/* List of names of directories we search for files to load. */
06721500
JB
181static SCM *scm_loc_load_path;
182
26544b96
JB
183/* List of extensions we try adding to the filenames. */
184static SCM *scm_loc_load_extensions;
185
01cddfc1
JB
186
187/* Parse the null-terminated string PATH as if it were a standard path
188 environment variable (i.e. a colon-separated list of strings), and
189 prepend the elements to TAIL. */
190SCM
04e8fb0a 191scm_internal_parse_path (char *path, SCM tail)
01cddfc1
JB
192{
193 if (path && path[0] != '\0')
194 {
195 char *scan, *elt_end;
196
197 /* Scan backwards from the end of the string, to help
198 construct the list in the right order. */
199 scan = elt_end = path + strlen (path);
200 do {
201 /* Scan back to the beginning of the current element. */
202 do scan--;
203 while (scan >= path && *scan != ':');
204 tail = scm_cons (scm_makfromstr (scan + 1, elt_end - (scan + 1), 0),
205 tail);
206 elt_end = scan;
207 } while (scan >= path);
208 }
209
210 return tail;
211}
212
213
a1ec6916 214SCM_DEFINE (scm_parse_path, "parse-path", 1, 1, 0,
1bbd0b84
GB
215 (SCM path, SCM tail),
216"")
217#define FUNC_NAME s_scm_parse_path
04e8fb0a 218{
0c95b57d 219 SCM_ASSERT (SCM_FALSEP (path) || (SCM_ROSTRINGP (path)),
04e8fb0a 220 path,
1bbd0b84 221 SCM_ARG1, FUNC_NAME);
04e8fb0a
MD
222 if (SCM_UNBNDP (tail))
223 tail = SCM_EOL;
224 return (SCM_FALSEP (path)
225 ? tail
226 : scm_internal_parse_path (SCM_ROCHARS (path), tail));
227}
1bbd0b84 228#undef FUNC_NAME
04e8fb0a
MD
229
230
06721500 231/* Initialize the global variable %load-path, given the value of the
3feedb00 232 SCM_SITE_DIR and SCM_LIBRARY_DIR preprocessor symbols and the
01cddfc1 233 GUILE_LOAD_PATH environment variable. */
0f2d19dd 234void
06721500
JB
235scm_init_load_path ()
236{
237 SCM path = SCM_EOL;
238
3feedb00 239#ifdef SCM_LIBRARY_DIR
55407879
TP
240 path = scm_listify (scm_makfrom0str (SCM_SITE_DIR),
241 scm_makfrom0str (SCM_LIBRARY_DIR),
242 scm_makfrom0str (SCM_PKGDATA_DIR),
243 SCM_UNDEFINED);
3feedb00 244#endif /* SCM_LIBRARY_DIR */
06721500 245
04e8fb0a 246 path = scm_internal_parse_path (getenv ("GUILE_LOAD_PATH"), path);
01cddfc1 247
06721500
JB
248 *scm_loc_load_path = path;
249}
250
04e8fb0a 251SCM scm_listofnullstr;
06721500 252
04e8fb0a 253/* Search PATH for a directory containing a file named FILENAME.
06721500 254 The file must be readable, and not a directory.
26544b96 255 If we find one, return its full filename; otherwise, return #f.
56384176
JB
256 If FILENAME is absolute, return it unchanged.
257 If given, EXTENSIONS is a list of strings; for each directory
258 in PATH, we search for FILENAME concatenated with each EXTENSION. */
3b3b36dd 259SCM_DEFINE (scm_search_path, "search-path", 2, 1, 0,
1bbd0b84
GB
260 (SCM path, SCM filename, SCM extensions),
261"")
262#define FUNC_NAME s_scm_search_path
06721500 263{
56384176 264 char *filename_chars;
06721500 265 int filename_len;
56384176
JB
266 size_t max_path_len; /* maximum length of any PATH element */
267 size_t max_ext_len; /* maximum length of any EXTENSIONS element */
06721500 268
3b3b36dd
GB
269 SCM_VALIDATE_LIST (1,path);
270 SCM_VALIDATE_ROSTRING (2,filename);
04e8fb0a 271 if (SCM_UNBNDP (extensions))
56384176 272 extensions = SCM_EOL;
04e8fb0a 273 else
3b3b36dd 274 SCM_VALIDATE_LIST (3,extensions);
56384176
JB
275
276 filename_chars = SCM_ROCHARS (filename);
06721500
JB
277 filename_len = SCM_ROLENGTH (filename);
278
26544b96 279 /* If FILENAME is absolute, return it unchanged. */
56384176 280 if (filename_len >= 1 && filename_chars[0] == '/')
26544b96
JB
281 return filename;
282
283 /* Find the length of the longest element of path. */
284 {
285 SCM walk;
286
287 max_path_len = 0;
288 for (walk = path; SCM_NIMP (walk); walk = SCM_CDR (walk))
289 {
290 SCM elt = SCM_CAR (walk);
0c95b57d 291 SCM_ASSERT (SCM_ROSTRINGP (elt), elt,
04e8fb0a 292 "path is not a list of strings",
1bbd0b84 293 FUNC_NAME);
0a74e31d
MD
294 if (SCM_ROLENGTH (elt) > max_path_len)
295 max_path_len = SCM_ROLENGTH (elt);
26544b96
JB
296 }
297 }
298
56384176
JB
299 /* If FILENAME has an extension, don't try to add EXTENSIONS to it. */
300 {
301 char *endp;
302
303 for (endp = filename_chars + filename_len - 1;
304 endp >= filename_chars;
305 endp--)
306 {
307 if (*endp == '.')
308 {
309 /* This filename already has an extension, so cancel the
310 list of extensions. */
311 extensions = SCM_EOL;
312 break;
313 }
314 else if (*endp == '/')
315 /* This filename has no extension, so keep the current list
316 of extensions. */
317 break;
318 }
319 }
320
26544b96
JB
321 /* Find the length of the longest element of the load extensions
322 list. */
1bbd0b84 323 { /* scope */
26544b96
JB
324 SCM walk;
325
326 max_ext_len = 0;
04e8fb0a 327 for (walk = extensions; SCM_NIMP (walk); walk = SCM_CDR (walk))
26544b96
JB
328 {
329 SCM elt = SCM_CAR (walk);
0c95b57d 330 SCM_ASSERT (SCM_ROSTRINGP (elt), elt,
04e8fb0a 331 "extension list is not a list of strings",
1bbd0b84 332 FUNC_NAME);
0a74e31d
MD
333 if (SCM_ROLENGTH (elt) > max_ext_len)
334 max_ext_len = SCM_ROLENGTH (elt);
26544b96
JB
335 }
336 }
337
06721500
JB
338 SCM_DEFER_INTS;
339
1bbd0b84 340 { /* scope */
56384176
JB
341 SCM result = SCM_BOOL_F;
342 int buf_size = max_path_len + 1 + filename_len + max_ext_len + 1;
1bbd0b84 343 char *buf = SCM_MUST_MALLOC (buf_size);
06721500 344
56384176
JB
345 /* This simplifies the loop below a bit. */
346 if (SCM_NULLP (extensions))
347 extensions = scm_listofnullstr;
0a74e31d 348
56384176
JB
349 /* Try every path element. At this point, we know the path is a
350 proper list of strings. */
351 for (; SCM_NIMP (path); path = SCM_CDR (path))
352 {
353 int len;
354 SCM dir = SCM_CAR (path);
355 SCM exts;
356
357 /* Concatenate the path name and the filename. */
358 len = SCM_ROLENGTH (dir);
359 memcpy (buf, SCM_ROCHARS (dir), len);
360 if (len >= 1 && buf[len - 1] != '/')
361 buf[len++] = '/';
362 memcpy (buf + len, filename_chars, filename_len);
363 len += filename_len;
364
365 /* Try every extension. At this point, we know the extension
366 list is a proper, nonempty list of strings. */
367 for (exts = extensions; SCM_NIMP (exts); exts = SCM_CDR (exts))
368 {
369 SCM ext = SCM_CAR (exts);
370 int ext_len = SCM_ROLENGTH (ext);
371 struct stat mode;
372
373 /* Concatenate the extension. */
374 memcpy (buf + len, SCM_ROCHARS (ext), ext_len);
375 buf[len + ext_len] = '\0';
376
377 /* If the file exists at all, we should return it. If the
378 file is inaccessible, then that's an error. */
379 if (stat (buf, &mode) == 0
380 && ! (mode.st_mode & S_IFDIR))
381 {
382 result = scm_makfromstr (buf, len + ext_len, 0);
383 goto end;
384 }
385 }
386 }
387
388 end:
389 scm_must_free (buf);
390 scm_done_malloc (- buf_size);
391 SCM_ALLOW_INTS;
392 return result;
393 }
06721500 394}
1bbd0b84 395#undef FUNC_NAME
06721500
JB
396
397
04e8fb0a
MD
398/* Search %load-path for a directory containing a file named FILENAME.
399 The file must be readable, and not a directory.
400 If we find one, return its full filename; otherwise, return #f.
401 If FILENAME is absolute, return it unchanged. */
3b3b36dd 402SCM_DEFINE (scm_sys_search_load_path, "%search-load-path", 1, 0, 0,
1bbd0b84 403 (SCM filename),
4079f87e
GB
404"Search @var{%load-path} for @var{file}, which must be readable by the
405current user. If @var{file} is found in the list of paths to search or
406is an absolute pathname, return its full pathname. Otherwise, return
407@code{#f}. Filenames may have any of the optional extensions in the
408@code{%load-extensions} list; @code{%search-load-path} will try each
409extension automatically.")
1bbd0b84 410#define FUNC_NAME s_scm_sys_search_load_path
04e8fb0a
MD
411{
412 SCM path = *scm_loc_load_path;
413 SCM exts = *scm_loc_load_extensions;
3b3b36dd 414 SCM_VALIDATE_ROSTRING (1,filename);
1bbd0b84 415
04e8fb0a 416 SCM_ASSERT (scm_ilength (path) >= 0, path, "load path is not a proper list",
1bbd0b84 417 FUNC_NAME);
04e8fb0a
MD
418 SCM_ASSERT (scm_ilength (exts) >= 0, exts,
419 "load extension list is not a proper list",
1bbd0b84
GB
420 FUNC_NAME);
421 return scm_search_path (path, filename, exts);
04e8fb0a 422}
1bbd0b84 423#undef FUNC_NAME
04e8fb0a
MD
424
425
3b3b36dd 426SCM_DEFINE (scm_primitive_load_path, "primitive-load-path", 1, 0, 0,
1bbd0b84 427 (SCM filename),
4079f87e
GB
428"Search @var{%load-path} for @var{file} and load it into the top-level
429environment. If @var{file} is a relative pathname and is not found in
430the list of search paths, an error is signalled.")
1bbd0b84 431#define FUNC_NAME s_scm_primitive_load_path
06721500 432{
26544b96
JB
433 SCM full_filename;
434
3b3b36dd 435 SCM_VALIDATE_ROSTRING (1,filename);
26544b96
JB
436
437 full_filename = scm_sys_search_load_path (filename);
438
dbece3a2
GH
439 if (SCM_FALSEP (full_filename))
440 {
0a74e31d 441 int absolute = (SCM_ROLENGTH (filename) >= 1
26544b96 442 && SCM_ROCHARS (filename)[0] == '/');
5d2d2ffc 443 SCM_MISC_ERROR ((absolute
70d63753
GB
444 ? "Unable to load file ~S"
445 : "Unable to find file ~S in load path"),
26544b96 446 scm_listify (filename, SCM_UNDEFINED));
dbece3a2 447 }
26544b96 448
deca31e1 449 return scm_primitive_load (full_filename);
06721500 450}
1bbd0b84 451#undef FUNC_NAME
06721500 452
b35d06a4
MD
453/* The following function seems trivial - and indeed it is. Its
454 * existence is motivated by its ability to evaluate expressions
455 * without copying them first (as is done in "eval").
456 */
457
458SCM_SYMBOL (scm_end_of_file_key, "end-of-file");
459
a1ec6916 460SCM_DEFINE (scm_read_and_eval_x, "read-and-eval!", 0, 1, 0,
1bbd0b84 461 (SCM port),
4079f87e
GB
462"Read a form from @var{port} (standard input by default), and evaluate it
463(memoizing it in the process) in the top-level environment. If no data
464is left to be read from @var{port}, an @code{end-of-file} error is
465signalled.")
1bbd0b84 466#define FUNC_NAME s_scm_read_and_eval_x
b35d06a4 467{
deca31e1 468 SCM form = scm_read (port);
0c32d76c 469 if (SCM_EOF_OBJECT_P (form))
b35d06a4
MD
470 scm_ithrow (scm_end_of_file_key, SCM_EOL, 1);
471 return scm_eval_x (form);
472}
1bbd0b84 473#undef FUNC_NAME
b35d06a4 474
06721500 475\f
e151bee6 476/* Information about the build environment. */
06721500 477
e151bee6
JB
478/* Initialize the scheme variable %guile-build-info, based on data
479 provided by the Makefile, via libpath.h. */
480static void
481init_build_info ()
482{
483 static struct { char *name; char *value; } info[] = SCM_BUILD_INFO;
484 SCM *loc = SCM_CDRLOC (scm_sysintern ("%guile-build-info", SCM_EOL));
c7023c69 485 unsigned int i;
e151bee6
JB
486
487 for (i = 0; i < (sizeof (info) / sizeof (info[0])); i++)
488 *loc = scm_acons (SCM_CAR (scm_intern0 (info[i].name)),
489 scm_makfrom0str (info[i].value),
490 *loc);
491}
492
493
494\f
0f2d19dd
JB
495void
496scm_init_load ()
0f2d19dd 497{
04e8fb0a
MD
498 scm_listofnullstr = scm_permanent_object (SCM_LIST1 (scm_nullstr));
499 scm_loc_load_path = SCM_CDRLOC (scm_sysintern ("%load-path", SCM_EOL));
26544b96 500 scm_loc_load_extensions
04e8fb0a 501 = SCM_CDRLOC (scm_sysintern ("%load-extensions",
0a74e31d
MD
502 scm_listify (scm_makfrom0str (".scm"),
503 scm_makfrom0str (""),
04e8fb0a
MD
504 SCM_UNDEFINED)));
505 scm_loc_load_hook = SCM_CDRLOC (scm_sysintern ("%load-hook", SCM_BOOL_F));
06721500 506
e151bee6
JB
507 init_build_info ();
508
0f2d19dd
JB
509#include "load.x"
510}