2011-12-22 15:19:25 +00:00
|
|
|
/*
|
|
|
|
* \brief Connection to frame-buffer service
|
|
|
|
* \author Norman Feske
|
|
|
|
* \date 2008-08-22
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
2017-02-20 12:23:52 +00:00
|
|
|
* Copyright (C) 2008-2017 Genode Labs GmbH
|
2011-12-22 15:19:25 +00:00
|
|
|
*
|
|
|
|
* This file is part of the Genode OS framework, which is distributed
|
2017-02-20 12:23:52 +00:00
|
|
|
* under the terms of the GNU Affero General Public License version 3.
|
2011-12-22 15:19:25 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _INCLUDE__FRAMEBUFFER_SESSION__CONNECTION_H_
|
|
|
|
#define _INCLUDE__FRAMEBUFFER_SESSION__CONNECTION_H_
|
|
|
|
|
|
|
|
#include <framebuffer_session/client.h>
|
|
|
|
#include <util/arg_string.h>
|
|
|
|
#include <base/connection.h>
|
|
|
|
|
2015-03-04 20:12:14 +00:00
|
|
|
namespace Framebuffer { class Connection; }
|
2011-12-22 15:19:25 +00:00
|
|
|
|
|
|
|
|
2015-03-04 20:12:14 +00:00
|
|
|
class Framebuffer::Connection : public Genode::Connection<Session>,
|
|
|
|
public Session_client
|
|
|
|
{
|
2016-11-23 16:07:49 +00:00
|
|
|
public:
|
|
|
|
|
|
|
|
enum { RAM_QUOTA = 8*1024UL };
|
|
|
|
|
2015-03-04 20:12:14 +00:00
|
|
|
private:
|
2011-12-22 15:19:25 +00:00
|
|
|
|
2015-03-04 20:12:14 +00:00
|
|
|
/**
|
|
|
|
* Create session and return typed session capability
|
|
|
|
*/
|
2016-05-10 15:24:51 +00:00
|
|
|
Session_capability _connect(Genode::Parent &parent,
|
|
|
|
unsigned width, unsigned height,
|
2015-03-04 20:12:14 +00:00
|
|
|
Mode::Format format)
|
|
|
|
{
|
|
|
|
using namespace Genode;
|
2011-12-22 15:19:25 +00:00
|
|
|
|
2015-03-04 20:12:14 +00:00
|
|
|
enum { ARGBUF_SIZE = 128 };
|
|
|
|
char argbuf[ARGBUF_SIZE];
|
2016-12-06 17:41:30 +00:00
|
|
|
argbuf[0] = 0;
|
2011-12-22 15:19:25 +00:00
|
|
|
|
2017-05-07 20:03:25 +00:00
|
|
|
/* donate ram and cap quota for storing server-side meta data */
|
2016-11-23 16:07:49 +00:00
|
|
|
Arg_string::set_arg(argbuf, sizeof(argbuf), "ram_quota", RAM_QUOTA);
|
2017-05-07 20:03:25 +00:00
|
|
|
Arg_string::set_arg(argbuf, sizeof(argbuf), "cap_quota", CAP_QUOTA);
|
2011-12-22 15:19:25 +00:00
|
|
|
|
2015-03-04 20:12:14 +00:00
|
|
|
/* set optional session-constructor arguments */
|
|
|
|
if (width)
|
|
|
|
Arg_string::set_arg(argbuf, sizeof(argbuf), "fb_width", width);
|
|
|
|
if (height)
|
|
|
|
Arg_string::set_arg(argbuf, sizeof(argbuf), "fb_height", height);
|
|
|
|
if (format != Mode::INVALID)
|
|
|
|
Arg_string::set_arg(argbuf, sizeof(argbuf), "fb_format", format);
|
2011-12-22 15:19:25 +00:00
|
|
|
|
2016-05-10 15:24:51 +00:00
|
|
|
return session(parent, argbuf);
|
2015-03-04 20:12:14 +00:00
|
|
|
}
|
2011-12-22 15:19:25 +00:00
|
|
|
|
2015-03-04 20:12:14 +00:00
|
|
|
public:
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Constructor
|
|
|
|
*
|
2016-05-10 15:24:51 +00:00
|
|
|
* \param mode desired size and pixel format
|
2015-03-04 20:12:14 +00:00
|
|
|
*
|
|
|
|
* The specified values are not enforced. After creating the
|
|
|
|
* session, you should validate the actual frame-buffer attributes
|
2015-03-20 16:50:41 +00:00
|
|
|
* by calling the 'info' method of the frame-buffer interface.
|
2015-03-04 20:12:14 +00:00
|
|
|
*/
|
2016-05-10 15:24:51 +00:00
|
|
|
Connection(Genode::Env &env, Framebuffer::Mode mode)
|
|
|
|
:
|
|
|
|
Genode::Connection<Session>(env, _connect(env.parent(),
|
|
|
|
mode.width(), mode.height(),
|
|
|
|
mode.format())),
|
|
|
|
Session_client(cap())
|
|
|
|
{ }
|
2015-03-04 20:12:14 +00:00
|
|
|
};
|
2011-12-22 15:19:25 +00:00
|
|
|
|
|
|
|
#endif /* _INCLUDE__FRAMEBUFFER_SESSION__CONNECTION_H_ */
|