]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/lily-guile.hh
7d5bef226521ab959069bc79cb846eabeeb46ef3
[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--2000 Jan Nieuwenhuizen <janneke@gnu.org>
7 */
8
9 #ifndef LILY_GUILE_HH
10 #define LILY_GUILE_HH
11
12 #include <guile/gh.h>
13 #include <libguile.h>
14
15 #define fix_guile_1_3_4_scm_puts(scm_data, port) scm_puts ((char*)scm_data, port)
16 #define scm_puts(scm_data, port) fix_guile_1_3_4_scm_puts (scm_data, port)
17
18 #include "direction.hh"
19 #include "flower-proto.hh"
20
21 #ifndef SCM_PACK
22 #define SCM_PACK(x) ((SCM) x)
23
24 #endif
25 #ifndef SCM_UNPACK
26 #define SCM_UNPACK(x) ( x)
27 #endif
28
29 /*
30   conversion functions follow the GUILE naming convention, i.e.
31
32     A ly_B2A (B b);
33  */
34 SCM ly_str02scm (char const*c);
35 SCM ly_deep_copy (SCM);
36
37
38 SCM ly_symbol2scm (char const *);
39 String ly_scm2string (SCM s);
40 String ly_symbol2string (SCM);
41 SCM ly_offset2scm (Offset);
42 Offset ly_scm2offset (SCM);
43
44 Interval ly_scm2interval (SCM);
45 SCM ly_interval2scm (Interval);
46
47 SCM ly_parse_scm (char const* s, int* n);
48 SCM ly_quote_scm (SCM s);
49 SCM ly_type (SCM);
50
51 /*
52   display and print newline.
53  */
54 extern "C" { 
55 void ly_display_scm (SCM s);
56 }
57
58 #include "array.hh"
59
60 void read_lily_scm_file (String);
61 void init_lily_guile ();
62
63 bool isdir_b (SCM s);
64
65 /*
66   these conversion functions also do a typecheck on the argument, and
67   return a default value if S has the wrong type.
68 */
69
70 Direction to_dir (SCM s);
71 bool to_boolean (SCM s);
72
73 void init_ly_protection ();
74 unsigned int ly_scm_hash (SCM s);
75
76 SCM index_cell (SCM cellp, Direction d);
77 SCM index_set_cell (SCM cellp, Direction d, SCM val);
78
79
80 /*
81   snarfing.
82  */
83 void add_scm_init_func (void (*)());
84
85
86
87 #define MAKE_SCHEME_CALLBACK(TYPE, FUNC) \
88 static SCM TYPE ## _ ## FUNC ## _proc;\
89 void                                                            \
90 TYPE ## _ ## FUNC ## _init_functions ()                                 \
91 {                                                               \
92   TYPE ## _ ## FUNC ## _proc = gh_new_procedure1_0 (#TYPE "::" #FUNC, \
93   (SCM(*)(SCM))TYPE :: FUNC);                           \
94 }                                                               \
95                                                                 \
96 ADD_SCM_INIT_FUNC(TYPE ## _ ## FUNC ## _callback, TYPE ## _ ## FUNC ## _init_functions);        \
97
98
99 #define ADD_SCM_INIT_FUNC(name, func)\
100 class name ## _scm_initter {                    \
101 public:\
102   name ## _scm_initter ()                       \
103   {                                             \
104     add_scm_init_func (func);           \
105   }                                             \
106 } _ ## name ## _scm_initter;                    \
107 /* end define */
108
109 #endif // LILY_GUILE_HH