X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Finclude%2Fsmobs.tcc;h=818c0900a56bac154476b49282eae6bf529241b8;hb=4d405ef96a8a62771d7d9a283ff5369a772e89d8;hp=f990a08f539abbb94120ac559b9be310374f7a30;hpb=617525409536d382b124b0ace73af08f3fbd8277;p=lilypond.git diff --git a/lily/include/smobs.tcc b/lily/include/smobs.tcc index f990a08f53..818c0900a5 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,10 +24,28 @@ // 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) +{ + 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 SCM Smob_base::register_ptr (Super *p) @@ -42,9 +60,33 @@ Smob_base::register_ptr (Super *p) return s; } +// Defaults, should not actually get called +template +SCM +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); @@ -58,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; } @@ -65,11 +108,14 @@ 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_; +template +const char * const Smob_base::type_p_name_ = 0; + template void Smob_base::init () { @@ -88,13 +134,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 != 0) - scm_set_smob_mark (smob_tag_, Super::mark_smob); - if (Super::print_smob != 0) - scm_set_smob_print (smob_tag_, Super::print_smob); - if (Super::equal_p != 0) + if (&Super::mark_smob != &Smob_base::mark_smob) + scm_set_smob_mark (smob_tag_, Super::mark_trampoline); + 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) { @@ -106,12 +151,7 @@ void Smob_base::init () fundoc); scm_c_export (Super::type_p_name_, NULL); } - ly_add_type_predicate ((void *) unsmob, 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); + ly_add_type_predicate ((void *) is_smob, smob_name_.c_str ()); + Super::smob_proc_init (smob_tag_); } #endif