X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/9104957deccc59e0e804215d5db498fabfd40d29..39c935d6d5ee86d153f6f7e6a10d723ae7c57f6f:/src/instr/instr_paje_containers.hpp diff --git a/src/instr/instr_paje_containers.hpp b/src/instr/instr_paje_containers.hpp index 952f7d9e43..3ab8fe8579 100644 --- a/src/instr/instr_paje_containers.hpp +++ b/src/instr/instr_paje_containers.hpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2010-2020. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2010-2021. The SimGrid Team. All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it * under the terms of the license (GNU LGPL) which comes with this package. */ @@ -17,34 +17,40 @@ class StateType; class VariableType; class Container { + static Container* root_container_; + static std::map> all_containers_; + long long int id_; std::string name_; /* Unique name of this container */ +protected: + static void set_root(Container* root) { root_container_ = root; } + public: - Container(const std::string& name, const std::string& type_name, Container* father); + static xbt::signal on_creation; + static xbt::signal on_destruction; + + explicit Container(const std::string& name, const std::string& type_name, Container* father); Container(const Container&) = delete; Container& operator=(const Container&) = delete; virtual ~Container(); Type* type_; /* Type of this container */ Container* father_; - std::map children_; - kernel::routing::NetPoint* netpoint_ = nullptr; + std::map> children_; static Container* by_name_or_null(const std::string& name); static Container* by_name(const std::string& name); const std::string& get_name() const { return name_; } - const char* get_cname() { return name_.c_str(); } - long long int get_id() { return id_; } + const char* get_cname() const { return name_.c_str(); } + long long int get_id() const { return id_; } void remove_from_parent(); - void log_creation(); - void log_destruction(); StateType* get_state(const std::string& name); LinkType* get_link(const std::string& name); VariableType* get_variable(const std::string& name); void create_child(const std::string& name, const std::string& type_name); - static Container* get_root(); + static Container* get_root() { return root_container_; } }; class NetZoneContainer : public Container { @@ -59,8 +65,8 @@ public: class HostContainer : public Container { public: - HostContainer(simgrid::s4u::Host const& host, NetZoneContainer* father); + HostContainer(s4u::Host const& host, NetZoneContainer* father); }; -} -} +} // namespace instr +} // namespace simgrid #endif