]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/paper-outputter.cc
(classic_output): don't advance Offset for
[lilypond.git] / lily / paper-outputter.cc
index 781215c2002df99c6e0fe170a3716b53eb1cbf23..8540ae1efbd1cf83514eb6acb61f4855db91d83b 100644 (file)
 
   source file of the GNU LilyPond music typesetter
 
-  (c)  1997--2000 Han-Wen Nienhuys <hanwen@cs.uu.nl>
-  Jan Nieuwenhuizen <janneke@gnu.org>
+  (c) 1997--2004 Han-Wen Nienhuys <hanwen@cs.uu.nl>
+                 Jan Nieuwenhuizen <janneke@gnu.org>
 */
 
-#include <time.h>
-#include <fstream.h>
 #include <math.h>
-#include <iostream.h>
+#include <time.h>
 
-#include "dimensions.hh"
-#include "virtual-methods.hh"
-#include "paper-outputter.hh"
-#include "paper-stream.hh"
-#include "molecule.hh"
 #include "array.hh"
-#include "string-convert.hh"
-#include "debug.hh"
+#include "dimensions.hh"
 #include "font-metric.hh"
-#include "main.hh"
-#include "scope.hh"
-#include "identifier.hh"
+#include "input-smob.hh"
+#include "lily-guile.hh"
 #include "lily-version.hh"
+#include "ly-module.hh"
+#include "main.hh"
+#include "paper-book.hh"
 #include "paper-def.hh"
-#include "file-results.hh"
-
-
-/*
-  Ugh, this is messy.
- */
-
-Paper_outputter::Paper_outputter (Paper_stream  * ps )
-{
- /*
-   lilypond -f scm x.ly
-   guile -s x.scm
-  */
-  verbatim_scheme_b_ =  output_global_ch == String ("scm");
-
-  if (verbatim_scheme_b_)
-    {
-       *ps << ""
-         ";;; Usage: guile -s x.scm > x.tex\n"
-         "(primitive-load-path 'lily.scm)\n"
-         "(scm-tex-output)\n"
-         ";(scm-ps-output)\n"
-         "(map (lambda (x) (display (eval x))) '(\n"
-       ;
-    }
+#include "paper-line.hh"
+#include "paper-outputter.hh"
+#include "scm-hash.hh"
+#include "stencil.hh"
+#include "string-convert.hh"
+#include "warn.hh"
 
-  stream_p_ = ps;
-}
 
-Paper_outputter::~Paper_outputter ()
+Paper_outputter::Paper_outputter (String filename)
 {
-  if (verbatim_scheme_b_)
-    {
-      *stream_p_ << "))";
-    }
-  delete stream_p_;
-}
-
+  if (safe_global_b)
+    scm_define (ly_symbol2scm ("safe-mode?"), SCM_BOOL_T);      
+  
+  file_ = scm_open_file (scm_makfrom0str (filename.to_str0 ()),
+                        scm_makfrom0str ("w"));
 
-void
-Paper_outputter::output_header ()
-{
+  String module_name = "scm output-" + output_format_global;
   if (safe_global_b)
     {
-      gh_define ("security-paranoia", SCM_BOOL_T);      
+      /* In safe mode, start from a GUILE safe-module and import
+        all symbols from the output module.  */
+      scm_c_use_module ("ice-9 safe");
+      SCM msm = scm_primitive_eval (ly_symbol2scm ("make-safe-module"));
+      output_module_ = scm_call_0 (msm);
+      ly_import_module (output_module_,
+                       scm_c_resolve_module (module_name.to_str0 ()));
     }
-
-  SCM exp = gh_list (ly_symbol2scm ((String (output_global_ch) + "-scm").ch_C()),
-                    ly_quote_scm (ly_symbol2scm ("all-definitions")),
-                    SCM_UNDEFINED);
-  exp = scm_eval2 (exp, SCM_EOL);
-  scm_eval2 (exp, SCM_EOL);
-  
-  String creator;
-  if (no_timestamps_global_b)
-    creator = gnu_lilypond_str ();
   else
-    creator = gnu_lilypond_version_str ();
+    output_module_ = scm_c_resolve_module (module_name.to_str0 ());
   
-  String generate;
-  if (no_timestamps_global_b)
-    generate = ".";
-  else
+  /* FIXME: output-lib should be module, that can be imported.  */
+#define IMPORT_LESS 1 // only import the list of IMPORTS
+#if IMPORT_LESS
+  scm_c_use_module ("lily");
+  scm_c_use_module ("ice-9 regex");
+  scm_c_use_module ("srfi srfi-1");
+  scm_c_use_module ("srfi srfi-13");
+#endif
+  char const *imports[] = {
+    "lilypond-version",          /* from lily */
+    "ly:output-def-scope",
+    "ly:gulp-file",
+    "ly:number->string",
+    "ly:ragged-page-breaks",
+    "ly:optimal-page-breaks",
+    
+    "ly:number-pair->string",    /* output-lib.scm */
+    "ly:numbers->string",
+    "ly:inexact->string",
+    
+    "assoc-get",
+#if IMPORT_LESS        
+    "remove",                    /* from srfi srfi-1 */
+    "string-index",              /* from srfi srfi-13 */
+    "string-join",
+    "regexp-substitute/global",  /* from (ice9 regex) */
+#endif 
+    0,
+  };
+      
+  for (int i = 0; imports[i]; i++)
     {
-      generate = _ (", at ");
-      time_t t (time (0));
-      generate += ctime (&t);
-      generate = generate.left_str (generate.length_i () - 1);
+      SCM s = ly_symbol2scm (imports[i]);
+      scm_module_define (output_module_, s, scm_primitive_eval (s));
     }
-
-  SCM args_scm = 
-    gh_list (ly_str02scm (creator.ch_l ()),
-            ly_str02scm (generate.ch_l ()), SCM_UNDEFINED);
-
-
-  SCM scm = gh_cons (ly_symbol2scm ("header"), args_scm);
-  output_scheme (scm);
+#ifndef IMPORT_LESS  // rather crude, esp for safe-mode let's not
+  SCM m = scm_set_current_module (output_module_);
+  /* not present in current module*/
+  scm_c_use_module ("ice-9 regex");
+  scm_c_use_module ("srfi srfi-13");
+  /* Need only a few of these, see above
+     scm_c_use_module ("lily"); */
+  scm_set_current_module (m);
+#endif
 }
 
-
-
-void
-Paper_outputter::output_comment (String str)
+Paper_outputter::~Paper_outputter ()
 {
-  output_scheme (gh_list (ly_symbol2scm ("comment"),
-                         ly_str02scm ((char*)str.ch_C()),
-                         SCM_UNDEFINED)
-                );
+  scm_close_port (file_);
+  file_ = SCM_EOL;
 }
 
-
 void
 Paper_outputter::output_scheme (SCM scm)
 {
-  /*
-    we don't rename dump_scheme, because we might in the future want
-    to remember Scheme. We don't now, because it sucks up a lot of memory.
-  */
-  dump_scheme (scm);
+  scm_display (scm_eval (scm, output_module_), file_);
 }
 
-
-/*
-  UGH.
-
-  Should probably change interface to do less eval ( symbol ), and more
-  apply (procedure, args)
- */
 void
-Paper_outputter::dump_scheme (SCM s)
+Paper_outputter::output_metadata (Paper_def *paper, SCM scopes)
 {
-  if  (verbatim_scheme_b_)
-    {
-      SCM p;
-
-      p = scm_mkstrport (SCM_INUM0, 
-                        scm_make_string (SCM_INUM0, SCM_UNDEFINED),
-                        SCM_OPN | SCM_WRTNG,
-                        "Paper_outputter::dump_scheme()");
-
-      SCM wr =scm_eval2 (ly_symbol2scm ("write"), SCM_EOL);
-      scm_apply (wr, s, gh_list (p, SCM_UNDEFINED));
-  
-      SCM result =  scm_strport_to_string (p);
-      *stream_p_ << ly_scm2string (result);
-    }
-  else
-    {
-      SCM result = scm_eval2 (s, SCM_EOL);
-      char *c=gh_scm2newstr (result, NULL);
-  
-      *stream_p_ << c;
-      free (c);
-    }
+  SCM fields = SCM_EOL;
+  for (int i = dump_header_fieldnames_global.size (); i--; )
+    fields
+      = scm_cons (ly_symbol2scm (dump_header_fieldnames_global[i].to_str0 ()),
+                fields);
+  output_scheme (scm_list_n (ly_symbol2scm ("output-scopes"),
+                            paper->self_scm (),
+                            ly_quote_scm (scopes),
+                            ly_quote_scm (fields),
+                            scm_makfrom0str (basename_.to_str0 ()), 
+                            SCM_UNDEFINED));
 }
 
 void
-Paper_outputter::output_scope (Scope *scope, String prefix)
+Paper_outputter::output_header (Paper_def *paper, SCM scopes, int page_count,
+                               bool is_classic)
 {
-  SCM al = scope->to_alist ();
-  for (SCM s = al ; gh_pair_p (s); s = gh_cdr (s))
-    {
-      SCM k = gh_caar (s);
-      SCM v = gh_cdar (s);
-      String s = ly_symbol2string (k);
-
-      
-      if (gh_string_p (v))
-       {
-         output_String_def (prefix + s, ly_scm2string (v));
-       }
-      else if (scm_integer_p (v) == SCM_BOOL_T)
-       {
-         output_int_def (prefix + s, gh_scm2int (v));    
-       }
-      else if (gh_number_p (v))
-       {
-         output_Real_def (prefix + s, gh_scm2double (v));        
-       }
-    }
+  String creator = gnu_lilypond_version_string ();
+  creator += " (http://lilypond.org)";
+  time_t t (time (0));
+  String time_stamp = ctime (&t);
+  time_stamp = time_stamp.left_string (time_stamp.length () - 1)
+    + " " + *tzname;
+  output_scheme (scm_list_n (ly_symbol2scm ("header"),
+                            scm_makfrom0str (creator.to_str0 ()),
+                            scm_makfrom0str (time_stamp.to_str0 ()),
+                            paper->self_scm (),
+                            scm_int2num (page_count),
+                            ly_bool2scm (is_classic),
+                            SCM_UNDEFINED));
+
+  output_metadata (paper, scopes);
+  output_music_output_def (paper);
+
+  output_scheme (scm_list_1 (ly_symbol2scm ("header-end")));
+
+  /* TODO: maybe have Scheme extract the fonts directly from \paper ?
+          
+     Alternatively, we could simply load the fonts on demand in the
+     output, and do away with this define-fonts step.  */
+  SCM fonts = paper->font_descriptions ();
+  output_scheme (scm_list_3 (ly_symbol2scm ("define-fonts"),
+                            paper->self_scm (),
+                            //FIXME:
+                            ly_quote_scm (ly_list_qsort_uniq_x (fonts))));
 }
 
 void
-Paper_outputter::output_version ()
+Paper_outputter::output_line (SCM line, Offset *origin, bool is_last)
 {
-  String id_str = "Lily was here";
-  if (no_timestamps_global_b)
-    id_str += ".";
-  else
-    id_str += String (", ") + version_str ();
-
-  output_String_def ( "lilypondtagline", id_str);
-  output_String_def ( "LilyPondVersion", version_str ());
-}
-
-
+  Paper_line *pl = unsmob_paper_line (line);
+  Offset dim = pl->dim ();
+  if (dim[Y_AXIS] > 50 CM)
+    {
+      programming_error ("Improbable system height.");
+      dim[Y_AXIS] = 50 CM;
+    }
 
+  output_scheme (scm_list_3 (ly_symbol2scm ("start-system"),
+                            ly_quote_scm (ly_offset2scm (*origin)),
+                            ly_quote_scm (ly_offset2scm (dim))));
 
-void
-Paper_outputter::output_Real_def (String k, Real v)
-{
-  
-  SCM scm = gh_list (ly_symbol2scm ("lily-def"),
-                    ly_str02scm (k.ch_l ()),
-                    ly_str02scm (to_str(v).ch_l ()),
-                    SCM_UNDEFINED);
-  output_scheme (scm);
-}
+  for (SCM s = pl->stencils (); is_pair (s); s = ly_cdr (s))
+    output_expr (unsmob_stencil (ly_car (s))->get_expr (), Offset (0, 0));
 
-void
-Paper_outputter::output_String_def (String k, String v)
-{
-  
-  SCM scm = gh_list (ly_symbol2scm ("lily-def"),
-                    ly_str02scm (k.ch_l ()),
-                    ly_str02scm (v.ch_l ()),
-                    SCM_UNDEFINED);
-  output_scheme (scm);
-}
+  output_scheme (scm_list_2 (ly_symbol2scm ("stop-system"),
+                            ly_bool2scm (is_last)));
 
-void
-Paper_outputter::output_int_def (String k, int v)
-{
-  SCM scm = gh_list (ly_symbol2scm ("lily-def"),
-                    ly_str02scm (k.ch_l ()),
-                    ly_str02scm (to_str (v).ch_l ()),
-                    SCM_UNDEFINED);
-  output_scheme (scm);
+  (*origin)[Y_AXIS] += dim[Y_AXIS];
 }
 
-void
-Paper_outputter::output_string (SCM str)
-{
-  *stream_p_ <<  ly_scm2string (str);
-}
 
 void
-Paper_outputter::output_score_header_field (String filename, String key, String value)
+Paper_outputter::output_music_output_def (Music_output_def* odef)
 {
-  if (filename != "-")
-    filename += String (".") + key;
-  progress_indication (_f ("writing header field %s to %s...",
-                          key,
-                          filename == "-" ? String ("<stdout>") : filename));
-  
-  ostream *os = open_file_stream (filename);
-  *os << value;
-  close_file_stream (os);
-  progress_indication ("\n");
+  output_scheme (scm_list_n (ly_symbol2scm ("output-paper-def"),
+                            odef->self_scm (), SCM_UNDEFINED));
 }
 
+/* TODO: replaceme/rewriteme, see output-ps.scm: output-stencil  */
 void
-Paper_outputter::output_score_header_fields (Paper_def *paper)
+Paper_outputter::output_expr (SCM expr, Offset o)
 {
-  if (global_score_header_fields.size ())
+  while (1)
     {
-      SCM fields;
-#if 0 // ugh, how to reach current Score or Paper_score?
-      if (paper->header_l_)
-       fields = paper->header_l_->to_alist ();
+      if (!is_pair (expr))
+       return;
+  
+      SCM head =ly_car (expr);
+      if (unsmob_input (head))
+       {
+         Input * ip = unsmob_input (head);
+      
+         output_scheme (scm_list_n (ly_symbol2scm ("define-origin"),
+                                    scm_makfrom0str (ip->file_string ().to_str0 ()),
+                                    scm_int2num (ip->line_number ()),
+                                    scm_int2num (ip->column_number ()),
+                                    SCM_UNDEFINED));
+         expr = ly_cadr (expr);
+       }
+      else  if (head ==  ly_symbol2scm ("no-origin"))
+       {
+         output_scheme (scm_list_n (head, SCM_UNDEFINED));
+         expr = ly_cadr (expr);
+       }
+      else if (head == ly_symbol2scm ("translate-stencil"))
+       {
+         o += ly_scm2offset (ly_cadr (expr));
+         expr = ly_caddr (expr);
+       }
+      else if (head == ly_symbol2scm ("combine-stencil"))
+       {
+         output_expr (ly_cadr (expr), o);
+         expr = ly_caddr (expr);
+       }
       else
-#endif
-       fields = header_global_p->to_alist ();
-      String base = paper->current_output_base_;
-      for (int i = 0; i < global_score_header_fields.size (); i++)
        {
-         String key = global_score_header_fields[i];
-         //      SCM val = gh_assoc (ly_str02scm (key.ch_C ()), fields);
-         SCM val = gh_assoc (ly_symbol2scm (key.ch_C ()), fields);
-         String s;
-         if (gh_pair_p (val))
-           s = ly_scm2string (gh_cdr (val));
-         output_score_header_field (base, key, s);
+         output_scheme (scm_list_n (ly_symbol2scm ("placebox"),
+                                    scm_make_real (o[X_AXIS]),
+                                    scm_make_real (o[Y_AXIS]),
+                                    expr,
+                                    SCM_UNDEFINED));
+         return;
        }
     }
 }
+