mirror of
https://github.com/genodelabs/genode.git
synced 2025-01-04 21:14:13 +00:00
a7b3072cc2
This patch supplements each existing connection type with an new constructor that is meant to replace the original one. The new one takes a reference to the component's environment as argument and thereby does not rely on the presence of the globally accessible 'env()' interface. The original constructors are marked as deprecated. Once we have completely abolished the use of the global 'env()', we will remove them. Fixes #1960
125 lines
3.1 KiB
C++
125 lines
3.1 KiB
C++
/*
|
|
* \brief Connection to Nitpicker service
|
|
* \author Norman Feske
|
|
* \date 2008-08-22
|
|
*/
|
|
|
|
/*
|
|
* Copyright (C) 2008-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__NITPICKER_SESSION__CONNECTION_H_
|
|
#define _INCLUDE__NITPICKER_SESSION__CONNECTION_H_
|
|
|
|
#include <nitpicker_session/client.h>
|
|
#include <framebuffer_session/client.h>
|
|
#include <input_session/client.h>
|
|
#include <util/arg_string.h>
|
|
#include <base/connection.h>
|
|
|
|
namespace Nitpicker { class Connection; }
|
|
|
|
|
|
class Nitpicker::Connection : public Genode::Connection<Session>,
|
|
public Session_client
|
|
{
|
|
private:
|
|
|
|
Framebuffer::Session_client _framebuffer;
|
|
Input::Session_client _input;
|
|
Genode::size_t _session_quota = 0;
|
|
|
|
/**
|
|
* Create session and return typed session capability
|
|
*/
|
|
Session_capability _connect(Genode::Parent &parent, char const *label)
|
|
{
|
|
enum { ARGBUF_SIZE = 128 };
|
|
char argbuf[ARGBUF_SIZE];
|
|
argbuf[0] = 0;
|
|
|
|
if (Genode::strlen(label) > 0)
|
|
Genode::snprintf(argbuf, sizeof(argbuf), "label=\"%s\"", label);
|
|
|
|
/*
|
|
* Declare ram-quota donation
|
|
*/
|
|
using Genode::Arg_string;
|
|
enum { SESSION_METADATA = 36*1024 };
|
|
Arg_string::set_arg(argbuf, sizeof(argbuf), "ram_quota", SESSION_METADATA);
|
|
|
|
return session(parent, argbuf);
|
|
}
|
|
|
|
public:
|
|
|
|
/**
|
|
* Constructor
|
|
*/
|
|
Connection(Genode::Env &env, char const *label = "")
|
|
:
|
|
/* establish nitpicker session */
|
|
Genode::Connection<Session>(env, _connect(env.parent(), label)),
|
|
Session_client(cap()),
|
|
|
|
/* request frame-buffer and input sub sessions */
|
|
_framebuffer(framebuffer_session()),
|
|
_input(input_session())
|
|
{ }
|
|
|
|
/**
|
|
* Constructor
|
|
*
|
|
* \noapi
|
|
* \deprecated Use the constructor with 'Env &' as first
|
|
* argument instead
|
|
*/
|
|
Connection(char const *label = "")
|
|
:
|
|
/* establish nitpicker session */
|
|
Genode::Connection<Session>(_connect(*Genode::env()->parent(), label)),
|
|
Session_client(cap()),
|
|
|
|
/* request frame-buffer and input sub sessions */
|
|
_framebuffer(framebuffer_session()),
|
|
_input(input_session())
|
|
{ }
|
|
|
|
void buffer(Framebuffer::Mode mode, bool use_alpha)
|
|
{
|
|
enum { ARGBUF_SIZE = 128 };
|
|
char argbuf[ARGBUF_SIZE];
|
|
argbuf[0] = 0;
|
|
|
|
Genode::size_t const needed = ram_quota(mode, use_alpha);
|
|
Genode::size_t const upgrade = needed > _session_quota
|
|
? needed - _session_quota
|
|
: 0;
|
|
|
|
if (upgrade > 0) {
|
|
Genode::Arg_string::set_arg(argbuf, sizeof(argbuf), "ram_quota",
|
|
upgrade);
|
|
|
|
Genode::env()->parent()->upgrade(cap(), argbuf);
|
|
_session_quota += upgrade;
|
|
}
|
|
|
|
Session_client::buffer(mode, use_alpha);
|
|
}
|
|
|
|
/**
|
|
* Return sub session for Nitpicker's input service
|
|
*/
|
|
Input::Session *input() { return &_input; }
|
|
|
|
/**
|
|
* Return sub session for session's frame buffer
|
|
*/
|
|
Framebuffer::Session *framebuffer() { return &_framebuffer; }
|
|
};
|
|
|
|
#endif /* _INCLUDE__NITPICKER_SESSION__CONNECTION_H_ */
|