]> git.donarmstrong.com Git - lilypond.git/blob - lily/smobs.cc
Fix some bugs in the dynamic engraver and PostScript backend
[lilypond.git] / lily / smobs.cc
1 /*
2   smobs.cc -- implement Smob protection
3
4   source file of the GNU LilyPond music typesetter
5
6   (c) 2005--2006 Han-Wen Nienhuys <hanwen@xs4all.nl>
7 */
8
9 #include "smobs.hh"
10
11 /*
12   The CDR contains the actual protected list.
13  */
14 static SCM smob_protection_list;
15
16 void
17 init_smob_protection ()
18 {
19   smob_protection_list = scm_cons (SCM_UNDEFINED, SCM_EOL);
20   scm_permanent_object (smob_protection_list);
21 }
22 ADD_SCM_INIT_FUNC (init_smob_protection, init_smob_protection);
23
24 LY_DEFINE(ly_smob_protects, "ly:smob-protects",
25           0,0,0, (),
26           "Return lily's internal smob protection list")
27 {
28   return scm_cdr (smob_protection_list);
29 }
30
31           
32           
33
34 void
35 protect_smob (SCM smob, SCM *prot_cons)
36 {
37   SCM s = scm_cdr (smob_protection_list);
38   while (scm_is_pair (s) && scm_car (s) == SCM_UNDEFINED)
39     s = scm_cdr (s);
40
41   SCM prot = scm_cons (smob, s);
42   scm_set_cdr_x (smob_protection_list,
43                  prot);
44   *prot_cons = prot;
45 }
46
47 void
48 unprotect_smob (SCM *prot_cons)
49 {
50   SCM next = scm_cdr (*prot_cons);
51
52   if (next == SCM_EOL)
53     scm_set_car_x (*prot_cons, SCM_UNDEFINED);
54   else
55     {
56       scm_set_car_x (*prot_cons, SCM_UNDEFINED);
57       while (scm_is_pair (next)
58              && scm_car (next) == SCM_UNDEFINED)
59
60         next = scm_cdr (next);
61
62       scm_set_cdr_x (*prot_cons, next);
63     }
64
65   *prot_cons = SCM_EOL;
66 }