]> git.donarmstrong.com Git - lilypond.git/blob - lily/paper-outputter.cc
bfe92de4b87c164803bf84f4f7d60d6d15053235
[lilypond.git] / lily / paper-outputter.cc
1 /*
2   paper-outputter.cc -- implement Paper_outputter
3
4   source file of the GNU LilyPond music typesetter
5
6   (c)  1997--2001 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7   Jan Nieuwenhuizen <janneke@gnu.org>
8 */
9
10 #include <time.h>
11 #include <fstream.h>
12 #include <math.h>
13 #include <iostream.h>
14
15 #include "dimensions.hh"
16 #include "virtual-methods.hh"
17 #include "paper-outputter.hh"
18 #include "paper-stream.hh"
19 #include "molecule.hh"
20 #include "array.hh"
21 #include "string-convert.hh"
22 #include "debug.hh"
23 #include "font-metric.hh"
24 #include "main.hh"
25 #include "scope.hh"
26
27 #include "lily-version.hh"
28 #include "paper-def.hh"
29 #include "file-results.hh"
30
31
32 /*
33   Ugh, this is messy.
34  */
35
36 Paper_outputter::Paper_outputter (String name)
37 {
38   stream_p_ =  new Paper_stream (name);
39
40  /*
41    lilypond -f scm x.ly
42    guile -s x.scm
43   */
44   verbatim_scheme_b_ = output_format_global == "scm";
45
46   if (verbatim_scheme_b_)
47     {
48         *stream_p_ << ""
49           ";;; Usage: guile -s x.scm > x.tex\n"
50           " (primitive-load-path 'standalone.scm)\n"
51           "; (scm-tex-output)\n"
52           " (scm-ps-output)\n"
53           " (map (lambda (x) (display (ly-eval x))) ' (\n"
54         ;
55     }
56
57 }
58
59 Paper_outputter::~Paper_outputter ()
60 {
61   if (verbatim_scheme_b_)
62     {
63       *stream_p_ << "))";
64     }
65   delete stream_p_;
66 }
67
68
69 void
70 Paper_outputter::output_header ()
71 {
72   if (safe_global_b)
73     {
74       gh_define ("security-paranoia", SCM_BOOL_T);      
75     }
76
77   SCM exp = gh_list (ly_symbol2scm ((output_format_global + "-scm").ch_C ()),
78                      ly_quote_scm (ly_symbol2scm ("all-definitions")),
79                      SCM_UNDEFINED);
80   exp = scm_eval2 (exp, SCM_EOL);
81   scm_eval2 (exp, SCM_EOL);
82   
83   String creator = gnu_lilypond_version_str ();
84   
85   String       generate = _ (", at ");
86   time_t t (time (0));
87   generate += ctime (&t);
88   generate = generate.left_str (generate.length_i () - 1);
89   
90   /*
91     Make fixed length time stamps
92    */
93   generate = generate + to_str (' ' * (120 - generate.length_i ())>? 0)  ;
94   
95   SCM args_scm = 
96     gh_list (ly_str02scm (creator.ch_l ()),
97              ly_str02scm (generate.ch_l ()), SCM_UNDEFINED);
98
99
100   SCM scm = gh_cons (ly_symbol2scm ("header"), args_scm);
101   output_scheme (scm);
102 }
103
104
105
106 void
107 Paper_outputter::output_comment (String str)
108 {
109   output_scheme (gh_list (ly_symbol2scm ("comment"),
110                           ly_str02scm ((char*)str.ch_C ()),
111                           SCM_UNDEFINED)
112                  );
113 }
114
115
116 void
117 Paper_outputter::output_scheme (SCM scm)
118 {
119   /*
120     we don't rename dump_scheme, because we might in the future want
121     to remember Scheme. We don't now, because it sucks up a lot of memory.
122   */
123   dump_scheme (scm);
124 }
125
126
127 /*
128   UGH.
129
130   Should probably change interface to do less eval (symbol), and more
131   apply (procedure, args)
132  */
133 void
134 Paper_outputter::dump_scheme (SCM s)
135 {
136   if (verbatim_scheme_b_)
137     {
138       *stream_p_ << ly_scm2string (ly_write2scm (s));
139     }
140   else
141     {
142       SCM result = scm_eval2 (s, SCM_EOL);
143       char *c=gh_scm2newstr (result, NULL);
144   
145       *stream_p_ << c;
146       free (c);
147     }
148 }
149
150 void
151 Paper_outputter::output_scope (Scope *scope, String prefix)
152 {
153   SCM al = scope->to_alist ();
154   for (SCM s = al ; gh_pair_p (s); s = gh_cdr (s))
155     {
156       SCM k = gh_caar (s);
157       SCM v = gh_cdar (s);
158       String s = ly_symbol2string (k);
159
160       
161       if (gh_string_p (v))
162         {
163           output_String_def (prefix + s, ly_scm2string (v));
164         }
165       else if (scm_integer_p (v) == SCM_BOOL_T)
166         {
167           output_int_def (prefix + s, gh_scm2int (v));    
168         }
169       else if (gh_number_p (v))
170         {
171           output_Real_def (prefix + s, gh_scm2double (v));        
172         }
173     }
174 }
175
176 void
177 Paper_outputter::output_version ()
178 {
179   String id_str = "Lily was here";
180   id_str += String_convert::pad_to (String (", ") + version_str (), 40);
181
182   output_String_def ("lilypondtagline", id_str);
183   output_String_def ("LilyPondVersion", version_str ());
184 }
185
186
187
188
189 void
190 Paper_outputter::output_Real_def (String k, Real v)
191 {
192   
193   SCM scm = gh_list (ly_symbol2scm ("lily-def"),
194                      ly_str02scm (k.ch_l ()),
195                      ly_str02scm (to_str (v).ch_l ()),
196                      SCM_UNDEFINED);
197   output_scheme (scm);
198 }
199
200 void
201 Paper_outputter::output_String_def (String k, String v)
202 {
203   
204   SCM scm = gh_list (ly_symbol2scm ("lily-def"),
205                      ly_str02scm (k.ch_l ()),
206                      ly_str02scm (v.ch_l ()),
207                      SCM_UNDEFINED);
208   output_scheme (scm);
209 }
210
211 void
212 Paper_outputter::output_int_def (String k, int v)
213 {
214   SCM scm = gh_list (ly_symbol2scm ("lily-def"),
215                      ly_str02scm (k.ch_l ()),
216                      ly_str02scm (to_str (v).ch_l ()),
217                      SCM_UNDEFINED);
218   output_scheme (scm);
219 }
220
221 void
222 Paper_outputter::output_string (SCM str)
223 {
224   *stream_p_ <<  ly_scm2string (str);
225 }
226
227 void
228 Paper_outputter::write_header_field_to_file (String filename, String key, String value)
229 {
230   if (filename != "-")
231     filename += String (".") + key;
232   progress_indication (_f ("writing header field %s to %s...",
233                            key,
234                            filename == "-" ? String ("<stdout>") : filename));
235   
236   ostream *os = open_file_stream (filename);
237   *os << value;
238   close_file_stream (os);
239   progress_indication ("\n");
240 }
241
242 void
243 Paper_outputter::write_header_fields_to_file (Scope * header)
244 {
245   if (dump_header_fieldnames_global.size ())
246     {
247       SCM fields = header->to_alist ();
248       for (int i = 0; i < dump_header_fieldnames_global.size (); i++)
249         {
250           String key = dump_header_fieldnames_global[i];
251           SCM val = gh_assoc (ly_symbol2scm (key.ch_C ()), fields);
252           String s;
253           /* Only write header field to file if it exists */
254           if (gh_pair_p (val))
255             {
256               s = ly_scm2string (gh_cdr (val));
257               /* Always write header field file, even if string is empty ... */
258               write_header_field_to_file (basename_, key, s);
259             }
260         }
261     }
262 }