]> git.donarmstrong.com Git - lilypond.git/blob - lily/book.cc
Excise object keys from Contexts.
[lilypond.git] / lily / book.cc
1 /*
2   book.cc -- implement Book
3
4   source file of the GNU LilyPond music typesetter
5
6   (c) 1997--2007 Han-Wen Nienhuys <hanwen@xs4all.nl>
7 */
8
9 #include "book.hh"
10
11 #include <cstdio>
12 using namespace std;
13
14 #include "lilypond-key.hh"
15 #include "main.hh"
16 #include "music.hh"
17 #include "output-def.hh"
18 #include "paper-book.hh"
19 #include "score.hh"
20 #include "text-interface.hh"
21 #include "warn.hh"
22 #include "performance.hh"
23 #include "paper-score.hh"
24
25 #include "ly-smobs.icc"
26
27 Book::Book ()
28 {
29   paper_ = 0;
30   header_ = SCM_EOL;
31   scores_ = SCM_EOL;
32   input_location_ = SCM_EOL;
33   smobify_self ();
34
35   input_location_ = make_input (Input ());
36 }
37
38 Book::Book (Book const &s)
39 {
40   paper_ = 0;
41   header_ = SCM_EOL;
42   scores_ = SCM_EOL;
43   input_location_ = SCM_EOL;
44   smobify_self ();
45
46   if (s.paper_)
47     {
48       paper_ = s.paper_->clone ();
49       paper_->unprotect ();
50     }
51   
52   input_location_ = make_input (*s.origin ());
53
54   header_ = ly_make_anonymous_module (false);
55   if (ly_is_module (s.header_))
56     ly_module_copy (header_, s.header_);
57   
58   SCM *t = &scores_;
59   for (SCM p = s.scores_; scm_is_pair (p); p = scm_cdr (p))
60     {
61       Score *newscore = unsmob_score (scm_car (p))->clone ();
62
63       *t = scm_cons (newscore->self_scm (), SCM_EOL);
64       t = SCM_CDRLOC(*t);
65       newscore->unprotect ();
66     }
67 }
68
69 Input *
70 Book::origin () const
71 {
72   return unsmob_input (input_location_);
73 }
74
75 Book::~Book ()
76 {
77 }
78
79 IMPLEMENT_SMOBS (Book);
80 IMPLEMENT_DEFAULT_EQUAL_P (Book);
81
82 SCM
83 Book::mark_smob (SCM s)
84 {
85   Book *book = (Book *) SCM_CELL_WORD_1 (s);
86
87 #if 0
88   if (book->key_)
89     scm_gc_mark (book->key_->self_scm ());
90 #endif
91
92   if (book->paper_)
93     scm_gc_mark (book->paper_->self_scm ());
94   scm_gc_mark (book->scores_);
95   scm_gc_mark (book->input_location_);
96   
97   return book->header_;
98 }
99
100 int
101 Book::print_smob (SCM, SCM p, scm_print_state*)
102 {
103   scm_puts ("#<Book>", p);
104   return 1;
105 }
106
107 void
108 Book::add_score (SCM s)
109 {
110   scores_ = scm_cons (s, scores_);
111 }
112
113
114 /* Concatenate all score outputs into a Paper_book
115  */
116 Paper_book *
117 Book::process (Output_def *default_paper,
118                Output_def *default_layout)
119 {
120   for (SCM s = scores_; scm_is_pair (s); s = scm_cdr (s))
121     if (Score *score = unsmob_score (scm_car (s)))
122       if (score->error_found_)
123         return 0;
124
125   Output_def *paper = paper_ ? paper_ : default_paper;
126   if (!paper)
127     return 0;
128   
129   Paper_book *paper_book = new Paper_book ();
130   Real scale = scm_to_double (paper->c_variable ("output-scale"));
131   Output_def *scaled_bookdef = scale_output_def (paper, scale);
132
133   Object_key *key = new Lilypond_general_key (0, user_key_, 0);
134   SCM scm_key = key->unprotect ();
135
136   paper_book->paper_ = scaled_bookdef;
137   scaled_bookdef->unprotect ();
138
139   paper_book->header_ = header_;
140
141   /* Render in order of parsing.  */
142   for (SCM s = scm_reverse (scores_); scm_is_pair (s); s = scm_cdr (s))
143     {
144       if (Score *score = unsmob_score (scm_car (s)))
145         {
146           SCM outputs = score
147             ->book_rendering (paper_book->paper_, default_layout);
148
149           while (scm_is_pair (outputs))
150             {
151               Music_output *output = unsmob_music_output (scm_car (outputs));
152
153               if (Performance *perf = dynamic_cast<Performance *> (output))
154                 paper_book->add_performance (perf->self_scm ());
155               else if (Paper_score *pscore = dynamic_cast<Paper_score *> (output))
156                 {
157                   if (ly_is_module (score->header_))
158                     paper_book->add_score (score->header_);
159                   paper_book->add_score (pscore->self_scm ());
160                 }
161
162               outputs = scm_cdr (outputs);
163             }
164         }
165       else if (Text_interface::is_markup (scm_car (s)))
166         paper_book->add_score (scm_car (s));
167       else
168         assert (0);
169     }
170
171   scm_remember_upto_here_1 (scm_key);
172   return paper_book;
173 }
174