1 #include "music-function.hh"
3 LY_DEFINE (ly_music_function_p, "ly:music-function?", 1, 0, 0,
5 "Is @var{x} a @code{music-function}?")
7 return is_music_function (x) ? SCM_BOOL_T : SCM_BOOL_F;
10 LY_DEFINE (ly_music_function_extract, "ly:music-function-extract", 1, 0, 0,
12 "Return the Scheme function inside@tie{}@var{x}.")
14 LY_ASSERT_TYPE (is_music_function, x, 1);
16 return get_music_function_transform (x);
19 LY_DEFINE (ly_music_function_signature, "ly:music-function-signature", 1, 0, 0,
21 "Return the function signature inside@tie{}@var{x}.")
23 LY_ASSERT_TYPE (is_music_function, x, 1);
25 return get_music_function_signature (x);
28 LY_DEFINE (ly_make_music_function, "ly:make-music-function", 2, 0, 0,
29 (SCM signature, SCM func),
30 "Make a function to process music, to be used for the"
31 " parser. @var{func} is the function, and @var{signature}"
32 " describes its arguments. @var{signature}'s cdr is a list"
33 " containing either @code{ly:music?} predicates or other type"
34 " predicates. Its car is the syntax function to call.")
36 LY_ASSERT_TYPE (ly_is_list, signature, 1);
37 LY_ASSERT_TYPE (ly_is_procedure, func, 2);
39 for (SCM p = signature; scm_is_pair (p); p = scm_cdr (p), ++n)
41 SCM proc = scm_car (p);
42 if (scm_is_pair (proc))
43 proc = scm_car (proc);
44 if (scm_is_false (scm_procedure_p (proc)))
46 scm_wrong_type_arg_msg ("music-function", n, p,
47 "music function predicate");
51 return make_music_function (signature, func);