Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
codacy
[simgrid.git] / src / instr / instr_paje_types.cpp
1 /* Copyright (c) 2012, 2014-2015. 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 type_t rootType = nullptr;        /* the root type */
12
13 void PJ_type_release ()
14 {
15   rootType = nullptr;
16 }
17
18 type_t PJ_type_get_root ()
19 {
20   return rootType;
21 }
22
23 static type_t newType (const char *typeNameBuff, const char *key, const char *color, e_entity_types kind, type_t father)
24 {
25   if (typeNameBuff == nullptr || key == nullptr){
26     THROWF(tracing_error, 0, "can't create a new type with name or key equal nullptr");
27   }
28
29   type_t ret = xbt_new0(s_type_t, 1);
30   ret->name = xbt_strdup (typeNameBuff);
31   ret->father = father;
32   ret->kind = kind;
33   ret->children = xbt_dict_new_homogeneous(nullptr);
34   ret->values = xbt_dict_new_homogeneous(nullptr);
35   ret->color = xbt_strdup (color);
36
37   char str_id[INSTR_DEFAULT_STR_SIZE];
38   snprintf (str_id, INSTR_DEFAULT_STR_SIZE, "%lld", instr_new_paje_id());
39   ret->id = xbt_strdup (str_id);
40
41   if (father != nullptr){
42     xbt_dict_set (father->children, key, ret, nullptr);
43     XBT_DEBUG("new type %s, child of %s", typeNameBuff, father->name);
44   }
45   return ret;
46 }
47
48 void PJ_type_free (type_t type)
49 {
50   val_t value;
51   char *value_name;
52   xbt_dict_cursor_t cursor = nullptr;
53   xbt_dict_foreach(type->values, cursor, value_name, value) {
54      XBT_DEBUG("free value %s, child of %s", value->name, value->father->name);
55      xbt_free(value->name);
56      xbt_free(value->color);
57      xbt_free(value->id);
58      xbt_free(value);
59   }
60   xbt_dict_free (&type->values);
61   xbt_free (type->name);
62   xbt_free (type->id);
63   xbt_free (type->color);
64   xbt_dict_free (&type->children);
65   xbt_free (type);
66   type = nullptr;
67 }
68
69 void recursiveDestroyType (type_t type)
70 {
71   XBT_DEBUG("recursiveDestroyType %s", type->name);
72   xbt_dict_cursor_t cursor = nullptr;
73   type_t child;
74   char *child_name;
75   xbt_dict_foreach(type->children, cursor, child_name, child) {
76     recursiveDestroyType (child);
77   }
78   PJ_type_free(type);
79 }
80
81 type_t PJ_type_get (const char *name, type_t father)
82 {
83   type_t ret = PJ_type_get_or_null (name, father);
84   if (ret == nullptr){
85     THROWF (tracing_error, 2, "type with name (%s) not found in father type (%s)", name, father->name);
86   }
87   return ret;
88 }
89
90 type_t PJ_type_get_or_null (const char *name, type_t father)
91 {
92   if (name == nullptr || father == nullptr){
93     THROWF (tracing_error, 0, "can't get type with a nullptr name or from a nullptr father");
94   }
95
96   type_t ret = nullptr;
97   type_t child;
98   char *child_name;
99   xbt_dict_cursor_t cursor = nullptr;
100   xbt_dict_foreach(father->children, cursor, child_name, child) {
101     if (strcmp (child->name, name) == 0){
102       if (ret != nullptr){
103         THROWF (tracing_error, 0, "there are two children types with the same name?");
104       }else{
105         ret = child;
106       }
107     }
108   }
109   return ret;
110 }
111
112 type_t PJ_type_container_new (const char *name, type_t father)
113 {
114   if (name == nullptr){
115     THROWF (tracing_error, 0, "can't create a container type with a nullptr name");
116   }
117
118   type_t ret = nullptr;
119
120   ret = newType (name, name, nullptr, TYPE_CONTAINER, father);
121   if (father == nullptr){
122     rootType = ret;
123   }
124
125   if(father){
126     XBT_DEBUG("ContainerType %s(%s), child of %s(%s)", ret->name, ret->id, father->name, father->id);
127     DefineContainerEvent(ret);
128   }
129   return ret;
130 }
131
132 type_t PJ_type_event_new (const char *name, type_t father)
133 {
134   if (name == nullptr){
135     THROWF (tracing_error, 0, "can't create an event type with a nullptr name");
136   }
137
138   type_t ret = newType (name, name, nullptr, TYPE_EVENT, father);
139   XBT_DEBUG("EventType %s(%s), child of %s(%s)", ret->name, ret->id, father->name, father->id);
140   LogDefineEventType(ret);
141   return ret;
142 }
143
144 type_t PJ_type_variable_new (const char *name, const char *color, type_t father)
145 {
146   if (name == nullptr){
147     THROWF (tracing_error, 0, "can't create a variable type with a nullptr name");
148   }
149
150   type_t ret = nullptr;
151
152   char white[INSTR_DEFAULT_STR_SIZE] = "1 1 1";
153   if (not color) {
154     ret = newType (name, name, white, TYPE_VARIABLE, father);
155   }else{
156     ret = newType (name, name, color, TYPE_VARIABLE, father);
157   }
158   XBT_DEBUG("VariableType %s(%s), child of %s(%s)", ret->name, ret->id, father->name, father->id);
159   LogVariableTypeDefinition (ret);
160   return ret;
161 }
162
163 type_t PJ_type_link_new (const char *name, type_t father, type_t source, type_t dest)
164 {
165   if (name == nullptr){
166     THROWF (tracing_error, 0, "can't create a link type with a nullptr name");
167   }
168
169   type_t ret = nullptr;
170
171   char key[INSTR_DEFAULT_STR_SIZE];
172   snprintf (key, INSTR_DEFAULT_STR_SIZE, "%s-%s-%s", name, source->id, dest->id);
173   ret = newType (name, key, nullptr, TYPE_LINK, father);
174   XBT_DEBUG("LinkType %s(%s), child of %s(%s)  %s(%s)->%s(%s)", ret->name, ret->id, father->name, father->id,
175             source->name, source->id, dest->name, dest->id);
176   LogLinkTypeDefinition(ret, source, dest);
177   return ret;
178 }
179
180 type_t PJ_type_state_new (const char *name, type_t father)
181 {
182   if (name == nullptr){
183     THROWF (tracing_error, 0, "can't create a state type with a nullptr name");
184   }
185
186   type_t ret = nullptr;
187
188   ret = newType (name, name, nullptr, TYPE_STATE, father);
189   XBT_DEBUG("StateType %s(%s), child of %s(%s)", ret->name, ret->id, father->name, father->id);
190   LogStateTypeDefinition(ret);
191   return ret;
192 }