]> git.donarmstrong.com Git - lilypond.git/blob - lily/scheme-engraver.cc
Merge branch 'master' of /home/jcharles/GIT/Lily/. into translation
[lilypond.git] / lily / scheme-engraver.cc
1 /*
2   scheme-engraver.cc -- implement Scheme_engraver
3
4   source file of the GNU LilyPond music typesetter
5
6   Copyright (c) 2009--2015 Han-Wen Nienhuys <hanwen@lilypond.org>
7
8   LilyPond is free software: you can redistribute it and/or modify
9   it under the terms of the GNU General Public License as published by
10   the Free Software Foundation, either version 3 of the License, or
11   (at your option) any later version.
12
13   LilyPond is distributed in the hope that it will be useful,
14   but WITHOUT ANY WARRANTY; without even the implied warranty of
15   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16   GNU General Public License for more details.
17
18   You should have received a copy of the GNU General Public License
19   along with LilyPond.  If not, see <http://www.gnu.org/licenses/>.
20 */
21
22 #include "scheme-engraver.hh"
23
24 #include "grob.hh"
25
26 #include "translator.icc"
27
28 #include "scm-hash.hh"
29
30 Preinit_Scheme_engraver::Preinit_Scheme_engraver ()
31 {
32   initialize_function_ = SCM_EOL;
33   finalize_function_ = SCM_EOL;
34
35   interface_acknowledger_hash_.set (SCM_EOL, SCM_EOL);
36
37   per_instance_listeners_ = SCM_EOL;
38   for (int i = 0; i < TRANSLATOR_METHOD_PRECOMPUTE_COUNT; i++)
39     precomputable_methods_[i] = SCM_UNDEFINED;
40 }
41
42 Scheme_engraver::~Scheme_engraver ()
43 {
44 }
45
46 // Extracts the value if callable, if not return SCM_UNDEFINED;
47 static SCM
48 callable (SCM symbol, SCM defn)
49 {
50   SCM val = ly_assoc_get (symbol, defn, SCM_BOOL_F);
51   return ly_is_procedure (val) ? val : SCM_UNDEFINED;
52 }
53
54 bool
55 Scheme_engraver::must_be_last () const
56 {
57   return must_be_last_;
58 }
59
60 void
61 Scheme_engraver::fetch_precomputable_methods (SCM ptrs[])
62 {
63   for (int i = 0; i < TRANSLATOR_METHOD_PRECOMPUTE_COUNT; i++)
64     ptrs[i] = precomputable_methods_[i];
65 }
66
67 Scheme_engraver::Scheme_engraver (SCM definition)
68 {
69   precomputable_methods_[START_TRANSLATION_TIMESTEP]
70     = callable (ly_symbol2scm ("start-translation-timestep"), definition);
71   precomputable_methods_[STOP_TRANSLATION_TIMESTEP]
72     = callable (ly_symbol2scm ("stop-translation-timestep"), definition);
73   precomputable_methods_[PROCESS_MUSIC]
74     = callable (ly_symbol2scm ("process-music"), definition);
75   precomputable_methods_[PROCESS_ACKNOWLEDGED]
76     = callable (ly_symbol2scm ("process-acknowledged"), definition);
77   initialize_function_ = callable (ly_symbol2scm ("initialize"), definition);
78   finalize_function_ = callable (ly_symbol2scm ("finalize"), definition);
79
80   SCM p = ly_assoc_get (ly_symbol2scm ("listeners"), definition, SCM_EOL);
81   SCM listeners = SCM_EOL;
82
83   must_be_last_ = to_boolean (ly_assoc_get (ly_symbol2scm ("must-be-last"),
84                                             definition,
85                                             SCM_BOOL_F));
86
87   for (; scm_is_pair (p); p = scm_cdr (p))
88     {
89       SCM event_class = scm_caar (p);
90       SCM proc = scm_cdar (p);
91
92       if (!(ly_is_procedure (proc) && ly_is_symbol (event_class)))
93         continue;
94
95       // We should check the arity of the function?
96
97       // Record for later lookup.
98       listeners = scm_acons (event_class, proc, listeners);
99     }
100
101   SCM hash1 =
102     init_acknowledgers (ly_assoc_get (ly_symbol2scm ("acknowledgers"),
103                                       definition, SCM_EOL));
104   SCM hash2 =
105     init_acknowledgers (ly_assoc_get (ly_symbol2scm ("end-acknowledgers"),
106                                       definition, SCM_EOL));
107
108   per_instance_listeners_ = listeners;
109   interface_acknowledger_hash_.set (hash1, hash2);
110
111   // It's not defined whether Scheme_engraver::derived_mark is already
112   // active while the construction is underway, so we make sure we
113   // keep a version of everything on the stack that is not still
114   // covered by `definition'.
115
116   scm_remember_upto_here_2 (definition, listeners);
117   scm_remember_upto_here_2 (hash1, hash2);
118
119   // TODO: hook up description, props read/written, grobs created
120   // etc. to provide automatic documentation.
121 }
122
123 SCM
124 Scheme_engraver::init_acknowledgers (SCM alist)
125 {
126   SCM hash = Scheme_hash_table::make_smob ();
127   for (SCM p = alist; scm_is_pair (p); p = scm_cdr (p))
128     {
129       SCM iface = scm_caar (p);
130       SCM proc = scm_cdar (p);
131
132       if (!(ly_is_procedure (proc) && ly_is_symbol (iface)))
133         continue;
134
135       unsmob<Scheme_hash_table>(hash)->set (iface, proc);
136     }
137   return hash;
138 }
139
140 SCM
141 Scheme_engraver::get_listener_list () const
142 {
143   return per_instance_listeners_;
144 }
145
146 void
147 Scheme_engraver::initialize ()
148 {
149   if (!SCM_UNBNDP (initialize_function_))
150     scm_call_1 (initialize_function_, self_scm ());
151 }
152
153 void
154 Scheme_engraver::finalize ()
155 {
156   if (!SCM_UNBNDP (finalize_function_))
157     scm_call_1 (finalize_function_, self_scm ());
158 }
159
160 void
161 Scheme_engraver::derived_mark () const
162 {
163   for (int i = 0; i < TRANSLATOR_METHOD_PRECOMPUTE_COUNT; i++)
164     scm_gc_mark (precomputable_methods_[i]);
165
166   scm_gc_mark (initialize_function_);
167   scm_gc_mark (finalize_function_);
168   scm_gc_mark (per_instance_listeners_);
169   scm_gc_mark (interface_acknowledger_hash_[START]);
170   scm_gc_mark (interface_acknowledger_hash_[STOP]);
171 }