2011-12-22 15:19:25 +00:00
|
|
|
/*
|
|
|
|
* \brief Connection to frame-buffer 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__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];
|
2011-12-22 15:19:25 +00:00
|
|
|
|
2015-03-04 20:12:14 +00:00
|
|
|
/* donate ram 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);
|
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())
|
|
|
|
{ }
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Constructor
|
|
|
|
*
|
|
|
|
* \noapi
|
|
|
|
* \deprecated Use the constructor with 'Env &' as first
|
|
|
|
* argument instead
|
|
|
|
*/
|
2015-03-04 20:12:14 +00:00
|
|
|
Connection(unsigned width = 0,
|
|
|
|
unsigned height = 0,
|
|
|
|
Mode::Format format = Mode::INVALID)
|
|
|
|
:
|
2016-05-10 15:24:51 +00:00
|
|
|
Genode::Connection<Session>(_connect(*Genode::env()->parent(),
|
|
|
|
width, height, format)),
|
2015-03-04 20:12:14 +00:00
|
|
|
Session_client(cap())
|
|
|
|
{ }
|
|
|
|
};
|
2011-12-22 15:19:25 +00:00
|
|
|
|
|
|
|
#endif /* _INCLUDE__FRAMEBUFFER_SESSION__CONNECTION_H_ */
|