]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/lily-guile.hh
0b5e2a01638830af28734121984cc0d5db5b4f48
[lilypond.git] / lily / include / lily-guile.hh
1 /*
2   lily-guile.hh encapsulate guile
3
4   source file of the GNU LilyPond music typesetter
5
6   (c) 1998--2004 Jan Nieuwenhuizen <janneke@gnu.org>
7 */
8
9 #ifndef LILY_GUILE_HH
10 #define LILY_GUILE_HH
11
12
13 /* GUILE only includes version in headers (libguile/version.h) as of
14    1.5.x.  For some strange reason, they call it SCM.*VERSION.
15
16    Not including config.h here, saves a lot of unnecessary
17    recompiles. */
18 #include <libguile.h>
19
20 #ifndef GUILE_MAJOR_VERSION
21 #ifdef SCM_MAJOR_VERSION
22 #define GUILE_MAJOR_VERSION SCM_MAJOR_VERSION
23 #define GUILE_MINOR_VERSION SCM_MINOR_VERSION
24 #define GUILE_PATCH_LEVEL SCM_MICRO_VERSION
25 #else
26 #include "config.h"
27 #endif
28 #endif
29
30 #include "drul-array.hh"
31
32
33 /* Guile 1.4.x compatibility */
34 #if GUILE_MINOR_VERSION < 5
35
36 #define scm_t_bits scm_bits_t
37
38 #define fix_guile_1_4_scm_primitive_eval(form) scm_eval_3 (form, 1, SCM_EOL)
39 #define scm_primitive_eval(form) fix_guile_1_4_scm_primitive_eval (form)
40
41 #define scm_int2num(x) scm_long2num (x)  
42 #define scm_current_module() (SCM)0
43 #define scm_set_current_module(x) (void)x
44 #define scm_c_resolve_module(x) (SCM)0
45
46 inline SCM scm_c_make_vector  (int k, SCM val) {
47   return scm_make_vector (scm_from_int (k), val);
48 }
49 #define scm_c_define_gsubr scm_make_gsubr
50 #define scm_remember_upto_here_1(s) scm_remember (&s)
51 #define scm_gc_protect_object scm_protect_object
52 #define scm_gc_unprotect_object scm_unprotect_object
53 #define scm_list_n scm_listify
54 #define SCM_STRING_CHARS SCM_CHARS
55 #define SCM_STRING_LENGTH SCM_LENGTH
56 #define SCM_SYMBOL_CHARS SCM_CHARS
57 #define SCM_SYMBOL_LENGTH SCM_LENGTH
58 #define SCM_VECTOR_LENGTH SCM_LENGTH
59
60 #define SMOB_FREE_RETURN_VAL(CL) sizeof(CL) 
61 #define scm_done_free(x) 
62 #endif
63
64 #ifndef SMOB_FREE_RETURN_VAL
65 #define SMOB_FREE_RETURN_VAL(CL) 0
66 #endif
67
68
69 #if GUILE_MINOR_VERSION < 7
70 #define scm_gc_unregister_collectable_memory(a,b,c) scm_done_free(b)
71 #define scm_gc_register_collectable_memory(a,b,c) scm_done_malloc(b)
72 #define SCM_VECTOR_REF(v,i) (SCM_VELTS((v))[(i)])
73 #define scm_from_int(x) SCM_MAKINUM(x)
74 #define scm_hash_table_p scm_vector_p 
75
76 #endif
77
78 #include "direction.hh"
79 #include "flower-proto.hh"
80
81 #ifndef SCM_PACK
82 #define SCM_PACK(x) ((SCM) x)
83
84 #endif
85 #ifndef SCM_UNPACK
86 #define SCM_UNPACK(x) ( x)
87 #endif
88
89 /*
90   conversion functions follow the GUILE naming convention, i.e.
91
92     A ly_B2A (B b);
93  */
94
95 SCM ly_last (SCM list);
96 SCM ly_write2scm (SCM s);
97 SCM ly_deep_copy (SCM);
98 SCM ly_truncate_list (int k, SCM l );
99
100
101 /*
102   Unreliable on gcc2
103  */
104 // #define CACHE_SYMBOLS
105
106
107 #if (__GNUC__ > 2)
108 /*
109   todo: should add check for x86 as well
110  */
111 #define CACHE_SYMBOLS
112 #endif
113
114
115 #ifdef CACHE_SYMBOLS
116
117
118 /*
119   Using this trick we cache the value of scm_str2symbol ("fooo") where
120   "fooo" is a constant string. This is done at the cost of one static
121   variable per ly_symbol2scm() use, and one boolean evaluation for
122   every call.
123
124   The overall speedup of lily is about 5% on a run of wtk1-fugue2
125
126 */
127 #define ly_symbol2scm(x) ({ static SCM cached;  \
128  SCM value = cached;  /* We store this one locally, since G++ -O2 fucks up else */   \
129  if ( __builtin_constant_p ((x)))\
130  {  if (!cached)\
131      value = cached =  scm_gc_protect_object (scm_str2symbol((x)));\
132  } else\
133   value = scm_str2symbol ((char*) (x)); \
134   value; })
135 #else
136 inline SCM ly_symbol2scm(char const* x) { return scm_str2symbol((x)); }
137 #endif 
138
139 extern SCM global_lily_module;
140
141 /*
142   TODO: rename me to ly_c_lily_module_eval
143  */
144 #define ly_scheme_function(x) ({static SCM cached; \
145  SCM value = cached;  /* We store this one locally, since G++ -O2 fucks up else */   \
146  if ( __builtin_constant_p ((x)))\
147  {  if (!cached)\
148      value = cached =  scm_gc_protect_object (scm_eval(scm_str2symbol (x), global_lily_module));\
149  } else\
150   value = scm_eval(scm_str2symbol (x), global_lily_module);\
151   value; })
152
153
154
155 String ly_scm2string (SCM s);
156 String ly_symbol2string (SCM);
157 SCM ly_offset2scm (Offset);
158 Offset ly_scm2offset (SCM);
159 SCM ly_assoc_chain (SCM key, SCM achain);
160 SCM ly_assoc_cdr (SCM key, SCM alist);
161 Interval ly_scm2interval (SCM);
162 Drul_array<Real> ly_scm2realdrul (SCM);
163 Slice int_list_to_slice (SCM l);
164 SCM ly_interval2scm (Drul_array<Real>);
165 char *ly_scm2newstr (SCM str, size_t *lenp);
166
167 Real robust_scm2double (SCM, double);
168 int robust_scm2int (SCM, int);
169 Drul_array<Real> robust_scm2drul (SCM, Drul_array<Real>);
170 Interval robust_scm2interval (SCM, Drul_array<Real>);
171 Offset robust_scm2offset (SCM, Offset);
172
173 SCM ly_quote_scm (SCM s);
174 bool type_check_assignment (SCM val, SCM sym,  SCM type_symbol) ;
175 String print_scm_val (SCM val);
176 SCM ly_number2string (SCM s);
177
178 SCM parse_symbol_list (char const *);
179 SCM robust_list_ref(int i, SCM l);
180 SCM alist_to_hashq (SCM);
181
182 inline SCM ly_cdr (SCM x) { return SCM_CDR (x); }
183 inline SCM ly_car (SCM x) { return SCM_CAR (x); } 
184 inline SCM ly_caar (SCM x) { return SCM_CAAR (x); }
185 inline SCM ly_cdar (SCM x) { return SCM_CDAR (x); }
186 inline SCM ly_cadr (SCM x) { return SCM_CADR (x); }
187 inline SCM ly_cddr (SCM x) { return SCM_CDDR (x); }
188 inline SCM ly_caddr (SCM x) { return SCM_CADDR (x); }
189 inline SCM ly_cdadr (SCM x) { return SCM_CDADR (x); }
190 inline SCM ly_caadr (SCM x) { return SCM_CAADR (x); }
191 inline SCM ly_cadar (SCM x) { return SCM_CADAR (x); }
192 /* inserts at front, removing dublicates */
193 inline SCM ly_assoc_front_x(SCM alist, SCM key, SCM val)
194 {
195   return scm_acons(key, val, scm_assoc_remove_x (alist, key));
196 }
197 inline bool ly_c_pair_p (SCM x) { return SCM_NFALSEP (scm_pair_p (x)); }
198 inline bool ly_c_symbol_p (SCM x) { return SCM_SYMBOLP (x); }
199 inline bool ly_c_boolean_p (SCM x) { return SCM_BOOLP (x); }
200 inline bool ly_c_char_p (SCM x) { return SCM_CHARP (x); }
201 inline bool ly_c_number_p (SCM x) { return SCM_NUMBERP (x); }
202 inline bool ly_c_string_p (SCM x) { return SCM_STRINGP (x); }
203 inline bool ly_c_vector_p (SCM x) { return SCM_VECTORP (x); }
204 inline bool ly_c_list_p (SCM x) { return SCM_NFALSEP (scm_list_p (x)); }
205 inline bool ly_c_procedure_p (SCM x) { return SCM_NFALSEP (scm_procedure_p (x)); }
206 inline bool ly_c_eq_p (SCM x, SCM y) { return SCM_EQ_P (x, y); }
207 inline bool ly_c_equal_p (SCM x, SCM y) { 
208   return SCM_NFALSEP (scm_equal_p (x, y)); 
209 }
210
211 inline bool ly_scm2bool (SCM x) { return SCM_NFALSEP (x); }
212 inline char ly_scm2char (SCM x) { return SCM_CHAR(x); }
213 inline int ly_scm2int (SCM x) { return scm_num2int (x, 0, "ly_scm2int"); }
214 inline double ly_scm2double (SCM x) { return scm_num2dbl (x, "ly_scm2double"); }
215 inline unsigned long ly_length (SCM x) { 
216   return scm_num2ulong (scm_length (x), 0, "ly_length");
217 }
218 inline unsigned long ly_vector_length (SCM x) { return SCM_VECTOR_LENGTH (x); }
219
220 inline SCM ly_bool2scm (bool x) { return SCM_BOOL (x); }
221
222 inline SCM ly_append2 (SCM x1, SCM x2) { 
223   return scm_append (scm_listify (x1, x2, SCM_UNDEFINED)); 
224 }
225 inline SCM ly_append3 (SCM x1, SCM x2, SCM x3) { 
226   return scm_append (scm_listify (x1, x2, x3, SCM_UNDEFINED)); 
227 }
228 inline SCM ly_append4 (SCM x1, SCM x2, SCM x3, SCM x4) { 
229   return scm_append (scm_listify (x1, x2, x3, x4, SCM_UNDEFINED)); 
230 }
231
232 /*
233   display and print newline.
234  */
235 extern "C" { 
236 void ly_display_scm (SCM s);
237 }
238
239 #include "array.hh"
240
241 void read_lily_scm_file (String);
242 void ly_c_init_guile ();
243
244 bool is_direction (SCM s);
245 bool is_number_pair (SCM);
246 bool is_axis (SCM);
247
248 /*
249   these conversion functions also do a typecheck on the argument, and
250   return a default value if S has the wrong type.
251 */
252
253 Direction to_dir (SCM s);
254 bool to_boolean (SCM s);
255
256 void init_ly_protection ();
257 unsigned int ly_scm_hash (SCM s);
258
259 SCM index_get_cell (SCM cell, Direction d);
260 SCM index_set_cell (SCM cell, Direction d, SCM val);
261
262 SCM ly_snoc (SCM s, SCM list);
263 SCM ly_split_list (SCM s, SCM lst);
264 SCM ly_unique (SCM lst);
265 SCM ly_list_qsort_uniq_x (SCM lst);
266
267
268
269 /*
270   snarfing.
271  */
272 void add_scm_init_func (void (*) ());
273
274 extern "C" {
275 typedef SCM (*Scheme_function_unknown) ();
276 }
277
278 #if __GNUC__ > 2 || __GNUC_MINOR__ >= 96
279 typedef SCM (*Scheme_function_0) ();
280 typedef SCM (*Scheme_function_1) (SCM);
281 typedef SCM (*Scheme_function_2) (SCM,SCM);      
282 typedef SCM (*Scheme_function_3) (SCM,SCM, SCM);         
283 #else
284 typedef SCM (*Scheme_function_0) (...);
285 typedef SCM (*Scheme_function_1) (...);
286 typedef SCM (*Scheme_function_2) (...);
287 typedef SCM (*Scheme_function_3) (...);
288 #endif
289
290
291 /*
292   Adds the NAME as a Scheme function, and a variable to store the SCM
293   version of the function in the static variable NAME_proc
294  */
295 #define DECLARE_SCHEME_CALLBACK(NAME,ARGS) \
296         static SCM NAME ARGS; \
297         static SCM NAME ## _proc
298
299 /*
300   Make TYPE::FUNC available as a Scheme function. 
301  */
302 #define MAKE_SCHEME_CALLBACK(TYPE, FUNC, ARGCOUNT) \
303 SCM TYPE :: FUNC ## _proc;\
304 void                                                            \
305 TYPE ## _ ## FUNC ## _init_functions ()                                 \
306 {                                                               \
307   TYPE :: FUNC ## _proc = scm_c_define_gsubr (#TYPE "::" #FUNC, \
308                                               (ARGCOUNT), 0, 0, \
309                           (Scheme_function_unknown)TYPE :: FUNC); \
310   scm_c_export (#TYPE "::" #FUNC, NULL);\
311 }                                                               \
312                                                                 \
313 ADD_SCM_INIT_FUNC (TYPE ## _ ## FUNC ## _callback, TYPE ## _ ## FUNC ## _init_functions);       \
314
315
316 void ly_add_function_documentation (SCM proc, char const * fname,
317                                     char const * varlist,
318                                     char const * doc);
319
320 #define ADD_SCM_INIT_FUNC(name, func)\
321 class name ## _scm_initter {                    \
322 public:\
323   name ## _scm_initter ()                       \
324   {                                             \
325     add_scm_init_func (func);           \
326   }                                             \
327 } _ ## name ## _scm_initter;                    \
328 /* end define */
329
330 #define LY_DEFINE_WITHOUT_DECL(INITPREFIX, FNAME, PRIMNAME, REQ, OPT, VAR, ARGLIST, DOCSTRING) \
331 SCM FNAME ## _proc;\
332 void \
333 INITPREFIX ## init ()\
334 {\
335  FNAME ## _proc \
336     = scm_c_define_gsubr (PRIMNAME,REQ, OPT, VAR, (Scheme_function_unknown) FNAME);\
337   ly_add_function_documentation ( FNAME ## _proc ,PRIMNAME, #ARGLIST,  DOCSTRING);\
338   scm_c_export (PRIMNAME,NULL);\
339 }\
340 ADD_SCM_INIT_FUNC (INITPREFIX ## init_unique_prefix, INITPREFIX ## init);\
341 SCM \
342 FNAME ARGLIST\
343
344
345 #define LY_DEFINE(FNAME, PRIMNAME, REQ, OPT, VAR, ARGLIST, DOCSTRING) \
346 SCM FNAME ARGLIST ; \
347 LY_DEFINE_WITHOUT_DECL(FNAME, FNAME, PRIMNAME, REQ, OPT, VAR, ARGLIST, DOCSTRING) 
348
349
350 #define LY_DEFINE_MEMBER_FUNCTION(CLASS, FNAME, PRIMNAME, REQ, OPT, VAR, ARGLIST, DOCSTRING) \
351 SCM FNAME ARGLIST ; \
352 LY_DEFINE_WITHOUT_DECL(CLASS ## FNAME,  CLASS::FNAME, PRIMNAME, REQ, OPT, VAR, ARGLIST, DOCSTRING) 
353
354
355 #define get_property(x) internal_get_property(ly_symbol2scm(x))
356 #define set_property(x,y) internal_set_property(ly_symbol2scm (x), y)
357
358
359 #endif /* LILY_GUILE_HH */