]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/score.cc
* Documentation/user/refman.itely: Compile fix for \mark #'(music ...).
[lilypond.git] / lily / score.cc
index f864b58433f09b7543269905a402660ecc2beb20..94a3a252989e452ce540ebc01a967a6e0415ac12 100644 (file)
@@ -3,20 +3,21 @@
 
   source file of the GNU LilyPond music typesetter
 
-  (c)  1997--2001 Han-Wen Nienhuys <hanwen@cs.uu.nl>
+  (c)  1997--2002 Han-Wen Nienhuys <hanwen@cs.uu.nl>
 */
 
+#include <stdio.h>
+
 #include "ly-smobs.icc"
 
-#include "scm-hash.hh"
 #include "score.hh"
-#include "debug.hh"
+#include "warn.hh"
 #include "music-output-def.hh"
 #include "music-output.hh"
 #include "music-iterator.hh"
 #include "music.hh"
 #include "global-translator.hh"
-#include "scope.hh"
+#include "scm-hash.hh"
 #include "cpu-timer.hh"
 #include "main.hh"
 #include "paper-def.hh"
 /*
   TODO: junkme.
  */
-
-Score::Score()
-  : Input()
+Score::Score ()
+  : Input ()
 {
   header_p_ = 0;
   music_ = SCM_EOL;
   errorlevel_i_ = 0;
+
   smobify_self ();
 }
 
+/*
+  store point & click locations.
+  Global to save some time. (Sue us!)
+ */
+bool store_locations_global_b;
+
 Score::Score (Score const &s)
   : Input (s)
 {
   music_ = SCM_EOL;
   header_p_ = 0;
   smobify_self ();
-  
+
   Music * m =unsmob_music (s.music_);
-  music_ =  m?m->clone()->self_scm () : SCM_EOL;
-  scm_unprotect_object (music_);
+  music_ =  m?m->clone ()->self_scm () : SCM_EOL;
+  scm_gc_unprotect_object (music_);
   
   for (int i=0; i < s.def_p_arr_.size (); i++)
-    def_p_arr_.push(s.def_p_arr_[i]->clone());
+    def_p_arr_.push (s.def_p_arr_[i]->clone ());
   errorlevel_i_ = s.errorlevel_i_;
   if (s.header_p_)
-       {
-         header_p_ =  (s.header_p_) ? new Scheme_hash_table (*s.header_p_): 0;
+    {
+      header_p_ = (s.header_p_) ? new Scheme_hash_table (*s.header_p_): 0;
 
-         scm_unprotect_object(header_p_->self_scm ());
-       }
+      scm_gc_unprotect_object (header_p_->self_scm ());
+    }
 }
 
-Score::~Score()
+Score::~Score ()
 {
   
 }
 
+
+/*
+  should enable  this to find weird mistakes? 
+*/
+#define PARANOIA
+
+#ifdef PARANOIA
+#include <sys/resource.h>
+#endif
+
 void
 Score::run_translator (Music_output_def *odef_l)
 {
-  Cpu_timer timer;
 
+
+#ifdef PARANOIA
+  if (verbose_global_b)
+    {
+      struct rlimit rls;
+
+      getrlimit (RLIMIT_STACK, &rls);
+      progress_indication (_f("stack size cur %d, max %d\n" ,rls.rlim_cur, rls.rlim_max));
+    }
+#endif
   
-  Global_translator * trans_p = odef_l->get_global_translator_p();
+  /*
+    We want to know if we want to store locations, since they take a
+    lot of overhead.
+  */
+  store_locations_global_b = (gh_eval_str ("point-and-click") !=  SCM_BOOL_F);
+  
+  Cpu_timer timer;
+  Global_translator * trans_p = odef_l->get_global_translator_p ();
   if (!trans_p)
     {
       programming_error ("no toplevel translator");
       return ;
     }
-  progress_indication (_("Interpreting music..."));
+  progress_indication (_ ("Interpreting music..."));
   Music * music = unsmob_music (music_);
   
   trans_p->final_mom_ = music->length_mom ();
 
-
   Music_iterator * iter = Music_iterator::static_get_iterator_p (music);
-  iter->init_translator(music, trans_p);
+  iter->init_translator (music, trans_p);
 
-  iter->construct_children();
+  iter->construct_children ();
 
-  if (! iter->ok())
+  if (! iter->ok ())
     {
       delete iter;
-      warning (_("Need music in a score"));
+      warning (_ ("Need music in a score"));
       errorlevel_i_ =1;
       return ;
     }
@@ -105,20 +136,20 @@ Score::run_translator (Music_output_def *odef_l)
       warning (_ ("Errors found/*, not processing score*/"));
     }
 
-  Music_output * output = trans_p->get_output_p();
-  scm_unprotect_object (trans_p->self_scm ());
+  Music_output * output = trans_p->get_output_p ();
+  scm_gc_unprotect_object (trans_p->self_scm ());
   
-  if(verbose_global_b)
+  if (verbose_global_b)
     progress_indication (_f ("elapsed time: %.2f seconds",  timer.read ()));
 
   if (!header_p_)
     header_p_ = new Scheme_hash_table; // ugh
-  Scope bla (header_p_);
-  output->header_l_ = &bla;
-  output->origin_str_ =  location_str();
+
+  output->header_l_ = header_p_;
+  output->origin_str_ =  location_str ();
 
   progress_indication ("\n");
-  output->process();
+  output->process ();
   delete output ;
 
   /*
@@ -126,11 +157,11 @@ Score::run_translator (Music_output_def *odef_l)
     the system.
   */
     
-  scm_gc();
+  scm_gc ();
 }
 
 void
-Score::process()
+Score::process ()
 {
   if (!unsmob_music (music_))
     return;
@@ -139,7 +170,7 @@ Score::process()
   for (int i=0; i < def_p_arr_.size (); i++)
     {
       if (no_paper_global_b 
-         && dynamic_cast<Paper_def*>(def_p_arr_[i]))
+         && dynamic_cast<Paper_def*> (def_p_arr_[i]))
        continue;
       run_translator (def_p_arr_[i]);
     }
@@ -151,17 +182,17 @@ Score::process()
 void
 Score::add_output (Music_output_def *pap_p)
 {
-  def_p_arr_.push(pap_p);
+  def_p_arr_.push (pap_p);
 }
 
-IMPLEMENT_SMOBS(Score);
-IMPLEMENT_DEFAULT_EQUAL_P(Score);
-IMPLEMENT_UNSMOB(Score, score);
+IMPLEMENT_SMOBS (Score);
+IMPLEMENT_DEFAULT_EQUAL_P (Score);
+
 
 SCM
 Score::mark_smob (SCM s)
 {
-  Score * sc = (Score*) SCM_CELL_WORD_1(s);
+  Score * sc = (Score*) SCM_CELL_WORD_1 (s);
   if (sc->header_p_)
     scm_gc_mark (sc->header_p_->self_scm ());
   for (int i = sc->def_p_arr_.size (); i--;)
@@ -171,7 +202,7 @@ Score::mark_smob (SCM s)
 }
 
 int
-Score::print_smob (SCM s, SCM p, scm_print_state*)
+Score::print_smob (SCM , SCM p, scm_print_state*)
 {
   scm_puts ("#<Score>", p);