*.[ch]: Replace GUILE_PROC w/ SCM_DEFINE.
[bpt/guile.git] / libguile / gsubr.c
CommitLineData
62f36a0d 1/* Copyright (C) 1995,1996,1997,1998, 1999 Free Software Foundation, Inc.
0f2d19dd
JB
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
82892bed
JB
15 * the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
16 * Boston, MA 02111-1307 USA
0f2d19dd
JB
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.
82892bed 40 * If you do not wish that, delete this exception notice. */
1bbd0b84
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
0f2d19dd
JB
45\f
46
47#include <stdio.h>
48#include "_scm.h"
20e6290e 49#include "genio.h"
abae3119 50#include "procprop.h"
0f2d19dd 51
20e6290e 52#include "gsubr.h"
0f2d19dd
JB
53\f
54/*
55 * gsubr.c
56 * Provide `gsubrs' -- subrs taking a prescribed number of required, optional,
57 * and rest arguments.
58 */
59
952bedad 60/* #define GSUBR_TEST */
0f2d19dd 61
55b0ed69 62SCM scm_sym_name;
dc0938d8 63SCM scm_f_gsubr_apply;
1cc91f1b 64
0f2d19dd 65SCM
1bbd0b84 66scm_make_gsubr(const char *name,int req,int opt,int rst,SCM (*fcn)())
0f2d19dd 67{
dc0938d8
MD
68 switch SCM_GSUBR_MAKTYPE(req, opt, rst) {
69 case SCM_GSUBR_MAKTYPE(0, 0, 0): return scm_make_subr(name, scm_tc7_subr_0, fcn);
70 case SCM_GSUBR_MAKTYPE(1, 0, 0): return scm_make_subr(name, scm_tc7_subr_1, fcn);
71 case SCM_GSUBR_MAKTYPE(0, 1, 0): return scm_make_subr(name, scm_tc7_subr_1o, fcn);
72 case SCM_GSUBR_MAKTYPE(1, 1, 0): return scm_make_subr(name, scm_tc7_subr_2o, fcn);
73 case SCM_GSUBR_MAKTYPE(2, 0, 0): return scm_make_subr(name, scm_tc7_subr_2, fcn);
74 case SCM_GSUBR_MAKTYPE(3, 0, 0): return scm_make_subr(name, scm_tc7_subr_3, fcn);
75 case SCM_GSUBR_MAKTYPE(0, 0, 1): return scm_make_subr(name, scm_tc7_lsubr, fcn);
76 case SCM_GSUBR_MAKTYPE(2, 0, 1): return scm_make_subr(name, scm_tc7_lsubr_2, fcn);
0f2d19dd
JB
77 default:
78 {
73d6b4df
MD
79 SCM symcell = scm_sysintern (name, SCM_UNDEFINED);
80 SCM cclo = scm_makcclo (scm_f_gsubr_apply, 3L);
dc0938d8 81 if (SCM_GSUBR_MAX < req + opt + rst) {
0f2d19dd
JB
82 fputs("ERROR in scm_make_gsubr: too many args\n", stderr);
83 exit (1);
84 }
73d6b4df
MD
85 SCM_GSUBR_PROC (cclo) = scm_make_subr_opt (name, scm_tc7_subr_0, fcn, 0);
86 SCM_GSUBR_TYPE (cclo) = SCM_MAKINUM (SCM_GSUBR_MAKTYPE (req, opt, rst));
a6c64c3c 87 SCM_SETCDR (symcell, cclo);
abae3119
MD
88#ifdef DEBUG_EXTENSIONS
89 if (SCM_REC_PROCNAMES_P)
55b0ed69 90 scm_set_procedure_property_x (cclo, scm_sym_name, SCM_CAR (symcell));
abae3119 91#endif
0f2d19dd
JB
92 return cclo;
93 }
94 }
95}
96
9de33deb
MD
97SCM
98scm_make_gsubr_with_generic (const char *name,
99 int req,
100 int opt,
101 int rst,
102 SCM (*fcn)(),
103 SCM *gf)
104{
105 switch SCM_GSUBR_MAKTYPE(req, opt, rst) {
106 case SCM_GSUBR_MAKTYPE(0, 0, 0):
107 return scm_make_subr_with_generic(name, scm_tc7_subr_0, fcn, gf);
108 case SCM_GSUBR_MAKTYPE(1, 0, 0):
109 return scm_make_subr_with_generic(name, scm_tc7_subr_1, fcn, gf);
110 case SCM_GSUBR_MAKTYPE(0, 1, 0):
111 return scm_make_subr_with_generic(name, scm_tc7_subr_1o, fcn, gf);
112 case SCM_GSUBR_MAKTYPE(1, 1, 0):
113 return scm_make_subr_with_generic(name, scm_tc7_subr_2o, fcn, gf);
114 case SCM_GSUBR_MAKTYPE(2, 0, 0):
115 return scm_make_subr_with_generic(name, scm_tc7_subr_2, fcn, gf);
116 case SCM_GSUBR_MAKTYPE(3, 0, 0):
117 return scm_make_subr_with_generic(name, scm_tc7_subr_3, fcn, gf);
118 case SCM_GSUBR_MAKTYPE(0, 0, 1):
119 return scm_make_subr_with_generic(name, scm_tc7_lsubr, fcn, gf);
120 case SCM_GSUBR_MAKTYPE(2, 0, 1):
121 return scm_make_subr_with_generic(name, scm_tc7_lsubr_2, fcn, gf);
122 default:
123 ;
124 }
125 scm_misc_error ("scm_make_gsubr_with_generic",
126 "can't make primitive-generic with this arity",
127 SCM_EOL);
128 return 0; /* never reached */
129}
130
0f2d19dd 131
a1ec6916 132SCM_DEFINE(scm_gsubr_apply, "gsubr-apply", 0, 0, 1,
1bbd0b84
GB
133 (SCM args),
134"")
135#define FUNC_NAME s_scm_gsubr_apply
0f2d19dd
JB
136{
137 SCM self = SCM_CAR(args);
dc0938d8 138 SCM (*fcn)() = SCM_SUBRF(SCM_GSUBR_PROC(self));
0f2d19dd 139 SCM v[10]; /* must agree with greatest supported arity */
dc0938d8
MD
140 int typ = SCM_INUM(SCM_GSUBR_TYPE(self));
141 int i, n = SCM_GSUBR_REQ(typ) + SCM_GSUBR_OPT(typ) + SCM_GSUBR_REST(typ);
adc02cce
MD
142#if 0
143 SCM_ASSERT(n <= sizeof(v)/sizeof(SCM),
1bbd0b84 144 self, "internal programming error", FUNC_NAME);
adc02cce 145#endif
0f2d19dd 146 args = SCM_CDR(args);
dc0938d8 147 for (i = 0; i < SCM_GSUBR_REQ(typ); i++) {
cf7c17e9 148#ifndef SCM_RECKLESS
0f2d19dd 149 if (SCM_IMP(args))
dc0938d8 150 wnargs: scm_wrong_num_args (SCM_SNAME(SCM_GSUBR_PROC(self)));
0f2d19dd
JB
151#endif
152 v[i] = SCM_CAR(args);
153 args = SCM_CDR(args);
154 }
dc0938d8 155 for (; i < SCM_GSUBR_REQ(typ) + SCM_GSUBR_OPT(typ); i++) {
0f2d19dd
JB
156 if (SCM_NIMP(args)) {
157 v[i] = SCM_CAR(args);
158 args = SCM_CDR(args);
159 }
160 else
161 v[i] = SCM_UNDEFINED;
162 }
dc0938d8 163 if (SCM_GSUBR_REST(typ))
0f2d19dd 164 v[i] = args;
adc02cce
MD
165 else
166 SCM_ASRTGO(SCM_NULLP(args), wnargs);
0f2d19dd 167 switch (n) {
0f2d19dd
JB
168 case 2: return (*fcn)(v[0], v[1]);
169 case 3: return (*fcn)(v[0], v[1], v[2]);
170 case 4: return (*fcn)(v[0], v[1], v[2], v[3]);
171 case 5: return (*fcn)(v[0], v[1], v[2], v[3], v[4]);
172 case 6: return (*fcn)(v[0], v[1], v[2], v[3], v[4], v[5]);
173 case 7: return (*fcn)(v[0], v[1], v[2], v[3], v[4], v[5], v[6]);
174 case 8: return (*fcn)(v[0], v[1], v[2], v[3], v[4], v[5], v[6], v[7]);
175 case 9: return (*fcn)(v[0], v[1], v[2], v[3], v[4], v[5], v[6], v[7], v[8]);
176 case 10: return (*fcn)(v[0], v[1], v[2], v[3], v[4], v[5], v[6], v[7], v[8], v[9]);
177 }
cda139a7 178 return 0; /* Never reached. */
0f2d19dd 179}
1bbd0b84 180#undef FUNC_NAME
0f2d19dd
JB
181
182
183#ifdef GSUBR_TEST
184/* A silly example, taking 2 required args, 1 optional, and
185 a scm_list of rest args
186 */
187SCM
1bbd0b84 188gsubr_21l(SCM req1, SCM req2, SCM opt, SCM rst)
0f2d19dd 189{
b7f3516f 190 scm_puts ("gsubr-2-1-l:\n req1: ", scm_cur_outp);
0f2d19dd 191 scm_display(req1, scm_cur_outp);
b7f3516f 192 scm_puts ("\n req2: ", scm_cur_outp);
0f2d19dd 193 scm_display(req2, scm_cur_outp);
b7f3516f 194 scm_puts ("\n opt: ", scm_cur_outp);
0f2d19dd 195 scm_display(opt, scm_cur_outp);
b7f3516f 196 scm_puts ("\n rest: ", scm_cur_outp);
0f2d19dd
JB
197 scm_display(rst, scm_cur_outp);
198 scm_newline(scm_cur_outp);
199 return SCM_UNSPECIFIED;
200}
201#endif
202
203
1cc91f1b 204
0f2d19dd
JB
205void
206scm_init_gsubr()
0f2d19dd 207{
1bbd0b84
GB
208 /* GJB:FIXME:: why is this file not including the .x file? */
209 scm_f_gsubr_apply = scm_make_subr(s_scm_gsubr_apply, scm_tc7_lsubr, scm_gsubr_apply);
55b0ed69
MD
210 scm_sym_name = SCM_CAR (scm_sysintern ("name", SCM_UNDEFINED));
211 scm_permanent_object (scm_sym_name);
0f2d19dd
JB
212#ifdef GSUBR_TEST
213 scm_make_gsubr("gsubr-2-1-l", 2, 1, 1, gsubr_21l); /* example */
214#endif
215}