From 1ab0ae908b5cd1f48aeeb1a8c96afb1298ccf889 Mon Sep 17 00:00:00 2001 From: Norman Feske Date: Thu, 14 Feb 2013 10:38:50 +0100 Subject: [PATCH] base-hw: Adaptation to signal API change This patch is an interim fix for building base-hw until the signal implementation is revisited on this platform. --- base-hw/include/base/signal.h | 59 +++++++++++++++++++++++++++++++++++ 1 file changed, 59 insertions(+) diff --git a/base-hw/include/base/signal.h b/base-hw/include/base/signal.h index d059179a3..834a0850b 100644 --- a/base-hw/include/base/signal.h +++ b/base-hw/include/base/signal.h @@ -50,8 +50,10 @@ namespace Genode int num() { return _num; } }; + typedef List Context_list; + /** * A specific signal type that a transmitter can target when it submits * @@ -83,6 +85,7 @@ namespace Genode GENODE_RPC_INTERFACE(); }; + /** * To submit signals to one specific context * @@ -115,6 +118,7 @@ namespace Genode void context(Signal_context_capability const c) { _context = c; } }; + /** * Manage multiple signal contexts and receive signals targeted to them */ @@ -171,6 +175,61 @@ namespace Genode */ Signal wait_for_signal(); }; + + + /** + * Abstract interface to be implemented by signal dispatchers + */ + struct Signal_dispatcher_base : Signal_context + { + virtual void dispatch(unsigned num) = 0; + }; + + + /** + * Adapter for directing signals to member functions + * + * This utility associates member functions with signals. It is intended to + * be used as a member variable of the class that handles incoming signals + * of a certain type. The constructor takes a pointer-to-member to the + * signal handling function as argument. If a signal is received at the + * common signal reception code, this function will be invoked by calling + * 'Signal_dispatcher_base::dispatch'. + * + * \param T type of signal-handling class + */ + template + class Signal_dispatcher : private Signal_dispatcher_base, + public Signal_context_capability + { + private: + + T &obj; + void (T::*member) (unsigned); + Signal_receiver &sig_rec; + + public: + + /** + * Constructor + * + * \param sig_rec signal receiver to associate the signal + * handler with + * \param obj,member object and member function to call when + * the signal occurs + */ + Signal_dispatcher(Signal_receiver &sig_rec, + T &obj, void (T::*member)(unsigned)) + : + Signal_context_capability(sig_rec.manage(this)), + obj(obj), member(member), + sig_rec(sig_rec) + { } + + ~Signal_dispatcher() { sig_rec.dissolve(this); } + + void dispatch(unsigned num) { (obj.*member)(num); } + }; } #endif /* _INCLUDE__BASE__SIGNAL_H__ */