* boot-9.scm (load): Simplified; primitive-load does most of this
[bpt/guile.git] / libguile / load.c
CommitLineData
0f2d19dd
JB
1/* Copyright (C) 1995,1996 Free Software Foundation, Inc.
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
15 * the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
16 *
17 * As a special exception, the Free Software Foundation gives permission
18 * for additional uses of the text contained in its release of GUILE.
19 *
20 * The exception is that, if you link the GUILE library with other files
21 * to produce an executable, this does not by itself cause the
22 * resulting executable to be covered by the GNU General Public License.
23 * Your use of that executable is in no way restricted on account of
24 * linking the GUILE library code into it.
25 *
26 * This exception does not however invalidate any other reasons why
27 * the executable file might be covered by the GNU General Public License.
28 *
29 * This exception applies only to the code released by the
30 * Free Software Foundation under the name GUILE. If you copy
31 * code from other Free Software Foundation releases into a copy of
32 * GUILE, as the General Public License permits, the exception does
33 * not apply to the code that you add in this way. To avoid misleading
34 * anyone as to the status of such modified files, you must delete
35 * this exception notice from them.
36 *
37 * If you write modifications of your own for GUILE, it is your choice
38 * whether to permit this exception to apply to your modifications.
39 * If you do not wish that, delete this exception notice.
40 */
41\f
42
43#include <stdio.h>
44#include "_scm.h"
06721500 45#include "libpath.h"
20e6290e
JB
46#include "fports.h"
47#include "read.h"
48#include "eval.h"
49
50#include "load.h"
06721500
JB
51
52#include <sys/types.h>
53#include <sys/stat.h>
54
55#ifdef HAVE_UNISTD_H
56#include <unistd.h>
57#endif /* HAVE_UNISTD_H */
58
59#ifndef R_OK
60#define R_OK 4
61#endif
0f2d19dd
JB
62
63\f
06721500 64/* Loading a file, given an absolute filename. */
0f2d19dd 65
523f5266 66SCM_PROC(s_primitive_load, "primitive-load", 1, 2, 0, scm_primitive_load);
0f2d19dd 67SCM
b9d5d654 68scm_primitive_load (filename, case_insensitive_p, sharp)
0f2d19dd 69 SCM filename;
06721500 70 SCM case_insensitive_p;
0f2d19dd 71 SCM sharp;
0f2d19dd 72{
06721500 73 SCM_ASSERT (SCM_NIMP (filename) && SCM_ROSTRINGP (filename), filename,
523f5266 74 SCM_ARG1, s_primitive_load);
0f2d19dd
JB
75 {
76 SCM form, port;
77 port = scm_open_file (filename,
78 scm_makfromstr ("r", (scm_sizet) sizeof (char), 0));
0f2d19dd
JB
79 while (1)
80 {
06721500 81 form = scm_read (port, case_insensitive_p, sharp);
0f2d19dd
JB
82 if (SCM_EOF_VAL == form)
83 break;
84 scm_eval_x (form);
85 }
86 scm_close_port (port);
87 }
b59b97ba 88 return SCM_UNSPECIFIED;
0f2d19dd
JB
89}
90
91\f
06721500 92/* Initializing the load path, and searching it. */
0f2d19dd 93
06721500
JB
94static SCM *scm_loc_load_path;
95
96/* Initialize the global variable %load-path, given the value of the
97 LIBRARY_PATH preprocessor symbol and the SCHEME_LOAD_PATH
98 environment variable. */
0f2d19dd 99void
06721500
JB
100scm_init_load_path ()
101{
102 SCM path = SCM_EOL;
103
104#ifdef LIBRARY_PATH
105 path = scm_cons (scm_makfrom0str (LIBRARY_PATH), path);
106#endif /* LIBRARY_PATH */
107
108 {
109 char *path_string = getenv ("SCHEME_LOAD_PATH");
110
111 if (path_string && path_string[0] != '\0')
112 {
113 char *scan, *elt_end;
114
115 /* Scan backwards from the end of the string, to help
116 construct the list in the right order. */
117 scan = elt_end = path_string + strlen (path_string);
118 do {
119 /* Scan back to the beginning of the current element. */
120 do scan--;
121 while (scan >= path_string && *scan != ':');
122 path = scm_cons (scm_makfromstr (scan + 1, elt_end - (scan + 1), 0),
123 path);
124 elt_end = scan;
125 } while (scan >= path_string);
126 }
127 }
128
129 *scm_loc_load_path = path;
130}
131
132
133/* Search %load-path for a directory containing a file named FILENAME.
134 The file must be readable, and not a directory.
135 If we find one, return its full filename; otherwise, return #f. */
136SCM_PROC(s_sys_search_load_path, "%search-load-path", 1, 0, 0, scm_sys_search_load_path);
137SCM
138scm_sys_search_load_path (filename)
139 SCM filename;
140{
141 SCM path = *scm_loc_load_path;
142 char *buf;
143 int buf_size;
144 int filename_len;
145
146 SCM_ASSERT (SCM_NIMP (filename) && SCM_ROSTRINGP (filename), filename,
147 SCM_ARG1, s_sys_search_load_path);
148 filename_len = SCM_ROLENGTH (filename);
149
150 SCM_DEFER_INTS;
151
152 buf_size = 80;
153 buf = scm_must_malloc (buf_size, s_sys_search_load_path);
154
155 while (SCM_NIMP (path) && SCM_CONSP (path))
156 {
157 SCM elt = SCM_CAR (path);
158 if (SCM_NIMP (elt) && SCM_ROSTRINGP (elt))
159 {
160 int len = SCM_ROLENGTH (elt) + 1 + filename_len;
161
162 if (len + 1 > buf_size)
163 {
164 int old_size = buf_size;
165 buf_size = len + 50;
166 buf = scm_must_realloc (buf, old_size, buf_size,
167 s_sys_search_load_path);
168 }
169
170 memcpy (buf, SCM_ROCHARS (elt), SCM_ROLENGTH (elt));
171 buf[SCM_ROLENGTH (elt)] = '/';
172 memcpy (buf + SCM_ROLENGTH (elt) + 1,
173 SCM_ROCHARS (filename), filename_len);
174 buf[len] = '\0';
175
176 {
177 struct stat mode;
178
179 if (stat (buf, &mode) >= 0
180 && ! (mode.st_mode & S_IFDIR)
181 && access (buf, R_OK) == 0)
182 {
183 SCM result = scm_makfromstr (buf, len, 0);
184 scm_must_free (buf);
185 SCM_ALLOW_INTS;
186 return result;
187 }
188 }
189 }
190
191 path = SCM_CDR (path);
192 }
193
194 scm_must_free (buf);
195 SCM_ALLOW_INTS;
196 return SCM_BOOL_F;
197}
198
199
523f5266 200SCM_PROC(s_primitive_load_path, "primitive-load-path", 1, 2, 0,scm_primitive_load_path);
06721500 201SCM
b9d5d654 202scm_primitive_load_path (filename, case_insensitive_p, sharp)
06721500
JB
203 SCM filename;
204 SCM case_insensitive_p;
205 SCM sharp;
206{
207 SCM full_filename = scm_sys_search_load_path (filename);
dbece3a2
GH
208 if (SCM_FALSEP (full_filename))
209 {
523f5266
GH
210 scm_misc_error (s_primitive_load_path,
211 "Unable to find file %S in %S",
212 scm_listify (filename, *scm_loc_load_path,
213 SCM_UNDEFINED));
dbece3a2 214 }
b9d5d654 215 return scm_primitive_load (full_filename, case_insensitive_p, sharp);
06721500
JB
216}
217
218\f
219
0f2d19dd
JB
220void
221scm_init_load ()
0f2d19dd 222{
25d8012c 223 scm_loc_load_path = SCM_CDRLOC(scm_sysintern("%load-path", SCM_EOL));
06721500 224
0f2d19dd
JB
225#include "load.x"
226}