]> git.donarmstrong.com Git - lilypond.git/blob - lily/context.cc
Merge branch 'master' of /home/jcharles/GIT/Lily/. into translation
[lilypond.git] / lily / context.cc
1 /*
2   This file is part of LilyPond, the GNU music typesetter.
3
4   Copyright (C) 2004--2015 Han-Wen Nienhuys <hanwen@xs4all.nl>
5
6   LilyPond is free software: you can redistribute it and/or modify
7   it under the terms of the GNU General Public License as published by
8   the Free Software Foundation, either version 3 of the License, or
9   (at your option) any later version.
10
11   LilyPond is distributed in the hope that it will be useful,
12   but WITHOUT ANY WARRANTY; without even the implied warranty of
13   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14   GNU General Public License for more details.
15
16   You should have received a copy of the GNU General Public License
17   along with LilyPond.  If not, see <http://www.gnu.org/licenses/>.
18 */
19
20 #include "context.hh"
21
22 #include "context-def.hh"
23 #include "dispatcher.hh"
24 #include "global-context.hh"
25 #include "international.hh"
26 #include "main.hh"
27 #include "output-def.hh"
28 #include "profile.hh"
29 #include "program-option.hh"
30 #include "scm-hash.hh"
31 #include "translator-group.hh"
32 #include "warn.hh"
33 #include "lily-imports.hh"
34
35 bool
36 Context::is_removable () const
37 {
38   return scm_is_null (context_list_) && ! client_count_
39          && !dynamic_cast<Global_context const *> (daddy_context_);
40 }
41
42 void
43 Context::check_removal ()
44 {
45   for (SCM p = context_list_; scm_is_pair (p); p = scm_cdr (p))
46     {
47       Context *ctx = unsmob<Context> (scm_car (p));
48
49       ctx->check_removal ();
50       if (ctx->is_removable ())
51         {
52           recurse_over_translators (ctx, &Translator::finalize,
53                                     &Translator_group::finalize,
54                                     UP);
55           send_stream_event (ctx, "RemoveContext", 0, 0);
56         }
57     }
58 }
59
60 Scheme_hash_table *
61 Context::properties_dict () const
62 {
63   return unsmob<Scheme_hash_table> (properties_scm_);
64 }
65
66 void
67 Context::add_context (Context *child)
68 {
69   context_list_ = ly_append2 (context_list_,
70                               scm_cons (child->self_scm (), SCM_EOL));
71
72   child->daddy_context_ = this;
73   events_below_->register_as_listener (child->events_below_);
74 }
75
76 Context::Context ()
77 {
78   daddy_context_ = 0;
79   aliases_ = SCM_EOL;
80   client_count_ = 0;
81   implementation_ = 0;
82   properties_scm_ = SCM_EOL;
83   accepts_list_ = SCM_EOL;
84   default_child_ = SCM_EOL;
85   context_list_ = SCM_EOL;
86   definition_ = SCM_EOL;
87   definition_mods_ = SCM_EOL;
88   event_source_ = 0;
89   events_below_ = 0;
90
91   smobify_self ();
92
93   Scheme_hash_table *tab = new Scheme_hash_table;
94   properties_scm_ = tab->unprotect ();
95   event_source_ = new Dispatcher ();
96   event_source_->unprotect ();
97   events_below_ = new Dispatcher ();
98   events_below_->unprotect ();
99 }
100
101 /* TODO:  this shares code with find_create_context ().  */
102 Context *
103 Context::create_unique_context (SCM name, const string &id, SCM operations)
104 {
105   /*
106     Don't create multiple score contexts.
107   */
108   Global_context *gthis = dynamic_cast<Global_context *> (this);
109   if (gthis && gthis->get_score_context ())
110     return gthis->get_score_context ()->create_unique_context (name, id, operations);
111
112   vector<Context_def *> path = path_to_acceptable_context (name);
113   if (path.size ())
114     {
115       Context *current = this;
116
117       // Iterate through the path and create all of the implicit contexts.
118       for (vsize i = 0; i < path.size (); i++)
119         {
120           SCM ops = SCM_EOL;
121           string id_str = "\\new";
122           if (i == path.size () - 1)
123             {
124               ops = operations;
125               id_str = id;
126             }
127           current = current->create_context (path[i],
128                                              id_str,
129                                              ops);
130         }
131
132       return current;
133     }
134
135   /*
136     Don't go up to Global_context, because global goes down to the
137     Score context
138   */
139   Context *ret = 0;
140   if (daddy_context_ && !dynamic_cast<Global_context *> (daddy_context_))
141     ret = daddy_context_->create_unique_context (name, id, operations);
142   else
143     {
144       warning (_f ("cannot find or create new `%s'",
145                    ly_symbol2string (name).c_str ()));
146       ret = 0;
147     }
148   return ret;
149 }
150
151 Context *
152 Context::find_create_context (SCM n, const string &id, SCM operations)
153 {
154   /*
155     Don't create multiple score contexts.
156   */
157   Global_context *gthis = dynamic_cast<Global_context *> (this);
158   if (gthis)
159     {
160       if (gthis->get_score_context ())
161         return gthis->get_score_context ()->find_create_context (n, id, operations);
162
163       // Special case: If we use \set Timing.xxx = whatever before
164       // Score is established, the alias of Score to Timing will not
165       // be taken into account.  We check for this particular case
166       // here.  Aliases apart from Score-level ones don't warrant
167       // context creation as they could create unwanted contexts, like
168       // RhythmicVoice instead of Voice.  Creating a Score context,
169       // however, can't really do anything wrong.
170
171       SCM score_name = default_child_context_name ();
172       SCM score_def = find_context_def (get_output_def (), score_name);
173
174       if (Context_def *cd = unsmob<Context_def> (score_def))
175         {
176           if (cd->is_alias (n))
177             return create_context (cd, id, operations);
178         }
179     }
180
181
182   if (Context *existing = find_context_below (this, n, id))
183     return existing;
184
185   if (scm_is_eq (n, ly_symbol2scm ("Bottom")))
186     {
187       Context *tg = get_default_interpreter (id);
188       return tg;
189     }
190
191   vector<Context_def *> path = path_to_acceptable_context (n);
192
193   if (path.size ())
194     {
195       Context *current = this;
196
197       // start at 1.  The first one (index 0) will be us.
198       for (vsize i = 0; i < path.size (); i++)
199         {
200           SCM ops = (i == path.size () - 1) ? operations : SCM_EOL;
201
202           string this_id = "";
203           if (i == path.size () - 1)
204             this_id = id;
205
206           current = current->create_context (path[i],
207                                              this_id,
208                                              ops);
209         }
210
211       return current;
212     }
213
214   /*
215     Don't go up to Global_context, because global goes down to the
216     Score context
217   */
218   Context *ret = 0;
219   if (daddy_context_ && !dynamic_cast<Global_context *> (daddy_context_))
220     ret = daddy_context_->find_create_context (n, id, operations);
221   else
222     {
223       warning (_f ("cannot find or create `%s' called `%s'",
224                    ly_symbol2string (n).c_str (), id));
225       ret = 0;
226     }
227   return ret;
228 }
229
230 void
231 Context::acknowledge_infant (SCM sev)
232 {
233   infant_event_ = unsmob<Stream_event> (sev);
234 }
235
236 void
237 Context::set_property_from_event (SCM sev)
238 {
239   Stream_event *ev = unsmob<Stream_event> (sev);
240
241   SCM sym = ev->get_property ("symbol");
242   if (scm_is_symbol (sym))
243     {
244       SCM val = ev->get_property ("value");
245
246       if (SCM_UNBNDP (val)) {
247         unset_property (sym);
248         return;
249       }
250
251       bool ok = true;
252       ok = type_check_assignment (sym, val, ly_symbol2scm ("translation-type?"));
253
254       if (ok)
255         {
256           if (to_boolean (ev->get_property ("once")))
257             {
258               if (Global_context *g = get_global_context ())
259                 {
260                   SCM old_val = SCM_UNDEFINED;
261                   if (here_defined (sym, &old_val))
262                     g->add_finalization (scm_list_4 (ly_context_set_property_x_proc,
263                                                      self_scm (),
264                                                      sym,
265                                                      old_val));
266                   else
267                     g->add_finalization (scm_list_3 (ly_context_unset_property_proc,
268                                                      self_scm (),
269                                                      sym));
270                 }
271             }
272           set_property (sym, val);
273         }
274     }
275 }
276
277 void
278 Context::unset_property_from_event (SCM sev)
279 {
280   Stream_event *ev = unsmob<Stream_event> (sev);
281
282   SCM sym = ev->get_property ("symbol");
283   bool ok = type_check_assignment (sym, SCM_EOL, ly_symbol2scm ("translation-type?"));
284
285   if (ok)
286     {
287       if (to_boolean (ev->get_property ("once")))
288         {
289           if (Global_context *g = get_global_context ())
290             {
291               SCM old_val = SCM_UNDEFINED;
292               if (here_defined (sym, &old_val))
293                 g->add_finalization (scm_list_4 (ly_context_set_property_x_proc,
294                                                  self_scm (),
295                                                  sym,
296                                                  old_val));
297               else
298                 g->add_finalization (scm_list_3 (ly_context_unset_property_proc,
299                                                  self_scm (),
300                                                  sym));
301             }
302         }
303       unset_property (sym);
304     }
305 }
306
307 /*
308   Creates a new context from a CreateContext event, and sends an
309   AnnounceNewContext event to this context.
310 */
311 void
312 Context::create_context_from_event (SCM sev)
313 {
314   Stream_event *ev = unsmob<Stream_event> (sev);
315
316   string id = ly_scm2string (ev->get_property ("id"));
317   SCM ops = ev->get_property ("ops");
318   SCM type_scm = ev->get_property ("type");
319   string type = ly_symbol2string (type_scm);
320
321   vector<Context_def *> path = path_to_acceptable_context (type_scm);
322
323   if (path.size () != 1)
324     {
325       programming_error (to_string ("Invalid CreateContext event: Cannot create %s context", type.c_str ()));
326       return;
327     }
328   Context_def *cdef = path[0];
329
330   Context *new_context = cdef->instantiate (ops);
331
332   new_context->id_string_ = id;
333
334   /* Register various listeners:
335       - Make the new context hear events that universally affect contexts
336       - connect events_below etc. properly */
337   /* We want to be the first ones to hear our own events. Therefore, wait
338      before registering events_below_ */
339   new_context->event_source ()->
340   add_listener (new_context->GET_LISTENER (Context, create_context_from_event),
341                 ly_symbol2scm ("CreateContext"));
342   new_context->event_source ()->
343   add_listener (new_context->GET_LISTENER (Context, remove_context),
344                 ly_symbol2scm ("RemoveContext"));
345   new_context->event_source ()->
346   add_listener (new_context->GET_LISTENER (Context, change_parent),
347                 ly_symbol2scm ("ChangeParent"));
348   new_context->event_source ()->
349   add_listener (new_context->GET_LISTENER (Context, set_property_from_event),
350                 ly_symbol2scm ("SetProperty"));
351   new_context->event_source ()->
352   add_listener (new_context->GET_LISTENER (Context, unset_property_from_event),
353                 ly_symbol2scm ("UnsetProperty"));
354
355   new_context->events_below_->register_as_listener (new_context->event_source_);
356   add_context (new_context);
357
358   new_context->unprotect ();
359
360   Context_def *td = unsmob<Context_def> (new_context->definition_);
361
362   /* This cannot move before add_context (), because \override
363      operations require that we are in the hierarchy.  */
364   td->apply_default_property_operations (new_context);
365   apply_property_operations (new_context, ops);
366
367   send_stream_event (this, "AnnounceNewContext", 0,
368                      ly_symbol2scm ("context"), new_context->self_scm (),
369                      ly_symbol2scm ("creator"), sev);
370 }
371
372 vector<Context_def *>
373 Context::path_to_acceptable_context (SCM name) const
374 {
375   // The 'accepts elements in definition_mods_ is a list of ('accepts string),
376   // but the Context_def expects to see elements of the form ('accepts symbol).
377   SCM accepts = SCM_EOL;
378   for (SCM s = definition_mods_; scm_is_pair (s); s = scm_cdr (s))
379     if (scm_is_eq (scm_caar (s), ly_symbol2scm ("accepts")))
380       {
381         SCM elt = scm_list_2 (scm_caar (s), scm_string_to_symbol (scm_cadar (s)));
382         accepts = scm_cons (elt, accepts);
383       }
384
385   return unsmob<Context_def> (definition_)->path_to_acceptable_context (name,
386          get_output_def (),
387          scm_reverse_x (accepts, SCM_EOL));
388
389 }
390
391 Context *
392 Context::create_context (Context_def *cdef,
393                          const string &id,
394                          SCM ops)
395 {
396   infant_event_ = 0;
397   /* TODO: This is fairly misplaced. We can fix this when we have taken out all
398      iterator specific stuff from the Context class */
399   event_source_->
400   add_listener (GET_LISTENER (Context, acknowledge_infant),
401                 ly_symbol2scm ("AnnounceNewContext"));
402   /* The CreateContext creates a new context, and sends an announcement of the
403      new context through another event. That event will be stored in
404      infant_event_ to create a return value. */
405   send_stream_event (this, "CreateContext", 0,
406                      ly_symbol2scm ("ops"), ops,
407                      ly_symbol2scm ("type"), cdef->get_context_name (),
408                      ly_symbol2scm ("id"), ly_string2scm (id));
409   event_source_->
410   remove_listener (GET_LISTENER (Context, acknowledge_infant),
411                    ly_symbol2scm ("AnnounceNewContext"));
412
413   assert (infant_event_);
414   SCM infant_scm = infant_event_->get_property ("context");
415   Context *infant = unsmob<Context> (infant_scm);
416
417   if (!infant || infant->get_parent_context () != this)
418     {
419       programming_error ("create_context: can't locate newly created context");
420       return 0;
421     }
422
423   return infant;
424 }
425
426 /*
427   Default child context as a SCM string, or something else if there is
428   none.
429 */
430 SCM
431 Context::default_child_context_name () const
432 {
433   return default_child_;
434 }
435
436 bool
437 Context::is_bottom_context () const
438 {
439   return !scm_is_symbol (default_child_context_name ());
440 }
441
442 Context *
443 Context::get_default_interpreter (const string &context_id)
444 {
445   if (!is_bottom_context ())
446     {
447       SCM nm = default_child_context_name ();
448       SCM st = find_context_def (get_output_def (), nm);
449
450       string name = ly_symbol2string (nm);
451       Context_def *t = unsmob<Context_def> (st);
452       if (!t)
453         {
454           warning (_f ("cannot find or create: `%s'", name.c_str ()));
455           t = unsmob<Context_def> (definition_);
456         }
457       if (scm_is_symbol (t->get_default_child (SCM_EOL)))
458         {
459           Context *tg = create_context (t, "\\new", SCM_EOL);
460           return tg->get_default_interpreter (context_id);
461         }
462       return create_context (t, context_id, SCM_EOL);
463     }
464   else if (!context_id.empty () && context_id != id_string ())
465     {
466       if (daddy_context_ && !dynamic_cast<Global_context *> (daddy_context_))
467         return daddy_context_->get_default_interpreter (context_id);
468       warning (_f ("cannot find or create new Bottom = \"%s\"",
469                    context_id.c_str ()));
470     }
471   return this;
472 }
473
474 /*
475   PROPERTIES
476 */
477 Context *
478 Context::where_defined (SCM sym, SCM *value) const
479 {
480 #ifdef DEBUG
481   if (profile_property_accesses)
482     note_property_access (&context_property_lookup_table, sym);
483 #endif
484
485   if (properties_dict ()->try_retrieve (sym, value))
486     return (Context *)this;
487
488   return (daddy_context_) ? daddy_context_->where_defined (sym, value) : 0;
489 }
490
491 /* Quick variant of where_defined.  Checks only the context itself. */
492
493 bool
494 Context::here_defined (SCM sym, SCM *value) const
495 {
496 #ifdef DEBUG
497   if (profile_property_accesses)
498     note_property_access (&context_property_lookup_table, sym);
499 #endif
500
501   return properties_dict ()->try_retrieve (sym, value);
502 }
503
504 /*
505   return SCM_EOL when not found.
506 */
507 SCM
508 Context::internal_get_property (SCM sym) const
509 {
510 #ifdef DEBUG
511   if (profile_property_accesses)
512     note_property_access (&context_property_lookup_table, sym);
513 #endif
514
515   SCM val = SCM_EOL;
516   if (properties_dict ()->try_retrieve (sym, &val))
517     return val;
518
519   if (daddy_context_)
520     return daddy_context_->internal_get_property (sym);
521
522   return val;
523 }
524
525 /*
526 Called by the send_stream_event macro. props is a 0-terminated array of
527 properties and corresponding values, interleaved. This method should not
528 be called from any other place than the send_stream_event macro.
529 */
530 void
531 Context::internal_send_stream_event (SCM type, Input *origin, SCM props[])
532 {
533   Stream_event *e = new Stream_event (Lily::ly_make_event_class (type), origin);
534   for (int i = 0; props[i]; i += 2)
535     {
536       e->set_property (props[i], props[i + 1]);
537     }
538   event_source_->broadcast (e);
539   e->unprotect ();
540 }
541
542 bool
543 Context::is_alias (SCM sym) const
544 {
545   if (scm_is_eq (sym, ly_symbol2scm ("Bottom")))
546     return is_bottom_context ();
547   if (scm_is_eq (sym, context_name_symbol ()))
548     return true;
549
550   return scm_is_true (scm_c_memq (sym, aliases_));
551 }
552
553 void
554 Context::add_alias (SCM sym)
555 {
556   aliases_ = scm_cons (sym, aliases_);
557 }
558
559 /* we don't (yet) instrument context properties */
560 void
561 Context::instrumented_set_property (SCM sym, SCM val, const char *, int, const char *)
562 {
563   internal_set_property (sym, val);
564 }
565
566 void
567 Context::internal_set_property (SCM sym, SCM val)
568 {
569   bool type_check_ok = type_check_assignment (sym, val, ly_symbol2scm ("translation-type?"));
570
571   if (do_internal_type_checking_global)
572     assert (type_check_ok);
573
574   if (type_check_ok)
575     properties_dict ()->set (sym, val);
576 }
577
578 /*
579   TODO: look up to check whether we have inherited var?
580 */
581 void
582 Context::unset_property (SCM sym)
583 {
584   properties_dict ()->remove (sym);
585 }
586
587 void
588 Context::change_parent (SCM sev)
589 {
590   Stream_event *ev = unsmob<Stream_event> (sev);
591   Context *to = unsmob<Context> (ev->get_property ("context"));
592
593   disconnect_from_parent ();
594   to->add_context (this);
595 }
596
597 /*
598   Die. The next GC sweep should take care of the actual death.
599  */
600 void
601 Context::remove_context (SCM)
602 {
603   /* ugh, the translator group should listen to RemoveContext events by itself */
604   Translator_group *impl = implementation ();
605   if (impl)
606     impl->disconnect_from_context ();
607   disconnect_from_parent ();
608 }
609
610 void
611 Context::disconnect_from_parent ()
612 {
613   daddy_context_->events_below_->unregister_as_listener (events_below_);
614   daddy_context_->context_list_ = scm_delq_x (self_scm (), daddy_context_->context_list_);
615   daddy_context_ = 0;
616 }
617
618 Context *
619 find_context_above (Context *where, SCM type)
620 {
621   while (where && !where->is_alias (type))
622     where = where->get_parent_context ();
623
624   return where;
625 }
626
627 Context *
628 find_context_above_by_parent_type (Context *where, SCM parent_type)
629 {
630   for (Context *child = 0; where;
631        child = where, where = where->get_parent_context ())
632     if (where->is_alias (parent_type))
633       return child;
634
635   return 0;
636 }
637
638 Context *
639 find_context_below (Context *where,
640                     SCM type, const string &id)
641 {
642   if (where->is_alias (type))
643     {
644       if (id == "" || where->id_string () == id)
645         return where;
646     }
647
648   Context *found = 0;
649   for (SCM s = where->children_contexts ();
650        !found && scm_is_pair (s); s = scm_cdr (s))
651     {
652       Context *tr = unsmob<Context> (scm_car (s));
653
654       found = find_context_below (tr, type, id);
655     }
656
657   return found;
658 }
659
660 Context *
661 find_context_near (Context *where,
662                    SCM type, const string &id)
663 {
664   for ( ; where; where = where->get_parent_context ())
665     {
666       Context *found = find_context_below (where, type, id);
667       if (found)
668         return found;
669     }
670
671   return 0;
672 }
673
674 Context *
675 find_top_context (Context *where)
676 {
677   Context *top = where;
678   for ( ; where; where = where->get_parent_context())
679     top = where;
680   return top;
681 }
682
683 SCM
684 Context::properties_as_alist () const
685 {
686   return properties_dict ()->to_alist ();
687 }
688
689 SCM
690 Context::context_name_symbol () const
691 {
692   Context_def *td = unsmob<Context_def> (definition_);
693   return td->get_context_name ();
694 }
695
696 string
697 Context::context_name () const
698 {
699   return ly_symbol2string (context_name_symbol ());
700 }
701
702 Context *
703 Context::get_score_context () const
704 {
705   if (daddy_context_)
706     return daddy_context_->get_score_context ();
707   else
708     return 0;
709 }
710
711 Output_def *
712 Context::get_output_def () const
713 {
714   return daddy_context_ ? daddy_context_->get_output_def () : 0;
715 }
716
717 Context::~Context ()
718 {
719 }
720
721 Moment
722 Context::now_mom () const
723 {
724   Context const *p = this;
725   while (p->daddy_context_)
726     p = p->daddy_context_;
727
728   return p->now_mom ();
729 }
730
731 int
732 Context::print_smob (SCM port, scm_print_state *) const
733 {
734   scm_puts ("#<", port);
735   scm_puts (class_name (), port);
736   if (Context_def *d = unsmob<Context_def> (definition_))
737     {
738       scm_puts (" ", port);
739       scm_display (d->get_context_name (), port);
740     }
741
742   if (!id_string_.empty ())
743     {
744       scm_puts ("=", port);
745       scm_puts (id_string_.c_str (), port);
746     }
747
748   scm_puts (" ", port);
749
750   scm_display (context_list_, port);
751   scm_puts (" >", port);
752
753   return 1;
754 }
755
756 SCM
757 Context::mark_smob () const
758 {
759   scm_gc_mark (context_list_);
760   scm_gc_mark (aliases_);
761   scm_gc_mark (definition_);
762   scm_gc_mark (definition_mods_);
763   scm_gc_mark (properties_scm_);
764   scm_gc_mark (accepts_list_);
765   scm_gc_mark (default_child_);
766
767   if (implementation_)
768     scm_gc_mark (implementation_->self_scm ());
769
770   if (event_source_)
771     scm_gc_mark (event_source_->self_scm ());
772
773   if (events_below_)
774     scm_gc_mark (events_below_->self_scm ());
775
776   return properties_scm_;
777 }
778
779 const char Context::type_p_name_[] = "ly:context?";
780
781 Global_context *
782 Context::get_global_context () const
783 {
784   if (dynamic_cast<Global_context *> ((Context *) this))
785     return dynamic_cast<Global_context *> ((Context *) this);
786
787   if (daddy_context_)
788     return daddy_context_->get_global_context ();
789
790   programming_error ("no Global context");
791   return 0;
792 }
793
794 Context *
795 Context::get_parent_context () const
796 {
797   return daddy_context_;
798 }
799
800 /*
801   Ugh. Where to put this?
802 */
803 Rational
804 measure_length (Context const *context)
805 {
806   SCM l = context->get_property ("measureLength");
807   Rational length (1);
808   if (unsmob<Moment> (l))
809     length = unsmob<Moment> (l)->main_part_;
810   return length;
811 }
812
813 Moment
814 measure_position (Context const *context)
815 {
816   SCM sm = context->get_property ("measurePosition");
817
818   Moment m = 0;
819   if (unsmob<Moment> (sm))
820     {
821       m = *unsmob<Moment> (sm);
822
823       if (m.main_part_ < Rational (0))
824         {
825           Rational length (measure_length (context));
826           while (m.main_part_ < Rational (0))
827             m.main_part_ += length;
828         }
829     }
830
831   return m;
832 }
833
834 /* Finds the measure position after a note of length DUR that
835    begins at the current measure position. */
836 Moment
837 measure_position (Context const *context, Duration const *dur)
838 {
839   Moment pos = measure_position (context);
840   Rational dur_length = dur ? dur->get_length () : Rational (0);
841
842   Moment end_pos = pos.grace_part_ < Rational (0)
843                    ? Moment (pos.main_part_, pos.grace_part_ + dur_length)
844                    : Moment (pos.main_part_ + dur_length, 0);
845
846   return end_pos;
847 }
848
849 int
850 measure_number (Context const *context)
851 {
852   SCM barnum = context->get_property ("internalBarNumber");
853   SCM smp = context->get_property ("measurePosition");
854
855   int bn = robust_scm2int (barnum, 0);
856   Moment mp = robust_scm2moment (smp, Moment (0));
857   if (mp.main_part_ < Rational (0))
858     bn--;
859
860   return bn;
861 }
862
863 void
864 set_context_property_on_children (Context *trans, SCM sym, SCM val)
865 {
866   trans->set_property (sym, ly_deep_copy (val));
867   for (SCM p = trans->children_contexts (); scm_is_pair (p); p = scm_cdr (p))
868     {
869       Context *trg = unsmob<Context> (scm_car (p));
870       set_context_property_on_children (trg, sym, ly_deep_copy (val));
871     }
872 }
873
874 bool
875 melisma_busy (Context *tr)
876 {
877   // When there are subcontexts, they are responsible for maintaining
878   // melismata.
879   SCM ch = tr->children_contexts ();
880   if (scm_is_pair (ch))
881     {
882       // all contexts need to have a busy melisma for this to evaluate
883       // to true.
884
885       do {
886         if (!melisma_busy (unsmob<Context> (scm_car (ch))))
887           return false;
888         ch = scm_cdr (ch);
889       } while (scm_is_pair (ch));
890       return true;
891     }
892
893   for (SCM melisma_properties = tr->get_property ("melismaBusyProperties");
894        scm_is_pair (melisma_properties);
895        melisma_properties = scm_cdr (melisma_properties))
896     if (to_boolean (tr->get_property (scm_car (melisma_properties))))
897       return true;
898
899   return false;
900 }
901
902 bool
903 check_repeat_count_visibility (Context const *context, SCM count)
904 {
905   SCM proc = context->get_property ("repeatCountVisibility");
906   return (ly_is_procedure (proc)
907           && to_boolean (scm_call_2 (proc,
908                                      count,
909                                      context->self_scm ())));
910 }