2 This file is part of LilyPond, the GNU music typesetter.
4 Copyright (C) 2006--2010 Erik Sandberg <mandolaerik@gmail.com>
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.
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.
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/>.
20 #include "dispatcher.hh"
22 LY_DEFINE (ly_make_dispatcher
, "ly:make-dispatcher",
24 "Return a newly created dispatcher.")
26 return (new Dispatcher ())->unprotect ();
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}.")
33 Dispatcher
*t
= unsmob_dispatcher (to
);
34 Dispatcher
*f
= unsmob_dispatcher (from
);
36 LY_ASSERT_SMOB (Dispatcher
, to
, 1);
37 LY_ASSERT_SMOB (Dispatcher
, from
, 2);
39 t
->register_as_listener (f
);
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}.")
50 Listener
*l
= unsmob_listener (list
);
51 Dispatcher
*d
= unsmob_dispatcher (disp
);
53 LY_ASSERT_SMOB (Listener
, list
, 1);
54 LY_ASSERT_SMOB (Dispatcher
, disp
, 2);
56 for (int arg
= SCM_ARG3
; scm_is_pair (cl
); cl
= scm_cdr (cl
), arg
++)
58 SCM sym
= scm_car (cl
);
59 SCM_ASSERT_TYPE (scm_is_symbol (sym
), sym
, arg
, __FUNCTION__
, "symbol");
60 d
->add_listener (*l
, sym
);
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}.")
70 Dispatcher
*d
= unsmob_dispatcher (disp
);
71 Stream_event
*e
= unsmob_stream_event (ev
);
73 LY_ASSERT_SMOB (Dispatcher
, disp
, 1);
75 LY_ASSERT_SMOB (Stream_event
, ev
, 2);