]> git.donarmstrong.com Git - lilypond.git/blob - lily/lily-guile.cc
release: 1.3.0
[lilypond.git] / lily / lily-guile.cc
1 /*
2   lily-guile.cc -- implement assorted guile functions
3
4   source file of the GNU LilyPond music typesetter
5
6   (c) 1998--1999 Jan Nieuwenhuizen <janneke@gnu.org>
7
8   Han-Wen Nienhuys <hanwen@cs.uu.nl>
9 */
10
11
12 #include <stdio.h>
13 #include <stdlib.h>
14
15 #include "libc-extension.hh"
16 #include "lily-guile.hh"
17 #include "main.hh"
18 #include "simple-file-storage.hh"
19 #include "file-path.hh"
20 #include "debug.hh"
21
22 SCM
23 ly_ch_C_to_scm (char const*c)
24 {
25   // this all really sucks, guile should take char const* arguments!
26   return gh_str02scm ((char*)c);
27 }
28
29 SCM
30 ly_ch_C_eval_scm (char const*c)
31 {
32   // this all really sucks, guile should take char const* arguments!
33   return gh_eval_str ((char*)c);
34 }
35
36   
37 /*
38   Pass string to scm parser, evaluate one expression.
39   Return result value and #chars read.
40
41   Thanks to Gary Houston <ghouston@freewire.co.uk>
42
43   Need guile-1.3.4 (>1.3 anyway) for ftell on str ports -- jcn
44 */
45 SCM
46 ly_parse_scm (char const* s, int* n)
47 {
48   SCM str = gh_str02scm ((char*)s);
49   SCM port = scm_mkstrport (SCM_INUM0, str, SCM_OPN | SCM_RDNG,
50                             "scm_eval_0str");
51   SCM from = scm_ftell (port);
52
53   SCM form;
54   SCM answer = SCM_UNSPECIFIED;
55
56   /* Read expression from port */
57   if (!SCM_EOF_OBJECT_P (form = scm_read (port)))
58     answer = scm_eval_x (form);
59
60   /*
61    After parsing
62
63        (begin (foo 1 2))
64
65    all seems fine, but after parsing
66
67        (foo 1 2)
68
69    read_buf has been advanced to read_pos - 1,
70    so that scm_ftell returns 1, instead of #parsed chars
71    */
72   
73   /*
74     urg: reset read_buf for scm_ftell
75     shouldn't scm_read () do this for us?
76   */
77   scm_fill_input (port);
78   SCM to = scm_ftell (port);
79   *n = gh_scm2int (to) - gh_scm2int (from);
80
81   /* Don't close the port here; if we re-enter this function via a
82      continuation, then the next time we enter it, we'll get an error.
83      It's a string port anyway, so there's no advantage to closing it
84      early.
85
86      scm_close_port (port);
87   */
88
89   return answer;
90 }
91
92 /*
93   scm_m_quote doesn't use any env, but needs one for a good signature in GUILE.
94 */
95
96 SCM
97 ly_quote_scm (SCM s)
98 {
99   return scm_m_quote (scm_cons2 (SCM_EOL, s, SCM_EOL) ,SCM_EOL); // apparently env arg is ignored.
100 }
101
102 /*
103   See: libguile/symbols.c
104
105   SCM
106   scm_string_to_symbol(s)
107   
108 */
109 SCM
110 ly_symbol (String name)
111 {
112   return gh_car (scm_intern ((char*)name.ch_C(), name.length_i()));
113 }
114
115 String
116 symbol_to_string (SCM s)
117 {
118   return String((Byte*)SCM_CHARS (s), (int) SCM_LENGTH(s));
119 }
120
121 SCM
122 ly_set_scm (String name, SCM val)
123 {
124   return scm_sysintern ((char*)name.ch_C(), val);
125   
126 }
127
128 /**
129    Read a file, and shove it down GUILE.  GUILE also has file read
130    functions, but you can't fiddle with the path of those.
131  */
132 void
133 read_lily_scm_file (String fn)
134 {
135   String s = global_path.find (fn);
136   if (s == "")
137     {
138       String e = _f ("Can't find file: `%s'", fn);
139       e += " ";
140       e += _f ("(load path: `%s')", global_path.str ());
141       error (e);
142     }
143   else
144     *mlog << '[' << s;
145
146
147   Simple_file_storage f(s);
148   
149   ly_ch_C_eval_scm ((char *) f.ch_C());
150   *mlog << "]" << flush;  
151 }
152
153
154 SCM
155 ly_gulp_file (SCM name)
156 {
157   String fn (ly_scm2string (name));
158  String s = global_path.find (fn);
159   if (s == "")
160     {
161       String e = _f ("Can't find file: `%s'", fn);
162       e += " ";
163       e += _f ("(load path: `%s')", global_path.str ());
164       error (e);
165     }
166   else
167     *mlog << '[' << s;
168
169
170   Simple_file_storage f(s);
171   return ly_ch_C_to_scm (f.ch_C());
172 }
173
174 void
175 ly_display_scm (SCM s)
176 {
177   gh_display (s);
178   gh_newline ();
179 }
180
181 String
182 ly_scm2string (SCM s)
183 {
184   int len; 
185   char * p = gh_scm2newstr (s , &len);
186   
187   String r (p);
188
189   free (p);
190   return r;
191 }
192
193 SCM
194 index_cell (SCM s, Direction d)
195 {
196   assert (d);
197   return (d == LEFT) ? SCM_CAR (s) : SCM_CDR (s);
198 }
199
200   
201 SCM
202 array_to_list (SCM *a , int l)
203 {
204   SCM list = SCM_EOL;
205   for (int i= l; i--;  )
206     {
207       list =  gh_cons (a[i], list);
208     }
209   return list;
210 }
211
212 SCM
213 ly_warning (SCM str)
214 {
215   assert (gh_string_p (str));
216   warning ("lily-guile: " + ly_scm2string (str));
217   return SCM_BOOL_T;
218 }
219
220 void
221 init_functions ()
222 {
223   scm_make_gsubr ("ly-warn", 1, 0, 0, (SCM(*)(...))ly_warning);
224   scm_make_gsubr ("ly-gulp-file", 1,0, 0, (SCM(*)(...))ly_gulp_file);
225 }
226
227 ADD_SCM_INIT_FUNC(funcs, init_functions);
228
229
230 typedef void (*Void_fptr)();
231 Array<Void_fptr> *scm_init_funcs_;
232
233 void add_scm_init_func (void (*f)())
234 {
235   if (!scm_init_funcs_)
236     scm_init_funcs_ = new Array<Void_fptr>;
237
238   scm_init_funcs_->push (f);
239 }
240
241 void
242 init_lily_guile ()
243 {
244   for (int i=scm_init_funcs_->size() ; i--;)
245     (scm_init_funcs_->elem (i)) ();
246 }
247
248 unsigned int ly_scm_hash (SCM s)
249 {
250   return scm_ihashv (s, ~1u);
251 }