X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Finclude%2Fprotected-scm.hh;h=0115cb9f9ff6e2d388dd2fc714ec5639cdcc180c;hb=b6ab7b0d552591f2039fd2c83c3566d7c2ce5d37;hp=03f61e318ec38fe8592d31b71c6b18d37c045bf1;hpb=d2762a4f1add2bb04d6fc34d3c7ae03eeb7d500f;p=lilypond.git diff --git a/lily/include/protected-scm.hh b/lily/include/protected-scm.hh index 03f61e318e..0115cb9f9f 100644 --- a/lily/include/protected-scm.hh +++ b/lily/include/protected-scm.hh @@ -24,19 +24,36 @@ /* Mix GUILE GC with C++ ctors and dtors. + + This version is intended to be only used for variables of static + lifetime (which are not feasible to protect using the per-instance + mechanism of the smob classes) but possibly varying content. As a + result, the protection mechanism being used is the irreversible + scm_permanent_object. The destructor (typically called after the + end of program execution) does not free resources and consequently + does not require the memory subsystem to be still workable. A + working memory subsystem is only required once a non-immediate + Scheme value is assigned to the variable. Since creation of a + non-immediate Scheme value requires a working memory subsystem in + the first place, this is not really a restriction. + + To avoid accidental creation of temporaries, the copy constructor is + made unavailable. */ class Protected_scm { SCM object_; + static SCM list_; + static SCM last_; + Protected_scm (Protected_scm const &); + void protectify (SCM); public: Protected_scm (); Protected_scm (SCM); - Protected_scm (Protected_scm const &); - ~Protected_scm (); Protected_scm &operator = (SCM); Protected_scm &operator = (Protected_scm const &); - operator SCM () const; - SCM to_SCM () const; + operator const SCM & () const; + operator SCM & (); }; #endif /* PROTECTED_SCM_HH */