* __scm.h, alist.c, alist.h, append.c, append.h, appinit.c,
[bpt/guile.git] / libguile / variable.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"
20e6290e
JB
45#include "genio.h"
46#include "smob.h"
0f2d19dd 47
20e6290e 48#include "variable.h"
0f2d19dd 49\f
1cc91f1b
JB
50
51static scm_sizet free_var SCM_P ((SCM obj));
52
0f2d19dd
JB
53static scm_sizet
54free_var (obj)
55 SCM obj;
0f2d19dd
JB
56{
57 return 0;
58}
59
60
1cc91f1b
JB
61
62static int prin_var SCM_P ((SCM exp, SCM port, scm_print_state *pstate));
63
0f2d19dd 64static int
9882ea19 65prin_var (exp, port, pstate)
0f2d19dd
JB
66 SCM exp;
67 SCM port;
9882ea19 68 scm_print_state *pstate;
0f2d19dd
JB
69{
70 scm_gen_puts (scm_regular_string, "#<variable ", port);
71 scm_intprint(exp, 16, port);
72 {
73 SCM val_cell;
74 val_cell = SCM_CDR(exp);
75 if (SCM_CAR (val_cell) != SCM_UNDEFINED)
76 {
77 scm_gen_puts (scm_regular_string, " name: ", port);
9882ea19 78 scm_iprin1 (SCM_CAR (val_cell), port, pstate);
0f2d19dd
JB
79 }
80 scm_gen_puts (scm_regular_string, " binding: ", port);
9882ea19 81 scm_iprin1 (SCM_CDR (val_cell), port, pstate);
0f2d19dd
JB
82 }
83 scm_gen_putc('>', port);
84 return 1;
85}
86
1cc91f1b
JB
87
88static SCM scm_markvar SCM_P ((SCM ptr));
89
0f2d19dd
JB
90static SCM
91scm_markvar (ptr)
92 SCM ptr;
0f2d19dd
JB
93{
94 if (SCM_GC8MARKP (ptr))
95 return SCM_BOOL_F;
96 SCM_SETGC8MARK (ptr);
97 return SCM_CDR (ptr);
98}
99
100int scm_tc16_variable;
101static scm_smobfuns variable_smob = {scm_markvar, free_var, prin_var, 0};
102\f
103
104static SCM variable_sym;
105
1cc91f1b
JB
106
107static SCM make_vcell_variable SCM_P ((SCM vcell));
108
0f2d19dd
JB
109static SCM
110make_vcell_variable (vcell)
111 SCM vcell;
0f2d19dd
JB
112{
113 SCM answer;
114 SCM_NEWCELL(answer);
115 SCM_REDEFER_INTS;
116 SCM_CAR(answer) = scm_tc16_variable;
117 SCM_CDR(answer) = vcell;
118 SCM_REALLOW_INTS;
119 return answer;
120}
121
122SCM_PROC(s_make_variable, "make-variable", 2, 0, 0, scm_make_variable);
1cc91f1b 123
0f2d19dd
JB
124SCM
125scm_make_variable (init, name_hint)
126 SCM init;
127 SCM name_hint;
0f2d19dd
JB
128{
129 SCM val_cell;
130 SCM_NEWCELL(val_cell);
131 SCM_DEFER_INTS;
132 SCM_CAR(val_cell) = name_hint;
133 SCM_CDR(val_cell) = init;
134 SCM_ALLOW_INTS;
135 return make_vcell_variable (val_cell);
136}
137
138
139SCM_PROC(s_make_undefined_variable, "make-undefined-variable", 0, 1, 0, scm_make_undefined_variable);
1cc91f1b 140
0f2d19dd
JB
141SCM
142scm_make_undefined_variable (name_hint)
143 SCM name_hint;
0f2d19dd
JB
144{
145 SCM vcell;
146
147 if (name_hint == SCM_UNDEFINED)
148 name_hint = variable_sym;
149
150 SCM_NEWCELL (vcell);
151 SCM_DEFER_INTS;
152 SCM_CAR (vcell) = name_hint;
153 SCM_CDR (vcell) = SCM_UNDEFINED;
154 SCM_ALLOW_INTS;
155 return make_vcell_variable (vcell);
156}
157
158
159SCM_PROC(s_variable_p, "variable?", 1, 0, 0, scm_variable_p);
1cc91f1b 160
0f2d19dd
JB
161SCM
162scm_variable_p (obj)
163 SCM obj;
0f2d19dd
JB
164{
165 return ( (SCM_NIMP(obj) && SCM_VARIABLEP (obj))
166 ? SCM_BOOL_T
167 : SCM_BOOL_F);
168}
169
170
171SCM_PROC(s_variable_ref, "variable-ref", 1, 0, 0, scm_variable_ref);
1cc91f1b 172
0f2d19dd
JB
173SCM
174scm_variable_ref (var)
175 SCM var;
0f2d19dd
JB
176{
177 SCM_ASSERT (SCM_NIMP(var) && SCM_VARIABLEP(var), var, SCM_ARG1, s_variable_ref);
178 return SCM_CDR (SCM_CDR (var));
179}
180
181
182
183SCM_PROC(s_variable_set_x, "variable-set!", 2, 0, 0, scm_variable_set_x);
1cc91f1b 184
0f2d19dd
JB
185SCM
186scm_variable_set_x (var, val)
187 SCM var;
188 SCM val;
0f2d19dd
JB
189{
190 SCM_ASSERT (SCM_NIMP(var) && SCM_VARIABLEP (var), var, SCM_ARG1, s_variable_set_x);
191 SCM_CDR (SCM_CDR (var)) = val;
192 return SCM_UNSPECIFIED;
193}
194
195
196SCM_PROC(s_builtin_variable, "builtin-variable", 1, 0, 0, scm_builtin_variable);
1cc91f1b 197
0f2d19dd
JB
198SCM
199scm_builtin_variable (name)
200 SCM name;
0f2d19dd
JB
201{
202 SCM vcell;
203 SCM var_slot;
204
205 SCM_ASSERT (SCM_NIMP (name) && SCM_SYMBOLP (name), name, SCM_ARG1, s_builtin_variable);
206 vcell = scm_sym2vcell (name, SCM_BOOL_F, SCM_BOOL_T);
207 if (vcell == SCM_BOOL_F)
208 return SCM_BOOL_F;
209
210 scm_intern_symbol (scm_symhash_vars, name);
211 var_slot = scm_sym2ovcell (name, scm_symhash_vars);
212
213 SCM_DEFER_INTS;
214 if ( SCM_IMP (SCM_CDR (var_slot))
215 || (SCM_VARVCELL (var_slot) != vcell))
216 SCM_CDR (var_slot) = make_vcell_variable (vcell);
217 SCM_ALLOW_INTS;
218
219 return SCM_CDR (var_slot);
220}
221
222
223SCM_PROC(s_variable_bound_p, "variable-bound?", 1, 0, 0, scm_variable_bound_p);
1cc91f1b 224
0f2d19dd
JB
225SCM
226scm_variable_bound_p (var)
227 SCM var;
0f2d19dd
JB
228{
229 SCM_ASSERT (SCM_NIMP(var) && SCM_VARIABLEP (var), var, SCM_ARG1, s_variable_bound_p);
230 return (SCM_UNBNDP (SCM_CDR (SCM_VARVCELL (var)))
231 ? SCM_BOOL_F
232 : SCM_BOOL_T);
233}
234
235
236
1cc91f1b 237
0f2d19dd
JB
238void
239scm_init_variable ()
0f2d19dd
JB
240{
241 scm_tc16_variable = scm_newsmob (&variable_smob);
242 variable_sym = SCM_CAR (scm_sysintern ("anonymous-variable", SCM_UNDEFINED));
243#include "variable.x"
244}
245