]> git.donarmstrong.com Git - lilypond.git/blob - lily/paper-outputter.cc
(ly:interpret-stencil): Was:
[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--2004 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7                  Jan Nieuwenhuizen <janneke@gnu.org>
8 */
9
10 #include <math.h>
11 #include <time.h>
12
13 #include "array.hh"
14 #include "dimensions.hh"
15 #include "file-name.hh"
16 #include "font-metric.hh"
17 #include "input-smob.hh"
18 #include "lily-guile.hh"
19 #include "lily-version.hh"
20 #include "ly-module.hh"
21 #include "main.hh"
22 #include "output-def.hh"
23 #include "paper-book.hh"
24 #include "paper-outputter.hh"
25 #include "paper-system.hh"
26 #include "scm-hash.hh"
27 #include "stencil.hh"
28 #include "string-convert.hh"
29 #include "warn.hh"
30
31 #include "ly-smobs.icc"
32
33
34 Paper_outputter::Paper_outputter (String filename, String format)
35 {
36   file_ = SCM_EOL;
37   output_module_ = SCM_EOL;
38   smobify_self ();
39   
40   filename_ = filename;
41   file_ = scm_open_file (scm_makfrom0str (filename.to_str0 ()),
42                          scm_makfrom0str ("w"));
43
44   String module_name = "scm output-" + format;
45   output_module_ = scm_c_resolve_module (module_name.to_str0 ());
46 }
47
48 Paper_outputter::~Paper_outputter ()
49 {
50 }
51
52
53 IMPLEMENT_SMOBS (Paper_outputter);
54 IMPLEMENT_DEFAULT_EQUAL_P (Paper_outputter);
55
56 SCM
57 Paper_outputter::mark_smob (SCM x)
58 {
59   Paper_outputter *p = (Paper_outputter*) SCM_CELL_WORD_1(x);
60   scm_gc_mark (p->output_module_);
61   return p->file_;
62 }
63
64 int
65 Paper_outputter::print_smob (SCM x, SCM p, scm_print_state*)
66 {
67   (void) x;
68   scm_puts ("#<Paper_outputter>", p);
69   return 1;
70 }
71
72 SCM
73 Paper_outputter::dump_string (SCM scm)
74 {
75   return scm_display (scm, file_);
76 }
77
78 SCM
79 Paper_outputter::scheme_to_string (SCM scm)
80 {
81   return scm_eval (scm, output_module_);
82 }
83
84 void
85 Paper_outputter::output_scheme (SCM scm)
86 {
87   dump_string (scheme_to_string (scm));
88 }
89
90 LY_DEFINE (ly_paper_outputter_dump, "ly:paper-outputter-dump",
91            2, 0, 0, (SCM outputter, SCM arg),
92            "Dump ARG on OUTPUTTER\n.")
93 {
94   Paper_outputter *po = unsmob_outputter (outputter);
95   SCM_ASSERT_TYPE (po, outputter, SCM_ARG1, __FUNCTION__, "Paper_outputter");
96   po->output_scheme (arg);
97   return SCM_UNSPECIFIED;
98 }
99
100 void
101 Paper_outputter::output_stencil (Stencil stil)
102 {
103   ly_interpret_stencil (stil.expr (),
104                         ly_scheme_function ("ly:paper-outputter-dump"),
105                         smobify_self (),
106                         ly_offset2scm (Offset (0, 0)));
107 }
108
109 Paper_outputter *
110 get_paper_outputter (String outname, String f) 
111 {
112   progress_indication (_f ("paper output to `%s'...",
113                            outname == "-" ? String ("<stdout>") : outname));
114   return new Paper_outputter (outname, f);
115
116 }
117
118 /* FIXME: why is output_* wrapper called dump?  */
119 LY_DEFINE (ly_outputter_dump_stencil, "ly:outputter-dump-stencil",
120            2, 0, 0, (SCM outputter, SCM stencil),
121            "Dump stencil @var{expr} onto @var{outputter}.")
122 {
123   Paper_outputter *po = unsmob_outputter (outputter);
124   Stencil *st = unsmob_stencil (stencil);
125   SCM_ASSERT_TYPE (po, outputter, SCM_ARG1, __FUNCTION__, "Paper_outputter");
126   SCM_ASSERT_TYPE (st, stencil, SCM_ARG1, __FUNCTION__, "Paper_outputter");
127   po->output_stencil (*st);
128   return SCM_UNSPECIFIED;
129 }
130
131 LY_DEFINE (ly_outputter_dump_string, "ly:outputter-dump-string",
132            2, 0, 0, (SCM outputter, SCM str),
133            "Dump @var{str} onto @var{outputter}.")
134 {
135   Paper_outputter *po = unsmob_outputter (outputter);
136   SCM_ASSERT_TYPE (po, outputter, SCM_ARG1, __FUNCTION__, "Paper_outputter");
137   SCM_ASSERT_TYPE (ly_c_string_p (str), str, SCM_ARG1, __FUNCTION__, "Paper_outputter");
138   
139   return po->dump_string (str);
140 }