* stepmake/stepmake/metafont-rules.make: backport 1.7 fixes.
[lilypond.git] / lily / lily-guile.cc
blob7a08f7d3f30227842b6c5068a2782368c70f2dee
1 /*
2 lily-guile.cc -- implement assorted guile functions
4 source file of the GNU LilyPond music typesetter
6 (c) 1998--2002 Jan Nieuwenhuizen <janneke@gnu.org>
8 Han-Wen Nienhuys <hanwen@cs.uu.nl>
9 */
12 #include <stdio.h>
13 #include <stdlib.h>
14 #include <math.h> /* isinf */
15 #include <string.h> /* strdup, strchr */
18 #include "lily-proto.hh"
20 /* macosx fix:
23 source-file.hh includes cmath which undefines isinf and isnan
25 inline int my_isinf(Real r) { return isinf(r); }
26 inline int my_isnan(Real r) { return isnan(r); }
30 #include "libc-extension.hh"
31 #include "lily-guile.hh"
32 #include "main.hh"
33 #include "file-path.hh"
34 #include "warn.hh"
35 #include "direction.hh"
36 #include "offset.hh"
37 #include "interval.hh"
38 #include "pitch.hh"
39 #include "dimensions.hh"
40 #include "source-file.hh"
42 // #define TEST_GC
44 SCM
45 ly_last (SCM list)
47 return ly_car (scm_last_pair (list));
51 SCM
52 ly_write2scm (SCM s)
54 SCM port = scm_mkstrport (SCM_INUM0,
55 scm_make_string (SCM_INUM0, SCM_UNDEFINED),
56 SCM_OPN | SCM_WRTNG,
57 "ly_write2string");
58 // SCM write = scm_eval_3 (ly_symbol2scm ("write"), s, SCM_EOL);
59 SCM write = scm_primitive_eval (ly_symbol2scm ("write"));
61 // scm_apply (write, port, SCM_EOL);
62 gh_call2 (write, s, port);
63 return scm_strport_to_string (port);
67 SCM
68 ly_quote_scm (SCM s)
70 return scm_list_n (ly_symbol2scm ("quote"), s, SCM_UNDEFINED);
75 String
76 ly_symbol2string (SCM s)
78 assert (gh_symbol_p (s));
79 return String ((Byte*)SCM_STRING_CHARS (s), (int) SCM_STRING_LENGTH (s));
83 String
84 gulp_file_to_string (String fn)
86 String s = global_path.find (fn);
87 if (s == "")
89 String e = _f ("can't find file: `%s'", fn);
90 e += " ";
91 e += _f ("(load path: `%s')", global_path.string ());
92 error (e);
94 else if (verbose_global_b)
95 progress_indication ("[" + s);
98 int n;
99 char * str = gulp_file (s, &n);
100 String result (str);
101 delete[] str;
103 if (verbose_global_b)
104 progress_indication ("]");
106 return result;
109 LY_DEFINE(ly_gulp_file, "ly-gulp-file", 1,0, 0,
110 (SCM name),
111 "Read the file named @var{name}, and return its contents in a string. The
112 file is looked up using the lilypond search path.
116 return scm_makfrom0str (gulp_file_to_string (ly_scm2string (name)).to_str0 ());
120 extern "C" {
121 // maybe gdb 5.0 becomes quicker if it doesn't do fancy C++ typing?
122 void
123 ly_display_scm (SCM s)
125 gh_display (s);
126 gh_newline ();
130 String
131 ly_scm2string (SCM s)
133 assert (gh_string_p (s));
135 char *p = SCM_STRING_CHARS(s);
136 String r (p);
137 return r;
141 index_get_cell (SCM s, Direction d)
144 assert (d);
145 return (d == LEFT) ? ly_car (s) : ly_cdr (s);
149 index_set_cell (SCM s, Direction d, SCM v)
151 if (d == LEFT)
152 gh_set_car_x (s, v);
153 else if (d == RIGHT)
154 gh_set_cdr_x (s, v);
155 return s;
158 LY_DEFINE(ly_warning,"ly-warn", 1, 0, 0,
159 (SCM str),"Scheme callable function to issue the warning @code{msg}.")
161 SCM_ASSERT_TYPE (gh_string_p (str), str, SCM_ARG1, __FUNCTION__, "string");
162 warning ("lily-guile: " + ly_scm2string (str));
163 return SCM_BOOL_T;
166 LY_DEFINE(ly_isdir, "dir?", 1,0, 0, (SCM s),
167 "type predicate. A direction is a -1, 0 or 1, where -1 represents left or
168 down and 1 represents right or up.
171 if (gh_number_p (s))
173 int i = gh_scm2int (s);
174 return (i>= -1 && i <= 1) ? SCM_BOOL_T : SCM_BOOL_F;
176 return SCM_BOOL_F;
179 bool
180 ly_number_pair_p (SCM p)
182 return gh_pair_p (p) && gh_number_p (ly_car (p)) && gh_number_p (ly_cdr (p));
185 typedef void (*Void_fptr) ();
186 Array<Void_fptr> *scm_init_funcs_;
188 void add_scm_init_func (void (*f) ())
190 if (!scm_init_funcs_)
191 scm_init_funcs_ = new Array<Void_fptr>;
193 scm_init_funcs_->push (f);
197 void
198 ly_init_guile ()
200 SCM last_mod = scm_current_module ();
201 scm_set_current_module (scm_c_resolve_module ("guile"));
203 for (int i=scm_init_funcs_->size () ; i--;)
204 (scm_init_funcs_->elem (i)) ();
206 if (verbose_global_b)
207 progress_indication ("\n");
210 scm_primitive_load_path (scm_makfrom0str ("lily.scm"));
212 scm_set_current_module (last_mod);
215 unsigned int ly_scm_hash (SCM s)
217 return scm_ihashv (s, ~1u);
222 bool
223 ly_dir_p (SCM s)
225 if (gh_number_p (s))
227 int i = gh_scm2int (s);
228 return i>= -1 && i <= 1;
230 return false;
234 bool
235 ly_axis_p (SCM s)
237 if (gh_number_p (s))
239 int i = gh_scm2int (s);
240 return i== 0 || i == 1;
242 return false;
246 Direction
247 to_dir (SCM s)
249 return SCM_INUMP (s) ? (Direction) gh_scm2int (s) : CENTER;
252 Interval
253 ly_scm2interval (SCM p)
255 return Interval (gh_scm2double (ly_car (p)),
256 gh_scm2double (ly_cdr (p)));
260 ly_interval2scm (Drul_array<Real> i)
262 return gh_cons (gh_double2scm (i[LEFT]),
263 gh_double2scm (i[RIGHT]));
269 bool
270 to_boolean (SCM s)
272 return gh_boolean_p (s) && gh_scm2bool (s);
276 Appendable list L: the cdr contains the list, the car the last cons
277 in the list.
280 appendable_list ()
282 SCM s = gh_cons (SCM_EOL, SCM_EOL);
283 gh_set_car_x (s, s);
285 return s;
288 void
289 appendable_list_append (SCM l, SCM elt)
291 SCM newcons = gh_cons (elt, SCM_EOL);
293 gh_set_cdr_x (ly_car (l), newcons);
294 gh_set_car_x (l, newcons);
299 ly_offset2scm (Offset o)
301 return gh_cons (gh_double2scm (o[X_AXIS]), gh_double2scm (o[Y_AXIS]));
304 Offset
305 ly_scm2offset (SCM s)
307 return Offset (gh_scm2double (ly_car (s)),
308 gh_scm2double (ly_cdr (s)));
312 LY_DEFINE(ly_number2string, "ly-number->string", 1, 0,0,
313 (SCM s),
314 " converts @var{num} to a string without generating many decimals. It
315 leaves a space at the end.
318 SCM_ASSERT_TYPE (gh_number_p (s), s, SCM_ARG1, __FUNCTION__, "number");
320 char str[400]; // ugh.
322 if (scm_exact_p (s) == SCM_BOOL_F)
324 Real r (gh_scm2double (s));
326 if (my_isinf (r) || my_isnan (r))
328 programming_error ("Infinity or NaN encountered while converting Real number; setting to zero.");
329 r = 0.0;
332 sprintf (str, "%8.4f ", r);
334 else
336 sprintf (str, "%d ", gh_scm2int (s));
339 return scm_makfrom0str (str);
343 Undef this to see if GUILE GC is causing too many swaps.
346 //#define TEST_GC
348 #ifdef TEST_GC
349 #include <libguile/gc.h>
351 static void *
352 greet_sweep (void *dummy1, void *dummy2, void *dummy3)
354 fprintf (stderr, "entering sweep\n");
357 static void *
358 wave_sweep_goodbye (void *dummy1, void *dummy2, void *dummy3)
360 fprintf (stderr, "leaving sweep\n");
362 #endif
365 #include "version.hh"
366 LY_DEFINE(ly_version, "ly-version", 0, 0, 0, (),
367 "Return the current lilypond version as a list, e.g.
368 @code{(1 3 127 uu1)}.
371 char const* vs = "\' (" MAJOR_VERSION " " MINOR_VERSION " " PATCH_LEVEL " " MY_PATCH_LEVEL ")" ;
373 return gh_eval_str ((char*)vs);
376 LY_DEFINE(ly_unit, "ly-unit", 0, 0, 0, (),
377 "Return the unit used for lengths as a string.")
379 return scm_makfrom0str (INTERNAL_UNIT);
382 LY_DEFINE(ly_verbose, "ly-verbose", 0, 0, 0, (),
383 "Return whether lilypond is being run in verbose mode.")
385 return gh_bool2scm (verbose_global_b);
388 static void
389 init_functions ()
391 #ifdef TEST_GC
392 scm_c_hook_add (&scm_before_mark_c_hook, greet_sweep, 0, 0);
393 scm_c_hook_add (&scm_before_sweep_c_hook, wave_sweep_goodbye, 0, 0);
394 #endif
397 ADD_SCM_INIT_FUNC (funcs, init_functions);
400 ly_deep_copy (SCM src)
402 if (gh_pair_p (src))
404 return gh_cons (ly_deep_copy (ly_car (src)), ly_deep_copy (ly_cdr (src)));
406 else if (gh_vector_p (src))
408 int l = SCM_VECTOR_LENGTH (src);
409 SCM nv = scm_c_make_vector (l, SCM_UNDEFINED);
410 for (int i =0 ; i< l ; i++)
412 SCM si = gh_int2scm (i);
413 scm_vector_set_x (nv, si, ly_deep_copy (scm_vector_ref (src, si)));
416 else
417 return src;
419 return src;
426 ly_assoc_chain (SCM key, SCM achain)
428 if (gh_pair_p (achain))
430 SCM handle = scm_assoc (key, ly_car (achain));
431 if (gh_pair_p (handle))
432 return handle;
433 else
434 return ly_assoc_chain (key, ly_cdr (achain));
436 else
437 return SCM_BOOL_F;
440 /* looks the key up in the cdrs of the alist-keys
441 - ignoring the car and ignoring non-pair keys.
442 Returns first match found, i.e.
444 alist = ((1 . 10)
445 ((1 . 2) . 11)
446 ((2 . 1) . 12)
447 ((3 . 0) . 13)
448 ((4 . 1) . 14) )
450 I would like (ly_assoc_cdr 1) to return 12 - because it's the first
451 element with the cdr of the key = 1. In other words (alloc_cdr key)
452 corresponds to call
454 (alloc (anything . key))
460 ly_assoc_cdr (SCM key, SCM alist)
462 if (gh_pair_p (alist)) {
463 SCM trykey = ly_caar(alist);
464 if(gh_pair_p(trykey) && to_boolean(scm_equal_p(key,ly_cdr(trykey))))
465 return ly_car(alist);
466 else
467 return ly_assoc_cdr (key, ly_cdr (alist));
469 else
470 return SCM_BOOL_F;
474 LIST has the form "sym1 sym2 sym3\nsym4\nsym5"
476 i.e. \n and ' ' can be used interchangeably as separators.
479 parse_symbol_list (const char * list)
481 char * s = strdup (list);
482 char *orig = s;
483 SCM create_list = SCM_EOL;
485 for (char * p = s; *p; p++)
487 if (*p == '\n')
488 *p = ' ' ;
491 if (!s[0] )
492 s = 0;
496 while (s)
498 char *next = strchr (s, ' ');
499 if (next)
500 *next++ = 0;
502 create_list = gh_cons (ly_symbol2scm (s), create_list);
503 s = next;
506 free (orig);
507 return create_list;
512 ly_truncate_list (int k, SCM l )
514 if (k == 0)
516 l = SCM_EOL;
518 else
520 SCM s = l;
521 k--;
522 for (; gh_pair_p (s) && k--; s = ly_cdr (s))
525 if (gh_pair_p (s))
527 gh_set_cdr_x (s, SCM_EOL);
530 return l;
534 String
535 print_scm_val (SCM val)
537 String realval = ly_scm2string (ly_write2scm (val));
538 if (realval.length () > 200)
539 realval = realval.left_string (100) + "\n :\n :\n" + realval.right_string (100);
541 return realval;
544 bool
545 type_check_assignment (SCM sym, SCM val, SCM type_symbol)
547 bool ok = true;
550 Always succeeds.
553 TODO: should remove #f from allowed vals?
555 if (val == SCM_EOL || val == SCM_BOOL_F)
556 return ok;
559 SCM type = SCM_EOL;
561 if (gh_symbol_p (sym))
562 type = scm_object_property (sym, type_symbol);
564 if (type != SCM_EOL && !gh_procedure_p (type))
566 warning (_f ("Can't find property type-check for `%s' (%s).",
567 ly_symbol2string (sym).to_str0 (),
568 ly_symbol2string (type_symbol).to_str0 ())
569 + " " + _ ("Perhaps you made a typing error?"));
571 /* Be strict when being anal :) */
572 if (internal_type_checking_global_b)
573 abort ();
575 warning (_ ("Doing assignment anyway."));
577 else
579 if (val != SCM_EOL
580 && gh_procedure_p (type)
581 && gh_call1 (type, val) == SCM_BOOL_F)
583 SCM errport = scm_current_error_port ();
584 ok = false;
585 SCM typefunc = scm_primitive_eval (ly_symbol2scm ("type-name"));
586 SCM type_name = gh_call1 (typefunc, type);
589 scm_puts (_f ("Type check for `%s' failed; value `%s' must be of type `%s'",
590 ly_symbol2string (sym).to_str0 (),
591 print_scm_val (val),
592 ly_scm2string (type_name).to_str0 ()).to_str0 (),
593 errport);
594 scm_puts ("\n", errport);
597 return ok;
601 /* some SCM abbrevs
603 zijn deze nou handig?
604 zijn ze er al in scheme, maar heten ze anders? */
607 /* Remove doubles from (sorted) list */
609 ly_unique (SCM list)
611 SCM unique = SCM_EOL;
612 for (SCM i = list; gh_pair_p (i); i = ly_cdr (i))
614 if (!gh_pair_p (ly_cdr (i))
615 || !gh_equal_p (ly_car (i), ly_cadr (i)))
616 unique = gh_cons (ly_car (i), unique);
618 return scm_reverse_x (unique, SCM_EOL);
621 /* tail add */
623 ly_snoc (SCM s, SCM list)
625 return gh_append2 (list, scm_list_n (s, SCM_UNDEFINED));
629 /* Split list at member s, removing s.
630 Return (BEFORE . AFTER) */
632 ly_split_list (SCM s, SCM list)
634 SCM before = SCM_EOL;
635 SCM after = list;
636 for (; gh_pair_p (after);)
638 SCM i = ly_car (after);
639 after = ly_cdr (after);
640 if (gh_equal_p (i, s))
641 break;
642 before = gh_cons (i, before);
644 return gh_cons ( scm_reverse_x (before, SCM_EOL), after);
649 void
650 taint (SCM *)
653 nop.
658 display stuff without using stack
661 display_list (SCM s)
663 SCM p = scm_current_output_port();
665 scm_puts ("(", p);
666 for (; gh_pair_p(s); s =gh_cdr(s))
668 scm_display (gh_car(s), p);
669 scm_puts (" ", p);
671 scm_puts (")", p);
672 return SCM_UNSPECIFIED;
675 Slice
676 int_list_to_slice (SCM l)
678 Slice s;
679 s.set_empty ();
680 for (; gh_pair_p (l); l = gh_cdr (l))
682 if (gh_number_p (gh_car (l)))
683 s.add_point (gh_scm2int (gh_car (l)));
686 return s;
693 Return I-th element, or last elt L. If I < 0, then we take the first
694 element.
696 PRE: length (L) > 0
699 robust_list_ref(int i, SCM l)
701 while (i-- > 0 && gh_pair_p (gh_cdr(l)))
702 l = gh_cdr (l);
704 return gh_car(l);