genode/repos/base/src/core/include/signal_broker.h

111 lines
2.8 KiB
C++

/*
* \brief Mechanism to deliver signals via core
* \author Norman Feske
* \date 2016-01-04
*/
/*
* Copyright (C) 2016 Genode Labs GmbH
*
* This file is part of the Genode OS framework, which is distributed
* under the terms of the GNU General Public License version 2.
*/
#ifndef _CORE__INCLUDE__SIGNAL_BROKER_H_
#define _CORE__INCLUDE__SIGNAL_BROKER_H_
#include <signal_source_component.h>
#include <signal_source/capability.h>
namespace Genode { class Signal_broker; }
class Genode::Signal_broker
{
private:
Allocator &_md_alloc;
Rpc_entrypoint &_source_ep;
Rpc_entrypoint &_context_ep;
Signal_source_component _source;
Signal_source_capability _source_cap;
Tslab<Signal_context_component,
960*sizeof(long)> _contexts_slab { &_md_alloc };
public:
class Invalid_signal_source : public Exception { };
Signal_broker(Allocator &md_alloc,
Rpc_entrypoint &source_ep,
Rpc_entrypoint &context_ep)
:
_md_alloc(md_alloc),
_source_ep(source_ep),
_context_ep(context_ep),
_source(&_context_ep),
_source_cap(_source_ep.manage(&_source))
{ }
~Signal_broker()
{
/* remove source from entrypoint */
_source_ep.dissolve(&_source);
/* free all signal contexts */
while (Signal_context_component *r = _contexts_slab.first_object())
free_context(r->cap());
}
Signal_source_capability alloc_signal_source() { return _source_cap; }
void free_signal_source(Signal_source_capability) { }
Signal_context_capability
alloc_context(Signal_source_capability, unsigned long imprint)
{
/*
* XXX For now, we ignore the signal-source argument as we
* create only a single receiver for each PD.
*/
Signal_context_component *context = new (&_contexts_slab)
Signal_context_component(imprint, &_source);
return _context_ep.manage(context);
}
void free_context(Signal_context_capability context_cap)
{
Signal_context_component *context;
_context_ep.apply(context_cap, [&] (Signal_context_component *c) {
context = c;
if (!context) {
PWRN("specified signal-context capability has wrong type");
return;
}
_context_ep.dissolve(context);
});
destroy(&_contexts_slab, context);
}
void submit(Signal_context_capability cap, unsigned cnt)
{
_source_ep.apply(cap, [&] (Signal_context_component *context) {
if (!context) {
/*
* We do not use PWRN() to enable the build system to
* suppress this warning in release mode (SPECS +=
* release).
*/
PDBG("invalid signal-context capability");
return;
}
context->source()->submit(context, cnt);
});
}
};
#endif /* _CORE__INCLUDE__SIGNAL_BROKER_H_ */