(prototype_to_type): Bugfix: Don't compare prototype to
[bpt/guile.git] / libguile / gh.h
1 /* Copyright (C) 1995,1996,1997,1998,2000,2001 Free Software Foundation, Inc.
2 *
3 * This library is free software; you can redistribute it and/or
4 * modify it under the terms of the GNU Lesser General Public
5 * License as published by the Free Software Foundation; either
6 * version 2.1 of the License, or (at your option) any later version.
7 *
8 * This library 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 GNU
11 * Lesser General Public License for more details.
12 *
13 * You should have received a copy of the GNU Lesser General Public
14 * License along with this library; if not, write to the Free Software
15 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
16 */
17 \f
18
19 #ifndef __GH_H
20 #define __GH_H
21
22 #ifdef __cplusplus
23 extern "C" {
24 #endif
25
26 #include <libguile.h>
27
28 /* gcc has extern inline functions that are basically as fast as macros */
29 #ifdef __GNUC__
30 # define INL inline
31 # define EXTINL extern inline
32 #else
33 # define INL
34 #define EXTINL
35 #endif /* __GNUC__ */
36
37 SCM_API void gh_enter(int argc, char *argv[],
38 void (*c_main_prog)(int, char **));
39 #define gh_init () scm_init_guile ()
40 SCM_API void gh_repl(int argc, char *argv[]);
41 SCM_API SCM gh_catch(SCM tag, scm_t_catch_body body, void *body_data,
42 scm_t_catch_handler handler, void *handler_data);
43
44 SCM_API SCM gh_standard_handler(void *data, SCM tag, SCM throw_args);
45
46 SCM_API SCM gh_eval_str(const char *scheme_code);
47 SCM_API SCM gh_eval_str_with_catch(const char *scheme_code, scm_t_catch_handler handler);
48 SCM_API SCM gh_eval_str_with_standard_handler(const char *scheme_code);
49 SCM_API SCM gh_eval_str_with_stack_saving_handler(const char *scheme_code);
50
51 SCM_API SCM gh_eval_file(const char *fname);
52 #define gh_load(fname) gh_eval_file(fname)
53 SCM_API SCM gh_eval_file_with_catch(const char *scheme_code, scm_t_catch_handler handler);
54 SCM_API SCM gh_eval_file_with_standard_handler(const char *scheme_code);
55
56 #define gh_defer_ints() SCM_DEFER_INTS
57 #define gh_allow_ints() SCM_ALLOW_INTS
58
59 SCM_API SCM gh_new_procedure(const char *proc_name, SCM (*fn)(),
60 int n_required_args, int n_optional_args,
61 int varp);
62 SCM_API SCM gh_new_procedure0_0(const char *proc_name, SCM (*fn)(void));
63 SCM_API SCM gh_new_procedure0_1(const char *proc_name, SCM (*fn)(SCM));
64 SCM_API SCM gh_new_procedure0_2(const char *proc_name, SCM (*fn)(SCM, SCM));
65 SCM_API SCM gh_new_procedure1_0(const char *proc_name, SCM (*fn)(SCM));
66 SCM_API SCM gh_new_procedure1_1(const char *proc_name, SCM (*fn)(SCM, SCM));
67 SCM_API SCM gh_new_procedure1_2(const char *proc_name, SCM (*fn)(SCM, SCM, SCM));
68 SCM_API SCM gh_new_procedure2_0(const char *proc_name, SCM (*fn)(SCM, SCM));
69 SCM_API SCM gh_new_procedure2_1(const char *proc_name, SCM (*fn)(SCM, SCM, SCM));
70 SCM_API SCM gh_new_procedure2_2(const char *proc_name, SCM (*fn)(SCM, SCM, SCM, SCM));
71 SCM_API SCM gh_new_procedure3_0(const char *proc_name, SCM (*fn)(SCM, SCM, SCM));
72 SCM_API SCM gh_new_procedure4_0(const char *proc_name, SCM (*fn)(SCM, SCM, SCM, SCM));
73 SCM_API SCM gh_new_procedure5_0(const char *proc_name, SCM (*fn)(SCM, SCM, SCM, SCM, SCM));
74
75 /* C to Scheme conversion */
76 SCM_API SCM gh_bool2scm(int x);
77 SCM_API SCM gh_int2scm(int x);
78 SCM_API SCM gh_ulong2scm(unsigned long x);
79 SCM_API SCM gh_long2scm(long x);
80 SCM_API SCM gh_double2scm(double x);
81 SCM_API SCM gh_char2scm(char c);
82 SCM_API SCM gh_str2scm(const char *s, size_t len);
83 SCM_API SCM gh_str02scm(const char *s);
84 SCM_API void gh_set_substr(const char *src, SCM dst, long start, size_t len);
85 SCM_API SCM gh_symbol2scm(const char *symbol_str);
86 SCM_API SCM gh_ints2scm(const int *d, long n);
87
88 SCM_API SCM gh_chars2byvect(const char *d, long n);
89 SCM_API SCM gh_shorts2svect(const short *d, long n);
90 SCM_API SCM gh_longs2ivect(const long *d, long n);
91 SCM_API SCM gh_ulongs2uvect(const unsigned long *d, long n);
92 SCM_API SCM gh_floats2fvect(const float *d, long n);
93 SCM_API SCM gh_doubles2dvect(const double *d, long n);
94
95 SCM_API SCM gh_doubles2scm(const double *d, long n);
96
97 /* Scheme to C conversion */
98 SCM_API int gh_scm2bool(SCM obj);
99 SCM_API int gh_scm2int(SCM obj);
100 SCM_API unsigned long gh_scm2ulong(SCM obj);
101 SCM_API long gh_scm2long(SCM obj);
102 SCM_API char gh_scm2char(SCM obj);
103 SCM_API double gh_scm2double(SCM obj);
104 SCM_API char *gh_scm2newstr(SCM str, size_t *lenp);
105 SCM_API void gh_get_substr(SCM src, char *dst, long start, size_t len);
106 SCM_API char *gh_symbol2newstr(SCM sym, size_t *lenp);
107 SCM_API char *gh_scm2chars(SCM vector, char *result);
108 SCM_API short *gh_scm2shorts(SCM vector, short *result);
109 SCM_API long *gh_scm2longs(SCM vector, long *result);
110 SCM_API float *gh_scm2floats(SCM vector, float *result);
111 SCM_API double *gh_scm2doubles(SCM vector, double *result);
112
113 /* type predicates: tell you if an SCM object has a given type */
114 SCM_API int gh_boolean_p(SCM val);
115 SCM_API int gh_symbol_p(SCM val);
116 SCM_API int gh_char_p(SCM val);
117 SCM_API int gh_vector_p(SCM val);
118 SCM_API int gh_pair_p(SCM val);
119 SCM_API int gh_number_p(SCM val);
120 SCM_API int gh_string_p(SCM val);
121 SCM_API int gh_procedure_p(SCM val);
122 SCM_API int gh_list_p(SCM val);
123 SCM_API int gh_inexact_p(SCM val);
124 SCM_API int gh_exact_p(SCM val);
125
126 /* more predicates */
127 SCM_API int gh_eq_p(SCM x, SCM y);
128 SCM_API int gh_eqv_p(SCM x, SCM y);
129 SCM_API int gh_equal_p(SCM x, SCM y);
130 SCM_API int gh_string_equal_p(SCM s1, SCM s2);
131 SCM_API int gh_null_p(SCM l);
132
133 /* standard Scheme procedures available from C */
134
135 #define gh_not(x) scm_not(x)
136
137 SCM_API SCM gh_define(const char *name, SCM val);
138
139 /* string manipulation routines */
140 #define gh_make_string(k, chr) scm_make_string(k, chr)
141 #define gh_string_length(str) scm_string_length(str)
142 #define gh_string_ref(str, k) scm_string_ref(str, k)
143 #define gh_string_set_x(str, k, chr) scm_string_set_x(str, k, chr)
144 #define gh_substring(str, start, end) scm_substring(str, start, end)
145 #define gh_string_append(args) scm_string_append(args)
146
147
148 /* vector manipulation routines */
149 /* note that gh_vector() does not behave quite like the Scheme (vector
150 obj1 obj2 ...), because the interpreter engine does not pass the
151 data element by element, but rather as a list. thus, gh_vector()
152 ends up being identical to gh_list_to_vector() */
153 #define gh_vector(ls) scm_vector(ls)
154 SCM_API SCM gh_make_vector(SCM length, SCM val);
155 SCM_API SCM gh_vector_set_x(SCM vec, SCM pos, SCM val);
156 SCM_API SCM gh_vector_ref(SCM vec, SCM pos);
157 SCM_API unsigned long gh_vector_length (SCM v);
158 SCM_API unsigned long gh_uniform_vector_length (SCM v);
159 SCM_API SCM gh_uniform_vector_ref (SCM v, SCM ilist);
160 #define gh_list_to_vector(ls) scm_vector(ls)
161 #define gh_vector_to_list(v) scm_vector_to_list(v)
162
163 SCM_API SCM gh_lookup (const char *sname);
164 SCM_API SCM gh_module_lookup (SCM module, const char *sname);
165
166 SCM_API SCM gh_cons(SCM x, SCM y);
167 #define gh_list scm_list_n
168 SCM_API unsigned long gh_length(SCM l);
169 SCM_API SCM gh_append(SCM args);
170 SCM_API SCM gh_append2(SCM l1, SCM l2);
171 SCM_API SCM gh_append3(SCM l1, SCM l2, SCM l3);
172 SCM_API SCM gh_append4(SCM l1, SCM l2, SCM l3, SCM l4);
173 #define gh_reverse(ls) scm_reverse(ls)
174 #define gh_list_tail(ls, k) scm_list_tail(ls, k)
175 #define gh_list_ref(ls, k) scm_list_ref(ls, k)
176 #define gh_memq(x, ls) scm_memq(x, ls)
177 #define gh_memv(x, ls) scm_memv(x, ls)
178 #define gh_member(x, ls) scm_member(x, ls)
179 #define gh_assq(x, alist) scm_assq(x, alist)
180 #define gh_assv(x, alist) scm_assv(x, alist)
181 #define gh_assoc(x, alist) scm_assoc(x, alist)
182
183 SCM_API SCM gh_car(SCM x);
184 SCM_API SCM gh_cdr(SCM x);
185
186 SCM_API SCM gh_caar(SCM x);
187 SCM_API SCM gh_cadr(SCM x);
188 SCM_API SCM gh_cdar(SCM x);
189 SCM_API SCM gh_cddr(SCM x);
190
191 SCM_API SCM gh_caaar(SCM x);
192 SCM_API SCM gh_caadr(SCM x);
193 SCM_API SCM gh_cadar(SCM x);
194 SCM_API SCM gh_caddr(SCM x);
195 SCM_API SCM gh_cdaar(SCM x);
196 SCM_API SCM gh_cdadr(SCM x);
197 SCM_API SCM gh_cddar(SCM x);
198 SCM_API SCM gh_cdddr(SCM x);
199
200 SCM_API SCM gh_set_car_x(SCM pair, SCM value);
201 SCM_API SCM gh_set_cdr_x(SCM pair, SCM value);
202
203
204 /* Calling Scheme functions from C. */
205 SCM_API SCM gh_apply (SCM proc, SCM ls);
206 SCM_API SCM gh_call0 (SCM proc);
207 SCM_API SCM gh_call1 (SCM proc, SCM arg);
208 SCM_API SCM gh_call2 (SCM proc, SCM arg1, SCM arg2);
209 SCM_API SCM gh_call3 (SCM proc, SCM arg1, SCM arg2, SCM arg3);
210
211 /* reading and writing Scheme objects. */
212 SCM_API void gh_display (SCM x);
213 SCM_API void gh_write (SCM x);
214 SCM_API void gh_newline (void);
215
216 /* void gh_gc_mark(SCM) : mark an SCM as in use. */
217 /* void gh_defer_ints() : don't interrupt code section. */
218 /* void gh_allow_ints() : see gh_defer_ints(). */
219 /* void gh_new_cell(SCM, int tag) : initialize SCM to be of type 'tag' */
220 /* int gh_type_p(SCM, tag) : test if SCM is of type 'tag' */
221 /* SCM gh_intern(char*) : get symbol corresponding to c-string.*/
222 /* void gh_set_ext_data(SCM, void*) : set extension data on SCM */
223 /* void *gh_get_ext_data(SCM) : return extension data from SCM. */
224
225 /* void gh_assert(int cond, char *msg, SCM obj); */
226
227 #ifdef __cplusplus
228 }
229 #endif
230
231 #endif /* __GH_H */
232
233 /*
234 Local Variables:
235 c-file-style: "gnu"
236 End:
237 */