]> git.donarmstrong.com Git - lilypond.git/blob - lily/paper-outputter.cc
(write_header_fields_to_file):
[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--2003 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7   Jan Nieuwenhuizen <janneke@gnu.org>
8 */
9
10 #include <time.h>
11 #include <math.h>
12
13 #include "dimensions.hh"
14 #include "virtual-methods.hh"
15 #include "paper-outputter.hh"
16 #include "molecule.hh"
17 #include "array.hh"
18 #include "string-convert.hh"
19 #include "warn.hh"
20 #include "font-metric.hh"
21 #include "main.hh"
22 #include "scm-hash.hh"
23 #include "lily-version.hh"
24 #include "paper-def.hh"
25 #include "input-file-results.hh"
26 #include "ly-modules.hh"
27
28
29
30 /*
31   Ugh, this is messy.
32  */
33 Paper_outputter::Paper_outputter (String name)
34 {
35   if (safe_global_b)
36     {
37       gh_define ("security-paranoia", SCM_BOOL_T);      
38     }
39   
40   file_ = scm_open_file (scm_makfrom0str (name.to_str0 ()),
41                             scm_makfrom0str ("w"));
42
43   /*
44     ugh.
45    */
46   SCM exp = scm_list_n (ly_symbol2scm ("find-dumper"),
47                         scm_makfrom0str (output_format_global.to_str0 ()),
48                         SCM_UNDEFINED);
49
50   output_func_  = scm_primitive_eval (exp);
51 }
52
53 Paper_outputter::~Paper_outputter ()
54 {
55   scm_close_port (file_);
56   file_ = SCM_EOL;
57 }
58
59
60 void
61 Paper_outputter::output_header ()
62 {
63   time_t t (time (0));
64   String generate = ctime (&t);
65   generate = generate.left_string (generate.length () - 1) + " " + *tzname;
66   
67   /* Fixed length time stamp */
68   generate = generate + to_string (' ', (50 - generate.length ()) >? 0);
69   
70   /* Fixed length creator string */
71   String creator = gnu_lilypond_version_string ();
72   creator += " (http://lilypond.org)";
73   creator = creator + to_string (' ', (50 - creator.length ()) >? 0);
74   
75   SCM args_scm = scm_list_n (scm_makfrom0str (creator.to_str0 ()),
76                              scm_makfrom0str (generate.to_str0 ()),
77                              SCM_UNDEFINED);
78
79
80   SCM scm = gh_cons (ly_symbol2scm ("header"), args_scm);
81
82   output_scheme (scm);
83 }
84
85
86
87 void
88 Paper_outputter::output_comment (String str)
89 {
90   output_scheme (scm_list_n (ly_symbol2scm ("comment"),
91                           scm_makfrom0str ((char*)str.to_str0 ()),
92                           SCM_UNDEFINED)
93                  );
94 }
95
96 void
97 Paper_outputter::output_scheme (SCM scm)
98 {
99   gh_call2 (output_func_, scm, file_);
100 }
101
102 void
103 Paper_outputter::output_scope (SCM mod, String prefix)
104 {
105   if (!SCM_MODULEP (mod))
106     return ;
107   
108   SCM al = ly_module_to_alist (mod);
109   for (SCM s = al ; gh_pair_p (s); s = ly_cdr (s))
110     {
111       SCM k = ly_caar (s);
112       SCM v = ly_cdar (s);
113       String s = ly_symbol2string (k);
114       
115       if (gh_string_p (v))
116         {
117           output_String_def (prefix + s, ly_scm2string (v));
118         }
119       else if (scm_exact_p (v) == SCM_BOOL_T)
120         {
121           output_int_def (prefix + s, gh_scm2int (v));    
122         }
123       else if (gh_number_p (v))
124         {
125           output_Real_def (prefix + s, gh_scm2double (v));
126         }
127     }
128 }
129
130 void
131 Paper_outputter::output_version ()
132 {
133   String id_string = "Lily was here";
134   id_string += String_convert::pad_to (String (", ") + version_string (), 40);
135
136   output_String_def ("lilypondtagline", id_string);
137   output_String_def ("LilyPondVersion", version_string ());
138   output_String_def ("lilypondpaperunit", String (INTERNAL_UNIT));  
139 }
140
141
142 void
143 Paper_outputter::output_Real_def (String k, Real v)
144 {
145   
146   SCM scm = scm_list_n (ly_symbol2scm ("lily-def"),
147                         scm_makfrom0str (k.get_str0 ()),
148                         scm_makfrom0str (to_string (v).get_str0 ()),
149                         SCM_UNDEFINED);
150   output_scheme (scm);
151 }
152
153 void
154 Paper_outputter::output_String_def (String k, String v)
155 {
156   
157   SCM scm = scm_list_n (ly_symbol2scm ("lily-def"),
158                      scm_makfrom0str (k.get_str0 ()),
159                      scm_makfrom0str (v.get_str0 ()),
160                      SCM_UNDEFINED);
161   output_scheme (scm);
162 }
163
164 void
165 Paper_outputter::output_int_def (String k, int v)
166 {
167   SCM scm = scm_list_n (ly_symbol2scm ("lily-def"),
168                      scm_makfrom0str (k.get_str0 ()),
169                      scm_makfrom0str (to_string (v).get_str0 ()),
170                      SCM_UNDEFINED);
171   output_scheme (scm);
172 }
173
174 void
175 Paper_outputter::write_header_field_to_file (String filename, SCM key, SCM value)
176 {
177   output_scheme (scm_list_n (ly_symbol2scm ("header-to-file"),
178                              scm_makfrom0str (filename.to_str0 ()),
179                              ly_quote_scm (key), value,
180                              SCM_UNDEFINED));
181 }
182
183 void
184 Paper_outputter::write_header_fields_to_file (SCM mod)
185 {
186   if (ly_module_p (mod)&&
187       dump_header_fieldnames_global.size ())
188     {
189       SCM fields = ly_module_to_alist (mod);
190       for (int i = 0; i < dump_header_fieldnames_global.size (); i++)
191         {
192           String key = dump_header_fieldnames_global[i];
193           SCM val = gh_assoc (ly_symbol2scm (key.to_str0 ()), fields);
194           String s;
195           /* Only write header field to file if it exists */
196           if (gh_pair_p (val) && gh_string_p (ly_cdr (val)))
197             {
198               s = ly_scm2string (ly_cdr (val));
199               /* Always write header field file, even if string is empty ... */
200               write_header_field_to_file (basename_ , ly_car (val), ly_cdr (val));
201             }
202         }
203     }
204 }