Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
c0ef9ad31087709c6554f4383ce63ad03a05ea41
[simgrid.git] / src / instr / instr_paje_containers.cpp
1 /* Copyright (c) 2010-2020. The SimGrid Team. All rights reserved.          */
2
3 /* This program is free software; you can redistribute it and/or modify it
4  * under the terms of the license (GNU LGPL) which comes with this package. */
5
6 #include "simgrid/Exception.hpp"
7 #include "simgrid/s4u/Engine.hpp"
8 #include "simgrid/s4u/Host.hpp"
9 #include "src/instr/instr_private.hpp"
10
11 XBT_LOG_NEW_DEFAULT_SUBCATEGORY (instr_paje_containers, instr, "Paje tracing event system (containers)");
12
13 static container_t rootContainer = nullptr;    /* the root container */
14 static std::map<std::string, container_t> allContainers; /* all created containers indexed by name */
15
16 long long int instr_new_paje_id ()
17 {
18   static long long int type_id = 0;
19   return type_id++;
20 }
21
22 namespace simgrid {
23 namespace instr {
24
25 Container* Container::get_root()
26 {
27   return rootContainer;
28 }
29
30 NetZoneContainer::NetZoneContainer(const std::string& name, unsigned int level, NetZoneContainer* father)
31     : Container::Container(name, "", father)
32 {
33   netpoint_ = s4u::Engine::get_instance()->netpoint_by_name_or_null(get_name());
34   xbt_assert(netpoint_, "Element '%s' not found", get_cname());
35   if (father_) {
36     std::string type_name = std::string("L") + std::to_string(level);
37     type_                 = father_->type_->by_name_or_create<ContainerType>(type_name);
38     father_->children_.insert({get_name(), this});
39     on_creation(*this);
40   } else {
41     type_         = new ContainerType("0");
42     rootContainer = this;
43   }
44 }
45
46 RouterContainer::RouterContainer(const std::string& name, Container* father)
47     : Container::Container(name, "ROUTER", father)
48 {
49   xbt_assert(father, "Only the Root container has no father");
50
51   netpoint_ = s4u::Engine::get_instance()->netpoint_by_name_or_null(get_name());
52   xbt_assert(netpoint_, "Element '%s' not found", get_cname());
53 }
54
55 HostContainer::HostContainer(s4u::Host const& host, NetZoneContainer* father)
56     : Container::Container(host.get_name(), "HOST", father)
57 {
58   xbt_assert(father, "Only the Root container has no father");
59
60   netpoint_ = host.get_netpoint();
61   xbt_assert(netpoint_, "Element '%s' not found", host.get_cname());
62 }
63
64 Container::Container(const std::string& name, const std::string& type_name, Container* father)
65     : name_(name), father_(father)
66 {
67   static long long int container_id = 0;
68   id_                               = container_id; // id (or alias) of the container
69   container_id++;
70
71   if (father_) {
72     XBT_DEBUG("new container %s, child of %s", get_cname(), father->get_cname());
73
74     if (not type_name.empty()) {
75       type_ = father_->type_->by_name_or_create<ContainerType>(type_name);
76       father_->children_.insert({name_, this});
77       on_creation(*this);
78     }
79   }
80
81   //register all kinds by name
82   if (not allContainers.emplace(name_, this).second)
83     throw TracingError(XBT_THROW_POINT,
84                        xbt::string_printf("container %s already present in allContainers data structure", get_cname()));
85
86   XBT_DEBUG("Add container name '%s'", get_cname());
87 }
88
89 Container::~Container()
90 {
91   XBT_DEBUG("destroy container %s", get_cname());
92   // Begin with destroying my own children
93   for (auto child : children_)
94     delete child.second;
95
96   // remove me from the allContainers data structure
97   allContainers.erase(name_);
98
99   on_destruction(*this);
100 }
101
102 void Container::create_child(const std::string& name, const std::string& type_name)
103 {
104   new Container(name, type_name, this);
105 }
106
107 Container* Container::by_name_or_null(const std::string& name)
108 {
109   auto cont = allContainers.find(name);
110   return cont == allContainers.end() ? nullptr : cont->second;
111 }
112
113 Container* Container::by_name(const std::string& name)
114 {
115   Container* ret = Container::by_name_or_null(name);
116   xbt_assert(ret != nullptr, "container with name %s not found", name.c_str());
117
118   return ret;
119 }
120
121 void Container::remove_from_parent()
122 {
123   if (father_) {
124     XBT_DEBUG("removeChildContainer (%s) FromContainer (%s) ", get_cname(), father_->get_cname());
125     father_->children_.erase(name_);
126   }
127   delete this;
128 }
129
130 StateType* Container::get_state(const std::string& name)
131 {
132   return static_cast<StateType*>(type_->by_name(name)->set_calling_container(this));
133 }
134
135 LinkType* Container::get_link(const std::string& name)
136 {
137   return static_cast<LinkType*>(type_->by_name(name)->set_calling_container(this));
138 }
139
140 VariableType* Container::get_variable(const std::string& name)
141 {
142   return static_cast<VariableType*>(type_->by_name(name)->set_calling_container(this));
143 }
144 } // namespace instr
145 } // namespace simgrid