Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
rework State related events
[simgrid.git] / src / instr / instr_paje_types.cpp
1 /* Copyright (c) 2012, 2014-2017. 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 "src/instr/instr_private.hpp"
8
9 XBT_LOG_NEW_DEFAULT_SUBCATEGORY (instr_paje_types, instr, "Paje tracing event system (types)");
10
11 static simgrid::instr::ContainerType* rootType = nullptr; /* the root type */
12 extern FILE* tracing_file;
13
14 namespace simgrid {
15 namespace instr {
16
17 Type::Type(std::string name, std::string alias, std::string color, Type* father)
18     : id_(instr_new_paje_id()), name_(name), color_(color), father_(father)
19 {
20   if (name.empty() || alias.empty())
21     THROWF(tracing_error, 0, "can't create a new type with no name or alias");
22
23   if (father != nullptr){
24     father->children_.insert({alias, this});
25     XBT_DEBUG("new type %s, child of %s", name_.c_str(), father->getCname());
26   }
27 }
28
29 Type::~Type()
30 {
31   for (auto elm : children_)
32     delete elm.second;
33 }
34
35 ValueType::~ValueType()
36 {
37   for (auto elm : values_)
38     delete elm.second;
39 }
40
41 ContainerType::ContainerType(std::string name, Type* father) : Type(name, name, "", father)
42 {
43   XBT_DEBUG("ContainerType %s(%lld), child of %s(%lld)", getCname(), getId(), father->getCname(), father->getId());
44   logDefinition(PAJE_DefineContainerType);
45 }
46
47 EventType::EventType(std::string name, Type* father) : ValueType(name, father)
48 {
49   XBT_DEBUG("EventType %s(%lld), child of %s(%lld)", getCname(), getId(), father->getCname(), father->getId());
50   logDefinition(PAJE_DefineEventType);
51 }
52
53 StateType::StateType(std::string name, Type* father) : ValueType(name, father)
54 {
55   XBT_DEBUG("StateType %s(%lld), child of %s(%lld)", getCname(), getId(), father->getCname(), father->getId());
56   logDefinition(PAJE_DefineStateType);
57 }
58
59 StateType::~StateType()
60 {
61   events_.clear();
62 }
63
64 void StateType::setEvent(double timestamp, Container* container, std::string value_name)
65 {
66   events_.push_back(new StateEvent(timestamp, container, this, PAJE_SetState, getEntityValue(value_name)));
67 }
68
69 void StateType::pushEvent(double timestamp, Container* container, std::string value_name, void* extra)
70 {
71   events_.push_back(new StateEvent(timestamp, container, this, PAJE_PushState, getEntityValue(value_name), extra));
72 }
73
74 void StateType::pushEvent(double timestamp, Container* container, std::string value_name)
75 {
76   events_.push_back(new StateEvent(timestamp, container, this, PAJE_PushState, getEntityValue(value_name)));
77 }
78
79 void StateType::popEvent(double timestamp, Container* container)
80 {
81   events_.push_back(new StateEvent(timestamp, container, this, PAJE_PopState, nullptr));
82 }
83
84 VariableType::VariableType(std::string name, std::string color, Type* father) : Type(name, name, color, father)
85 {
86   XBT_DEBUG("VariableType %s(%lld), child of %s(%lld)", getCname(), getId(), father->getCname(), father->getId());
87   logDefinition(PAJE_DefineVariableType);
88 }
89
90 LinkType::LinkType(std::string name, std::string alias, Type* father) : ValueType(name, alias, father)
91 {
92 }
93
94 void Type::logDefinition(e_event_type event_type)
95 {
96   if (instr_fmt_type != instr_fmt_paje)
97     return;
98   std::stringstream stream;
99   XBT_DEBUG("%s: event_type=%u, timestamp=%.*f", __FUNCTION__, event_type, TRACE_precision(), 0.);
100   stream << std::fixed << std::setprecision(TRACE_precision()) << event_type << " " << getId();
101   stream << " " << father_->getId() << " " << getName();
102   if (isColored())
103     stream << " \"" << color_ << "\"";
104   XBT_DEBUG("Dump %s", stream.str().c_str());
105   stream << std::endl;
106   fprintf(tracing_file, "%s", stream.str().c_str());
107 }
108
109 void Type::logDefinition(simgrid::instr::Type* source, simgrid::instr::Type* dest)
110 {
111   if (instr_fmt_type != instr_fmt_paje)
112     return;
113   std::stringstream stream;
114   XBT_DEBUG("%s: event_type=%u, timestamp=%.*f", __FUNCTION__, PAJE_DefineLinkType, TRACE_precision(), 0.);
115   stream << std::fixed << std::setprecision(TRACE_precision()) << PAJE_DefineLinkType << " " << getId();
116   stream << " " << father_->getId() << " " << source->getId() << " " << dest->getId() << " " << getName();
117   XBT_DEBUG("Dump %s", stream.str().c_str());
118   stream << std::endl;
119   fprintf(tracing_file, "%s", stream.str().c_str());
120 }
121
122 Type* Type::byName(std::string name)
123 {
124   Type* ret = nullptr;
125   for (auto elm : children_) {
126     if (elm.second->name_ == name) {
127       if (ret != nullptr) {
128         THROWF (tracing_error, 0, "there are two children types with the same name?");
129       } else {
130         ret = elm.second;
131       }
132     }
133   }
134   if (ret == nullptr)
135     THROWF(tracing_error, 2, "type with name (%s) not found in father type (%s)", name.c_str(), getCname());
136   return ret;
137 }
138
139 void ValueType::addEntityValue(std::string name)
140 {
141   addEntityValue(name, "");
142 }
143
144 void ValueType::addEntityValue(std::string name, std::string color)
145 {
146   if (name.empty())
147     THROWF(tracing_error, 0, "can't get a value with no name");
148
149   auto it = values_.find(name);
150   if (it == values_.end()) {
151     EntityValue* new_val = new EntityValue(name, color, this);
152     values_.insert({name, new_val});
153     XBT_DEBUG("new value %s, child of %s", name.c_str(), getCname());
154     new_val->print();
155   }
156 }
157
158 EntityValue* ValueType::getEntityValue(std::string name)
159 {
160   auto ret = values_.find(name);
161   if (ret == values_.end()) {
162     THROWF(tracing_error, 2, "value with name (%s) not found in father type (%s)", name.c_str(), getCname());
163   }
164   return ret->second;
165 }
166
167 ContainerType* Type::createRootType()
168 {
169   rootType = static_cast<ContainerType*>(new simgrid::instr::Type("0", "0", "", nullptr));
170   return rootType;
171 }
172
173 ContainerType* Type::getRootType()
174 {
175   return rootType;
176 }
177
178 ContainerType* Type::getOrCreateContainerType(std::string name)
179 {
180   auto cont = children_.find(name);
181   return cont == children_.end() ? new ContainerType(name, this) : static_cast<ContainerType*>(cont->second);
182 }
183
184 EventType* Type::getOrCreateEventType(std::string name)
185 {
186   auto cont = children_.find(name);
187   return cont == children_.end() ? new EventType(name, this) : static_cast<EventType*>(cont->second);
188 }
189
190 StateType* Type::getOrCreateStateType(std::string name)
191 {
192   auto cont = children_.find(name);
193   return cont == children_.end() ? new StateType(name, this) : static_cast<StateType*>(cont->second);
194 }
195
196 VariableType* Type::getOrCreateVariableType(std::string name, std::string color)
197 {
198   auto cont = children_.find(name);
199   std::string mycolor = color.empty() ? "1 1 1" : color;
200   return cont == children_.end() ? new VariableType(name, mycolor, this) : static_cast<VariableType*>(cont->second);
201 }
202
203 LinkType* Type::getOrCreateLinkType(std::string name, Type* source, Type* dest)
204 {
205   std::string alias = name + "-" + std::to_string(source->id_) + "-" + std::to_string(dest->id_);
206   auto it           = children_.find(alias);
207   if (it == children_.end()) {
208     LinkType* ret = new LinkType(name, alias, this);
209     XBT_DEBUG("LinkType %s(%lld), child of %s(%lld)  %s(%lld)->%s(%lld)", ret->getCname(), ret->getId(), getCname(),
210               getId(), source->getCname(), source->getId(), dest->getCname(), dest->getId());
211     ret->logDefinition(source, dest);
212     return ret;
213   } else
214     return static_cast<LinkType*>(it->second);
215 }
216 }
217 }