]> git.donarmstrong.com Git - lilypond.git/blob - lily/context.cc
* scm/define-translator-properties.scm
[lilypond.git] / lily / context.cc
1 /*   
2   context.cc --  implement Context
3
4   source file of the GNU LilyPond music typesetter
5
6   (c) 2004 Han-Wen Nienhuys <hanwen@xs4all.nl>
7
8 */
9
10 #include "translator-group.hh"
11 #include "context-def.hh"
12 #include "context.hh"
13 #include "warn.hh"
14 #include "music-output-def.hh"
15 #include "scm-hash.hh"
16 #include "main.hh"
17 #include "ly-smobs.icc"
18 #include "score-context.hh"
19
20 bool
21 Context::is_removable () const
22 {
23   return context_list_ == SCM_EOL && ! iterator_count_ &&
24           !dynamic_cast<Score_context const*> (this)
25     ;
26 }
27
28 void
29 Context::check_removal ()
30 {
31   for (SCM p = context_list_; gh_pair_p (p); p = gh_cdr (p))
32     {
33       Context *trg =  unsmob_context (ly_car (p));
34
35       trg->check_removal ();
36       if (trg->is_removable ())
37         {
38           recurse_down_translators (trg, &Translator::finalize, DOWN);
39           remove_context (trg);
40         }
41     }
42 }
43
44 Context::Context (Context const&)
45 {
46   assert (false);
47 }
48
49 Scheme_hash_table*
50 Context::properties_dict () const
51 {
52   return Scheme_hash_table::unsmob (properties_scm_);
53 }
54
55 void
56 Context::add_context (Context*t)
57 {
58   SCM ts = t->self_scm ();
59   context_list_ = gh_append2 (context_list_,
60                               gh_cons (ts, SCM_EOL));
61   
62   t->daddy_context_ = this;
63   if (!t->init_)
64     {
65       t->init_ = true;
66       
67       scm_gc_unprotect_object (ts);
68       Context_def * td = unsmob_context_def (t->definition_);
69
70       /*
71         this can not move before add_context(), because \override
72         operations require that we are in the hierarchy.
73       */
74       td->apply_default_property_operations (t);
75
76       recurse_down_translators (t, &Translator::initialize, DOWN);
77     }
78 }
79
80 Context::Context ()
81 {
82   daddy_context_ = 0;
83   init_ = false;
84   iterator_count_  = 0;
85   implementation_ = SCM_EOL;
86   properties_scm_ = SCM_EOL;
87   accepts_list_ = SCM_EOL;
88   context_list_ = SCM_EOL;
89   definition_ = SCM_EOL;
90   
91   smobify_self ();
92
93   properties_scm_ = (new Scheme_hash_table)->self_scm ();
94   scm_gc_unprotect_object (properties_scm_);
95 }
96
97 Context *
98 Context::find_existing_context (SCM n, String id)
99 {
100   if ((is_alias (n) && (id_string_ == id || id.is_empty ())))
101     return this;
102
103   Context* r = 0;
104   for (SCM p = context_list_; !r && gh_pair_p (p); p = ly_cdr (p))
105     {
106       Context *  t = unsmob_context (ly_car (p));
107       
108       r = dynamic_cast<Context*> (t)->find_existing_context (n, id);
109     }
110
111   return r;
112 }
113
114
115 Context*
116 Context::find_create_context (SCM n, String id,
117                               SCM operations)
118 {
119   /*
120     Don't create multiple score contexts.
121    */
122   if (dynamic_cast<Global_context*> (this)
123       && dynamic_cast<Global_context*> (this)->get_score_context ())
124     return get_score_context ()->find_create_context (n, id, operations);
125     
126   
127   Context * existing = find_existing_context (n,id);
128   if (existing)
129     return existing;
130
131   if (n == ly_symbol2scm ("Bottom"))
132     {
133       Context* tg = get_default_interpreter ();
134       tg->id_string_ = id;
135       return tg;
136     }
137
138   /*
139     TODO: use accepts_list_.
140    */
141   Link_array<Context_def> path
142     = unsmob_context_def (definition_)->path_to_acceptable_context (n, get_output_def ());
143
144   if (path.size ())
145     {
146       Context * current = this;
147
148       // start at 1.  The first one (index 0) will be us.
149       for (int i=0; i < path.size (); i++)
150         {
151           SCM ops = (i == path.size () -1) ? operations : SCM_EOL;
152
153           Context * new_group
154             = path[i]->instantiate (ops);
155
156           if (i == path.size () -1)
157             {
158               new_group->id_string_ = id;
159             }
160
161           current->add_context (new_group);
162           apply_property_operations (new_group, ops);
163           
164           current = new_group;
165         }
166
167       return current;
168     }
169
170   Context *ret = 0;
171   if (daddy_context_)
172     ret = daddy_context_->find_create_context (n, id, operations);
173   else
174     {
175       warning (_f ("Cannot find or create `%s' called `%s'",
176                    ly_symbol2string (n).to_str0 (), id));
177       ret =0;
178     }
179   return ret;
180 }
181
182 /*
183   Default child context as a SCM string, or something else if there is
184   none.
185 */
186 SCM
187 default_child_context_name (Context const *tg)
188 {
189   return gh_pair_p (tg->accepts_list_)
190     ? ly_car (scm_last_pair (tg->accepts_list_))
191     : SCM_EOL;
192 }
193
194
195 bool
196 Context::is_bottom_context () const
197 {
198   return !gh_symbol_p (default_child_context_name (this));
199 }
200
201 Context*
202 Context::get_default_interpreter ()
203 {
204   if (!is_bottom_context ())
205     {
206       SCM nm = default_child_context_name (this);
207       SCM st = get_output_def ()->find_context_def (nm);
208
209       Context_def *t = unsmob_context_def (st);
210       if (!t)
211         {
212           warning (_f ("can't find or create: `%s'", ly_symbol2string (nm).to_str0 ()));
213           t = unsmob_context_def (this->definition_);
214         }
215       Context *tg = t->instantiate (SCM_EOL);
216       add_context (tg);
217       if (!tg->is_bottom_context ())
218         return tg->get_default_interpreter ();
219       else
220         return tg;
221     }
222   return this;
223 }
224
225 /*
226   PROPERTIES
227  */
228 Context*
229 Context::where_defined (SCM sym) const
230 {
231   if (properties_dict ()->contains (sym))
232     {
233       return (Context*)this;
234     }
235
236   return (daddy_context_) ? daddy_context_->where_defined (sym) : 0;
237 }
238
239 /*
240   return SCM_EOL when not found.
241 */
242 SCM
243 Context::internal_get_property (SCM sym) const
244 {
245   SCM val =SCM_EOL;
246   if (properties_dict ()->try_retrieve (sym, &val))
247     return val;
248
249   if (daddy_context_)
250     return daddy_context_->internal_get_property (sym);
251   
252   return val;
253 }
254
255 bool
256 Context::is_alias (SCM sym) const
257 {
258   if (sym == ly_symbol2scm ("Bottom")
259       && !gh_pair_p (accepts_list_))
260     return true;
261   return unsmob_context_def (definition_)->is_alias (sym);
262 }
263
264 void
265 Context::internal_set_property (SCM sym, SCM val)
266 {
267 #ifndef NDEBUG
268   if (internal_type_checking_global_b)
269     assert (type_check_assignment (sym, val, ly_symbol2scm ("translation-type?")));
270 #endif
271   
272   properties_dict ()->set (sym, val);
273 }
274
275 /*
276   TODO: look up to check whether we have inherited var? 
277  */
278 void
279 Context::unset_property (SCM sym)
280 {
281   properties_dict ()->remove (sym);
282 }
283
284 /**
285    Remove a context from the hierarchy.
286  */
287 Context *
288 Context::remove_context (Context*trans)
289 {
290   assert (trans);
291
292   context_list_ = scm_delq_x (trans->self_scm (), context_list_);
293   trans->daddy_context_ = 0;
294   return trans;
295 }
296
297 /*
298   ID == "" means accept any ID.
299  */
300 Context *
301 find_context_below (Context * where,
302                     String type, String id)
303 {
304   if (where->is_alias (ly_symbol2scm (type.to_str0 ())))
305     {
306       if (id == "" || where->id_string_ == id)
307         return where;
308     }
309   
310   Context * found = 0;
311   for (SCM s = where->context_list_;
312        !found && gh_pair_p (s); s = gh_cdr (s))
313     {
314       Context * tr = unsmob_context (gh_car (s));
315
316       found = find_context_below (tr, type, id);
317     }
318
319   return found; 
320 }
321
322 SCM
323 Context::properties_as_alist () const
324 {
325   return properties_dict()->to_alist();
326 }
327
328 String
329 Context::context_name () const
330 {
331   Context_def * td = unsmob_context_def (definition_ );
332   return ly_symbol2string (td->get_context_name ());
333 }
334
335
336 Score_context*
337 Context::get_score_context () const
338 {
339   if (Score_context *sc =dynamic_cast<Score_context*> ((Context*)this))
340     return sc;
341   else if (daddy_context_)
342     return daddy_context_->get_score_context ();
343   else
344     return 0;
345 }
346
347 Music_output_def *
348 Context::get_output_def () const
349 {
350   return  (daddy_context_)
351     ? daddy_context_->get_output_def () : 0;
352 }
353
354 Context::~Context()
355 {
356   
357 }
358
359 Moment
360 Context::now_mom () const
361 {
362   return daddy_context_->now_mom();
363 }
364
365 int
366 Context::print_smob (SCM s, SCM port, scm_print_state *)
367 {
368   Context *sc = (Context *) ly_cdr (s);
369      
370   scm_puts ("#<", port);
371   scm_puts (classname (sc), port);
372   if (Context_def *d=unsmob_context_def (sc->definition_))
373     {
374       scm_puts (" ", port);
375       scm_display (d->get_context_name (), port);
376     }
377
378   if (Context *td=dynamic_cast<Context *> (sc))
379     {
380       scm_puts ("=", port);
381       scm_puts (td->id_string_.to_str0 (), port);
382     }
383   
384
385   scm_puts (" ", port);
386
387   scm_display (sc->context_list_, port);
388   scm_puts (" >", port);
389   
390   return 1;
391 }
392
393 SCM
394 Context::mark_smob (SCM sm)
395 {
396   Context * me = (Context*) SCM_CELL_WORD_1 (sm);
397   
398   scm_gc_mark (me->context_list_);
399   scm_gc_mark (me->definition_);  
400   scm_gc_mark (me->properties_scm_);  
401   scm_gc_mark (me->accepts_list_);
402   scm_gc_mark (me->implementation_);
403
404   return me->properties_scm_;
405 }
406
407 IMPLEMENT_SMOBS (Context);
408 IMPLEMENT_DEFAULT_EQUAL_P (Context);
409 IMPLEMENT_TYPE_P(Context,"ly:context?");
410
411 bool
412 Context::try_music (Music* m)
413 {
414   Translator*  t = unsmob_translator (implementation_);
415   if (!t)
416     return false;
417   
418   bool b = t->try_music (m);
419   if (!b && daddy_context_)
420     b = daddy_context_->try_music (m);
421
422   return b;
423 }
424
425
426 Global_context*
427 Context::get_global_context () const
428 {
429   if (dynamic_cast<Global_context *>((Context*) this))
430     return dynamic_cast<Global_context *> ((Context*) this);
431
432   if (daddy_context_)
433     return daddy_context_->get_global_context ();
434
435   programming_error ("No Global context!");
436   return 0;
437 }