mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-20 14:13:09 +00:00
5ed5fddb7c
This commit removes APIs that were previously marked as deprecated. This change has the following implications: - The use of the global 'env()' accessor is not possible anymore. - Boolean accessor methods are no longer prefixed with 'is_'. E.g., instead of 'is_valid()', use 'valid()'. - The last traces of 'Ram_session' are gone now. The 'Env::ram()' accessor returns the 'Ram_allocator' interface, which is a subset of the 'Pd_session' interface. - All connection constructors need the 'Env' as argument. - The 'Reporter' constructor needs an 'Env' argument now because the reporter creates a report connection. - The old overload 'Child_policy::resolve_session_request' that returned a 'Service' does not exist anymore. - The base/printf.h header has been removed, use base/log.h instead. - The old notion of 'Signal_dispatcher' is gone. Use 'Signal_handler'. - Transitional headers like os/server.h, cap_session/, volatile_object.h, os/attached*_dataspace.h, signal_rpc_dispatcher.h have been removed. - The distinction between 'Thread_state' and 'Thread_state_base' does not exist anymore. - The header cpu_thread/capability.h along with the type definition of 'Cpu_thread_capability' has been removed. Use the type 'Thread_capability' define in cpu_session/cpu_session.h instead. - Several XML utilities (i.e., at os/include/decorator) could be removed because their functionality is nowadays covered by util/xml_node.h. - The 'os/ram_session_guard.h' has been removed. Use 'Constrained_ram_allocator' provided by base/ram_allocator.h instead. Issue #1987
116 lines
3.0 KiB
C++
116 lines
3.0 KiB
C++
/*
|
|
* \brief Client-side nitpicker session interface
|
|
* \author Norman Feske
|
|
* \date 2006-08-23
|
|
*/
|
|
|
|
/*
|
|
* Copyright (C) 2006-2017 Genode Labs GmbH
|
|
*
|
|
* This file is part of the Genode OS framework, which is distributed
|
|
* under the terms of the GNU Affero General Public License version 3.
|
|
*/
|
|
|
|
#ifndef _INCLUDE__NITPICKER_SESSION__CLIENT_H_
|
|
#define _INCLUDE__NITPICKER_SESSION__CLIENT_H_
|
|
|
|
#include <nitpicker_session/capability.h>
|
|
#include <base/rpc_client.h>
|
|
#include <base/attached_dataspace.h>
|
|
|
|
namespace Nitpicker { struct Session_client; }
|
|
|
|
|
|
class Nitpicker::Session_client : public Genode::Rpc_client<Session>
|
|
{
|
|
private:
|
|
|
|
Genode::Attached_dataspace _command_ds;
|
|
|
|
Command_buffer &_command_buffer;
|
|
|
|
public:
|
|
|
|
/**
|
|
* Constructor
|
|
*/
|
|
Session_client(Genode::Region_map &rm, Session_capability session)
|
|
:
|
|
Rpc_client<Session>(session),
|
|
_command_ds(rm, command_dataspace()),
|
|
_command_buffer(*_command_ds.local_addr<Command_buffer>())
|
|
{ }
|
|
|
|
Framebuffer::Session_capability framebuffer_session() override {
|
|
return call<Rpc_framebuffer_session>(); }
|
|
|
|
Input::Session_capability input_session() override {
|
|
return call<Rpc_input_session>(); }
|
|
|
|
View_handle create_view(View_handle parent = View_handle()) override {
|
|
return call<Rpc_create_view>(parent); }
|
|
|
|
void destroy_view(View_handle view) override {
|
|
call<Rpc_destroy_view>(view); }
|
|
|
|
View_handle view_handle(View_capability view,
|
|
View_handle handle = View_handle()) override
|
|
{
|
|
return call<Rpc_view_handle>(view, handle);
|
|
}
|
|
|
|
View_capability view_capability(View_handle handle) override {
|
|
return call<Rpc_view_capability>(handle); }
|
|
|
|
void release_view_handle(View_handle handle) override {
|
|
call<Rpc_release_view_handle>(handle); }
|
|
|
|
Genode::Dataspace_capability command_dataspace() override {
|
|
return call<Rpc_command_dataspace>(); }
|
|
|
|
void execute() override
|
|
{
|
|
call<Rpc_execute>();
|
|
_command_buffer.reset();
|
|
}
|
|
|
|
Framebuffer::Mode mode() override {
|
|
return call<Rpc_mode>(); }
|
|
|
|
void mode_sigh(Genode::Signal_context_capability sigh) override {
|
|
call<Rpc_mode_sigh>(sigh); }
|
|
|
|
void buffer(Framebuffer::Mode mode, bool alpha) override {
|
|
call<Rpc_buffer>(mode, alpha); }
|
|
|
|
void focus(Nitpicker::Session_capability session) override {
|
|
call<Rpc_focus>(session); }
|
|
|
|
void session_control(Label selector, Session_control operation) override {
|
|
call<Rpc_session_control>(selector, operation); }
|
|
|
|
/**
|
|
* Enqueue command to command buffer
|
|
*
|
|
* The submitted command is not executed immediately. To execute a
|
|
* batch of enqueued commands, the 'execute' method must be called.
|
|
* Only in the corner case when there is not space left in the command
|
|
* buffer, the 'execute' is called to make room in the buffer.
|
|
*/
|
|
template <typename CMD, typename... ARGS>
|
|
void enqueue(ARGS... args)
|
|
{
|
|
enqueue(Command( CMD { args... } ));
|
|
}
|
|
|
|
void enqueue(Command const &command)
|
|
{
|
|
if (_command_buffer.full())
|
|
execute();
|
|
|
|
_command_buffer.enqueue(command);
|
|
}
|
|
};
|
|
|
|
#endif /* _INCLUDE__NITPICKER_SESSION__CLIENT_H_ */
|