* smob.h (scm_smob_descriptor): Added `apply\' and `gsubr_type\'.
[bpt/guile.git] / libguile / procs.c
1 /* Copyright (C) 1995, 1996, 1997, 1999, 2000 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, 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. */
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
45 \f
46
47 #include <stdio.h>
48 #include "libguile/_scm.h"
49
50 #include "libguile/objects.h"
51 #include "libguile/strings.h"
52 #include "libguile/vectors.h"
53 #include "libguile/smob.h"
54
55 #include "libguile/validate.h"
56 #include "libguile/procs.h"
57 \f
58
59
60 /* {Procedures}
61 */
62
63 scm_subr_entry *scm_subr_table;
64
65 /* libguile contained approx. 700 primitive procedures on 24 Aug 1999. */
66
67 int scm_subr_table_size = 0;
68 int scm_subr_table_room = 750;
69
70 SCM
71 scm_make_subr_opt (const char *name, int type, SCM (*fcn) (), int set)
72 {
73 SCM symcell;
74 register SCM z;
75 int entry;
76
77 if (scm_subr_table_size == scm_subr_table_room)
78 {
79 scm_sizet new_size = scm_subr_table_room * 3 / 2;
80 void *new_table
81 = scm_must_realloc ((char *) scm_subr_table,
82 sizeof (scm_subr_entry) * scm_subr_table_room,
83 sizeof (scm_subr_entry) * new_size,
84 "scm_subr_table");
85 scm_subr_table = new_table;
86 scm_subr_table_room = new_size;
87 }
88
89 SCM_NEWCELL (z);
90 symcell = set ? scm_sysintern0 (name) : scm_intern0 (name);
91
92 entry = scm_subr_table_size;
93 scm_subr_table[entry].handle = z;
94 scm_subr_table[entry].name = SCM_CAR (symcell);
95 scm_subr_table[entry].generic = 0;
96 scm_subr_table[entry].properties = SCM_EOL;
97 scm_subr_table[entry].documentation = SCM_BOOL_F;
98
99 SCM_SET_SUBRF (z, fcn);
100 SCM_SET_CELL_TYPE (z, (entry << 8) + type);
101 scm_subr_table_size++;
102
103 if (set)
104 SCM_SETCDR (symcell, z);
105
106 return z;
107 }
108
109 /* This function isn't currently used since subrs are never freed. */
110 /* *fixme* Need mutex here. */
111 void
112 scm_free_subr_entry (SCM subr)
113 {
114 int entry = SCM_SUBRNUM (subr);
115 /* Move last entry in table to the free position */
116 scm_subr_table[entry] = scm_subr_table[scm_subr_table_size - 1];
117 SCM_SET_SUBRNUM (scm_subr_table[entry].handle, entry);
118 scm_subr_table_size--;
119 }
120
121 SCM
122 scm_make_subr (const char *name, int type, SCM (*fcn) ())
123 {
124 return scm_make_subr_opt (name, type, fcn, 1);
125 }
126
127 SCM
128 scm_make_subr_with_generic (const char *name, int type, SCM (*fcn) (), SCM *gf)
129 {
130 SCM subr = scm_make_subr_opt (name, type, fcn, 1);
131 scm_subr_table[scm_subr_table_size - 1].generic = gf;
132 return subr;
133 }
134
135 void
136 scm_mark_subr_table ()
137 {
138 int i;
139 for (i = 0; i < scm_subr_table_size; ++i)
140 {
141 SCM_SETGC8MARK (scm_subr_table[i].name);
142 if (scm_subr_table[i].generic && *scm_subr_table[i].generic)
143 scm_gc_mark (*scm_subr_table[i].generic);
144 if (SCM_NIMP (scm_subr_table[i].properties))
145 scm_gc_mark (scm_subr_table[i].properties);
146 if (SCM_NIMP (scm_subr_table[i].documentation))
147 scm_gc_mark (scm_subr_table[i].documentation);
148 }
149 }
150
151
152 #ifdef CCLO
153 SCM
154 scm_makcclo (SCM proc, long len)
155 {
156 SCM s;
157 SCM_NEWCELL (s);
158 SCM_DEFER_INTS;
159 SCM_SETCHARS (s, scm_must_malloc (len * sizeof (SCM), "compiled-closure"));
160 SCM_SETLENGTH (s, len, scm_tc7_cclo);
161 while (--len)
162 SCM_VELTS (s)[len] = SCM_UNSPECIFIED;
163 SCM_CCLO_SUBR (s) = proc;
164 SCM_ALLOW_INTS;
165 return s;
166 }
167
168 /* Undocumented debugging procedure */
169 #ifdef GUILE_DEBUG
170 SCM_DEFINE (scm_make_cclo, "make-cclo", 2, 0, 0,
171 (SCM proc, SCM len),
172 "")
173 #define FUNC_NAME s_scm_make_cclo
174 {
175 return scm_makcclo (proc, SCM_INUM (len));
176 }
177 #undef FUNC_NAME
178 #endif
179 #endif
180
181
182
183 SCM_DEFINE (scm_procedure_p, "procedure?", 1, 0, 0,
184 (SCM obj),
185 "")
186 #define FUNC_NAME s_scm_procedure_p
187 {
188 if (SCM_NIMP (obj))
189 switch (SCM_TYP7 (obj))
190 {
191 case scm_tcs_cons_gloc:
192 if (!SCM_I_OPERATORP (obj))
193 break;
194 case scm_tcs_closures:
195 case scm_tc7_contin:
196 case scm_tcs_subrs:
197 #ifdef CCLO
198 case scm_tc7_cclo:
199 #endif
200 case scm_tc7_pws:
201 return SCM_BOOL_T;
202 case scm_tc7_smob:
203 return SCM_BOOL (SCM_SMOB_DESCRIPTOR (obj).apply);
204 default:
205 return SCM_BOOL_F;
206 }
207 return SCM_BOOL_F;
208 }
209 #undef FUNC_NAME
210
211 SCM_DEFINE (scm_closure_p, "closure?", 1, 0, 0,
212 (SCM obj),
213 "")
214 #define FUNC_NAME s_scm_closure_p
215 {
216 return SCM_BOOL(SCM_CLOSUREP (obj));
217 }
218 #undef FUNC_NAME
219
220 SCM_DEFINE (scm_thunk_p, "thunk?", 1, 0, 0,
221 (SCM obj),
222 "")
223 #define FUNC_NAME s_scm_thunk_p
224 {
225 if (SCM_NIMP (obj))
226 {
227 again:
228 switch (SCM_TYP7 (obj))
229 {
230 case scm_tcs_closures:
231 if (SCM_NULLP (SCM_CAR (SCM_CODE (obj))))
232 return SCM_BOOL_T;
233 case scm_tc7_subr_0:
234 case scm_tc7_subr_1o:
235 case scm_tc7_lsubr:
236 case scm_tc7_rpsubr:
237 case scm_tc7_asubr:
238 #ifdef CCLO
239 case scm_tc7_cclo:
240 #endif
241 return SCM_BOOL_T;
242 case scm_tc7_pws:
243 obj = SCM_PROCEDURE (obj);
244 goto again;
245 default:
246 ;
247 }
248 }
249 return SCM_BOOL_F;
250 }
251 #undef FUNC_NAME
252
253 /* Only used internally. */
254 int
255 scm_subr_p (SCM obj)
256 {
257 if (SCM_NIMP (obj))
258 switch (SCM_TYP7 (obj))
259 {
260 case scm_tcs_subrs:
261 return 1;
262 default:
263 ;
264 }
265 return 0;
266 }
267
268 SCM_DEFINE (scm_procedure_documentation, "procedure-documentation", 1, 0, 0,
269 (SCM proc),
270 "Return the documentation string associated with @code{proc}. By\n"
271 "convention, if a procedure contains more than one expression and the\n"
272 "first expression is a string constant, that string is assumed to contain\n"
273 "documentation for that procedure.")
274 #define FUNC_NAME s_scm_procedure_documentation
275 {
276 SCM code;
277 SCM_ASSERT (SCM_EQ_P (scm_procedure_p (proc), SCM_BOOL_T)
278 && SCM_NIMP (proc) && SCM_TYP7 (proc) != scm_tc7_contin,
279 proc, SCM_ARG1, FUNC_NAME);
280 switch (SCM_TYP7 (proc))
281 {
282 case scm_tcs_closures:
283 code = SCM_CDR (SCM_CODE (proc));
284 if (SCM_IMP (SCM_CDR (code)))
285 return SCM_BOOL_F;
286 code = SCM_CAR (code);
287 if (SCM_IMP (code))
288 return SCM_BOOL_F;
289 if (SCM_STRINGP (code))
290 return code;
291 default:
292 return SCM_BOOL_F;
293 /*
294 case scm_tcs_subrs:
295 #ifdef CCLO
296 case scm_tc7_cclo:
297 #endif
298 */
299 }
300 }
301 #undef FUNC_NAME
302
303
304 /* Procedure-with-setter
305 */
306
307 SCM_DEFINE (scm_procedure_with_setter_p, "procedure-with-setter?", 1, 0, 0,
308 (SCM obj),
309 "")
310 #define FUNC_NAME s_scm_procedure_with_setter_p
311 {
312 return SCM_BOOL(SCM_PROCEDURE_WITH_SETTER_P (obj));
313 }
314 #undef FUNC_NAME
315
316 SCM_DEFINE (scm_make_procedure_with_setter, "make-procedure-with-setter", 2, 0, 0,
317 (SCM procedure, SCM setter),
318 "")
319 #define FUNC_NAME s_scm_make_procedure_with_setter
320 {
321 SCM z;
322 SCM_VALIDATE_PROC (1, procedure);
323 SCM_VALIDATE_PROC (2, setter);
324 SCM_NEWCELL2 (z);
325 SCM_ENTER_A_SECTION;
326 SCM_SET_CELL_OBJECT_1 (z, procedure);
327 SCM_SET_CELL_OBJECT_2 (z, setter);
328 SCM_SET_CELL_TYPE (z, scm_tc7_pws);
329 SCM_EXIT_A_SECTION;
330 return z;
331 }
332 #undef FUNC_NAME
333
334 SCM_DEFINE (scm_procedure, "procedure", 1, 0, 0,
335 (SCM proc),
336 "")
337 #define FUNC_NAME s_scm_procedure
338 {
339 SCM_VALIDATE_NIM (1, proc);
340 if (SCM_PROCEDURE_WITH_SETTER_P (proc))
341 return SCM_PROCEDURE (proc);
342 else if (SCM_STRUCTP (proc))
343 {
344 SCM_ASSERT (SCM_I_OPERATORP (proc), proc, SCM_ARG1, FUNC_NAME);
345 return proc;
346 }
347 SCM_WRONG_TYPE_ARG (1, proc);
348 return SCM_BOOL_F; /* not reached */
349 }
350 #undef FUNC_NAME
351
352 SCM_GPROC (s_setter, "setter", 1, 0, 0, scm_setter, g_setter);
353
354 SCM
355 scm_setter (SCM proc)
356 {
357 SCM_GASSERT1 (SCM_NIMP (proc), g_setter, proc, SCM_ARG1, s_setter);
358 if (SCM_PROCEDURE_WITH_SETTER_P (proc))
359 return SCM_SETTER (proc);
360 else if (SCM_STRUCTP (proc))
361 {
362 SCM setter;
363 SCM_GASSERT1 (SCM_I_OPERATORP (proc),
364 g_setter, proc, SCM_ARG1, s_setter);
365 setter = (SCM_I_ENTITYP (proc)
366 ? SCM_ENTITY_SETTER (proc)
367 : SCM_OPERATOR_SETTER (proc));
368 if (SCM_NIMP (setter))
369 return setter;
370 /* fall through */
371 }
372 SCM_WTA_DISPATCH_1 (g_setter, proc, SCM_ARG1, s_setter);
373 return SCM_BOOL_F; /* not reached */
374 }
375
376
377 void
378 scm_init_subr_table ()
379 {
380 scm_subr_table
381 = ((scm_subr_entry *)
382 scm_must_malloc (sizeof (scm_subr_entry) * scm_subr_table_room,
383 "scm_subr_table"));
384 }
385
386 void
387 scm_init_procs ()
388 {
389 #include "libguile/procs.x"
390 }
391
392 /*
393 Local Variables:
394 c-file-style: "gnu"
395 End:
396 */