X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Fgrob-property.cc;h=e8e74059ed3b6ca48c0a241b7aa8e566e5130640;hb=70f310c7a1ec759017b830e5d4fd781c700b3b9d;hp=3c8a07db5cf5d79e0cc3300fe4e74813303e18cb;hpb=81e278e6bdd27e41e05f8d336e8ace777c0b7a56;p=lilypond.git diff --git a/lily/grob-property.cc b/lily/grob-property.cc index 3c8a07db5c..e8e74059ed 100644 --- a/lily/grob-property.cc +++ b/lily/grob-property.cc @@ -5,17 +5,41 @@ #include #include "main.hh" -#include "input-smob.hh" +#include "input.hh" #include "pointer-group-interface.hh" #include "misc.hh" #include "paper-score.hh" #include "output-def.hh" #include "spanner.hh" +#include "international.hh" #include "item.hh" #include "misc.hh" #include "item.hh" #include "program-option.hh" #include "profile.hh" +#include "simple-closure.hh" +#include "warn.hh" + +#ifndef NDEBUG +static SCM modification_callback = SCM_EOL; + +LY_DEFINE (ly_set_grob_modification_callback, "ly:set-grob-modification-callback", + 1, 0, 0, (SCM cb), + "Specify a procedure that will be called every time lilypond modifies " + "a grob property. The callback will receive as arguments " + "the grob that is being modified, the name of the C++ file in which " + "the modification was requested, the line number in the C++ file in " + "which the modification was requested, the property to be changed and " + "the new value for the property.") +{ + + SCM_ASSERT_TYPE(ly_is_procedure (cb), cb, SCM_ARG1, __FUNCTION__, + "procedure"); + + modification_callback = cb; + return SCM_UNSPECIFIED; +} +#endif SCM Grob::get_property_alist_chain (SCM def) const @@ -26,19 +50,13 @@ Grob::get_property_alist_chain (SCM def) const SCM_UNDEFINED); } -SCM -Grob::get_interfaces () const -{ - return interfaces_; -} - extern void check_interfaces_for_property (Grob const *me, SCM sym); +#ifndef NDEBUG void -Grob::internal_set_property (SCM sym, SCM v) +Grob::internal_set_property (SCM sym, SCM v, char const *file, int line, char const *fun) { -#ifndef NDEBUG SCM grob_p = ly_lily_module_constant ("ly:grob?"); SCM grob_list_p = ly_lily_module_constant ("grob-list?"); SCM type = scm_object_property (sym, ly_symbol2scm ("backend-type?")); @@ -50,8 +68,32 @@ Grob::internal_set_property (SCM sym, SCM v) scm_display (scm_list_2 (sym, type), scm_current_output_port ()); assert (0); } + + internal_set_value_on_alist (&mutable_property_alist_, + sym, v); + + + if (ly_is_procedure (modification_callback)) + scm_apply_0 (modification_callback, + scm_list_n (self_scm (), + scm_from_locale_string (file), + scm_from_int (line), + scm_from_locale_string (fun), + sym, v, SCM_UNDEFINED)); +} +#else +void +Grob::internal_set_property (SCM sym, SCM v) +{ + internal_set_value_on_alist (&mutable_property_alist_, + sym, v); + +} #endif +void +Grob::internal_set_value_on_alist (SCM *alist, SCM sym, SCM v) +{ /* Perhaps we simply do the assq_set, but what the heck. */ if (!is_live ()) return; @@ -59,17 +101,18 @@ Grob::internal_set_property (SCM sym, SCM v) if (do_internal_type_checking_global) { if (!ly_is_procedure (v) + && !is_simple_closure (v) + && v != ly_symbol2scm ("calculation-in-progress") && !type_check_assignment (sym, v, ly_symbol2scm ("backend-type?"))) abort (); check_interfaces_for_property (this, sym); } - mutable_property_alist_ = scm_assq_set_x (mutable_property_alist_, sym, v); + *alist = scm_assq_set_x (*alist, sym, v); } -//#define PROFILE_PROPERTY_ACCESSES SCM -Grob::get_property_data (SCM sym) const +Grob::internal_get_property_data (SCM sym) const { #ifndef NDEBUG if (profile_property_accesses) @@ -86,6 +129,7 @@ Grob::get_property_data (SCM sym) const { SCM val = scm_cdr (handle); if (!ly_is_procedure (val) + && !is_simple_closure (val) && !type_check_assignment (sym, val, ly_symbol2scm ("backend-type?"))) abort (); @@ -100,9 +144,11 @@ SCM Grob::internal_get_property (SCM sym) const { SCM val = get_property_data (sym); - if (ly_is_procedure (val)) + if (ly_is_procedure (val) + || is_simple_closure (val)) { - val = ((Grob*)this)->try_callback (sym, val); + Grob *me = ((Grob*)this); + val = me->try_callback_on_alist (&me->mutable_property_alist_, sym, val); } return val; @@ -110,26 +156,36 @@ Grob::internal_get_property (SCM sym) const #ifndef NDEBUG #include "protected-scm.hh" + Protected_scm grob_property_callback_stack = SCM_EOL; bool debug_property_callbacks = 0; #endif SCM -Grob::try_callback (SCM sym, SCM proc) +Grob::try_callback_on_alist (SCM *alist, SCM sym, SCM proc) { SCM marker = ly_symbol2scm ("calculation-in-progress"); /* need to put a value in SYM to ensure that we don't get a cyclic call chain. */ - mutable_property_alist_ - = scm_assq_set_x (mutable_property_alist_, sym, marker); + *alist = scm_assq_set_x (*alist, sym, marker); #ifndef NDEBUG if (debug_property_callbacks) grob_property_callback_stack = scm_acons (sym, proc, grob_property_callback_stack); #endif - SCM value = scm_call_1 (proc, self_scm ()); + + SCM value = SCM_EOL; + if (ly_is_procedure (proc)) + value = scm_call_1 (proc, self_scm ()); + else if (is_simple_closure (proc)) + { + value = evaluate_with_simple_closure (self_scm (), + simple_closure_expression (proc), + false, 0, 0); + } + #ifndef NDEBUG if (debug_property_callbacks) grob_property_callback_stack = scm_cdr (grob_property_callback_stack); @@ -143,12 +199,13 @@ Grob::try_callback (SCM sym, SCM proc) if (value == SCM_UNSPECIFIED) { value = internal_get_property (sym); + assert (value == SCM_EOL || value == marker); if (value == marker) - mutable_property_alist_ = scm_assq_remove_x (mutable_property_alist_, marker); + *alist = scm_assq_remove_x (*alist, marker); } else - internal_set_property (sym, value); - + internal_set_value_on_alist (alist, sym, value); + return value; } @@ -163,7 +220,7 @@ Grob::internal_set_object (SCM s, SCM v) } void -Grob::del_property (SCM sym) +Grob::internal_del_property (SCM sym) { mutable_property_alist_ = scm_assq_remove_x (mutable_property_alist_, sym); } @@ -171,24 +228,44 @@ Grob::del_property (SCM sym) SCM Grob::internal_get_object (SCM sym) const { -#ifdef PROFILE_PROPERTY_ACCESSES - note_property_access (&grob_property_lookup_table, sym); -#endif + if (profile_property_accesses) + note_property_access (&grob_property_lookup_table, sym); SCM s = scm_sloppy_assq (sym, object_alist_); + + if (s != SCM_BOOL_F) + { + SCM val = scm_cdr (s); + if (ly_is_procedure (val) + || is_simple_closure (val)) + { + Grob *me = ((Grob*)this); + val = me->try_callback_on_alist (&me->object_alist_, sym, val); + } + + return val; + } - return (s == SCM_BOOL_F) ? SCM_EOL : scm_cdr (s); + return SCM_EOL; } -void -Grob::substitute_object_links (SCM crit, SCM orig) +bool +Grob::is_live () const { - set_break_subsititution (crit); - object_alist_ = substitute_object_alist (orig, object_alist_); + return scm_is_pair (immutable_property_alist_); } bool -Grob::is_live () const +Grob::internal_has_interface (SCM k) +{ + return scm_c_memq (k, interfaces_) != SCM_BOOL_F; +} + +SCM +call_pure_function (SCM unpure, SCM args, int start, int end) { - return immutable_property_alist_ != SCM_EOL; + SCM scm_call_pure_function = ly_lily_module_constant ("call-pure-function"); + + return scm_apply_0 (scm_call_pure_function, + scm_list_4 (unpure, args, scm_from_int (start), scm_from_int (end))); }