X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Fmusic-function-scheme.cc;h=5246b6dbe6282c3dc0e67e41c74611d3a49e9d5c;hb=a6a51abfd0195a3cf7d6ea095cf69808852f21ce;hp=b6473b19d190395c80030a1addb5c2dec702d364;hpb=9158bc17904d4dd930a1f776cfe3226f1ad84092;p=lilypond.git diff --git a/lily/music-function-scheme.cc b/lily/music-function-scheme.cc index b6473b19d1..5246b6dbe6 100644 --- a/lily/music-function-scheme.cc +++ b/lily/music-function-scheme.cc @@ -1,30 +1,45 @@ #include "music-function.hh" -LY_DEFINE (ly_music_function_p, "ly:music-function?", 1, 0, 0, - (SCM x), - "Is @var{x} a @code{music-function}?") +LY_DEFINE (ly_music_function_extract, "ly:music-function-extract", 1, 0, 0, + (SCM x), + "Return the Scheme function inside@tie{}@var{x}.") { - return is_music_function (x) ? SCM_BOOL_T : SCM_BOOL_F; + LY_ASSERT_SMOB (Music_function, x, 1); + + return unsmob (x)->get_function (); } - -LY_DEFINE (ly_music_function_extract, "ly:music-function-extract", 1, 0, 0, - (SCM x), - "Return the Scheme function inside@tie{}@var{x}.") + +LY_DEFINE (ly_music_function_signature, "ly:music-function-signature", 1, 0, 0, + (SCM x), + "Return the function signature inside@tie{}@var{x}.") { - LY_ASSERT_TYPE (is_music_function, x, 1); - - return SCM_CELL_OBJECT_1(x); + LY_ASSERT_SMOB (Music_function, x, 1); + + return unsmob (x)->get_signature (); } LY_DEFINE (ly_make_music_function, "ly:make-music-function", 2, 0, 0, - (SCM signature, SCM func), - "Make a function to process music, to be used for the" - " parser. @var{func} is the function, and @var{signature}" - " describes its arguments. @var{signature} is a list" - " containing either @code{ly:music?} predicates or other type" - " predicates.") + (SCM signature, SCM func), + "Make a function to process music, to be used for the" + " parser. @var{func} is the function, and @var{signature}" + " describes its arguments. @var{signature}'s cdr is a list" + " containing either @code{ly:music?} predicates or other type" + " predicates. Its car is the syntax function to call.") { - LY_ASSERT_TYPE (ly_is_procedure, func, 1); - return make_music_function (signature, func); -} + LY_ASSERT_TYPE (ly_is_list, signature, 1); + LY_ASSERT_TYPE (ly_is_procedure, func, 2); + int n = 0; + for (SCM p = signature; scm_is_pair (p); p = scm_cdr (p), ++n) + { + SCM proc = scm_car (p); + if (scm_is_pair (proc)) + proc = scm_car (proc); + if (scm_is_false (scm_procedure_p (proc))) + { + scm_wrong_type_arg_msg ("music-function", n, p, + "music function predicate"); + } + } + return Music_function::make_smob (signature, func); +}