]> git.donarmstrong.com Git - lilypond.git/blob - lily/paper-outputter.cc
release commit
[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--2005 Han-Wen Nienhuys <hanwen@xs4all.nl>
7   Jan Nieuwenhuizen <janneke@gnu.org>
8 */
9
10 #include "paper-outputter.hh"
11
12 #include <cmath>
13 #include <ctime>
14 using namespace std;
15
16 #include "dimensions.hh"
17 #include "file-name.hh"
18 #include "font-metric.hh"
19 #include "input-smob.hh"
20 #include "lily-version.hh"
21 #include "main.hh"
22 #include "output-def.hh"
23 #include "paper-book.hh"
24 #include "paper-system.hh"
25 #include "scm-hash.hh"
26 #include "string-convert.hh"
27 #include "warn.hh"
28
29 #include "ly-smobs.icc"
30
31 Paper_outputter::Paper_outputter (SCM port, String format)
32 {
33   file_ = port;
34   output_module_ = SCM_EOL;
35   smobify_self ();
36
37   String module_name = "scm output-" + format;
38   output_module_ = scm_c_resolve_module (module_name.to_str0 ());
39 }
40
41 Paper_outputter::~Paper_outputter ()
42 {
43 }
44
45 IMPLEMENT_SMOBS (Paper_outputter);
46 IMPLEMENT_DEFAULT_EQUAL_P (Paper_outputter);
47
48 SCM
49 Paper_outputter::mark_smob (SCM x)
50 {
51   Paper_outputter *p = (Paper_outputter *) SCM_CELL_WORD_1 (x);
52   scm_gc_mark (p->output_module_);
53   return p->file_;
54 }
55
56 int
57 Paper_outputter::print_smob (SCM x, SCM p, scm_print_state*)
58 {
59   (void) x;
60   scm_puts ("#<Paper_outputter>", p);
61   return 1;
62 }
63
64 SCM
65 Paper_outputter::file () const
66 {
67   return file_;
68 }
69
70 SCM
71 Paper_outputter::dump_string (SCM scm)
72 {
73   return scm_display (scm, file ());
74 }
75
76 SCM
77 Paper_outputter::scheme_to_string (SCM scm)
78 {
79   return scm_eval (scm, output_module_);
80 }
81
82 void
83 Paper_outputter::output_scheme (SCM scm)
84 {
85   dump_string (scheme_to_string (scm));
86 }
87
88 void
89 paper_outputter_dump (void *po, SCM x)
90 {
91   Paper_outputter *me = (Paper_outputter *) po;
92   me->output_scheme (x);
93 }
94
95 void
96 Paper_outputter::output_stencil (Stencil stil)
97 {
98   interpret_stencil_expression (stil.expr (), paper_outputter_dump,
99                                 (void *) this, Offset (0, 0));
100 }
101
102 void
103 Paper_outputter::close ()
104 {
105   if (scm_port_p (file_) == SCM_BOOL_T)
106     scm_close_port (file_);
107 }