]> git.donarmstrong.com Git - lilypond.git/blob - lily/grob-smob.cc
Issue 4135/2: Replace mark_smob static member functions with non-static members
[lilypond.git] / lily / grob-smob.cc
1 /*
2   This file is part of LilyPond, the GNU music typesetter.
3
4   Copyright (C) 2005--2014 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 "grob.hh"
21
22 #include "paper-score.hh"
23 #include "warn.hh"
24
25
26 const char Grob::type_p_name_[] = "ly:grob?";
27
28 SCM
29 Grob::mark_smob ()
30 {
31   ASSERT_LIVE_IS_ALLOWED (self_scm ());
32
33   scm_gc_mark (immutable_property_alist_);
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   if (original ())
43     scm_gc_mark (original ()->self_scm ());
44
45   derived_mark ();
46   scm_gc_mark (object_alist_);
47   scm_gc_mark (interfaces_);
48
49   return mutable_property_alist_;
50 }
51
52 int
53 Grob::print_smob (SCM s, SCM port, scm_print_state *)
54 {
55   Grob *sc = (Grob *) SCM_CELL_WORD_1 (s);
56
57   scm_puts ("#<Grob ", port);
58   scm_puts ((char *) sc->name ().c_str (), port);
59
60   /* Do not print properties, that is too much hassle.  */
61   scm_puts (" >", port);
62   return 1;
63 }
64
65 void
66 Grob::derived_mark () const
67 {
68 }