]> git.donarmstrong.com Git - lilypond.git/blob - lily/grob-smob.cc
* lily/context.cc (where_defined): also assign value in
[lilypond.git] / lily / grob-smob.cc
1 /*
2   grob-smob.cc -- implement GROB smob routines.
3
4   source file of the GNU LilyPond music typesetter
5
6   (c) 2005 Han-Wen Nienhuys <hanwen@xs4all.nl>
7
8 */
9    
10
11 #include "grob.hh"
12
13 #include "paper-score.hh"
14
15 #include "ly-smobs.icc"
16
17 IMPLEMENT_SMOBS (Grob);
18 IMPLEMENT_DEFAULT_EQUAL_P (Grob);
19 IMPLEMENT_TYPE_P (Grob, "ly:grob?");
20
21 SCM
22 Grob::mark_smob (SCM ses)
23 {
24   Grob *s = (Grob *) SCM_CELL_WORD_1 (ses);
25   scm_gc_mark (s->immutable_property_alist_);
26
27   if (s->key_)
28     scm_gc_mark (s->key_->self_scm ());
29   for (int a = 0; a < 2; a++)
30     {
31       scm_gc_mark (s->dim_cache_[a].offset_callbacks_);
32       scm_gc_mark (s->dim_cache_[a].dimension_);
33       scm_gc_mark (s->dim_cache_[a].dimension_callback_);
34
35       /* Do not mark the parents.  The pointers in the mutable
36          property list form two tree like structures (one for X
37          relations, one for Y relations).  Marking these can be done
38          in limited stack space.  If we add the parents, we will jump
39          between X and Y in an erratic manner, leading to much more
40          recursion depth (and core dumps if we link to pthreads).  */
41     }
42
43   if (s->original_)
44     scm_gc_mark (s->original_->self_scm ());
45
46   s->derived_mark ();
47   scm_gc_mark (s->object_alist_);
48   scm_gc_mark (s->interfaces_);
49
50   return s->mutable_property_alist_;
51 }
52
53 int
54 Grob::print_smob (SCM s, SCM port, scm_print_state *)
55 {
56   Grob *sc = (Grob *) SCM_CELL_WORD_1 (s);
57
58   scm_puts ("#<Grob ", port);
59   scm_puts ((char *) sc->name ().to_str0 (), port);
60
61   /* Do not print properties, that is too much hassle.  */
62   scm_puts (" >", port);
63   return 1;
64 }
65
66 void
67 Grob::derived_mark () const
68 {
69 }