Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
use a proper destructor for the paje::value type
[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, 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   value* val;
51   char *value_name;
52   xbt_dict_cursor_t cursor = nullptr;
53   xbt_dict_foreach (type->values, cursor, value_name, val) {
54     XBT_DEBUG("free value %s, child of %s", val->name, val->father->name);
55     delete val;
56   }
57   xbt_dict_free (&type->values);
58   xbt_free (type->name);
59   xbt_free (type->id);
60   xbt_free (type->color);
61   xbt_dict_free (&type->children);
62   xbt_free (type);
63   type = nullptr;
64 }
65
66 void recursiveDestroyType (type_t type)
67 {
68   XBT_DEBUG("recursiveDestroyType %s", type->name);
69   xbt_dict_cursor_t cursor = nullptr;
70   type_t child;
71   char *child_name;
72   xbt_dict_foreach(type->children, cursor, child_name, child) {
73     recursiveDestroyType (child);
74   }
75   PJ_type_free(type);
76 }
77
78 type_t PJ_type_get (const char *name, type_t father)
79 {
80   type_t ret = PJ_type_get_or_null (name, father);
81   if (ret == nullptr){
82     THROWF (tracing_error, 2, "type with name (%s) not found in father type (%s)", name, father->name);
83   }
84   return ret;
85 }
86
87 type_t PJ_type_get_or_null (const char *name, type_t father)
88 {
89   if (name == nullptr || father == nullptr){
90     THROWF (tracing_error, 0, "can't get type with a nullptr name or from a nullptr father");
91   }
92
93   type_t ret = nullptr;
94   type_t child;
95   char *child_name;
96   xbt_dict_cursor_t cursor = nullptr;
97   xbt_dict_foreach(father->children, cursor, child_name, child) {
98     if (strcmp (child->name, name) == 0){
99       if (ret != nullptr){
100         THROWF (tracing_error, 0, "there are two children types with the same name?");
101       }else{
102         ret = child;
103       }
104     }
105   }
106   return ret;
107 }
108
109 type_t PJ_type_container_new (const char *name, type_t father)
110 {
111   if (name == nullptr){
112     THROWF (tracing_error, 0, "can't create a container type with a nullptr name");
113   }
114
115   type_t ret = nullptr;
116
117   ret = newType (name, name, nullptr, TYPE_CONTAINER, father);
118   if (father == nullptr){
119     rootType = ret;
120   }
121
122   if(father){
123     XBT_DEBUG("ContainerType %s(%s), child of %s(%s)", ret->name, ret->id, father->name, father->id);
124     DefineContainerEvent(ret);
125   }
126   return ret;
127 }
128
129 type_t PJ_type_event_new (const char *name, type_t father)
130 {
131   if (name == nullptr){
132     THROWF (tracing_error, 0, "can't create an event type with a nullptr name");
133   }
134
135   type_t ret = newType (name, name, nullptr, TYPE_EVENT, father);
136   XBT_DEBUG("EventType %s(%s), child of %s(%s)", ret->name, ret->id, father->name, father->id);
137   LogDefineEventType(ret);
138   return ret;
139 }
140
141 type_t PJ_type_variable_new (const char *name, const char *color, type_t father)
142 {
143   if (name == nullptr){
144     THROWF (tracing_error, 0, "can't create a variable type with a nullptr name");
145   }
146
147   type_t ret = nullptr;
148
149   char white[INSTR_DEFAULT_STR_SIZE] = "1 1 1";
150   if (not color) {
151     ret = newType (name, name, white, TYPE_VARIABLE, father);
152   }else{
153     ret = newType (name, name, color, TYPE_VARIABLE, father);
154   }
155   XBT_DEBUG("VariableType %s(%s), child of %s(%s)", ret->name, ret->id, father->name, father->id);
156   LogVariableTypeDefinition (ret);
157   return ret;
158 }
159
160 type_t PJ_type_link_new (const char *name, type_t father, type_t source, type_t dest)
161 {
162   if (name == nullptr){
163     THROWF (tracing_error, 0, "can't create a link type with a nullptr name");
164   }
165
166   type_t ret = nullptr;
167
168   char key[INSTR_DEFAULT_STR_SIZE];
169   snprintf (key, INSTR_DEFAULT_STR_SIZE, "%s-%s-%s", name, source->id, dest->id);
170   ret = newType (name, key, nullptr, TYPE_LINK, father);
171   XBT_DEBUG("LinkType %s(%s), child of %s(%s)  %s(%s)->%s(%s)", ret->name, ret->id, father->name, father->id,
172             source->name, source->id, dest->name, dest->id);
173   LogLinkTypeDefinition(ret, source, dest);
174   return ret;
175 }
176
177 type_t PJ_type_state_new (const char *name, type_t father)
178 {
179   if (name == nullptr){
180     THROWF (tracing_error, 0, "can't create a state type with a nullptr name");
181   }
182
183   type_t ret = nullptr;
184
185   ret = newType (name, name, nullptr, TYPE_STATE, father);
186   XBT_DEBUG("StateType %s(%s), child of %s(%s)", ret->name, ret->id, father->name, father->id);
187   LogStateTypeDefinition(ret);
188   return ret;
189 }