Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
2e765a0c79f35cd22ee7a4ce7e1aaa08eaffbb2f
[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.h"
8
9 XBT_LOG_NEW_DEFAULT_SUBCATEGORY (instr_paje_types, instr, "Paje tracing event system (types)");
10
11 static simgrid::instr::Type* rootType = nullptr; /* the root type */
12
13 void PJ_type_release ()
14 {
15   rootType = nullptr;
16 }
17
18 simgrid::instr::Type* PJ_type_get_root()
19 {
20   return rootType;
21 }
22
23 simgrid::instr::Type::Type(const char* typeNameBuff, const char* key, const char* color, e_entity_types kind,
24                            Type* father)
25     : kind_(kind), father_(father)
26 {
27   if (typeNameBuff == nullptr || key == nullptr){
28     THROWF(tracing_error, 0, "can't create a new type with name or key equal nullptr");
29   }
30
31   this->name_     = xbt_strdup(typeNameBuff);
32   this->children_ = xbt_dict_new_homogeneous(nullptr);
33   this->values_   = xbt_dict_new_homogeneous(nullptr);
34   this->color_    = xbt_strdup(color);
35
36   this->id_ = bprintf("%lld", instr_new_paje_id());
37
38   if (father != nullptr){
39     xbt_dict_set(father->children_, key, this, nullptr);
40     XBT_DEBUG("new type %s, child of %s", typeNameBuff, father->name_);
41   }
42 }
43
44 simgrid::instr::Type::~Type()
45 {
46   simgrid::instr::Value* val;
47   char *value_name;
48   xbt_dict_cursor_t cursor = nullptr;
49   xbt_dict_foreach (values_, cursor, value_name, val) {
50     XBT_DEBUG("free value %s, child of %s", val->name_, val->father_->name_);
51     delete val;
52   }
53   xbt_dict_free(&values_);
54   simgrid::instr::Type* child;
55   char *child_name;
56   xbt_dict_foreach (children_, cursor, child_name, child) {
57     delete child;
58   }
59   xbt_dict_free(&children_);
60   xbt_free(name_);
61   xbt_free(id_);
62   xbt_free(color_);
63 }
64
65 simgrid::instr::Type* simgrid::instr::Type::getChild(const char* name)
66 {
67   simgrid::instr::Type* ret = this->getChildOrNull(name);
68   if (ret == nullptr)
69     THROWF(tracing_error, 2, "type with name (%s) not found in father type (%s)", name, this->name_);
70   return ret;
71 }
72
73 simgrid::instr::Type* simgrid::instr::Type::getChildOrNull(const char* name)
74 {
75   xbt_assert(name != nullptr, "can't get type with a nullptr name");
76
77   simgrid::instr::Type* ret = nullptr;
78   simgrid::instr::Type* child;
79   char *child_name;
80   xbt_dict_cursor_t cursor = nullptr;
81   xbt_dict_foreach (children_, cursor, child_name, child) {
82     if (strcmp(child->name_, name) == 0) {
83       if (ret != nullptr) {
84         THROWF (tracing_error, 0, "there are two children types with the same name?");
85       } else {
86         ret = child;
87       }
88     }
89   }
90   return ret;
91 }
92
93 simgrid::instr::Type* simgrid::instr::Type::containerNew(const char* name, simgrid::instr::Type* father)
94 {
95   if (name == nullptr){
96     THROWF (tracing_error, 0, "can't create a container type with a nullptr name");
97   }
98
99   simgrid::instr::Type* ret = new simgrid::instr::Type(name, name, nullptr, TYPE_CONTAINER, father);
100   if (father == nullptr) {
101     rootType = ret;
102   } else {
103     XBT_DEBUG("ContainerType %s(%s), child of %s(%s)", ret->name_, ret->id_, father->name_, father->id_);
104     LogContainerTypeDefinition(ret);
105   }
106   return ret;
107 }
108
109 simgrid::instr::Type* simgrid::instr::Type::eventNew(const char* name, simgrid::instr::Type* father)
110 {
111   if (name == nullptr){
112     THROWF (tracing_error, 0, "can't create an event type with a nullptr name");
113   }
114
115   Type* ret = new Type (name, name, nullptr, TYPE_EVENT, father);
116   XBT_DEBUG("EventType %s(%s), child of %s(%s)", ret->name_, ret->id_, father->name_, father->id_);
117   LogDefineEventType(ret);
118   return ret;
119 }
120
121 simgrid::instr::Type* simgrid::instr::Type::variableNew(const char* name, const char* color,
122                                                         simgrid::instr::Type* father)
123 {
124   if (name == nullptr){
125     THROWF (tracing_error, 0, "can't create a variable type with a nullptr name");
126   }
127
128   Type* ret = nullptr;
129
130   if (not color) {
131     char white[INSTR_DEFAULT_STR_SIZE] = "1 1 1";
132     ret = new Type (name, name, white, TYPE_VARIABLE, father);
133   }else{
134     ret = new Type (name, name, color, TYPE_VARIABLE, father);
135   }
136   XBT_DEBUG("VariableType %s(%s), child of %s(%s)", ret->name_, ret->id_, father->name_, father->id_);
137   LogVariableTypeDefinition (ret);
138   return ret;
139 }
140
141 simgrid::instr::Type* simgrid::instr::Type::linkNew(const char* name, Type* father, Type* source, Type* dest)
142 {
143   if (name == nullptr){
144     THROWF (tracing_error, 0, "can't create a link type with a nullptr name");
145   }
146
147   char key[INSTR_DEFAULT_STR_SIZE];
148   snprintf(key, INSTR_DEFAULT_STR_SIZE, "%s-%s-%s", name, source->id_, dest->id_);
149   Type* ret = new Type(name, key, nullptr, TYPE_LINK, father);
150   XBT_DEBUG("LinkType %s(%s), child of %s(%s)  %s(%s)->%s(%s)", ret->name_, ret->id_, father->name_, father->id_,
151             source->name_, source->id_, dest->name_, dest->id_);
152   LogLinkTypeDefinition(ret, source, dest);
153   return ret;
154 }
155
156 simgrid::instr::Type* simgrid::instr::Type::stateNew(const char* name, Type* father)
157 {
158   if (name == nullptr){
159     THROWF (tracing_error, 0, "can't create a state type with a nullptr name");
160   }
161
162   Type* ret = new Type(name, name, nullptr, TYPE_STATE, father);
163   XBT_DEBUG("StateType %s(%s), child of %s(%s)", ret->name_, ret->id_, father->name_, father->id_);
164   LogStateTypeDefinition(ret);
165   return ret;
166 }