]> git.donarmstrong.com Git - lilypond.git/blob - lily/lily-guile.cc
release: 1.3.7
[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_str02scm (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_eval_str (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 // apparently env arg is ignored.
96 SCM
97 ly_quote_scm (SCM s)
98 {
99 #if 0
100   /*
101     This internal quote symbol breaks list->string and display,
102     and thus scm output.
103    */
104   return scm_m_quote (scm_cons2 (SCM_EOL, s, SCM_EOL) ,SCM_EOL);
105 #else
106   return gh_list (ly_symbol2scm ("quote"), s, SCM_UNDEFINED);
107 #endif
108 }
109
110
111 SCM
112 ly_symbol2scm(const char *s)
113 {
114   return gh_symbol2scm ((char *)s);
115 }
116
117 String
118 ly_symbol2string (SCM s)
119 {
120   return String((Byte*)SCM_CHARS (s), (int) SCM_LENGTH(s));
121 }
122
123 #if 0
124 SCM
125 ly_set_x (String name, SCM val)
126 {
127   return scm_sysintern ((char*)name.ch_C(), val);
128   
129 }
130 #endif
131
132 /**
133    Read a file, and shove it down GUILE.  GUILE also has file read
134    functions, but you can't fiddle with the path of those.
135  */
136 void
137 read_lily_scm_file (String fn)
138 {
139   String s = global_path.find (fn);
140   if (s == "")
141     {
142       String e = _f ("Can't find file: `%s'", fn);
143       e += " ";
144       e += _f ("(load path: `%s')", global_path.str ());
145       error (e);
146     }
147   else
148     *mlog << '[' << s;
149
150
151   Simple_file_storage f(s);
152   
153   ly_eval_str ((char *) f.ch_C());
154   *mlog << "]" << flush;  
155 }
156
157
158 SCM
159 ly_gulp_file (SCM name)
160 {
161   String fn (ly_scm2string (name));
162  String s = global_path.find (fn);
163   if (s == "")
164     {
165       String e = _f ("Can't find file: `%s'", fn);
166       e += " ";
167       e += _f ("(load path: `%s')", global_path.str ());
168       error (e);
169     }
170   else
171     *mlog << '[' << s;
172
173
174   Simple_file_storage f(s);
175   SCM result = ly_str02scm (f.ch_C());
176   *mlog << "]";
177   return result;
178 }
179
180 void
181 ly_display_scm (SCM s)
182 {
183   gh_display (s);
184   gh_newline ();
185 }
186
187 String
188 ly_scm2string (SCM s)
189 {
190   int len; 
191   char * p = gh_scm2newstr (s , &len);
192   
193   String r (p);
194
195   free (p);
196   return r;
197 }
198
199 SCM
200 index_cell (SCM s, Direction d)
201 {
202   assert (d);
203   return (d == LEFT) ? SCM_CAR (s) : SCM_CDR (s);
204 }
205
206   
207 SCM
208 array_to_list (SCM *a , int l)
209 {
210   SCM list = SCM_EOL;
211   for (int i= l; i--;  )
212     {
213       list =  gh_cons (a[i], list);
214     }
215   return list;
216 }
217
218 SCM
219 ly_warning (SCM str)
220 {
221   assert (gh_string_p (str));
222   warning ("lily-guile: " + ly_scm2string (str));
223   return SCM_BOOL_T;
224 }
225
226 SCM
227 ly_isdir_p (SCM s)
228 {
229   if (gh_number_p (s))
230     {
231       int i = gh_scm2int (s);
232       return (i>= -1 && i <= 1)  ? SCM_BOOL_T : SCM_BOOL_F; 
233     }
234   return SCM_BOOL_F;
235 }
236
237
238 void
239 init_functions ()
240 {
241   scm_make_gsubr ("ly-warn", 1, 0, 0, (SCM(*)(...))ly_warning);
242   scm_make_gsubr ("ly-gulp-file", 1,0, 0, (SCM(*)(...))ly_gulp_file);
243   scm_make_gsubr ("dir?", 1,0, 0, (SCM(*)(...))ly_isdir_p);  
244 }
245
246 ADD_SCM_INIT_FUNC(funcs, init_functions);
247
248
249 typedef void (*Void_fptr)();
250 Array<Void_fptr> *scm_init_funcs_;
251
252 void add_scm_init_func (void (*f)())
253 {
254   if (!scm_init_funcs_)
255     scm_init_funcs_ = new Array<Void_fptr>;
256
257   scm_init_funcs_->push (f);
258 }
259
260 void
261 init_lily_guile ()
262 {
263   for (int i=scm_init_funcs_->size() ; i--;)
264     (scm_init_funcs_->elem (i)) ();
265 }
266
267 unsigned int ly_scm_hash (SCM s)
268 {
269   return scm_ihashv (s, ~1u);
270 }