2013-06-13 08:39:59 +00:00
|
|
|
/*
|
|
|
|
* \brief Connection to regulator service
|
|
|
|
* \author Stefan Kalkowski
|
|
|
|
* \date 2013-06-13
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
2017-02-20 12:23:52 +00:00
|
|
|
* Copyright (C) 2013-2017 Genode Labs GmbH
|
2013-06-13 08:39:59 +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.
|
2013-06-13 08:39:59 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#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)
|
|
|
|
{
|
2017-05-07 20:03:25 +00:00
|
|
|
return session("ram_quota=8K, cap_quota=%ld, regulator=\"%s\", label=\"%s\"",
|
|
|
|
CAP_QUOTA, regulator_name_by_id(regulator), label);
|
2016-05-10 15:24:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 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
|
|
|
|
*/
|
2017-01-09 14:18:49 +00:00
|
|
|
Connection(Regulator_id regulator, const char * label = "") __attribute__((deprecated))
|
2016-05-10 15:24:51 +00:00
|
|
|
:
|
2017-01-09 14:18:49 +00:00
|
|
|
Genode::Connection<Session>(_session(*Genode::env_deprecated()->parent(), label, regulator)),
|
2016-05-10 15:24:51 +00:00
|
|
|
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_ */
|