]> git.donarmstrong.com Git - lilypond.git/blob - lily/dispatcher-scheme.cc
apply Julian's patch to fix install-info warnings
[lilypond.git] / lily / dispatcher-scheme.cc
1 /*
2   This file is part of LilyPond, the GNU music typesetter.
3
4   Copyright (C) 2006--2011 Erik Sandberg  <mandolaerik@gmail.com>
5
6   LilyPond is free software: you can redistribute it and/or modify
7   it under the terms of the GNU General Public License as published by
8   the Free Software Foundation, either version 3 of the License, or
9   (at your option) any later version.
10
11   LilyPond is distributed in the hope that it will be useful,
12   but WITHOUT ANY WARRANTY; without even the implied warranty of
13   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14   GNU General Public License for more details.
15
16   You should have received a copy of the GNU General Public License
17   along with LilyPond.  If not, see <http://www.gnu.org/licenses/>.
18 */
19
20 #include "dispatcher.hh"
21
22 LY_DEFINE (ly_make_dispatcher, "ly:make-dispatcher",
23            0, 0, 0, (),
24            "Return a newly created dispatcher.")
25 {
26   return (new Dispatcher ())->unprotect ();
27 }
28
29 LY_DEFINE (ly_connect_dispatchers, "ly:connect-dispatchers",
30            2, 0, 0, (SCM to, SCM from),
31            "Make the dispatcher @var{to} listen to events from @var{from}.")
32 {
33   Dispatcher *t = unsmob_dispatcher (to);
34   Dispatcher *f = unsmob_dispatcher (from);
35   
36   LY_ASSERT_SMOB (Dispatcher, to, 1); 
37   LY_ASSERT_SMOB (Dispatcher, from,  2); 
38
39   t->register_as_listener (f);
40
41   return SCM_UNDEFINED;
42 }
43
44 LY_DEFINE (ly_add_listener, "ly:add-listener",
45            2, 0, 1, (SCM list, SCM disp, SCM cl),
46            "Add the listener @var{list} to the dispatcher @var{disp}."
47            "  Whenever @var{disp} hears an event of class @var{cl},"
48            " it is forwarded to @var{list}.")
49 {
50   Listener *l = unsmob_listener (list);
51   Dispatcher *d = unsmob_dispatcher (disp);
52
53   LY_ASSERT_SMOB (Listener, list, 1); 
54   LY_ASSERT_SMOB (Dispatcher, disp, 2); 
55   
56   for (int arg = SCM_ARG3; scm_is_pair (cl); cl = scm_cdr (cl), arg++)
57     {
58       SCM sym = scm_car (cl);
59       SCM_ASSERT_TYPE (scm_is_symbol (sym), sym, arg, __FUNCTION__, "symbol");
60       d->add_listener (*l, sym);
61     }
62
63   return SCM_UNDEFINED;
64 }
65
66 LY_DEFINE (ly_broadcast, "ly:broadcast",
67            2, 0, 0, (SCM disp, SCM ev),
68            "Send the stream event @var{ev} to the dispatcher @var{disp}.")
69 {
70   Dispatcher *d = unsmob_dispatcher (disp);
71   Stream_event *e = unsmob_stream_event (ev);
72  
73   LY_ASSERT_SMOB (Dispatcher, disp, 1);
74
75   LY_ASSERT_SMOB (Stream_event, ev, 2); 
76   d->broadcast (e);
77   return SCM_UNDEFINED;
78 }