]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/include/ly-smobs.icc
* lily/slur-performer.cc (Slur_performer): add inits
[lilypond.git] / lily / include / ly-smobs.icc
index 902f8c507fb5c394071a38a5b2a71467054ae71a..7e93c837f3638902448296c88229e3daddec0735 100644 (file)
@@ -3,8 +3,7 @@
   
   source file of the GNU LilyPond music typesetter
   
-  (c) 1999--2000 Han-Wen Nienhuys <hanwen@cs.uu.nl>
-  
+  (c)  1999--2004 Han-Wen Nienhuys <hanwen@cs.uu.nl>
  */
 
 #ifndef LY_SMOBS_ICC
 #include "smobs.hh"
 
 
-#define IMPLEMENT_UNSMOB(CL, name)             \
-CL *                                           \
-unsmob_ ## name ( SCM s)                       \
-{                                              \
-return  CL::unsmob (s);                                \
-}
-
 #define IMPLEMENT_TYPE_P(CL, FUNCNAME)\
-void init_type_p_ ## CL ()\
+void init_type_ ## CL ()\
 {\
-  scm_make_gsubr (FUNCNAME, 1, 0, 0, (Scheme_function_unknown) CL::smob_p);\
+  SCM subr = scm_c_define_gsubr (FUNCNAME, 1, 0, 0, (Scheme_function_unknown) CL::smob_p);\
+  ly_add_function_documentation (subr, FUNCNAME, "(SCM x)", "Is @var{x} a @code{" #CL "} object?");\
+  scm_c_export (FUNCNAME, NULL);\
 }\
-ADD_SCM_INIT_FUNC(init_type_p_ ## CL, init_type_p_ ## CL)
+ADD_SCM_INIT_FUNC (init_type_ ## CL, init_type_ ## CL)
 
 #ifndef SCM_CELL_TYPE
-#define SCM_CELL_TYPE(X) SCM_CAR(X)
+#define SCM_CELL_TYPE(X) SCM_CAR (X)
 #endif
 
 #ifndef SCM_CELL_WORD_1
-#define SCM_CELL_WORD_1(X) SCM_CDR(X)
+#define SCM_CELL_WORD_1(X) SCM_CDR (X)
 #endif
 
 
-#define IMPLEMENT_SIMPLE_SMOBS(CL)                             \
-long CL::smob_tag_;                                            \
+
+#define IMPLEMENT_BASE_SMOBS(CL)                               \
+scm_t_bits CL::smob_tag_;                                       \
 SCM                                                            \
 CL::smob_p (SCM s)                                             \
 {                                                              \
-  if (SCM_NIMP(s) && SCM_CELL_TYPE(s) == smob_tag_)            \
+  if (SCM_NIMP (s) && SCM_CELL_TYPE (s) == smob_tag_)          \
     return SCM_BOOL_T;                                         \
   else                                                         \
     return SCM_BOOL_F;                                         \
@@ -50,41 +45,43 @@ CL::smob_p (SCM s)                                          \
 void                                                           \
 CL::init_smobs ()                                              \
 {                                                              \
-  smob_tag_ = scm_make_smob_type_mfpe (                                \
-     #CL, 0, CL::mark_smob, CL::free_smob, CL::print_smob, 0); \
+  smob_tag_ = scm_make_smob_type (#CL, 0);                      \
+  scm_set_smob_mark (smob_tag_, CL::mark_smob);                 \
+  scm_set_smob_free (smob_tag_, CL::free_smob);                 \
+  scm_set_smob_print (smob_tag_, CL::print_smob);               \
+  scm_set_smob_equalp (smob_tag_, CL::equal_p);                 \
 }                                                              \
-SCM CL::smobbed_self () const                                  \
+size_t                                                         \
+CL::free_smob (SCM ses)                                                \
 {                                                              \
+  CL * s = (CL*) SCM_CDR (ses);                                        \
+  delete s;                                                    \
+  scm_gc_unregister_collectable_memory (s, sizeof (CL), #CL " smob");  \
+  return SMOB_FREE_RETURN_VAL(CL);\
+}\
+ADD_SCM_INIT_FUNC (CL, CL::init_smobs)
+
+
+#define IMPLEMENT_SIMPLE_SMOBS(CL)                             \
+IMPLEMENT_BASE_SMOBS(CL);\
+SCM CL::smobbed_copy () const                                  \
+{                                                              \
+  CL * ptr  = new CL (*this);\
   SCM s;                                                       \
-  s = gh_cons (SCM_PACK(CL::smob_tag_), SCM_PACK(this));       \
-  scm_done_malloc(sizeof(CL));                                 \
+  s = gh_cons (SCM_PACK (CL::smob_tag_), SCM_PACK (ptr));      \
+  scm_gc_register_collectable_memory ((CL*)this, sizeof (CL), #CL " smob"); \
                                                                \
   return s;                                                    \
 }                                                              \
-CL *                                                           \
-CL::unsmob (SCM s)                                             \
-{                                                              \
-  if (SCM_NIMP(s) && SCM_CELL_TYPE(s) == smob_tag_)            \
-    return (CL*) SCM_CELL_WORD_1(s);                           \
-  else                                                         \
-    return 0;                                                  \
-}                                                              \
-scm_sizet                                                      \
-CL::free_smob (SCM ses)                                                \
-{                                                              \
-  CL * s = (CL*) SCM_CDR(ses);                                 \
-   delete s;                                                   \
-  return sizeof (CL);                                          \
-}                                                              \
-ADD_SCM_INIT_FUNC(CL, CL::init_smobs)
+
 
 #define IMPLEMENT_SMOBS(CL)                                                    \
-IMPLEMENT_SIMPLE_SMOBS(CL)                                                     \
+IMPLEMENT_BASE_SMOBS (CL)                                                      \
 SCM                                                                            \
 CL::smobify_self ()                                                            \
 {                                                                              \
   SCM s =   unprotected_smobify_self ();\
-  scm_protect_object (s);\
+  scm_gc_protect_object (s);\
   return s;\
 }\
 SCM                                                                            \
@@ -95,15 +92,13 @@ CL::unprotected_smobify_self ()                                                             \
     that S isn't GC-ed from under us.                                          \
                                                                                \
     We don't use smobbed_self () to ensure that mark_smob () doesn't have to   \
-    deal half-initialized objects: scm_done_malloc( ) might trigger GC.                \
+    deal half-initialized objects: scm_done_malloc ( ) might trigger GC.               \
     the warning in smobs.hh is just to be doubleplus goodly sure               \
    */                                                                          \
-  SCM s;                                                                               \
-  SCM_NEWCELL(s);                                                              \
-  SCM_SETCAR(s,CL::smob_tag_);                                                 \
-  SCM_SETCDR (s, SCM_PACK(this));                                              \
+  SCM s;\
+  SCM_NEWSMOB (s, CL::smob_tag_, this);\
   self_scm_ = s;                                                               \
- scm_done_malloc(sizeof(CL));                                                  \
+ scm_gc_register_collectable_memory (this, sizeof (CL), #CL " smob");                                                  \
   return s;                                                                    \
 }