2011-12-22 15:19:25 +00:00
|
|
|
/*
|
|
|
|
* \brief Connection to Nitpicker service
|
|
|
|
* \author Norman Feske
|
|
|
|
* \date 2008-08-22
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
2013-01-10 20:44:47 +00:00
|
|
|
* Copyright (C) 2008-2013 Genode Labs GmbH
|
2011-12-22 15:19:25 +00:00
|
|
|
*
|
|
|
|
* 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>
|
|
|
|
|
2013-10-14 19:31:14 +00:00
|
|
|
namespace Nitpicker { class Connection; }
|
2011-12-22 15:19:25 +00:00
|
|
|
|
|
|
|
|
2013-10-14 19:31:14 +00:00
|
|
|
class Nitpicker::Connection : public Genode::Connection<Session>,
|
|
|
|
public Session_client
|
|
|
|
{
|
|
|
|
private:
|
2011-12-22 15:19:25 +00:00
|
|
|
|
2013-10-14 19:31:14 +00:00
|
|
|
Framebuffer::Session_client _framebuffer;
|
|
|
|
Input::Session_client _input;
|
2014-06-12 10:25:38 +00:00
|
|
|
Genode::size_t _session_quota = 0;
|
2013-10-14 19:31:14 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Create session and return typed session capability
|
|
|
|
*/
|
2014-07-02 20:00:15 +00:00
|
|
|
Session_capability _connect(char const *label)
|
2013-10-14 19:31:14 +00:00
|
|
|
{
|
|
|
|
enum { ARGBUF_SIZE = 128 };
|
|
|
|
char argbuf[ARGBUF_SIZE];
|
|
|
|
argbuf[0] = 0;
|
2011-12-22 15:19:25 +00:00
|
|
|
|
2014-06-17 12:04:38 +00:00
|
|
|
if (Genode::strlen(label) > 0)
|
|
|
|
Genode::snprintf(argbuf, sizeof(argbuf), "label=\"%s\"", label);
|
|
|
|
|
2013-10-14 19:31:14 +00:00
|
|
|
/*
|
|
|
|
* Declare ram-quota donation
|
2011-12-22 15:19:25 +00:00
|
|
|
*/
|
2013-12-28 21:29:30 +00:00
|
|
|
using Genode::Arg_string;
|
2014-06-06 15:26:53 +00:00
|
|
|
enum { SESSION_METADATA = 36*1024 };
|
2013-10-14 19:31:14 +00:00
|
|
|
Arg_string::set_arg(argbuf, sizeof(argbuf), "ram_quota", SESSION_METADATA);
|
|
|
|
|
|
|
|
return session(argbuf);
|
|
|
|
}
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Constructor
|
|
|
|
*/
|
2014-07-02 20:00:15 +00:00
|
|
|
Connection(char const *label = "")
|
2013-10-14 19:31:14 +00:00
|
|
|
:
|
|
|
|
/* establish nitpicker session */
|
2014-07-02 20:00:15 +00:00
|
|
|
Genode::Connection<Session>(_connect(label)),
|
2013-10-14 19:31:14 +00:00
|
|
|
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;
|
|
|
|
|
2014-06-12 10:25:38 +00:00
|
|
|
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;
|
|
|
|
}
|
2013-10-14 19:31:14 +00:00
|
|
|
|
|
|
|
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; }
|
|
|
|
};
|
2011-12-22 15:19:25 +00:00
|
|
|
|
|
|
|
#endif /* _INCLUDE__NITPICKER_SESSION__CONNECTION_H_ */
|