]> git.donarmstrong.com Git - lilypond.git/blob - lily/grob-interface.cc
* buildscripts/analyse-cxx-log.py: new file. Read compile log to
[lilypond.git] / lily / grob-interface.cc
1 /*
2   grob-interface.cc -- implement graphic objects interface
3
4   source file of the GNU LilyPond music typesetter
5
6   (c) 2002--2006 Han-Wen Nienhuys <hanwen@xs4all.nl>
7 */
8
9 #include "grob-interface.hh"
10
11 #include "protected-scm.hh"
12 #include "grob.hh"
13 #include "warn.hh"
14
15 void add_interface (char const *symbol,
16                     char const *descr,
17                     char const *vars)
18 {
19   SCM s = ly_symbol2scm (symbol);
20   SCM d = scm_makfrom0str (descr);
21   SCM l = parse_symbol_list (vars);
22
23   ly_add_interface (s, d, l);
24 }
25
26 void
27 check_interfaces_for_property (Grob const *me, SCM sym)
28 {
29   if (sym == ly_symbol2scm ("meta"))
30     {
31       /*
32         otherwise we get in a nasty recursion loop.
33       */
34       return;
35     }
36
37   SCM ifs = me->interfaces ();
38
39   SCM all_ifaces = ly_all_grob_interfaces ();
40   bool found = false;
41   for (; !found && scm_is_pair (ifs); ifs = scm_cdr (ifs))
42     {
43       SCM iface = scm_hashq_ref (all_ifaces, scm_car (ifs), SCM_BOOL_F);
44       if (iface == SCM_BOOL_F)
45         {
46           String msg = to_string (_f ("Unknown interface `%s'",
47                                       ly_symbol2string (scm_car (ifs)).c_str ()));
48           programming_error (msg);
49           continue;
50         }
51
52       found = found || (scm_c_memq (sym, scm_caddr (iface)) != SCM_BOOL_F);
53     }
54
55   if (!found)
56     {
57       String str = to_string (_f ("Grob `%s' has no interface for property `%s'",
58                                   me->name ().c_str (),
59                                   ly_symbol2string (sym).c_str ()));
60       programming_error (str);
61     }
62 }