* ports.c (scm_port_for_each): Make a snapshot of the port table
[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 49#include "libguile/eval.h"
fb43bf74 50#include "libguile/smob.h"
a0599745 51#include "libguile/procprop.h"
152abe96
MD
52#include "libguile/vectors.h"
53#include "libguile/hashtab.h"
54#include "libguile/struct.h"
55#include "libguile/variable.h"
7f763132 56#include "libguile/fluids.h"
1ffa265b 57
a0599745 58#include "libguile/modules.h"
1ffa265b 59
e3365c07
MD
60SCM scm_module_system_booted_p = 0;
61
62SCM scm_module_tag;
63
281004cc 64static SCM the_root_module;
c15c33ee 65static SCM root_module_lookup_closure;
281004cc
MD
66
67SCM
68scm_the_root_module ()
69{
70 return SCM_CDR (the_root_module);
71}
72
1ffa265b
MD
73static SCM the_module;
74
75SCM
76scm_selected_module ()
77{
7f763132 78 return scm_fluid_ref (SCM_CDR (the_module));
1ffa265b
MD
79}
80
81static SCM set_current_module;
82
e3365c07
MD
83/* This is the module selected during loading of code. Currently,
84 * this is the same as (interaction-environment), but need not be in
85 * the future.
86 */
87
1ffa265b
MD
88SCM
89scm_select_module (SCM module)
90{
91 SCM old = scm_selected_module ();
92 scm_apply (SCM_CDR (set_current_module), SCM_LIST1 (module), SCM_EOL);
93 return old;
94}
95
e3365c07
MD
96SCM_DEFINE (scm_interaction_environment, "interaction-environment", 0, 0, 0,
97 (),
11768c04
NJ
98 "This procedure returns a specifier for the environment that contains\n"
99 "implementation-defined bindings, typically a superset of those listed in\n"
100 "the report. The intent is that this procedure will return the\n"
101 "environment in which the implementation would evaluate expressions\n"
102 "dynamically typed by the user.")
e3365c07
MD
103#define FUNC_NAME s_scm_interaction_environment
104{
105 return scm_selected_module ();
106}
107#undef FUNC_NAME
108
1ffa265b
MD
109SCM_SYMBOL (scm_sym_app, "app");
110SCM_SYMBOL (scm_sym_modules, "modules");
111static SCM module_prefix;
112
113static SCM
114scm_module_full_name (SCM name)
115{
54778cd3 116 if (SCM_EQ_P (SCM_CAR (name), scm_sym_app))
1ffa265b
MD
117 return name;
118 else
119 return scm_append (SCM_LIST2 (module_prefix, name));
120}
121
122static SCM make_modules_in;
281004cc 123static SCM beautify_user_module_x;
1ffa265b
MD
124
125SCM
126scm_make_module (SCM name)
127{
128 return scm_apply (SCM_CDR (make_modules_in),
281004cc 129 SCM_LIST2 (scm_the_root_module (),
1ffa265b
MD
130 scm_module_full_name (name)),
131 SCM_EOL);
132}
133
281004cc
MD
134SCM
135scm_ensure_user_module (SCM module)
136{
137 scm_apply (SCM_CDR (beautify_user_module_x), SCM_LIST1 (module), SCM_EOL);
138 return SCM_UNSPECIFIED;
139}
140
1ffa265b
MD
141SCM
142scm_module_lookup_closure (SCM module)
143{
e3365c07 144 return SCM_MODULE_EVAL_CLOSURE (module);
1ffa265b
MD
145}
146
90184345
MD
147static SCM resolve_module;
148
149SCM
150scm_resolve_module (SCM name)
151{
152 return scm_apply (SCM_CDR (resolve_module), SCM_LIST1 (name), SCM_EOL);
153}
154
281004cc
MD
155static SCM try_module_autoload;
156
157SCM
158scm_load_scheme_module (SCM name)
159{
160 return scm_apply (SCM_CDR (try_module_autoload), SCM_LIST1 (name), SCM_EOL);
161}
162
e3365c07 163/* Environments */
d164a5af
MD
164
165SCM
6e8d25a6 166scm_top_level_env (SCM thunk)
d164a5af
MD
167{
168 if (SCM_IMP (thunk))
169 return SCM_EOL;
170 else
171 return scm_cons (thunk, SCM_EOL);
172}
173
174SCM
175scm_env_top_level (SCM env)
176{
177 while (SCM_NIMP (env))
178 {
179 if (!SCM_CONSP (SCM_CAR (env))
180 && SCM_NFALSEP (scm_procedure_p (SCM_CAR (env))))
c15c33ee 181 return SCM_CAR (env);
d164a5af
MD
182 env = SCM_CDR (env);
183 }
184 return SCM_BOOL_F;
185}
186
187
188SCM_SYMBOL (scm_sym_system_module, "system-module");
189
190SCM
191scm_system_module_env_p (SCM env)
192{
193 SCM proc = scm_env_top_level (env);
194 if (SCM_FALSEP (proc))
c15c33ee 195 proc = root_module_lookup_closure;
d164a5af
MD
196 return ((SCM_NFALSEP (scm_procedure_property (proc,
197 scm_sym_system_module)))
198 ? SCM_BOOL_T
199 : SCM_BOOL_F);
200}
201
152abe96
MD
202/*
203 * C level implementation of the standard eval closure
204 *
205 * This increases loading speed substantially.
206 * The code will be replaced by the low-level environments in next release.
207 */
208
152abe96
MD
209static SCM module_make_local_var_x;
210
211static SCM
212module_variable (SCM module, SCM sym)
213{
214 /* 1. Check module obarray */
e3365c07 215 SCM b = scm_hashq_ref (SCM_MODULE_OBARRAY (module), sym, SCM_UNDEFINED);
152abe96
MD
216 if (SCM_VARIABLEP (b))
217 return b;
218 {
e3365c07 219 SCM binder = SCM_MODULE_BINDER (module);
152abe96
MD
220 if (SCM_NFALSEP (binder))
221 /* 2. Custom binder */
222 {
223 b = scm_apply (binder,
224 SCM_LIST3 (module, sym, SCM_BOOL_F),
225 SCM_EOL);
226 if (SCM_NFALSEP (b))
227 return b;
228 }
229 }
230 {
231 /* 3. Search the use list */
e3365c07 232 SCM uses = SCM_MODULE_USES (module);
152abe96
MD
233 while (SCM_CONSP (uses))
234 {
235 b = module_variable (SCM_CAR (uses), sym);
236 if (SCM_NFALSEP (b))
237 return b;
238 uses = SCM_CDR (uses);
239 }
240 return SCM_BOOL_F;
241 }
242}
243
e841c3e0 244scm_bits_t scm_tc16_eval_closure;
152abe96 245
fb43bf74
KN
246/* NOTE: This function may be called by a smob application
247 or from another C function directly. */
248SCM
249scm_eval_closure_lookup (SCM eclo, SCM sym, SCM definep)
152abe96 250{
fb43bf74 251 SCM module = SCM_PACK (SCM_SMOB_DATA (eclo));
152abe96
MD
252 if (SCM_NFALSEP (definep))
253 return scm_apply (SCM_CDR (module_make_local_var_x),
254 SCM_LIST2 (module, sym),
255 SCM_EOL);
256 else
257 return module_variable (module, sym);
258}
259
260SCM_DEFINE (scm_standard_eval_closure, "standard-eval-closure", 1, 0, 0,
261 (SCM module),
262 "")
263#define FUNC_NAME s_scm_standard_eval_closure
264{
e841c3e0 265 SCM_RETURN_NEWSMOB (scm_tc16_eval_closure, SCM_UNPACK (module));
152abe96
MD
266}
267#undef FUNC_NAME
268
1ffa265b
MD
269void
270scm_init_modules ()
271{
8dc9439f 272#ifndef SCM_MAGIC_SNARFER
a0599745 273#include "libguile/modules.x"
8dc9439f 274#endif
152abe96
MD
275 module_make_local_var_x = scm_sysintern ("module-make-local-var!",
276 SCM_UNDEFINED);
e841c3e0
KN
277 scm_tc16_eval_closure = scm_make_smob_type ("eval-closure", 0);
278 scm_set_smob_mark (scm_tc16_eval_closure, scm_markcdr);
279 scm_set_smob_apply (scm_tc16_eval_closure, scm_eval_closure_lookup, 2, 0, 0);
1ffa265b
MD
280}
281
282void
283scm_post_boot_init_modules ()
284{
e3365c07
MD
285 scm_module_tag = (SCM_CELL_WORD_1 (SCM_CDR (scm_intern0 ("module-type")))
286 + scm_tc3_cons_gloc);
281004cc 287 the_root_module = scm_intern0 ("the-root-module");
1ffa265b
MD
288 the_module = scm_intern0 ("the-module");
289 set_current_module = scm_intern0 ("set-current-module");
290 module_prefix = scm_permanent_object (SCM_LIST2 (scm_sym_app,
291 scm_sym_modules));
292 make_modules_in = scm_intern0 ("make-modules-in");
281004cc 293 beautify_user_module_x = scm_intern0 ("beautify-user-module!");
c15c33ee
MD
294 root_module_lookup_closure = scm_permanent_object
295 (scm_module_lookup_closure (SCM_CDR (the_root_module)));
90184345 296 resolve_module = scm_intern0 ("resolve-module");
281004cc 297 try_module_autoload = scm_intern0 ("try-module-autoload");
e3365c07 298 scm_module_system_booted_p = 1;
1ffa265b 299}
89e00824
ML
300
301/*
302 Local Variables:
303 c-file-style: "gnu"
304 End:
305*/