Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge branch 'master' of git+ssh://scm.gforge.inria.fr//gitroot/simgrid/simgrid
[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 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     xbt_free(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 = newType(name, name, nullptr, TYPE_CONTAINER, father);
116   if (father == nullptr) {
117     rootType = ret;
118   } else {
119     XBT_DEBUG("ContainerType %s(%s), child of %s(%s)", ret->name, ret->id, father->name, father->id);
120     DefineContainerEvent(ret);
121   }
122   return ret;
123 }
124
125 type_t PJ_type_event_new (const char *name, type_t father)
126 {
127   if (name == nullptr){
128     THROWF (tracing_error, 0, "can't create an event type with a nullptr name");
129   }
130
131   type_t ret = newType (name, name, nullptr, TYPE_EVENT, father);
132   XBT_DEBUG("EventType %s(%s), child of %s(%s)", ret->name, ret->id, father->name, father->id);
133   LogDefineEventType(ret);
134   return ret;
135 }
136
137 type_t PJ_type_variable_new (const char *name, const char *color, type_t father)
138 {
139   if (name == nullptr){
140     THROWF (tracing_error, 0, "can't create a variable type with a nullptr name");
141   }
142
143   type_t ret = nullptr;
144
145   if (not color) {
146     char white[INSTR_DEFAULT_STR_SIZE] = "1 1 1";
147     ret = newType (name, name, white, TYPE_VARIABLE, father);
148   }else{
149     ret = newType (name, name, color, TYPE_VARIABLE, father);
150   }
151   XBT_DEBUG("VariableType %s(%s), child of %s(%s)", ret->name, ret->id, father->name, father->id);
152   LogVariableTypeDefinition (ret);
153   return ret;
154 }
155
156 type_t PJ_type_link_new (const char *name, type_t father, type_t source, type_t dest)
157 {
158   if (name == nullptr){
159     THROWF (tracing_error, 0, "can't create a link type with a nullptr name");
160   }
161
162   type_t ret = nullptr;
163
164   char key[INSTR_DEFAULT_STR_SIZE];
165   snprintf (key, INSTR_DEFAULT_STR_SIZE, "%s-%s-%s", name, source->id, dest->id);
166   ret = newType (name, key, nullptr, TYPE_LINK, father);
167   XBT_DEBUG("LinkType %s(%s), child of %s(%s)  %s(%s)->%s(%s)", ret->name, ret->id, father->name, father->id,
168             source->name, source->id, dest->name, dest->id);
169   LogLinkTypeDefinition(ret, source, dest);
170   return ret;
171 }
172
173 type_t PJ_type_state_new (const char *name, type_t father)
174 {
175   if (name == nullptr){
176     THROWF (tracing_error, 0, "can't create a state type with a nullptr name");
177   }
178
179   type_t ret = nullptr;
180
181   ret = newType (name, name, nullptr, TYPE_STATE, father);
182   XBT_DEBUG("StateType %s(%s), child of %s(%s)", ret->name, ret->id, father->name, father->id);
183   LogStateTypeDefinition(ret);
184   return ret;
185 }