]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/smobs.hh
Style: clarify "do nothing" macro with {};
[lilypond.git] / lily / include / smobs.hh
1 /*
2   This file is part of LilyPond, the GNU music typesetter.
3
4   Copyright (C) 1999--2010 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 #ifndef SMOBS_HH
21 #define SMOBS_HH
22
23 #include "lily-guile.hh"
24 #include "warn.hh"
25
26 /*
27   Smobs are GUILEs mechanism of exporting C(++) objects to the Scheme
28   world.  They are documented in the GUILE manual.
29
30
31   In LilyPond, smobs are created from C++ objects through macros.
32   There are two types of smob objects.
33
34   1. Simple smobs are intended for simple objects like numbers:
35   immutable objects that can be copied without change of meaning.
36
37   To obtain an SCM version of a simple smob, use the member function
38   SCM smobbed_copy ().
39
40   Simple smobs are created by adding the
41   DECLARE_SIMPLE_SMOBS(Classname) to the declaration
42
43   2. Complex smobs are objects that have an identity. These objects
44   carry this identity in the form of a self_scm () method, which is a
45   SCM pointer to the object itself.
46
47   The constructor for a complex smob should have 3 steps:
48
49   * initialize all SCM members to a non-immediate value (like SCM_EOL)
50
51   * call smobify_self ()
52
53   * initialize SCM members
54
55   For example,
56
57   Complex_smob::Complex_smob () {
58   scm_member_ = SCM_EOL;
59   smobify_self ();
60   scm_member_ = <..what you want to store..>
61   }
62
63   after construction, the self_scm () field of a complex smob is
64   protected from Garbage Collection.  This protection should be
65   removed once the object is put into another (reachable) Scheme data
66   structure, i.e.
67
68   Complex_smob *p = new Complex_smob;
69   list = scm_cons (p->self_scm (), list);
70   scm_gc_unprotect_object (p->self_scm ());
71
72   Complex smobs are made with DECLARE_SMOBS (Classname) in the class
73   declaration.
74
75   CALLING INTERFACE
76
77   Common public methods to C++ smob objects:
78
79   unsmob (SCM x)  - unpacks X and returns pointer to the C++ object, or 0
80   if it has the wrong type.
81
82   SCM equal_p (SCM a, SCM b) - compare A and B. Returns a Scheme boolean
83
84
85   IMPLEMENTATION
86
87   For implementating a class, the following should be provided
88
89   - an equal_p () function (a default is in the
90   IMPLEMENT_DEFAULT_EQUAL_P macro in ly-smobs.icc)
91
92   - mark_smob () function, that calls scm_gc_mark () on all Scheme
93   objects in the class
94
95   - a print_smob () function, that displays a representation for
96   debugging purposes
97
98   - A call to one of the IMPLEMENT_SMOBS or IMPLEMENT_SIMPLE_SMOBS macros
99   from file "ly-smobs.icc"
100 */
101
102 #define DECLARE_SIMPLE_SMOBS(CL)                \
103   public:                                       \
104   SCM smobbed_copy () const;                    \
105   DECLARE_BASE_SMOBS (CL)
106
107 #define DECLARE_BASE_SMOBS(CL)                                  \
108   friend class Non_existent_class;                              \
109   private:                                                      \
110   static const char* smob_name_; \
111   static scm_t_bits smob_tag_;                                  \
112   static SCM mark_smob (SCM);                                   \
113   static size_t free_smob (SCM s);                              \
114   static int print_smob (SCM s, SCM p, scm_print_state*);       \
115   public:                                                       \
116   static SCM equal_p (SCM a, SCM b);                            \
117   static CL *unsmob (SCM s) __attribute__((pure))               \
118   {                                                             \
119     if (SCM_NIMP (s) && SCM_CELL_TYPE (s) == smob_tag_)         \
120       return (CL *) SCM_CELL_WORD_1 (s);                        \
121     else                                                        \
122       return 0;                                                 \
123   }                                                             \
124   static SCM smob_p (SCM);                                      \
125   static void init_smobs ();                                    \
126   private:
127
128 #define DECLARE_SMOBS(CL)                       \
129   DECLARE_BASE_SMOBS (CL)                       \
130     protected:                                  \
131   virtual ~CL ();                               \
132   SCM unprotected_smobify_self ();              \
133   private:                                      \
134   void smobify_self ();                         \
135   SCM self_scm_;                                \
136   SCM protection_cons_;                         \
137   public:                                       \
138   SCM unprotect ();                             \
139   void protect ();                              \
140   SCM self_scm () const { return self_scm_; }   \
141   private:
142
143 #define DECLARE_UNSMOB(CL, name)                \
144   inline CL *                                   \
145   unsmob_ ## name (SCM s)                       \
146   {                                             \
147     return CL::unsmob (s);                      \
148   }
149
150 #define DECLARE_TYPE_P(CL) extern SCM CL ## _type_p_proc
151
152 void protect_smob (SCM smob, SCM *prot_cons);
153 void unprotect_smob (SCM smob, SCM *prot_cons);
154
155 extern bool parsed_objects_should_be_dead;
156
157 #ifndef NDEBUG
158 #define ASSERT_LIVE_IS_ALLOWED()     \
159   static bool passed_here_once;\
160   if (parsed_objects_should_be_dead && !passed_here_once) { \
161     ::programming_error (string ("Parsed object should be dead: ")  + __PRETTY_FUNCTION__ ); \
162     passed_here_once = true;\
163   }    
164 #else
165 #define ASSERT_LIVE_IS_ALLOWED() {};
166 #endif
167
168 #endif /* SMOBS_HH */
169