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