* __scm.h, backtrace.c, backtrace.h, debug.c, debug.h, dynl-dld.c,
[bpt/guile.git] / libguile / feature.c
CommitLineData
78a0461a 1/* Copyright (C) 1995, 1996, 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. */
0f2d19dd
JB
41\f
42
43#include <stdio.h>
44#include "_scm.h"
45
1330700c 46#include "eval.h"
b90d369e 47#include "procprop.h"
26425129 48#include "smob.h"
1330700c 49
20e6290e
JB
50#include "feature.h"
51
95b88819
GH
52#ifdef HAVE_STRING_H
53#include <string.h>
54#endif
0f2d19dd
JB
55\f
56
f072db0c 57static SCM *scm_loc_features;
0f2d19dd 58
0f2d19dd 59void
b90d369e 60scm_add_feature (str)
3eeba8d4 61 const char* str;
0f2d19dd 62{
b90d369e
MD
63 *scm_loc_features = scm_cons (SCM_CAR (scm_intern (str, strlen (str))),
64 *scm_loc_features);
0f2d19dd
JB
65}
66
67
68\f
0f2d19dd 69SCM_PROC(s_program_arguments, "program-arguments", 0, 0, 0, scm_program_arguments);
0b886892 70
0f2d19dd
JB
71SCM
72scm_program_arguments ()
0f2d19dd
JB
73{
74 return scm_progargs;
75}
76
f29de790
JB
77/* Set the value returned by program-arguments, given ARGC and ARGV.
78
79 If FIRST is non-zero, make it the first element; we do this in
80 situations where other code (like getopt) has parsed out a few
81 arguments, but we still want the script name to be the first
82 element. */
0b886892 83void
f29de790 84scm_set_program_arguments (argc, argv, first)
0b886892
JB
85 int argc;
86 char **argv;
f29de790 87 char *first;
0b886892
JB
88{
89 scm_progargs = scm_makfromstrs (argc, argv);
f29de790
JB
90 if (first)
91 scm_progargs = scm_cons (scm_makfrom0str (first), scm_progargs);
0b886892
JB
92}
93
0f2d19dd 94
0f2d19dd 95\f
1330700c
MD
96/* Hooks */
97
26425129
MD
98long scm_tc16_hook;
99
1330700c 100
b90d369e 101SCM_PROC (s_make_hook, "make-hook", 0, 1, 0, scm_make_hook);
1330700c
MD
102
103SCM
b90d369e 104scm_make_hook (SCM n_args)
1330700c 105{
26425129 106 int n;
b90d369e 107 if (SCM_UNBNDP (n_args))
26425129 108 n = 0;
b90d369e 109 else
26425129
MD
110 {
111 SCM_ASSERT (SCM_INUMP (n_args), n_args, SCM_ARG1, s_make_hook);
112 n = SCM_INUM (n_args);
113 }
114 SCM_ASSERT (n >= 0 && n <= 16, n_args, SCM_OUTOFRANGE, s_make_hook);
115 SCM_RETURN_NEWSMOB (scm_tc16_hook + (n << 16), SCM_EOL);
1330700c
MD
116}
117
26425129 118
1330700c 119SCM
b90d369e 120scm_make_named_hook (char* name, int n_args)
1330700c 121{
b90d369e 122 SCM hook = scm_make_hook (SCM_MAKINUM (n_args));
1330700c
MD
123 scm_permanent_object (scm_sysintern (name, hook));
124 return hook;
125}
126
26425129
MD
127
128SCM_PROC (s_hook_p, "hook?", 1, 0, 0, scm_hook_p);
129
130SCM
131scm_hook_p (SCM x)
132{
133 return SCM_NIMP (x) && SCM_HOOKP (x) ? SCM_BOOL_T : SCM_BOOL_F;
134}
135
136
137SCM_PROC (s_hook_empty_p, "hook-empty?", 1, 0, 0, scm_hook_empty_p);
138
139SCM
140scm_hook_empty_p (SCM hook)
141{
142 SCM_ASSERT (SCM_NIMP (hook) && SCM_HOOKP (hook),
143 hook, SCM_ARG1, s_hook_empty_p);
144 return SCM_NULLP (SCM_HOOK_PROCEDURES (hook)) ? SCM_BOOL_T : SCM_BOOL_F;
145}
146
147
1330700c
MD
148SCM_PROC (s_add_hook_x, "add-hook!", 2, 1, 0, scm_add_hook_x);
149
150SCM
b90d369e 151scm_add_hook_x (SCM hook, SCM proc, SCM append_p)
1330700c 152{
b90d369e
MD
153 SCM arity, rest;
154 int n_args;
26425129 155 SCM_ASSERT (SCM_NIMP (hook) && SCM_HOOKP (hook),
1330700c 156 hook, SCM_ARG1, s_add_hook_x);
b90d369e
MD
157 SCM_ASSERT (SCM_NFALSEP (arity = scm_i_procedure_arity (proc)),
158 proc, SCM_ARG2, s_add_hook_x);
26425129 159 n_args = SCM_HOOK_ARITY (hook);
b90d369e
MD
160 if (SCM_INUM (SCM_CAR (arity)) > n_args
161 || (SCM_FALSEP (SCM_CADDR (arity))
162 && (SCM_INUM (SCM_CAR (arity)) + SCM_INUM (SCM_CADR (arity))
163 < n_args)))
164 scm_misc_error (s_add_hook_x,
165 "This hook requires %s arguments",
26425129
MD
166 SCM_LIST1 (SCM_MAKINUM (SCM_HOOK_ARITY (hook))));
167 rest = scm_delq_x (proc, SCM_HOOK_PROCEDURES (hook));
168 SCM_SET_HOOK_PROCEDURES (hook,
169 (!SCM_UNBNDP (append_p) && SCM_NFALSEP (append_p)
170 ? scm_append_x (SCM_LIST2 (rest, SCM_LIST1 (proc)))
171 : scm_cons (proc, rest)));
1330700c
MD
172 return SCM_UNSPECIFIED;
173}
174
26425129 175
1330700c
MD
176SCM_PROC (s_remove_hook_x, "remove-hook!", 2, 0, 0, scm_remove_hook_x);
177
178SCM
26425129 179scm_remove_hook_x (SCM hook, SCM proc)
1330700c 180{
26425129 181 SCM_ASSERT (SCM_NIMP (hook) && SCM_HOOKP (hook),
b90d369e 182 hook, SCM_ARG1, s_remove_hook_x);
26425129
MD
183 SCM_SET_HOOK_PROCEDURES (hook,
184 scm_delq_x (proc, SCM_HOOK_PROCEDURES (hook)));
1330700c
MD
185 return SCM_UNSPECIFIED;
186}
187
26425129 188
b90d369e 189SCM_PROC (s_reset_hook_x, "reset-hook!", 1, 0, 0, scm_reset_hook_x);
1330700c
MD
190
191SCM
b90d369e 192scm_reset_hook_x (SCM hook)
1330700c 193{
26425129 194 SCM_ASSERT (SCM_NIMP (hook) && SCM_HOOKP (hook),
b90d369e 195 hook, SCM_ARG1, s_reset_hook_x);
26425129 196 SCM_SET_HOOK_PROCEDURES (hook, SCM_EOL);
b90d369e
MD
197 return SCM_UNSPECIFIED;
198}
199
26425129 200
b90d369e
MD
201SCM_PROC (s_run_hook, "run-hook", 1, 0, 1, scm_run_hook);
202
203SCM
204scm_run_hook (SCM hook, SCM args)
205{
26425129 206 SCM_ASSERT (SCM_NIMP (hook) && SCM_HOOKP (hook),
b90d369e
MD
207 hook, SCM_ARG1, s_run_hook);
208 if (SCM_UNBNDP (args))
209 args = SCM_EOL;
26425129 210 if (scm_ilength (args) != SCM_HOOK_ARITY (hook))
b90d369e
MD
211 scm_misc_error (s_add_hook_x,
212 "This hook requires %s arguments",
26425129 213 SCM_LIST1 (SCM_MAKINUM (SCM_HOOK_ARITY (hook))));
ef1ae563
MD
214 scm_c_run_hook (hook, args);
215 return SCM_UNSPECIFIED;
216}
217
26425129 218
ef1ae563
MD
219void
220scm_c_run_hook (SCM hook, SCM args)
221{
26425129
MD
222 SCM procs = SCM_HOOK_PROCEDURES (hook);
223 while (SCM_NIMP (procs))
224 {
225 scm_apply (SCM_CAR (procs), args, SCM_EOL);
226 procs = SCM_CDR (procs);
227 }
228}
229
230
231SCM_PROC (s_hook_to_list, "hook->list", 1, 0, 0, scm_hook_to_list);
232
233SCM
234scm_hook_to_list (SCM hook)
235{
236 SCM_ASSERT (SCM_NIMP (hook) && SCM_HOOKP (hook),
237 hook, SCM_ARG1, s_hook_to_list);
238 return scm_list_copy (SCM_HOOK_PROCEDURES (hook));
1330700c
MD
239}
240
26425129 241
1330700c 242\f
0f2d19dd 243
0f2d19dd
JB
244void
245scm_init_feature()
0f2d19dd 246{
25d8012c 247 scm_loc_features = SCM_CDRLOC (scm_sysintern ("*features*", SCM_EOL));
cf7c17e9 248#ifdef SCM_RECKLESS
0f2d19dd
JB
249 scm_add_feature("reckless");
250#endif
251#ifndef _Windows
252 scm_add_feature("system");
253#endif
254#ifdef vms
255 scm_add_feature(s_ed);
256#endif
257#ifdef SICP
258 scm_add_feature("sicp");
259#endif
260#ifndef GO32
261 scm_add_feature("char-ready?");
262#endif
263#ifndef CHEAP_CONTINUATIONS
264 scm_add_feature ("full-continuation");
265#endif
a6cba733
MD
266#ifdef USE_THREADS
267 scm_add_feature ("threads");
268#endif
269
e2806c10 270 scm_sysintern ("char-code-limit", SCM_MAKINUM (SCM_CHAR_CODE_LIMIT));
26425129
MD
271
272 scm_tc16_hook = scm_make_smob_type ("hook", 0);
273 scm_set_smob_mark (scm_tc16_hook, scm_markcdr);
274
0f2d19dd
JB
275#include "feature.x"
276}