2 lily-guile.hh encapsulate guile
4 source file of the GNU LilyPond music typesetter
6 (c) 1998--2004 Jan Nieuwenhuizen <janneke@gnu.org>
14 TODO: the GH interface is deprecated as of GUILE 1.6
16 Remove all gh_XXX functions.
21 /* GUILE only includes version in headers (libguile/version.h) as of
22 1.5.x. For some strange reason, they call it SCM.*VERSION.
24 Not including config.h here, saves a lot of unnecessary
28 #ifndef GUILE_MAJOR_VERSION
29 #ifdef SCM_MAJOR_VERSION
30 #define GUILE_MAJOR_VERSION SCM_MAJOR_VERSION
31 #define GUILE_MINOR_VERSION SCM_MINOR_VERSION
32 #define GUILE_PATCH_LEVEL SCM_MICRO_VERSION
38 #include "drul-array.hh"
41 /* Guile 1.4.x compatibility */
42 #if GUILE_MINOR_VERSION < 5
44 #define scm_t_bits scm_bits_t
46 #define fix_guile_1_4_gh_scm2newstr(str, lenp) gh_scm2newstr (str, (int*)lenp)
47 #define gh_scm2newstr(str, lenp) fix_guile_1_4_gh_scm2newstr (str, lenp)
49 #define fix_guile_1_4_scm_primitive_eval(form) scm_eval_3 (form, 1, SCM_EOL)
50 #define scm_primitive_eval(form) fix_guile_1_4_scm_primitive_eval (form)
52 #define scm_int2num(x) scm_long2num (x)
53 #define scm_current_module() (SCM)0
54 #define scm_set_current_module(x) (void)x
55 #define scm_c_resolve_module(x) (SCM)0
57 inline SCM scm_c_make_vector (int k, SCM val) {
58 return scm_make_vector (SCM_MAKINUM (k), val);
60 #define scm_c_define_gsubr scm_make_gsubr
61 #define scm_c_eval_string(str) gh_eval_str ((char*)str)
62 #define scm_remember_upto_here_1(s) scm_remember (&s)
63 #define scm_gc_protect_object scm_protect_object
64 #define scm_gc_unprotect_object scm_unprotect_object
65 #define scm_list_n scm_listify
66 #define SCM_STRING_CHARS SCM_CHARS
67 #define SCM_STRING_LENGTH SCM_LENGTH
68 #define SCM_SYMBOL_CHARS SCM_CHARS
69 #define SCM_SYMBOL_LENGTH SCM_LENGTH
70 #define SCM_VECTOR_LENGTH SCM_LENGTH
72 #define SMOB_FREE_RETURN_VAL(CL) sizeof(CL)
73 #define scm_done_free(x)
76 #ifndef SMOB_FREE_RETURN_VAL
77 #define SMOB_FREE_RETURN_VAL(CL) 0
81 #if GUILE_MINOR_VERSION < 7
82 #define scm_gc_unregister_collectable_memory(a,b,c) scm_done_free(b)
83 #define scm_gc_register_collectable_memory(a,b,c) scm_done_malloc(b)
84 #define SCM_VECTOR_REF(v,i) (SCM_VELTS((v))[(i)])
85 #define scm_hash_table_p scm_vector_p
89 #include "direction.hh"
90 #include "flower-proto.hh"
93 #define SCM_PACK(x) ((SCM) x)
97 #define SCM_UNPACK(x) ( x)
101 conversion functions follow the GUILE naming convention, i.e.
106 SCM ly_last (SCM list);
107 SCM ly_write2scm (SCM s);
108 SCM ly_deep_copy (SCM);
109 SCM ly_truncate_list (int k, SCM l );
115 // #define CACHE_SYMBOLS
120 todo: should add check for x86 as well
122 #define CACHE_SYMBOLS
130 Using this trick we cache the value of gh_symbol2scm ("fooo") where
131 "fooo" is a constant string. This is done at the cost of one static
132 variable per ly_symbol2scm() use, and one boolean evaluation for
135 The overall speedup of lily is about 5% on a run of wtk1-fugue2
138 #define ly_symbol2scm(x) ({ static SCM cached; \
139 SCM value = cached; /* We store this one locally, since G++ -O2 fucks up else */ \
140 if ( __builtin_constant_p ((x)))\
142 value = cached = scm_gc_protect_object (gh_symbol2scm((x)));\
144 value = gh_symbol2scm ((char*) (x)); \
147 inline SCM ly_symbol2scm(char const* x) { return gh_symbol2scm((x)); }
152 String ly_scm2string (SCM s);
153 String ly_symbol2string (SCM);
154 SCM ly_offset2scm (Offset);
155 Offset ly_scm2offset (SCM);
156 SCM ly_assoc_chain (SCM key, SCM achain);
157 SCM ly_assoc_cdr (SCM key, SCM alist);
158 Interval ly_scm2interval (SCM);
159 Drul_array<Real> ly_scm2realdrul (SCM);
160 Slice int_list_to_slice (SCM l);
161 SCM ly_interval2scm (Drul_array<Real>);
163 Real robust_scm2double (SCM, double);
164 int robust_scm2int (SCM, int);
165 Drul_array<Real> robust_scm2drul (SCM, Drul_array<Real>);
166 Interval robust_scm2interval (SCM, Drul_array<Real>);
167 Offset robust_scm2offset (SCM, Offset);
169 SCM ly_quote_scm (SCM s);
170 bool type_check_assignment (SCM val, SCM sym, SCM type_symbol) ;
171 String print_scm_val (SCM val);
172 SCM ly_number2string (SCM s);
174 SCM parse_symbol_list (char const *);
175 SCM robust_list_ref(int i, SCM l);
176 SCM alist_to_hashq (SCM);
178 inline SCM ly_cdr (SCM x) { return SCM_CDR (x); }
179 inline SCM ly_car (SCM x) { return SCM_CAR (x); }
180 inline SCM ly_caar (SCM x) { return SCM_CAAR (x); }
181 inline SCM ly_cdar (SCM x) { return SCM_CDAR (x); }
182 inline SCM ly_cadr (SCM x) { return SCM_CADR (x); }
183 inline SCM ly_cddr (SCM x) { return SCM_CDDR (x); }
184 inline SCM ly_caddr (SCM x) { return SCM_CADDR (x); }
185 inline SCM ly_cdadr (SCM x) { return SCM_CDADR (x); }
186 inline SCM ly_caadr (SCM x) { return SCM_CAADR (x); }
187 /* inserts at front, removing dublicates */
188 inline SCM ly_assoc_front_x(SCM alist, SCM key, SCM val)
190 return scm_acons(key, val, scm_assoc_remove_x (alist, key));
193 #define gh_pair_p ly_pair_p
194 bool ly_pair_p (SCM x);
196 inline bool ly_pair_p (SCM x) { return SCM_NFALSEP (scm_pair_p (x)); }
198 inline bool ly_symbol_p (SCM x) { return SCM_SYMBOLP (x); }
199 inline bool ly_number_p (SCM x) { return SCM_NUMBERP (x); }
200 inline bool ly_procedure_p (SCM x) { return SCM_NFALSEP (scm_procedure_p (x)); }
203 display and print newline.
206 void ly_display_scm (SCM s);
211 void read_lily_scm_file (String);
212 void ly_init_guile ();
214 bool is_direction (SCM s);
215 bool is_number_pair (SCM);
219 these conversion functions also do a typecheck on the argument, and
220 return a default value if S has the wrong type.
223 Direction to_dir (SCM s);
224 bool to_boolean (SCM s);
226 void init_ly_protection ();
227 unsigned int ly_scm_hash (SCM s);
229 SCM index_get_cell (SCM cell, Direction d);
230 SCM index_set_cell (SCM cell, Direction d, SCM val);
232 SCM ly_snoc (SCM s, SCM list);
233 SCM ly_split_list (SCM s, SCM list);
234 SCM ly_unique (SCM list);
241 void add_scm_init_func (void (*) ());
244 typedef SCM (*Scheme_function_unknown) ();
247 #if __GNUC__ > 2 || __GNUC_MINOR__ >= 96
248 typedef SCM (*Scheme_function_0) ();
249 typedef SCM (*Scheme_function_1) (SCM);
250 typedef SCM (*Scheme_function_2) (SCM,SCM);
251 typedef SCM (*Scheme_function_3) (SCM,SCM, SCM);
253 typedef SCM (*Scheme_function_0) (...);
254 typedef SCM (*Scheme_function_1) (...);
255 typedef SCM (*Scheme_function_2) (...);
256 typedef SCM (*Scheme_function_3) (...);
259 #define DECLARE_SCHEME_CALLBACK(NAME,ARGS) \
260 static SCM NAME ARGS; \
261 static SCM NAME ## _proc
263 #define MAKE_SCHEME_CALLBACK(TYPE, FUNC, ARGCOUNT) \
264 SCM TYPE :: FUNC ## _proc;\
266 TYPE ## _ ## FUNC ## _init_functions () \
268 TYPE :: FUNC ## _proc = gh_new_procedure ## ARGCOUNT ## _0 (#TYPE "::" #FUNC, \
269 ((Scheme_function_ ## ARGCOUNT)TYPE :: FUNC)); \
270 scm_c_export (#TYPE "::" #FUNC, NULL);\
273 ADD_SCM_INIT_FUNC (TYPE ## _ ## FUNC ## _callback, TYPE ## _ ## FUNC ## _init_functions); \
276 void ly_add_function_documentation (SCM proc, char const * fname,
277 char const * varlist,
280 #define ADD_SCM_INIT_FUNC(name, func)\
281 class name ## _scm_initter { \
283 name ## _scm_initter () \
285 add_scm_init_func (func); \
287 } _ ## name ## _scm_initter; \
290 #define LY_DEFINE_WITHOUT_DECL(INITPREFIX, FNAME, PRIMNAME, REQ, OPT, VAR, ARGLIST, DOCSTRING) \
293 INITPREFIX ## init ()\
296 = scm_c_define_gsubr (PRIMNAME,REQ, OPT, VAR, (Scheme_function_unknown) FNAME);\
297 ly_add_function_documentation ( FNAME ## _proc ,PRIMNAME, #ARGLIST, DOCSTRING);\
298 scm_c_export (PRIMNAME,NULL);\
300 ADD_SCM_INIT_FUNC (INITPREFIX ## init_unique_prefix, INITPREFIX ## init);\
305 #define LY_DEFINE(FNAME, PRIMNAME, REQ, OPT, VAR, ARGLIST, DOCSTRING) \
306 SCM FNAME ARGLIST ; \
307 LY_DEFINE_WITHOUT_DECL(FNAME, FNAME, PRIMNAME, REQ, OPT, VAR, ARGLIST, DOCSTRING)
310 #define LY_DEFINE_MEMBER_FUNCTION(CLASS, FNAME, PRIMNAME, REQ, OPT, VAR, ARGLIST, DOCSTRING) \
311 SCM FNAME ARGLIST ; \
312 LY_DEFINE_WITHOUT_DECL(CLASS ## FNAME, CLASS::FNAME, PRIMNAME, REQ, OPT, VAR, ARGLIST, DOCSTRING)
315 #endif /* LILY_GUILE_HH */