Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
b3486f70f05e3c67f10f74cb7af5de33d068bdf7
[simgrid.git] / src / instr / instr_paje_types.cpp
1 /* Copyright (c) 2012-2022. The SimGrid Team.
2  * All rights reserved.                                                     */
3
4 /* This program is free software; you can redistribute it and/or modify it
5  * under the terms of the license (GNU LGPL) which comes with this package. */
6
7 #include "simgrid/Exception.hpp"
8 #include "src/instr/instr_private.hpp"
9
10 XBT_LOG_NEW_DEFAULT_SUBCATEGORY (instr_paje_types, instr, "Paje tracing event system (types)");
11
12 namespace simgrid {
13 namespace instr {
14
15 long long int new_paje_id()
16 {
17   static long long int type_id = 0;
18   return type_id++;
19 }
20
21 Type::Type(PajeEventType event_type, const std::string& name, const std::string& alias, const std::string& color,
22            Type* parent)
23     : name_(name), color_(color), parent_(parent)
24 {
25   if (name_.empty() || alias.empty())
26     throw TracingError(XBT_THROW_POINT, "can't create a new type with no name or alias");
27
28   if (parent != nullptr) {
29     parent->children_[alias].reset(this);
30     XBT_DEBUG("new type %s, child of %s", get_cname(), parent->get_cname());
31     on_creation(*this, event_type);
32   }
33 }
34
35 void StateType::set_event(const std::string& value_name)
36 {
37   events_.push_back(new StateEvent(get_issuer(), this, PajeEventType::SetState, get_entity_value(value_name), nullptr));
38 }
39
40 void StateType::push_event(const std::string& value_name, TIData* extra)
41 {
42   events_.push_back(new StateEvent(get_issuer(), this, PajeEventType::PushState, get_entity_value(value_name), extra));
43 }
44
45 void StateType::push_event(const std::string& value_name)
46 {
47   events_.push_back(
48       new StateEvent(get_issuer(), this, PajeEventType::PushState, get_entity_value(value_name), nullptr));
49 }
50
51 void StateType::pop_event()
52 {
53   pop_event(nullptr);
54 }
55
56 void StateType::pop_event(TIData* extra)
57 {
58   events_.push_back(new StateEvent(get_issuer(), this, PajeEventType::PopState, nullptr, extra));
59 }
60
61 void VariableType::instr_event(double now, double delta, const char* resource, double value)
62 {
63   /* To trace resource utilization, we use AddEvent and SubEvent only. This implies to add a SetEvent first to set the
64    * initial value of all variables for subsequent adds/subs. If we don't do so, the first AddEvent would be added to a
65    * non-determined value, hence causing analysis problems.
66    */
67
68   // to check if variables were previously set to 0, otherwise paje won't simulate them
69   static std::set<std::string, std::less<>> platform_variables;
70
71   // create a key considering the resource and variable, and check if key exists in the global map:
72   // if it doesn't, set the variable to zero.
73   if (platform_variables.emplace(std::string(resource) + get_name()).second)
74     set_event(now, 0);
75
76   add_event(now, value);
77   sub_event(now + delta, value);
78 }
79
80 void VariableType::set_event(double timestamp, double value)
81 {
82   events_.push_back(new VariableEvent(timestamp, get_issuer(), this, PajeEventType::SetVariable, value));
83 }
84
85 void VariableType::add_event(double timestamp, double value)
86 {
87   events_.push_back(new VariableEvent(timestamp, get_issuer(), this, PajeEventType::AddVariable, value));
88 }
89
90 void VariableType::sub_event(double timestamp, double value)
91 {
92   events_.push_back(new VariableEvent(timestamp, get_issuer(), this, PajeEventType::SubVariable, value));
93 }
94
95 void LinkType::start_event(Container* startContainer, const std::string& value, const std::string& key, size_t size)
96 {
97   new LinkEvent(get_issuer(), this, PajeEventType::StartLink, startContainer, value, key, size);
98 }
99
100 void LinkType::end_event(Container* endContainer, const std::string& value, const std::string& key)
101 {
102   new LinkEvent(get_issuer(), this, PajeEventType::EndLink, endContainer, value, key);
103 }
104
105 Type* Type::by_name(const std::string& name)
106 {
107   Type* ret = nullptr;
108   for (auto const& [_, child] : children_) {
109     if (child->name_ == name) {
110       if (ret != nullptr) {
111         throw TracingError(XBT_THROW_POINT, "there are two children types with the same name?");
112       } else {
113         ret = child.get();
114       }
115     }
116   }
117   if (ret == nullptr)
118     throw TracingError(XBT_THROW_POINT, xbt::string_printf("type with name (%s) not found in parent type (%s)",
119                                                            name.c_str(), get_cname()));
120   return ret;
121 }
122
123 void ValueType::add_entity_value(const std::string& name)
124 {
125   add_entity_value(name, "");
126 }
127
128 void ValueType::add_entity_value(const std::string& name, const std::string& color)
129 {
130   if (name.empty())
131     throw TracingError(XBT_THROW_POINT, "can't get a value with no name");
132
133   auto it = values_.find(name);
134   if (it == values_.end()) {
135     XBT_DEBUG("new value %s, child of %s", name.c_str(), get_cname());
136     values_.try_emplace(name, name, color, this);
137   }
138 }
139
140 EntityValue* ValueType::get_entity_value(const std::string& name)
141 {
142   auto ret = values_.find(name);
143   if (ret == values_.end()) {
144     throw TracingError(XBT_THROW_POINT, xbt::string_printf("value with name (%s) not found in parent type (%s)",
145                                                            name.c_str(), get_cname()));
146   }
147   return &ret->second;
148 }
149
150 VariableType* Type::by_name_or_create(const std::string& name, const std::string& color)
151 {
152   auto cont = children_.find(name);
153   std::string mycolor = color.empty() ? "1 1 1" : color;
154   return cont == children_.end() ? new VariableType(name, mycolor, this)
155                                  : static_cast<VariableType*>(cont->second.get());
156 }
157
158 LinkType* Type::by_name_or_create(const std::string& name, const Type* source, const Type* dest)
159 {
160   std::string alias = name + "-" + std::to_string(source->id_) + "-" + std::to_string(dest->id_);
161   auto it           = children_.find(alias);
162   if (it == children_.end()) {
163     return new LinkType(name, source, dest, alias, this);
164   } else
165     return static_cast<LinkType*>(it->second.get());
166 }
167 } // namespace instr
168 } // namespace simgrid