* load.c (load): Use `scm_selected_module' to compute second arg
[bpt/guile.git] / libguile / modules.c
CommitLineData
152abe96 1/* Copyright (C) 1998, 2000 Free Software Foundation, Inc.
1ffa265b
MD
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, Inc., 59 Temple Place, Suite 330,
16 * Boston, MA 02111-1307 USA
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.
40 * If you do not wish that, delete this exception notice. */
6e8d25a6
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
1ffa265b
MD
45\f
46
a0599745 47#include "libguile/_scm.h"
1ffa265b 48
a0599745
MD
49#include "libguile/eval.h"
50#include "libguile/procprop.h"
152abe96
MD
51#include "libguile/vectors.h"
52#include "libguile/hashtab.h"
53#include "libguile/struct.h"
54#include "libguile/variable.h"
7f763132 55#include "libguile/fluids.h"
1ffa265b 56
a0599745 57#include "libguile/modules.h"
1ffa265b 58
281004cc 59static SCM the_root_module;
c15c33ee 60static SCM root_module_lookup_closure;
281004cc
MD
61
62SCM
63scm_the_root_module ()
64{
65 return SCM_CDR (the_root_module);
66}
67
1ffa265b
MD
68static SCM the_module;
69
70SCM
71scm_selected_module ()
72{
7f763132 73 return scm_fluid_ref (SCM_CDR (the_module));
1ffa265b
MD
74}
75
76static SCM set_current_module;
77
78SCM
79scm_select_module (SCM module)
80{
81 SCM old = scm_selected_module ();
82 scm_apply (SCM_CDR (set_current_module), SCM_LIST1 (module), SCM_EOL);
83 return old;
84}
85
86SCM_SYMBOL (scm_sym_app, "app");
87SCM_SYMBOL (scm_sym_modules, "modules");
88static SCM module_prefix;
89
90static SCM
91scm_module_full_name (SCM name)
92{
54778cd3 93 if (SCM_EQ_P (SCM_CAR (name), scm_sym_app))
1ffa265b
MD
94 return name;
95 else
96 return scm_append (SCM_LIST2 (module_prefix, name));
97}
98
99static SCM make_modules_in;
281004cc 100static SCM beautify_user_module_x;
1ffa265b
MD
101
102SCM
103scm_make_module (SCM name)
104{
105 return scm_apply (SCM_CDR (make_modules_in),
281004cc 106 SCM_LIST2 (scm_the_root_module (),
1ffa265b
MD
107 scm_module_full_name (name)),
108 SCM_EOL);
109}
110
281004cc
MD
111SCM
112scm_ensure_user_module (SCM module)
113{
114 scm_apply (SCM_CDR (beautify_user_module_x), SCM_LIST1 (module), SCM_EOL);
115 return SCM_UNSPECIFIED;
116}
117
1ffa265b
MD
118static SCM module_eval_closure;
119
120SCM
121scm_module_lookup_closure (SCM module)
122{
123 return scm_apply (SCM_CDR (module_eval_closure),
124 SCM_LIST1 (module),
125 SCM_EOL);
126}
127
90184345
MD
128static SCM resolve_module;
129
130SCM
131scm_resolve_module (SCM name)
132{
133 return scm_apply (SCM_CDR (resolve_module), SCM_LIST1 (name), SCM_EOL);
134}
135
281004cc
MD
136static SCM try_module_autoload;
137
138SCM
139scm_load_scheme_module (SCM name)
140{
141 return scm_apply (SCM_CDR (try_module_autoload), SCM_LIST1 (name), SCM_EOL);
142}
143
d164a5af
MD
144/* Environments
145 */
146
147SCM
6e8d25a6 148scm_top_level_env (SCM thunk)
d164a5af
MD
149{
150 if (SCM_IMP (thunk))
151 return SCM_EOL;
152 else
153 return scm_cons (thunk, SCM_EOL);
154}
155
156SCM
157scm_env_top_level (SCM env)
158{
159 while (SCM_NIMP (env))
160 {
161 if (!SCM_CONSP (SCM_CAR (env))
162 && SCM_NFALSEP (scm_procedure_p (SCM_CAR (env))))
c15c33ee 163 return SCM_CAR (env);
d164a5af
MD
164 env = SCM_CDR (env);
165 }
166 return SCM_BOOL_F;
167}
168
169
170SCM_SYMBOL (scm_sym_system_module, "system-module");
171
172SCM
173scm_system_module_env_p (SCM env)
174{
175 SCM proc = scm_env_top_level (env);
176 if (SCM_FALSEP (proc))
c15c33ee 177 proc = root_module_lookup_closure;
d164a5af
MD
178 return ((SCM_NFALSEP (scm_procedure_property (proc,
179 scm_sym_system_module)))
180 ? SCM_BOOL_T
181 : SCM_BOOL_F);
182}
183
152abe96
MD
184/*
185 * C level implementation of the standard eval closure
186 *
187 * This increases loading speed substantially.
188 * The code will be replaced by the low-level environments in next release.
189 */
190
78a3503e
DH
191#define OBARRAY(module) (SCM_PACK (SCM_STRUCT_DATA (module) [0]))
192#define USES(module) (SCM_PACK (SCM_STRUCT_DATA (module) [1]))
193#define BINDER(module) (SCM_PACK (SCM_STRUCT_DATA (module) [2]))
152abe96
MD
194
195static SCM module_make_local_var_x;
196
197static SCM
198module_variable (SCM module, SCM sym)
199{
200 /* 1. Check module obarray */
201 SCM b = scm_hashq_ref (OBARRAY (module), sym, SCM_UNDEFINED);
202 if (SCM_VARIABLEP (b))
203 return b;
204 {
205 SCM binder = BINDER (module);
206 if (SCM_NFALSEP (binder))
207 /* 2. Custom binder */
208 {
209 b = scm_apply (binder,
210 SCM_LIST3 (module, sym, SCM_BOOL_F),
211 SCM_EOL);
212 if (SCM_NFALSEP (b))
213 return b;
214 }
215 }
216 {
217 /* 3. Search the use list */
218 SCM uses = USES (module);
219 while (SCM_CONSP (uses))
220 {
221 b = module_variable (SCM_CAR (uses), sym);
222 if (SCM_NFALSEP (b))
223 return b;
224 uses = SCM_CDR (uses);
225 }
226 return SCM_BOOL_F;
227 }
228}
229
230static SCM f_eval_closure;
231
232static SCM
233eval_closure (SCM cclo, SCM sym, SCM definep)
234{
235 SCM module = SCM_VELTS (cclo) [1];
236 if (SCM_NFALSEP (definep))
237 return scm_apply (SCM_CDR (module_make_local_var_x),
238 SCM_LIST2 (module, sym),
239 SCM_EOL);
240 else
241 return module_variable (module, sym);
242}
243
244SCM_DEFINE (scm_standard_eval_closure, "standard-eval-closure", 1, 0, 0,
245 (SCM module),
246 "")
247#define FUNC_NAME s_scm_standard_eval_closure
248{
78a3503e 249 SCM cclo = scm_makcclo (f_eval_closure, 2);
152abe96
MD
250 SCM_VELTS (cclo) [1] = module;
251 return cclo;
252}
253#undef FUNC_NAME
254
1ffa265b
MD
255void
256scm_init_modules ()
257{
a0599745 258#include "libguile/modules.x"
152abe96
MD
259 module_make_local_var_x = scm_sysintern ("module-make-local-var!",
260 SCM_UNDEFINED);
261 f_eval_closure = scm_make_subr_opt ("eval-closure",
262 scm_tc7_subr_3,
263 eval_closure,
264 0);
1ffa265b
MD
265}
266
267void
268scm_post_boot_init_modules ()
269{
281004cc 270 the_root_module = scm_intern0 ("the-root-module");
1ffa265b
MD
271 the_module = scm_intern0 ("the-module");
272 set_current_module = scm_intern0 ("set-current-module");
273 module_prefix = scm_permanent_object (SCM_LIST2 (scm_sym_app,
274 scm_sym_modules));
275 make_modules_in = scm_intern0 ("make-modules-in");
281004cc 276 beautify_user_module_x = scm_intern0 ("beautify-user-module!");
1ffa265b 277 module_eval_closure = scm_intern0 ("module-eval-closure");
c15c33ee
MD
278 root_module_lookup_closure = scm_permanent_object
279 (scm_module_lookup_closure (SCM_CDR (the_root_module)));
90184345 280 resolve_module = scm_intern0 ("resolve-module");
281004cc 281 try_module_autoload = scm_intern0 ("try-module-autoload");
1ffa265b 282}
89e00824
ML
283
284/*
285 Local Variables:
286 c-file-style: "gnu"
287 End:
288*/