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