X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Finclude%2Fsmobs.tcc;h=b8dfc1f67fdb6027b897fa78b2dbb19964eb3312;hb=e035fded640056dcdf0b202a0156997c2295865e;hp=eaec076de349442b1b4726e07f71c1160e097b76;hpb=f5e923a6ce8cebb7ef893c03ce56aa5e598002c9;p=lilypond.git diff --git a/lily/include/smobs.tcc b/lily/include/smobs.tcc index eaec076de3..b8dfc1f67f 100644 --- a/lily/include/smobs.tcc +++ b/lily/include/smobs.tcc @@ -1,7 +1,7 @@ /* -*- C++ -*- This file is part of LilyPond, the GNU music typesetter. - Copyright (C) 2005--2014 Han-Wen Nienhuys + Copyright (C) 2005--2015 Han-Wen Nienhuys LilyPond is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -24,15 +24,26 @@ // included from smobs.hh, but other template expansion systems might // make it feasible to compile this only a single time. -#include "lily-guile-macros.hh" -#include "smobs.hh" #include template SCM Smob_base::mark_trampoline (SCM arg) { - return (Super::unsmob (arg))->mark_smob (); + Super *ptr = unsmob (arg); + if (ptr) + return ptr->mark_smob (); + return SCM_UNDEFINED; +} + +template +int +Smob_base::print_trampoline (SCM arg, SCM port, scm_print_state *p) +{ + Super *ptr = unsmob (arg); + if (ptr) + return ptr->print_smob (port, p); + return 0; } template @@ -49,17 +60,33 @@ Smob_base::register_ptr (Super *p) return s; } -// Default, should not actually get called +// Defaults, should not actually get called template SCM -Smob_base::mark_smob () +Smob_base::mark_smob () const { return SCM_UNSPECIFIED; } +template +size_t +Smob_base::free_smob (SCM) +{ + return 0; +} + +template +SCM +Smob_base::equal_p (SCM, SCM) +{ + return SCM_BOOL_F; +} + +// Default, will often get called + template int -Smob_base::print_smob (SCM, SCM p, scm_print_state *) +Smob_base::print_smob (SCM p, scm_print_state *) const { scm_puts ("#<", p); scm_puts (smob_name_.c_str (), p); @@ -73,6 +100,7 @@ Smob_base::unregister_ptr (SCM obj) { Super *p = Super::unchecked_unsmob (obj); scm_gc_unregister_collectable_memory (p, sizeof (*p), smob_name_.c_str ()); + SCM_SET_SMOB_DATA (obj, static_cast (0)); return p; } @@ -80,7 +108,7 @@ template scm_t_bits Smob_base::smob_tag_ = 0; template -Scm_init Smob_base::scm_init_ = init; +Scm_init Smob_base::scm_init_ (init); template string Smob_base::smob_name_; @@ -103,13 +131,12 @@ void Smob_base::init () // While that's not a consideration for type_p_name_, it's easier // doing it like the rest. - if (Super::free_smob != 0) + if (&Super::free_smob != &Smob_base::free_smob) scm_set_smob_free (smob_tag_, Super::free_smob); if (&Super::mark_smob != &Smob_base::mark_smob) scm_set_smob_mark (smob_tag_, Super::mark_trampoline); - if (Super::print_smob != 0) - scm_set_smob_print (smob_tag_, Super::print_smob); - if (Super::equal_p != 0) + scm_set_smob_print (smob_tag_, Super::print_trampoline); + if (&Super::equal_p != &Smob_base::equal_p) scm_set_smob_equalp (smob_tag_, Super::equal_p); if (Super::type_p_name_ != 0) { @@ -122,11 +149,6 @@ void Smob_base::init () scm_c_export (Super::type_p_name_, NULL); } ly_add_type_predicate ((void *) is_smob, smob_name_.c_str ()); - if (Super::smob_proc != 0) - scm_set_smob_apply (smob_tag_, - (scm_t_subr)Super::smob_proc, - Super::smob_proc_signature_ >> 8, - (Super::smob_proc_signature_ >> 4)&0xf, - Super::smob_proc_signature_ & 0xf); + Super::smob_proc_init (smob_tag_); } #endif