]> git.donarmstrong.com Git - lilypond.git/blob - lily/grob-interface.cc
uniformize grob interface naming with C++.
[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 "grob.hh"
12 #include "international.hh"
13 #include "protected-scm.hh"
14 #include "std-string.hh"
15 #include "string-convert.hh"
16 #include "warn.hh"
17 #include "misc.hh"
18
19 void add_interface (char const *cxx_name,
20                     char const *symbol,
21                     char const *descr,
22                     char const *vars)
23 {
24   string suffix ("-interface");
25   string lispy_name = camel_case_to_lisp_identifier (cxx_name);
26   vsize end = max (int (0), int (lispy_name.length () - suffix.length ()));
27   if (lispy_name.substr (end) != suffix)
28     lispy_name += suffix;
29
30   if (lispy_name != string (symbol))
31     programming_error (String_convert::form_string ("%s != %s", lispy_name.c_str (),
32                                                     symbol));
33     
34   SCM s = ly_symbol2scm (symbol);
35   SCM d = scm_makfrom0str (descr);
36   SCM l = parse_symbol_list (vars);
37
38   ly_add_interface (s, d, l);
39 }
40
41 void
42 check_interfaces_for_property (Grob const *me, SCM sym)
43 {
44   if (sym == ly_symbol2scm ("meta"))
45     {
46       /*
47         otherwise we get in a nasty recursion loop.
48       */
49       return;
50     }
51
52   SCM ifs = me->interfaces ();
53
54   SCM all_ifaces = ly_all_grob_interfaces ();
55   bool found = false;
56   for (; !found && scm_is_pair (ifs); ifs = scm_cdr (ifs))
57     {
58       SCM iface = scm_hashq_ref (all_ifaces, scm_car (ifs), SCM_BOOL_F);
59       if (iface == SCM_BOOL_F)
60         {
61           string msg = to_string (_f ("Unknown interface `%s'",
62                                       ly_symbol2string (scm_car (ifs)).c_str ()));
63           programming_error (msg);
64           continue;
65         }
66
67       found = found || (scm_c_memq (sym, scm_caddr (iface)) != SCM_BOOL_F);
68     }
69
70   if (!found)
71     {
72       string str = to_string (_f ("Grob `%s' has no interface for property `%s'",
73                                   me->name ().c_str (),
74                                   ly_symbol2string (sym).c_str ()));
75       programming_error (str);
76     }
77 }