genode/repos/ports/src/noux/local_rom_service.h
Norman Feske b44f0554bd Adapt high-level components to new parent API
This patch adjusts the various users of the 'Child' API to the changes
on the account of the new non-blocking parent interface. It also removes
the use of the no-longer-available 'Connection::KEEP_OPEN' feature.

With the adjustment, we took the opportunity to redesign several
components to fit the non-blocking execution model much better, in
particular the demo applications.

Issue #2120
2016-11-30 13:37:03 +01:00

72 lines
1.7 KiB
C++

/*
* \brief ROM service provided to Noux processes
* \author Norman Feske
* \date 2013-07-18
*
* The local ROM service has the sole purpose of tracking ROM dataspaces
* so that they are properly detached from RM sessions when the corresponding
* ROM sessions are closed.
*/
/*
* Copyright (C) 2013-2016 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 _NOUX__LOCAL_ROM_SERVICE_H_
#define _NOUX__LOCAL_ROM_SERVICE_H_
/* Genode includes */
#include <base/service.h>
/* Noux includes */
#include <dataspace_registry.h>
#include <rom_session_component.h>
namespace Noux {
typedef Local_service<Rom_session_component> Local_rom_service;
class Local_rom_factory;
}
class Noux::Local_rom_factory : public Local_rom_service::Factory
{
private:
Rpc_entrypoint &_ep;
Vfs::Dir_file_system &_root_dir;
Dataspace_registry &_registry;
public:
Local_rom_factory(Rpc_entrypoint &ep, Vfs::Dir_file_system &root_dir,
Dataspace_registry &registry)
:
_ep(ep), _root_dir(root_dir), _registry(registry)
{ }
Rom_session_component &create(Args const &args, Affinity) override
{
try {
Rom_session_component::Name const rom_name =
label_from_args(args.string()).last_element();
return *new (env()->heap())
Rom_session_component(_ep, _root_dir, _registry, rom_name);
}
catch (Rom_connection::Rom_connection_failed) { throw Denied(); }
}
void upgrade(Rom_session_component &, Args const &) override { }
void destroy(Rom_session_component &session) override
{
Genode::destroy(env()->heap(), &session);
}
};
#endif /* _NOUX__LOCAL_ROM_SERVICE_H_ */