]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/include/ly-smobs.icc
release: 1.3.145
[lilypond.git] / lily / include / ly-smobs.icc
index 0bcb9d2e8dbabde1ac3bc00c3b0a4e2f89ebbc95..0405b9c5066a77bc3a518759223e7f46cd2ce583 100644 (file)
@@ -20,51 +20,67 @@ unsmob_ ## name ( SCM s)                    \
 return  CL::unsmob (s);                                \
 }
 
+#define IMPLEMENT_TYPE_P(CL, FUNCNAME)\
+void init_type_p_ ## CL ()\
+{\
+  scm_make_gsubr (FUNCNAME, 1, 0, 0, (Scheme_function_unknown) CL::smob_p);\
+}\
+ADD_SCM_INIT_FUNC (init_type_p_ ## CL, init_type_p_ ## 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_;                                            \
+SCM                                                            \
+CL::smob_p (SCM s)                                             \
+{                                                              \
+  if (SCM_NIMP (s) && SCM_CELL_TYPE (s) == smob_tag_)          \
+    return SCM_BOOL_T;                                         \
+  else                                                         \
+    return SCM_BOOL_F;                                         \
+                                                               \
+}                                                              \
 void                                                           \
 CL::init_smobs ()                                              \
 {                                                              \
   smob_tag_ = scm_make_smob_type_mfpe (                                \
-     #CL, 0, CL::mark_smob, CL::free_smob, CL::print_smob, 0); \
+     #CL, 0, CL::mark_smob, CL::free_smob, CL::print_smob,     \
+     CL::equal_p);                                              \
 }                                                              \
 SCM CL::smobbed_self () const                                  \
 {                                                              \
   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 (this));     \
+  scm_done_malloc (sizeof (CL));                                       \
                                                                \
   return s;                                                    \
 }                                                              \
 CL *                                                           \
 CL::unsmob (SCM s)                                             \
 {                                                              \
-  if (SCM_NIMP(s) && SCM_CELL_TYPE(s) == smob_tag_)            \
-    return (CL*) SCM_CELL_WORD_1(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);                                 \
+  CL * s = (CL*) SCM_CDR (ses);                                        \
    delete s;                                                   \
   return sizeof (CL);                                          \
 }                                                              \
-ADD_SCM_INIT_FUNC(CL, CL::init_smobs)
+ADD_SCM_INIT_FUNC (CL, CL::init_smobs)
 
 #define IMPLEMENT_SMOBS(CL)                                                    \
-IMPLEMENT_SIMPLE_SMOBS(CL)                                                     \
+IMPLEMENT_SIMPLE_SMOBS (CL)                                                    \
 SCM                                                                            \
 CL::smobify_self ()                                                            \
 {                                                                              \
@@ -80,15 +96,15 @@ 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_NEWCELL (s);                                                             \
+  SCM_SETCAR (s,CL::smob_tag_);                                                        \
+  SCM_SETCDR (s, SCM_PACK (this));                                             \
   self_scm_ = s;                                                               \
- scm_done_malloc(sizeof(CL));                                                  \
+ scm_done_malloc (sizeof (CL));                                                        \
   return s;                                                                    \
 }