]> git.donarmstrong.com Git - lilypond.git/blob - lily/context.cc
(measure_position): measure_position() is now a
[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--2005 Han-Wen Nienhuys <hanwen@xs4all.nl>
7 */
8
9 #include "context.hh"
10
11 #include "program-option.hh"
12 #include "context-def.hh"
13 #include "ly-smobs.icc"
14 #include "main.hh"
15 #include "output-def.hh"
16 #include "scm-hash.hh"
17 #include "score-context.hh"
18 #include "translator-group.hh"
19 #include "warn.hh"
20 #include "lilypond-key.hh"
21
22 bool
23 Context::is_removable () const
24 {
25   return context_list_ == SCM_EOL && ! iterator_count_
26     && !dynamic_cast<Score_context const *> (this);
27 }
28
29 void
30 Context::check_removal ()
31 {
32   for (SCM p = context_list_; scm_is_pair (p); p = scm_cdr (p))
33     {
34       Context *trg = unsmob_context (scm_car (p));
35
36       trg->check_removal ();
37       if (trg->is_removable ())
38         {
39           recurse_over_translators (trg, &Translator::finalize,
40                                     &Translator_group::finalize,
41                                     UP);
42           remove_context (trg);
43         }
44     }
45 }
46
47 Context::Context (Context const &)
48 {
49   assert (false);
50 }
51
52 Scheme_hash_table *
53 Context::properties_dict () const
54 {
55   return Scheme_hash_table::unsmob (properties_scm_);
56 }
57
58 void
59 Context::add_context (Context *t)
60 {
61   SCM ts = t->self_scm ();
62   context_list_ = ly_append2 (context_list_,
63                               scm_cons (ts, SCM_EOL));
64
65   t->daddy_context_ = this;
66   if (!t->init_)
67     {
68       t->init_ = true;
69
70       scm_gc_unprotect_object (ts);
71       Context_def *td = unsmob_context_def (t->definition_);
72
73       /* This cannot move before add_context (), because \override
74          operations require that we are in the hierarchy.  */
75       td->apply_default_property_operations (t);
76
77       recurse_over_translators (t,
78                                 &Translator::initialize,
79                                 &Translator_group::initialize,
80                                 DOWN);
81     }
82 }
83
84 Object_key const *
85 Context::get_key () const
86 {
87   return key_;
88 }
89
90 Context::Context (Object_key const *key)
91 {
92   key_ = key;
93   daddy_context_ = 0;
94   init_ = false;
95   aliases_ = SCM_EOL;
96   iterator_count_ = 0;
97   implementation_ = 0;
98   properties_scm_ = SCM_EOL;
99   accepts_list_ = SCM_EOL;
100   context_list_ = SCM_EOL;
101   definition_ = SCM_EOL;
102
103   smobify_self ();
104   properties_scm_ = (new Scheme_hash_table)->self_scm ();
105   scm_gc_unprotect_object (properties_scm_);
106
107   if (key_)
108     scm_gc_unprotect_object (key_->self_scm ());
109 }
110
111 /* TODO:  this shares code with find_create_context ().  */
112 Context *
113 Context::create_unique_context (SCM n, SCM operations)
114 {
115   /*
116     Don't create multiple score contexts.
117   */
118   if (dynamic_cast<Global_context *> (this)
119       && dynamic_cast<Global_context *> (this)->get_score_context ())
120     return get_score_context ()->create_unique_context (n, operations);
121
122   /*
123     TODO: use accepts_list_.
124   */
125   Link_array<Context_def> path
126     = unsmob_context_def (definition_)->path_to_acceptable_context (n, get_output_def ());
127
128   if (path.size ())
129     {
130       Context *current = this;
131
132       // start at 1.  The first one (index 0) will be us.
133       for (int i = 0; i < path.size (); i++)
134         {
135           SCM ops = (i == path.size () -1) ? operations : SCM_EOL;
136
137           current = current->create_context (path[i],
138                                              "\\new",
139                                              ops);
140         }
141
142       return current;
143     }
144
145   /*
146     Don't go up to Global_context, because global goes down to
147     Score_context
148   */
149   Context *ret = 0;
150   if (daddy_context_ && !dynamic_cast<Global_context *> (daddy_context_))
151     ret = daddy_context_->create_unique_context (n, operations);
152   else
153     {
154       warning (_f ("can't find or create new `%s'",
155                    ly_symbol2string (n).to_str0 ()));
156       ret = 0;
157     }
158   return ret;
159 }
160
161 Context *
162 Context::find_create_context (SCM n, String id, SCM operations)
163 {
164   /*
165     Don't create multiple score contexts.
166   */
167   if (dynamic_cast<Global_context *> (this)
168       && dynamic_cast<Global_context *> (this)->get_score_context ())
169     return get_score_context ()->find_create_context (n, id, operations);
170
171   if (Context *existing = find_context_below (this, n, id))
172     return existing;
173
174   if (n == ly_symbol2scm ("Bottom"))
175     {
176       Context *tg = get_default_interpreter ();
177       return tg;
178     }
179
180   /*
181     TODO: use accepts_list_.
182   */
183   Link_array<Context_def> path
184     = unsmob_context_def (definition_)->path_to_acceptable_context (n, get_output_def ());
185
186   if (path.size ())
187     {
188       Context *current = this;
189
190       // start at 1.  The first one (index 0) will be us.
191       for (int i = 0; i < path.size (); i++)
192         {
193           SCM ops = (i == path.size () -1) ? operations : SCM_EOL;
194
195           String this_id = "";
196           if (i == path.size () -1)
197             {
198               this_id = id;
199             }
200
201           current = current->create_context (path[i],
202                                              this_id,
203                                              ops);
204         }
205
206       return current;
207     }
208
209   /*
210     Don't go up to Global_context, because global goes down to
211     Score_context
212   */
213   Context *ret = 0;
214   if (daddy_context_ && !dynamic_cast<Global_context *> (daddy_context_))
215     ret = daddy_context_->find_create_context (n, id, operations);
216   else
217     {
218       warning (_f ("can't find or create `%s' called `%s'",
219                    ly_symbol2string (n).to_str0 (), id));
220       ret = 0;
221     }
222   return ret;
223 }
224
225 Context *
226 Context::create_context (Context_def *cdef,
227                          String id,
228                          SCM ops)
229 {
230   String type = ly_symbol2string (cdef->get_context_name ());
231   Object_key const *key = get_context_key (type, id);
232   Context *new_context
233     = cdef->instantiate (ops, key);
234
235   new_context->id_string_ = id;
236   add_context (new_context);
237   apply_property_operations (new_context, ops);
238
239   return new_context;
240 }
241
242 Object_key const *
243 Context::get_context_key (String type, String id)
244 {
245   if (!use_object_keys)
246     return 0;
247       
248   String now_key = type + "@" + id;
249
250   int disambiguation_count = 0;
251   if (context_counts_.find (now_key) != context_counts_.end ())
252     {
253       disambiguation_count = context_counts_[now_key];
254     }
255
256   context_counts_[now_key] = disambiguation_count + 1;
257
258   return new Lilypond_context_key (get_key (),
259                                    now_mom (),
260                                    type, id,
261                                    disambiguation_count);
262 }
263
264 Object_key const *
265 Context::get_grob_key (String name)
266 {
267   if (!use_object_keys)
268     return 0;
269   
270   int disambiguation_count = 0;
271   if (grob_counts_.find (name) != grob_counts_.end ())
272     {
273       disambiguation_count = grob_counts_[name];
274     }
275   grob_counts_[name] = disambiguation_count + 1;
276
277   Object_key *k = new Lilypond_grob_key (get_key (),
278                                          now_mom (),
279                                          name,
280                                          disambiguation_count);
281
282   return k;
283 }
284
285 /*
286   Default child context as a SCM string, or something else if there is
287   none.
288 */
289 SCM
290 Context::default_child_context_name () const
291 {
292   return scm_is_pair (accepts_list_)
293     ? scm_car (accepts_list_) 
294     : SCM_EOL;
295 }
296
297 bool
298 Context::is_bottom_context () const
299 {
300   return !scm_is_symbol (default_child_context_name ());
301 }
302
303 Context *
304 Context::get_default_interpreter ()
305 {
306   if (!is_bottom_context ())
307     {
308       SCM nm = default_child_context_name ();
309       SCM st = find_context_def (get_output_def (), nm);
310
311       String name = ly_symbol2string (nm);
312       Context_def *t = unsmob_context_def (st);
313       if (!t)
314         {
315           warning (_f ("can't find or create: `%s'", name.to_str0 ()));
316           t = unsmob_context_def (this->definition_);
317         }
318
319       Context *tg = create_context (t, "", SCM_EOL);
320       if (!tg->is_bottom_context ())
321         return tg->get_default_interpreter ();
322       else
323         return tg;
324     }
325   return this;
326 }
327
328 /*
329   PROPERTIES
330 */
331 Context *
332 Context::where_defined (SCM sym) const
333 {
334   if (properties_dict ()->contains (sym))
335     {
336       return (Context *)this;
337     }
338
339   return (daddy_context_) ? daddy_context_->where_defined (sym) : 0;
340 }
341
342 /*
343   return SCM_EOL when not found.
344 */
345 SCM
346 Context::internal_get_property (SCM sym) const
347 {
348   SCM val = SCM_EOL;
349   if (properties_dict ()->try_retrieve (sym, &val))
350     return val;
351
352   if (daddy_context_)
353     return daddy_context_->internal_get_property (sym);
354
355   return val;
356 }
357
358 bool
359 Context::is_alias (SCM sym) const
360 {
361   if (sym == ly_symbol2scm ("Bottom")
362       && !scm_is_pair (accepts_list_))
363     return true;
364   if (sym == unsmob_context_def (definition_)->get_context_name ())
365     return true;
366
367   return scm_c_memq (sym, aliases_) != SCM_BOOL_F;
368 }
369
370 void
371 Context::add_alias (SCM sym)
372 {
373   aliases_ = scm_cons (sym, aliases_);
374 }
375
376 void
377 Context::internal_set_property (SCM sym, SCM val)
378 {
379 #ifndef NDEBUG
380   if (do_internal_type_checking_global)
381     assert (type_check_assignment (sym, val, ly_symbol2scm ("translation-type?")));
382 #endif
383
384   properties_dict ()->set (sym, val);
385 }
386
387 /*
388   TODO: look up to check whether we have inherited var?
389 */
390 void
391 Context::unset_property (SCM sym)
392 {
393   properties_dict ()->remove (sym);
394 }
395
396 /**
397    Remove a context from the hierarchy.
398 */
399 Context *
400 Context::remove_context (Context *trans)
401 {
402   assert (trans);
403
404   context_list_ = scm_delq_x (trans->self_scm (), context_list_);
405   trans->daddy_context_ = 0;
406   return trans;
407 }
408
409 /*
410   ID == "" means accept any ID.
411 */
412 Context *
413 find_context_below (Context *where,
414                     SCM type, String id)
415 {
416   if (where->is_alias (type))
417     {
418       if (id == "" || where->id_string () == id)
419         return where;
420     }
421
422   Context *found = 0;
423   for (SCM s = where->children_contexts ();
424        !found && scm_is_pair (s); s = scm_cdr (s))
425     {
426       Context *tr = unsmob_context (scm_car (s));
427
428       found = find_context_below (tr, type, id);
429     }
430
431   return found;
432 }
433
434 SCM
435 Context::properties_as_alist () const
436 {
437   return properties_dict ()->to_alist ();
438 }
439
440 SCM
441 Context::context_name_symbol () const
442 {
443   Context_def *td = unsmob_context_def (definition_);
444   return td->get_context_name ();
445 }
446
447 String
448 Context::context_name () const
449 {
450   return ly_symbol2string (context_name_symbol ());
451 }
452
453 Score_context *
454 Context::get_score_context () const
455 {
456   if (Score_context *sc = dynamic_cast<Score_context *> ((Context *) this))
457     return sc;
458   else if (daddy_context_)
459     return daddy_context_->get_score_context ();
460   else
461     return 0;
462 }
463
464 Output_def *
465 Context::get_output_def () const
466 {
467   return daddy_context_ ? daddy_context_->get_output_def () : 0;
468 }
469
470 Context::~Context ()
471 {
472 }
473
474 Moment
475 Context::now_mom () const
476 {
477   return daddy_context_->now_mom ();
478 }
479
480 int
481 Context::print_smob (SCM s, SCM port, scm_print_state *)
482 {
483   Context *sc = (Context *) SCM_CELL_WORD_1 (s);
484
485   scm_puts ("#<", port);
486   scm_puts (classname (sc), port);
487   if (Context_def *d = unsmob_context_def (sc->definition_))
488     {
489       scm_puts (" ", port);
490       scm_display (d->get_context_name (), port);
491     }
492
493   if (!sc->id_string_.is_empty ())
494     {
495       scm_puts ("=", port);
496       scm_puts (sc->id_string_.to_str0 (), port);
497     }
498
499   scm_puts (" ", port);
500
501   scm_display (sc->context_list_, port);
502   scm_puts (" >", port);
503
504   return 1;
505 }
506
507 SCM
508 Context::mark_smob (SCM sm)
509 {
510   Context *me = (Context *) SCM_CELL_WORD_1 (sm);
511   if (me->key_)
512     scm_gc_mark (me->key_->self_scm ());
513   
514   scm_gc_mark (me->context_list_);
515   scm_gc_mark (me->aliases_);
516   scm_gc_mark (me->definition_);
517   scm_gc_mark (me->properties_scm_);
518   scm_gc_mark (me->accepts_list_);
519   if (me->implementation_)
520     scm_gc_mark (me->implementation_->self_scm ());
521
522   return me->properties_scm_;
523 }
524
525 IMPLEMENT_SMOBS (Context);
526 IMPLEMENT_DEFAULT_EQUAL_P (Context);
527 IMPLEMENT_TYPE_P (Context, "ly:context?");
528
529 bool
530 Context::try_music (Music *m)
531 {
532   Translator_group *t = implementation ();
533   if (!t)
534     return false;
535
536   bool b = t->try_music (m);
537   if (!b && daddy_context_)
538     b = daddy_context_->try_music (m);
539
540   return b;
541 }
542
543 Global_context *
544 Context::get_global_context () const
545 {
546   if (dynamic_cast<Global_context *> ((Context *) this))
547     return dynamic_cast<Global_context *> ((Context *) this);
548
549   if (daddy_context_)
550     return daddy_context_->get_global_context ();
551
552   programming_error ("no Global context");
553   return 0;
554 }
555
556 Context *
557 Context::get_parent_context () const
558 {
559   return daddy_context_;
560 }
561
562 Translator_group *
563 Context::implementation () const
564 {
565   return implementation_;
566 }
567
568 void
569 Context::clear_key_disambiguations ()
570 {
571   if (!use_object_keys)
572     return;
573   
574   grob_counts_.clear ();
575   context_counts_.clear ();
576   for (SCM s = context_list_; scm_is_pair (s); s = scm_cdr (s))
577     {
578       unsmob_context (scm_car (s))->clear_key_disambiguations ();
579     }
580 }
581
582
583 /*
584   Ugh. Where to put this? 
585 */
586 Rational
587 measure_length (Context const *context)
588 {
589   SCM l = context->get_property ("measureLength");
590   Rational length (1); 
591   if (unsmob_moment (l))
592     length = unsmob_moment (l)->main_part_;
593   return length;
594 }
595
596 Moment
597 measure_position (Context const *context)
598 {
599   SCM sm = context->get_property ("measurePosition");
600
601   Moment m = 0;
602   if (unsmob_moment (sm))
603     {
604       m = *unsmob_moment (sm);
605
606       if (m.main_part_ < Rational (0))
607         {
608           Rational length (measure_length (context));
609           while (m.main_part_ < Rational (0))
610             m.main_part_ += length;
611         }
612     }
613
614   return m;
615 }