mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-24 15:56:41 +00:00
69 lines
1.7 KiB
C
69 lines
1.7 KiB
C
|
/*
|
||
|
* \brief Report configuration
|
||
|
* \author Norman Feske
|
||
|
* \date 2017-01-16
|
||
|
*/
|
||
|
|
||
|
/*
|
||
|
* Copyright (C) 2017 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__INIT__REPORT_H_
|
||
|
#define _INCLUDE__INIT__REPORT_H_
|
||
|
|
||
|
#include <util/noncopyable.h>
|
||
|
#include <util/xml_node.h>
|
||
|
|
||
|
namespace Init {
|
||
|
struct Report_update_trigger;
|
||
|
struct Report_detail;
|
||
|
}
|
||
|
|
||
|
|
||
|
class Init::Report_detail : Genode::Noncopyable
|
||
|
{
|
||
|
private:
|
||
|
|
||
|
bool _children = false;
|
||
|
bool _ids = false;
|
||
|
bool _requested = false;
|
||
|
bool _provided = false;
|
||
|
bool _session_args = false;
|
||
|
bool _child_ram = false;
|
||
|
bool _init_ram = false;
|
||
|
|
||
|
public:
|
||
|
|
||
|
Report_detail() { }
|
||
|
|
||
|
Report_detail(Genode::Xml_node report)
|
||
|
{
|
||
|
_children = true;
|
||
|
_ids = report.attribute_value("ids", false);
|
||
|
_requested = report.attribute_value("requested", false);
|
||
|
_provided = report.attribute_value("provided", false);
|
||
|
_session_args = report.attribute_value("session_args", false);
|
||
|
_child_ram = report.attribute_value("child_ram", false);
|
||
|
_init_ram = report.attribute_value("init_ram", false);
|
||
|
}
|
||
|
|
||
|
bool children() const { return _children; }
|
||
|
bool ids() const { return _ids; }
|
||
|
bool requested() const { return _requested; }
|
||
|
bool provided() const { return _provided; }
|
||
|
bool session_args() const { return _session_args; }
|
||
|
bool child_ram() const { return _child_ram; }
|
||
|
bool init_ram() const { return _init_ram; }
|
||
|
};
|
||
|
|
||
|
|
||
|
struct Init::Report_update_trigger
|
||
|
{
|
||
|
virtual void trigger_report_update() = 0;
|
||
|
};
|
||
|
|
||
|
#endif /* _INCLUDE__INIT__REPORT_H_ */
|