2 context.cc -- implement Context
4 source file of the GNU LilyPond music typesetter
6 (c) 2004--2005 Han-Wen Nienhuys <hanwen@xs4all.nl>
12 #include "context-def.hh"
13 #include "ly-smobs.icc"
15 #include "output-def.hh"
16 #include "scm-hash.hh"
17 #include "score-context.hh"
18 #include "translator-group.hh"
20 #include "lilypond-key.hh"
23 Context::is_removable () const
25 return context_list_ == SCM_EOL && ! iterator_count_ &&
26 !dynamic_cast<Score_context const*> (this);
30 Context::check_removal ()
32 for (SCM p = context_list_; scm_is_pair (p); p = scm_cdr (p))
34 Context *trg = unsmob_context (scm_car (p));
36 trg->check_removal ();
37 if (trg->is_removable ())
39 recurse_over_translators (trg, &Translator::finalize, UP);
45 Context::Context (Context const&)
51 Context::properties_dict () const
53 return Scheme_hash_table::unsmob (properties_scm_);
57 Context::add_context (Context *t)
59 SCM ts = t->self_scm ();
60 context_list_ = ly_append2 (context_list_,
61 scm_cons (ts, SCM_EOL));
63 t->daddy_context_ = this;
68 scm_gc_unprotect_object (ts);
69 Context_def *td = unsmob_context_def (t->definition_);
72 this can not move before add_context (), because \override
73 operations require that we are in the hierarchy.
75 td->apply_default_property_operations (t);
77 recurse_over_translators (t, &Translator::initialize, DOWN);
82 Context::get_key () const
87 Context::Context (Object_key const* key)
94 implementation_ = SCM_EOL;
95 properties_scm_ = SCM_EOL;
96 accepts_list_ = SCM_EOL;
97 context_list_ = SCM_EOL;
98 definition_ = SCM_EOL;
101 properties_scm_ = (new Scheme_hash_table)->self_scm ();
102 scm_gc_unprotect_object (properties_scm_);
103 scm_gc_unprotect_object (key_->self_scm ());
107 TODO: this shares code with find_create_context().
110 Context::create_unique_context (SCM n, SCM operations)
113 Don't create multiple score contexts.
115 if (dynamic_cast<Global_context*> (this)
116 && dynamic_cast<Global_context*> (this)->get_score_context ())
117 return get_score_context ()->create_unique_context (n, operations);
120 TODO: use accepts_list_.
122 Link_array<Context_def> path
123 = unsmob_context_def (definition_)->path_to_acceptable_context (n, get_output_def ());
127 Context * current = this;
129 // start at 1. The first one (index 0) will be us.
130 for (int i = 0; i < path.size (); i++)
132 SCM ops = (i == path.size () -1) ? operations : SCM_EOL;
134 current = current->create_context (path[i],
143 Don't go up to Global_context, because global goes down to
147 if (daddy_context_ && !dynamic_cast<Global_context*> (daddy_context_))
148 ret = daddy_context_->create_unique_context (n, operations);
151 warning (_f ("Cannot find or create new `%s'",
152 ly_symbol2string (n).to_str0 ()));
160 Context::find_create_context (SCM n, String id, SCM operations)
163 Don't create multiple score contexts.
165 if (dynamic_cast<Global_context*> (this)
166 && dynamic_cast<Global_context*> (this)->get_score_context ())
167 return get_score_context ()->find_create_context (n, id, operations);
169 if (Context *existing = find_context_below (this, n, id))
172 if (n == ly_symbol2scm ("Bottom"))
174 Context* tg = get_default_interpreter ();
179 TODO: use accepts_list_.
181 Link_array<Context_def> path
182 = unsmob_context_def (definition_)->path_to_acceptable_context (n, get_output_def ());
186 Context * current = this;
188 // start at 1. The first one (index 0) will be us.
189 for (int i = 0; i < path.size (); i++)
191 SCM ops = (i == path.size () -1) ? operations : SCM_EOL;
194 if (i == path.size () -1)
200 current = current->create_context (path[i],
209 Don't go up to Global_context, because global goes down to
213 if (daddy_context_ && !dynamic_cast<Global_context*> (daddy_context_))
214 ret = daddy_context_->find_create_context (n, id, operations);
217 warning (_f ("Cannot find or create `%s' called `%s'",
218 ly_symbol2string (n).to_str0 (), id));
226 Context::create_context (Context_def * cdef,
230 String type = ly_symbol2string (cdef->get_context_name());
231 Object_key const *key = get_context_key (type, id);
233 = cdef->instantiate (ops, key);
235 new_group->id_string_ = id;
236 add_context (new_group);
237 apply_property_operations (new_group, ops);
245 Context::get_context_key (String type, String id)
247 String now_key = type + "@" + id;
249 int disambiguation_count = 0;
250 if (context_counts_.find (now_key) != context_counts_.end ())
252 disambiguation_count = context_counts_[now_key];
255 context_counts_[now_key] = disambiguation_count + 1;
258 return new Lilypond_context_key (get_key (),
261 disambiguation_count);
265 Context::get_grob_key (String name)
267 int disambiguation_count = 0;
268 if (grob_counts_.find (name) != grob_counts_.end ())
270 disambiguation_count = grob_counts_[name];
272 grob_counts_[name] = disambiguation_count + 1;
274 Object_key * k = new Lilypond_grob_key (get_key(),
277 disambiguation_count);
285 Default child context as a SCM string, or something else if there is
289 Context::default_child_context_name () const
291 return scm_is_pair (accepts_list_)
292 ? scm_car (scm_last_pair (accepts_list_))
298 Context::is_bottom_context () const
300 return !scm_is_symbol (default_child_context_name ());
304 Context::get_default_interpreter ()
306 if (!is_bottom_context ())
308 SCM nm = default_child_context_name ();
309 SCM st = find_context_def (get_output_def (), nm);
311 String name = ly_symbol2string (nm);
312 Context_def *t = unsmob_context_def (st);
315 warning (_f ("can't find or create: `%s'", name.to_str0 ()));
316 t = unsmob_context_def (this->definition_);
319 Context *tg = create_context (t, "", SCM_EOL);
320 if (!tg->is_bottom_context ())
321 return tg->get_default_interpreter ();
332 Context::where_defined (SCM sym) const
334 if (properties_dict ()->contains (sym))
336 return (Context*)this;
339 return (daddy_context_) ? daddy_context_->where_defined (sym) : 0;
343 return SCM_EOL when not found.
346 Context::internal_get_property (SCM sym) const
349 if (properties_dict ()->try_retrieve (sym, &val))
353 return daddy_context_->internal_get_property (sym);
359 Context::is_alias (SCM sym) const
361 if (sym == ly_symbol2scm ("Bottom")
362 && !scm_is_pair (accepts_list_))
364 if (sym == unsmob_context_def (definition_)->get_context_name ())
367 return scm_c_memq (sym, aliases_) != SCM_BOOL_F;
371 Context::add_alias (SCM sym)
373 aliases_ = scm_cons (sym, aliases_);
379 Context::internal_set_property (SCM sym, SCM val)
382 if (do_internal_type_checking_global)
383 assert (type_check_assignment (sym, val, ly_symbol2scm ("translation-type?")));
386 properties_dict ()->set (sym, val);
390 TODO: look up to check whether we have inherited var?
393 Context::unset_property (SCM sym)
395 properties_dict ()->remove (sym);
399 Remove a context from the hierarchy.
402 Context::remove_context (Context*trans)
406 context_list_ = scm_delq_x (trans->self_scm (), context_list_);
407 trans->daddy_context_ = 0;
412 ID == "" means accept any ID.
415 find_context_below (Context * where,
418 if (where->is_alias (type))
420 if (id == "" || where->id_string () == id)
425 for (SCM s = where->children_contexts ();
426 !found && scm_is_pair (s); s = scm_cdr (s))
428 Context *tr = unsmob_context (scm_car (s));
430 found = find_context_below (tr, type, id);
437 Context::properties_as_alist () const
439 return properties_dict ()->to_alist ();
443 Context::context_name_symbol () const
445 Context_def *td = unsmob_context_def (definition_);
446 return td->get_context_name ();
450 Context::context_name () const
452 return ly_symbol2string (context_name_symbol ());
456 Context::get_score_context () const
458 if (Score_context *sc = dynamic_cast<Score_context*> ((Context*) this))
460 else if (daddy_context_)
461 return daddy_context_->get_score_context ();
467 Context::get_output_def () const
469 return daddy_context_ ? daddy_context_->get_output_def () : 0;
478 Context::now_mom () const
480 return daddy_context_->now_mom ();
484 Context::print_smob (SCM s, SCM port, scm_print_state *)
486 Context *sc = (Context *) SCM_CELL_WORD_1 (s);
488 scm_puts ("#<", port);
489 scm_puts (classname (sc), port);
490 if (Context_def *d = unsmob_context_def (sc->definition_))
492 scm_puts (" ", port);
493 scm_display (d->get_context_name (), port);
496 if (Context *td = dynamic_cast<Context *> (sc))
498 scm_puts ("=", port);
499 scm_puts (td->id_string_.to_str0 (), port);
503 scm_puts (" ", port);
505 scm_display (sc->context_list_, port);
506 scm_puts (" >", port);
512 Context::mark_smob (SCM sm)
514 Context *me = (Context*) SCM_CELL_WORD_1 (sm);
515 scm_gc_mark (me->key_->self_scm ());
516 scm_gc_mark (me->context_list_);
517 scm_gc_mark (me->aliases_);
518 scm_gc_mark (me->definition_);
519 scm_gc_mark (me->properties_scm_);
520 scm_gc_mark (me->accepts_list_);
521 scm_gc_mark (me->implementation_);
523 return me->properties_scm_;
526 IMPLEMENT_SMOBS (Context);
527 IMPLEMENT_DEFAULT_EQUAL_P (Context);
528 IMPLEMENT_TYPE_P (Context,"ly:context?");
531 Context::try_music (Music* m)
533 Translator* t = implementation ();
537 bool b = t->try_music (m);
538 if (!b && daddy_context_)
539 b = daddy_context_->try_music (m);
546 Context::get_global_context () const
548 if (dynamic_cast<Global_context *>((Context*) this))
549 return dynamic_cast<Global_context *> ((Context*) this);
552 return daddy_context_->get_global_context ();
554 programming_error ("No Global context!");
559 Context::get_parent_context () const
561 return daddy_context_;
565 Context::implementation () const
567 return dynamic_cast<Translator_group*> (unsmob_translator (implementation_));
571 Context::clear_key_disambiguations ()
573 grob_counts_.clear();
574 context_counts_.clear();
575 for (SCM s = context_list_; scm_is_pair (s); s = scm_cdr (s))
577 unsmob_context (scm_car (s))->clear_key_disambiguations();