]> git.donarmstrong.com Git - lilypond.git/blob - lily/grob-property.cc
*** empty log message ***
[lilypond.git] / lily / grob-property.cc
1 /*
2   Implement storage and manipulation of grob properties.
3 */
4
5 #include <cstring>
6
7 #include "main.hh"
8 #include "input-smob.hh"
9 #include "pointer-group-interface.hh"
10 #include "misc.hh"
11 #include "paper-score.hh"
12 #include "output-def.hh"
13 #include "spanner.hh"
14 #include "item.hh"
15 #include "misc.hh"
16 #include "item.hh"
17 #include "program-option.hh"
18 #include "profile.hh"
19
20 SCM
21 Grob::get_property_alist_chain (SCM def) const
22 {
23   return scm_list_n (mutable_property_alist_,
24                      immutable_property_alist_,
25                      def,
26                      SCM_UNDEFINED);
27 }
28
29 /*
30   This special add_thing routine is slightly more efficient than
31
32   set_prop (name, cons (thing, get_prop (name)))
33
34   since it can reuse the handle returned by scm_assq ().
35 */
36 // JUNKME.
37 void
38 Grob::add_to_list_property (SCM sym, SCM thing)
39 {
40   SCM handle
41     = scm_sloppy_assq (sym, mutable_property_alist_);
42
43   if (handle != SCM_BOOL_F)
44     scm_set_cdr_x (handle, scm_cons (thing, scm_cdr (handle)));
45   else
46     {
47       /*
48         There is no mutable prop yet, so create an entry, and put it in front of the
49         mutable prop list.
50       */
51       handle = scm_sloppy_assq (sym, immutable_property_alist_);
52       SCM tail = (handle != SCM_BOOL_F) ? scm_cdr (handle) : SCM_EOL;
53       SCM val = scm_cons (thing, tail);
54
55       mutable_property_alist_ = scm_cons (scm_cons (sym, val),
56                                           mutable_property_alist_);
57     }
58 }
59
60 extern void check_interfaces_for_property (Grob const *me, SCM sym);
61
62 void
63 Grob::internal_set_property (SCM sym, SCM v)
64 {
65 #ifndef NDEBUG
66   SCM grob_p = ly_lily_module_constant ("ly:grob?");
67   SCM grob_list_p = ly_lily_module_constant ("grob-list?");
68   SCM type = scm_object_property (sym, ly_symbol2scm ("backend-type?"));
69
70   if (type == grob_p
71       || type == grob_list_p
72       || (unsmob_grob (v) && ly_symbol2scm ("cause") != sym))
73     {
74       scm_display (scm_list_2 (sym, type), scm_current_output_port ());
75       assert (0);
76     }
77 #endif
78
79   /* Perhaps we simply do the assq_set, but what the heck. */
80   if (!is_live ())
81     return;
82
83   if (do_internal_type_checking_global)
84     {
85       if (!type_check_assignment (sym, v, ly_symbol2scm ("backend-type?")))
86         abort ();
87       check_interfaces_for_property (this, sym);
88     }
89
90   mutable_property_alist_ = scm_assq_set_x (mutable_property_alist_, sym, v);
91 }
92
93 //#define PROFILE_PROPERTY_ACCESSES
94
95
96 SCM
97 Grob::internal_get_property (SCM sym) const
98 {
99 #ifndef NDEBUG
100   if (profile_property_accesses)
101     note_property_access (&grob_property_lookup_table, sym);
102 #endif
103
104   SCM s = scm_sloppy_assq (sym, mutable_property_alist_);
105   if (s != SCM_BOOL_F)
106     return scm_cdr (s);
107
108   s = scm_sloppy_assq (sym, immutable_property_alist_);
109
110   if (do_internal_type_checking_global && scm_is_pair (s))
111     {
112       if (!type_check_assignment (sym, scm_cdr (s),
113                                   ly_symbol2scm ("backend-type?")))
114         abort ();
115
116       check_interfaces_for_property (this, sym);
117     }
118
119   return (s == SCM_BOOL_F) ? SCM_EOL : scm_cdr (s);
120 }
121
122 void
123 Grob::internal_set_object (SCM s, SCM v)
124 {
125   /* Perhaps we simply do the assq_set, but what the heck. */
126   if (!is_live ())
127     return;
128
129   object_alist_ = scm_assq_set_x (object_alist_, s, v);
130 }
131
132 SCM
133 Grob::internal_get_object (SCM sym) const
134 {
135 #ifdef PROFILE_PROPERTY_ACCESSES
136   note_property_access (&grob_property_lookup_table, sym);
137 #endif
138
139   SCM s = scm_sloppy_assq (sym, object_alist_);
140
141   return (s == SCM_BOOL_F) ? SCM_EOL : scm_cdr (s);
142 }
143
144 void
145 Grob::substitute_object_links (SCM crit, SCM orig)
146 {
147   set_break_subsititution (crit);
148   object_alist_ = substitute_object_alist (orig, object_alist_);
149 }
150
151 bool
152 Grob::is_live () const
153 {
154   return immutable_property_alist_ != SCM_EOL;
155 }