mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-26 00:41:08 +00:00
0ed68a56b7
This patch changes both the Input::Session interface and the skeleton for the server-side implementation of this interface ('input/component.h'). The Input::Session interface offers a new 'sigh' function, which can be called be the client to register a signal handler. The signal handler gets notified on the arrival of new input. This alleviates the need to poll for input events at the client side. The server-side skeleton for implementing input services underwent a redesign to make it more modular and robust. I.e., there are no global functions needed at the server side and the event-queue enable/disable mechanism is implemented at a central place (in the root component) rather than inside each driver. Fixes #46
69 lines
1.6 KiB
C++
69 lines
1.6 KiB
C++
/*
|
|
* \brief Input session interface
|
|
* \author Norman Feske
|
|
* \date 2006-08-16
|
|
*/
|
|
|
|
/*
|
|
* Copyright (C) 2006-2013 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 _INCLUDE__INPUT_SESSION__INPUT_SESSION_H_
|
|
#define _INCLUDE__INPUT_SESSION__INPUT_SESSION_H_
|
|
|
|
#include <dataspace/capability.h>
|
|
#include <base/rpc_server.h>
|
|
#include <session/session.h>
|
|
#include <base/signal.h>
|
|
|
|
namespace Input {
|
|
|
|
struct Session : Genode::Session
|
|
{
|
|
static const char *service_name() { return "Input"; }
|
|
|
|
virtual ~Session() { }
|
|
|
|
/**
|
|
* Return capability to event buffer dataspace
|
|
*/
|
|
virtual Genode::Dataspace_capability dataspace() = 0;
|
|
|
|
/**
|
|
* Request input state
|
|
*
|
|
* \return true if new events are available
|
|
*/
|
|
virtual bool is_pending() const = 0;
|
|
|
|
/**
|
|
* Flush pending events to event buffer
|
|
*
|
|
* \return number of flushed events
|
|
*/
|
|
virtual int flush() = 0;
|
|
|
|
/**
|
|
* Register signal handler to be notified on arrival of new input
|
|
*/
|
|
virtual void sigh(Genode::Signal_context_capability) = 0;
|
|
|
|
|
|
/*********************
|
|
** RPC declaration **
|
|
*********************/
|
|
|
|
GENODE_RPC(Rpc_dataspace, Genode::Dataspace_capability, dataspace);
|
|
GENODE_RPC(Rpc_is_pending, bool, is_pending);
|
|
GENODE_RPC(Rpc_flush, int, flush);
|
|
GENODE_RPC(Rpc_sigh, void, sigh, Genode::Signal_context_capability);
|
|
|
|
GENODE_RPC_INTERFACE(Rpc_dataspace, Rpc_is_pending, Rpc_flush, Rpc_sigh);
|
|
};
|
|
}
|
|
|
|
#endif /* _INCLUDE__INPUT_SESSION__INPUT_SESSION_H_ */
|