]> git.donarmstrong.com Git - lilypond.git/blob - lily/grob-property.cc
(parse_symbol_list): Bugfix.
[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 extern void check_interfaces_for_property (Grob const *me, SCM sym);
65
66 void
67 Grob::internal_set_property (SCM sym, SCM v)
68 {
69 #ifndef NDEBUG
70   SCM grob_p = ly_lily_module_constant ("ly:grob?");
71   SCM grob_list_p = ly_lily_module_constant ("grob-list?");
72   SCM type = scm_object_property (sym, ly_symbol2scm ("backend-type?"));
73
74   if (type == grob_p
75       || type == grob_list_p
76       || (unsmob_grob (v) && ly_symbol2scm ("cause") != sym))
77     {
78       scm_display (scm_list_2 (sym, type), scm_current_output_port ());
79       assert (0);
80     }
81 #endif
82
83   /* Perhaps we simply do the assq_set, but what the heck. */
84   if (!is_live ())
85     return;
86
87   if (do_internal_type_checking_global)
88     {
89       if (!type_check_assignment (sym, v, ly_symbol2scm ("backend-type?")))
90         abort ();
91       check_interfaces_for_property (this, sym);
92     }
93
94   mutable_property_alist_ = scm_assq_set_x (mutable_property_alist_, sym, v);
95 }
96
97 //#define PROFILE_PROPERTY_ACCESSES
98
99
100
101 SCM
102 Grob::internal_get_property (SCM sym) const
103 {
104 #ifndef NDEBUG
105   if (profile_property_accesses)
106     {
107       note_property_access (&grob_property_lookup_table, sym);
108     }
109 #endif
110
111   SCM s = scm_sloppy_assq (sym, mutable_property_alist_);
112   if (s != SCM_BOOL_F)
113     return scm_cdr (s);
114
115   s = scm_sloppy_assq (sym, immutable_property_alist_);
116
117   if (do_internal_type_checking_global && scm_is_pair (s))
118     {
119       if (!type_check_assignment (sym, scm_cdr (s),
120                                   ly_symbol2scm ("backend-type?")))
121         abort ();
122
123       check_interfaces_for_property (this, sym);
124     }
125
126   return (s == SCM_BOOL_F) ? SCM_EOL : scm_cdr (s);
127 }
128
129
130 void
131 Grob::internal_set_object (SCM s, SCM v)
132 {
133   /* Perhaps we simply do the assq_set, but what the heck. */
134   if (!is_live ())
135     return;
136
137   object_alist_ = scm_assq_set_x (object_alist_, s, v);
138 }
139
140 SCM
141 Grob::internal_get_object (SCM sym) const
142 {
143 #ifdef PROFILE_PROPERTY_ACCESSES
144   note_property_access (&grob_property_lookup_table, sym);
145 #endif
146
147   SCM s = scm_sloppy_assq (sym, object_alist_);
148
149   return (s == SCM_BOOL_F) ? SCM_EOL : scm_cdr (s);
150 }
151
152 void
153 Grob::substitute_object_links (SCM crit, SCM orig)
154 {
155   set_break_subsititution (crit);
156   object_alist_ = substitute_object_alist (orig, object_alist_);
157 }
158
159 bool
160 Grob::is_live () const
161 {
162   return immutable_property_alist_ != SCM_EOL;
163 }