2013-06-13 08:39:59 +00:00
|
|
|
/*
|
|
|
|
* \brief Connection to regulator service
|
|
|
|
* \author Stefan Kalkowski
|
|
|
|
* \date 2013-06-13
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Copyright (C) 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__REGULATOR_SESSION__CONNECTION_H_
|
|
|
|
#define _INCLUDE__REGULATOR_SESSION__CONNECTION_H_
|
|
|
|
|
|
|
|
#include <regulator_session/client.h>
|
|
|
|
#include <regulator/consts.h>
|
|
|
|
#include <base/connection.h>
|
|
|
|
|
2015-03-04 20:12:14 +00:00
|
|
|
namespace Regulator { struct Connection; }
|
2013-06-13 08:39:59 +00:00
|
|
|
|
2015-03-04 20:12:14 +00:00
|
|
|
|
|
|
|
struct Regulator::Connection : Genode::Connection<Session>, Session_client
|
|
|
|
{
|
2016-05-20 09:00:53 +00:00
|
|
|
/**
|
|
|
|
* Issue session request
|
|
|
|
*
|
|
|
|
* \noapi
|
|
|
|
*/
|
2016-05-10 15:24:51 +00:00
|
|
|
Capability<Regulator::Session> _session(Genode::Parent &parent,
|
|
|
|
char const *label,
|
|
|
|
Regulator_id regulator)
|
|
|
|
{
|
|
|
|
return session("ram_quota=8K, regulator=\"%s\", label=\"%s\"",
|
|
|
|
regulator_name_by_id(regulator), label);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Constructor
|
|
|
|
*
|
|
|
|
* \param regulator identifier for the specific regulator
|
|
|
|
* \param label string identifier of the client
|
|
|
|
*/
|
|
|
|
Connection(Genode::Env &env, Regulator_id regulator, const char * label = "")
|
|
|
|
:
|
|
|
|
Genode::Connection<Session>(env, _session(env.parent(), label, regulator)),
|
|
|
|
Session_client(cap())
|
|
|
|
{ }
|
|
|
|
|
2015-03-04 20:12:14 +00:00
|
|
|
/**
|
|
|
|
* Constructor
|
|
|
|
*
|
|
|
|
* \param regulator identifier for the specific regulator
|
|
|
|
* \param label string identifier of the client
|
|
|
|
*/
|
|
|
|
Connection(Regulator_id regulator, const char * label = "")
|
2016-05-10 15:24:51 +00:00
|
|
|
:
|
|
|
|
Genode::Connection<Session>(_session(*Genode::env()->parent(), label, regulator)),
|
|
|
|
Session_client(cap())
|
|
|
|
{ }
|
2015-03-04 20:12:14 +00:00
|
|
|
};
|
2013-06-13 08:39:59 +00:00
|
|
|
|
|
|
|
#endif /* _INCLUDE__REGULATOR_SESSION__CONNECTION_H_ */
|