]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/lily-guile.cc
(protect_smob): experiment: O(1) GC (un)protection.
[lilypond.git] / lily / lily-guile.cc
index 9cb3f082c46796151c2be80981da3774d1ca8b73..2ebc9beee68be121b3f48410a2cd8cdd95324018 100644 (file)
@@ -4,29 +4,30 @@
   source file of the GNU LilyPond music typesetter
 
   (c) 1998--2005 Jan Nieuwenhuizen <janneke@gnu.org>
-                 Han-Wen Nienhuys <hanwen@cs.uu.nl>
+  Han-Wen Nienhuys <hanwen@cs.uu.nl>
 */
 
+#include "lily-guile.hh"
 
 #include <cstdio>
 #include <cstdlib>
 #include <cstring> /* strdup, strchr */
 #include <cctype>
-#include <libintl.h>           // gettext on macos x
 
 #include "config.hh"
-#include "version.hh"
-#include "lily-guile.hh"
+
+#include "dimensions.hh"
+#include "direction.hh"
+#include "file-path.hh"
+#include "international.hh"
 #include "libc-extension.hh"
 #include "main.hh"
-#include "file-path.hh"
-#include "warn.hh"
-#include "direction.hh"
+#include "misc.hh"
 #include "offset.hh"
 #include "pitch.hh"
-#include "dimensions.hh"
 #include "source-file.hh"
-#include "misc.hh"
+#include "version.hh"
+#include "warn.hh"
 
 // #define TEST_GC
 
@@ -40,6 +41,7 @@ SCM
 ly_to_string (SCM scm)
 {
   return scm_call_3 (ly_lily_module_constant ("format"), SCM_BOOL_F,
+
                     scm_makfrom0str ("~S"), scm);
 }
 
@@ -52,13 +54,13 @@ ly_last (SCM list)
 SCM
 ly_write2scm (SCM s)
 {
-  SCM port = scm_mkstrport (SCM_INUM0, 
+  SCM port = scm_mkstrport (SCM_INUM0,
                            scm_make_string (SCM_INUM0, SCM_UNDEFINED),
                            SCM_OPN | SCM_WRTNG,
                            "ly_write2string");
   //  SCM write = scm_eval_3 (ly_symbol2scm ("write"), s, SCM_EOL);
   SCM write = scm_primitive_eval (ly_symbol2scm ("write"));
-  
+
   // scm_apply (write, port, SCM_EOL);
   scm_call_2 (write, s, port);
   return scm_strport_to_string (port);
@@ -75,7 +77,7 @@ ly_symbol2string (SCM s)
 {
   /*
     Ugh. this is not very efficient.
-   */
+  */
   SCM str = scm_symbol_to_string (s);
   return ly_scm2string (str);
 }
@@ -102,32 +104,30 @@ gulp_file_to_string (String fn, bool must_exist)
 
   int n;
   char *str = gulp_file (s, &n);
-  String result ((Byte*) str, n);
+  String result ((Byte *) str, n);
   delete[] str;
-  
+
   if (be_verbose_global)
     progress_indication ("]");
 
   return result;
 }
 
-
-
 extern "C" {
   // maybe gdb 5.0 becomes quicker if it doesn't do fancy C++ typing?
-void
-ly_display_scm (SCM s)
-{
-  scm_display (s, scm_current_output_port ());
-  scm_newline (scm_current_output_port ());
-}
+  void
+  ly_display_scm (SCM s)
+  {
+    scm_display (s, scm_current_output_port ());
+    scm_newline (scm_current_output_port ());
+  }
 };
 
 String
 ly_scm2string (SCM str)
 {
   assert (scm_is_string (str));
-  return String ((Byte*)scm_i_string_chars (str),
+  return String ((Byte *)scm_i_string_chars (str),
                 (int) scm_i_string_length (str));
 }
 
@@ -136,7 +136,7 @@ ly_scm2newstr (SCM str, size_t *lenp)
 {
   SCM_ASSERT_TYPE (scm_is_string (str), str, SCM_ARG1, __FUNCTION__, "string");
 
-  size_t len = SCM_STRING_LENGTH (str);
+  size_t len = scm_i_string_length (str);
   if (char *new_str = (char *) malloc ((len + 1) * sizeof (char)))
     {
       memcpy (new_str, scm_i_string_chars (str), len);
@@ -191,23 +191,21 @@ extern "C" {
   void initialize_kpathsea ();
 }
 #endif
-    
+
 void
 ly_init_ly_module (void *)
 {
-  for (int i = scm_init_funcs_->size () ; i--;)
+  for (int i = scm_init_funcs_->size (); i--;)
     (scm_init_funcs_->elem (i)) ();
+
   if (be_verbose_global)
     progress_indication ("\n");
 
 #if KPATHSEA
   if (is_TeX_format_global)
-    {
-      initialize_kpathsea ();
-    }
+    initialize_kpathsea ();
 #endif
-  
+
   scm_primitive_load_path (scm_makfrom0str ("lily.scm"));
 }
 
@@ -232,7 +230,7 @@ is_direction (SCM s)
   if (scm_is_number (s))
     {
       int i = scm_to_int (s);
-      return i>= -1 && i <= 1; 
+      return i >= -1 && i <= 1;
     }
   return false;
 }
@@ -286,7 +284,7 @@ appendable_list ()
 {
   SCM s = scm_cons (SCM_EOL, SCM_EOL);
   scm_set_car_x (s, s);
-  
+
   return s;
 }
 
@@ -294,8 +292,8 @@ void
 appendable_list_append (SCM l, SCM elt)
 {
   SCM newcons = scm_cons (elt, SCM_EOL);
-  
-  scm_set_cdr_x (scm_car (l), newcons);      
+
+  scm_set_cdr_x (scm_car (l), newcons);
   scm_set_car_x (l, newcons);
 }
 
@@ -321,63 +319,32 @@ ly_deep_copy (SCM src)
     {
       int len = scm_c_vector_length (src);
       SCM nv = scm_c_make_vector (len, SCM_UNDEFINED);
-      for (int i = 0 ;i < len ; i++)
+      for (int i = 0;i < len; i++)
        {
          SCM si = scm_int2num (i);
-         scm_vector_set_x (nv, si, ly_deep_copy (scm_vector_ref (src, si))); 
+         scm_vector_set_x (nv, si, ly_deep_copy (scm_vector_ref (src, si)));
        }
     }
   return src;
 }
 
-SCM
-ly_chain_assoc_get (SCM key, SCM achain, SCM dfault)
-{
-  if (scm_is_pair (achain))
-    {
-      SCM handle = scm_assoc (key, scm_car (achain));
-      if (scm_is_pair (handle))
-       return scm_cdr (handle);
-      else
-       return ly_chain_assoc (key, scm_cdr (achain));
-    }
-  else
-    return dfault;
-}
 
-SCM
-ly_chain_assoc (SCM key, SCM achain)
-{
-  if (scm_is_pair (achain))
-    {
-      SCM handle = scm_assoc (key, scm_car (achain));
-      if (scm_is_pair (handle))
-       return handle;
-      else
-       return ly_chain_assoc (key, scm_cdr (achain));
-    }
-  else
-    return SCM_BOOL_F;
-}
 
 /* looks the key up in the cdrs of the alist-keys
    - ignoring the car and ignoring non-pair keys.
    Returns first match found, i.e.
 
    alist = ((1 . 10)
-                   ((1 . 2) . 11)
-                   ((2 . 1) . 12)
-                   ((3 . 0) . 13)
-                   ((4 . 1) . 14) )
-
-I would like (ly_assoc_cdr 1) to return 12 - because it's the first
-element with the cdr of the key = 1.  In other words (alloc_cdr key)
-corresponds to call
-
-(alloc (anything . key))
-
+   ((1 . 2) . 11)
+   ((2 . 1) . 12)
+   ((3 . 0) . 13)
+   ((4 . 1) . 14) )
 
+   I would like (ly_assoc_cdr 1) to return 12 - because it's the first
+   element with the cdr of the key = 1.  In other words (alloc_cdr key)
+   corresponds to call
 
+   (alloc (anything . key))
 */
 SCM
 ly_assoc_cdr (SCM key, SCM alist)
@@ -402,11 +369,11 @@ parse_symbol_list (char const *lst)
   char *orig = s;
   SCM create_list = SCM_EOL;
 
-  char * e = s + strlen (s) - 1;
+  char *e = s + strlen (s) - 1;
   while (e >= s && isspace (*e))
     *e-- = 0;
 
-  for (char * p = s; *p; p++)
+  for (char *p = s; *p; p++)
     if (*p == '\n')
       *p = ' ';
   
@@ -453,11 +420,11 @@ print_scm_val (SCM val)
     realval = realval.left_string (100)
       + "\n :\n :\n"
       + realval.right_string (100);
-  return realval;       
+  return realval;
 }
 
 bool
-type_check_assignment (SCM sym, SCM val,  SCM type_symbol) 
+type_check_assignment (SCM sym, SCM val, SCM type_symbol)
 {
   bool ok = true;
 
@@ -466,7 +433,7 @@ type_check_assignment (SCM sym, SCM val,  SCM type_symbol)
 
 
     TODO: should remove #f from allowed vals?
-   */
+  */
   if (val == SCM_EOL || val == SCM_BOOL_F)
     return ok;
 
@@ -480,55 +447,50 @@ type_check_assignment (SCM sym, SCM val,  SCM type_symbol)
     TODO: deprecate the use of \override and \revert for
     autoBeamSettings?
 
-    or use a symbol autoBeamSettingS?  
-   */
-  return true; 
+    or use a symbol autoBeamSettingS?
+  */
+  return true;
 #endif
-  
+
   SCM type = scm_object_property (sym, type_symbol);
 
-  if (type != SCM_EOL && !ly_c_procedure_p (type))
-      {
-       warning (_f ("Can't find property type-check for `%s' (%s).",
-                    ly_symbol2string (sym).to_str0 (),
-                    ly_symbol2string (type_symbol).to_str0 ())
-                + "  " + _ ("Perhaps you made a typing error?"));
-
-       /* Be strict when being anal :) */
-       if (do_internal_type_checking_global)
-         abort ();
-       
-       warning (_ ("Doing assignment anyway."));
-      }
+  if (type != SCM_EOL && !ly_is_procedure (type))
+    {
+      warning (_f ("can't find property type-check for `%s' (%s).",
+                  ly_symbol2string (sym).to_str0 (),
+                  ly_symbol2string (type_symbol).to_str0 ())
+              + "  " + _ ("perhaps a typing error?"));
+
+      /* Be strict when being anal :) */
+      if (do_internal_type_checking_global)
+       abort ();
+
+      warning (_ ("doing assignment anyway"));
+    }
   else
     {
       if (val != SCM_EOL
-         && ly_c_procedure_p (type)
+         && ly_is_procedure (type)
          && scm_call_1 (type, val) == SCM_BOOL_F)
        {
-         SCM errport = scm_current_error_port ();
          ok = false;
          SCM typefunc = ly_lily_module_constant ("type-name");
          SCM type_name = scm_call_1 (typefunc, type);
 
-        
-         scm_puts (_f ("Type check for `%s' failed; value `%s' must be of type `%s'",
-                       ly_symbol2string (sym).to_str0 (),
-                       print_scm_val (val),
-                       ly_scm2string (type_name).to_str0 ()).to_str0 (),
-                   errport);
-         scm_puts ("\n", errport);                   
+         message (_f ("type check for `%s' failed; value `%s' must be of type `%s'",
+                      ly_symbol2string (sym).to_str0 (),
+                      print_scm_val (val),
+                      ly_scm2string (type_name).to_str0 ()));
+         progress_indication ("\n");
        }
     }
   return ok;
 }
 
-
 /* some SCM abbrevs
 
-   zijn deze nou handig?
-   zijn ze er al in scheme, maar heten ze anders? */
-
+zijn deze nou handig?
+zijn ze er al in scheme, maar heten ze anders? */
 
 /* Remove doubles from (sorted) list */
 SCM
@@ -538,18 +500,17 @@ ly_unique (SCM list)
   for (SCM i = list; scm_is_pair (i); i = scm_cdr (i))
     {
       if (!scm_is_pair (scm_cdr (i))
-         || !ly_c_equal_p (scm_car (i), scm_cadr (i)))
+         || !ly_is_equal (scm_car (i), scm_cadr (i)))
        unique = scm_cons (scm_car (i), unique);
     }
   return scm_reverse_x (unique, SCM_EOL);
 }
 
-
 static int
 scm_default_compare (void const *a, void const *b)
 {
-  SCM pa = *(SCM*) a;
-  SCM pb = *(SCM*) b;
+  SCM pa = *(SCM *) a;
+  SCM pb = *(SCM *) b;
   if (pa == pb)
     return 0;
   return pa < pb ? -1 : 1;
@@ -579,10 +540,9 @@ ly_list_qsort_uniq_x (SCM lst)
   *tail = SCM_EOL;
   delete[] arr;
 
-  return lst; 
+  return lst;
 }
 
-
 /* tail add */
 SCM
 ly_snoc (SCM s, SCM list)
@@ -601,26 +561,24 @@ ly_split_list (SCM s, SCM list)
     {
       SCM i = scm_car (after);
       after = scm_cdr (after);
-      if (ly_c_equal_p (i, s))
+      if (ly_is_equal (i, s))
        break;
       before = scm_cons (i, before);
     }
-  return scm_cons ( scm_reverse_x (before, SCM_EOL),  after);
-  
+  return scm_cons (scm_reverse_x (before, SCM_EOL), after);
 }
 
-
 void
 taint (SCM *)
 {
   /*
     nop.
-   */
+  */
 }
 
 /*
   display stuff without using stack
- */
+*/
 SCM
 display_list (SCM s)
 {
@@ -630,7 +588,7 @@ display_list (SCM s)
   for (; scm_is_pair (s); s = scm_cdr (s))
     {
       scm_display (scm_car (s), p);
-      scm_puts (" ", p);      
+      scm_puts (" ", p);
     }
   scm_puts (")", p);
   return SCM_UNSPECIFIED;
@@ -643,13 +601,13 @@ int_list_to_slice (SCM l)
   s.set_empty ();
   for (; scm_is_pair (l); l = scm_cdr (l))
     if (scm_is_number (scm_car (l)))
-      s.add_point (scm_to_int (scm_car (l))); 
+      s.add_point (scm_to_int (scm_car (l)));
   return s;
 }
 
 /* Return I-th element, or last elt L. If I < 0, then we take the first
    element.
-   
+
    PRE: length (L) > 0  */
 SCM
 robust_list_ref (int i, SCM l)
@@ -671,8 +629,8 @@ Interval
 robust_scm2interval (SCM k, Drul_array<Real> v)
 {
   Interval i;
-  i[LEFT]= v[LEFT];
-  i[RIGHT]= v[RIGHT];
+  i[LEFT] = v[LEFT];
+  i[RIGHT] = v[RIGHT];
   if (is_number_pair (k))
     i = ly_scm2interval (k);
   return i;
@@ -708,17 +666,16 @@ alist_to_hashq (SCM alist)
   int i = scm_ilength (alist);
   if (i < 0)
     return scm_c_make_hash_table (0);
-         
+
   SCM tab = scm_c_make_hash_table (i);
   for (SCM s = alist; scm_is_pair (s); s = scm_cdr (s))
     {
       SCM pt = scm_cdar (s);
       scm_hashq_set_x (tab, scm_caar (s), pt);
     }
-  return tab; 
+  return tab;
 }
 
-
 bool
 alist_equal_p (SCM a, SCM b)
 {
@@ -730,15 +687,13 @@ alist_equal_p (SCM a, SCM b)
       SCM l = scm_assoc (key, b);
 
       if (l == SCM_BOOL_F
-         || !ly_c_equal_p ( scm_cdr (l), val))
+         || !ly_is_equal (scm_cdr (l), val))
 
        return false;
     }
   return true;
 }
 
-
-
 SCM
 ly_alist_vals (SCM alist)
 {
@@ -757,5 +712,3 @@ ly_hash2alist (SCM tab)
   return scm_call_1 (func, tab);
 }
 
-
-