Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
[trace] register of node and edge types that were defined during tracing
[simgrid.git] / src / instr / instr_paje.c
1 /* Copyright (c) 2010. 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 "instr/instr_private.h"
8
9 #ifdef HAVE_TRACING
10
11 XBT_LOG_NEW_DEFAULT_SUBCATEGORY (instr_paje, instr, "Paje tracing event system (data structures)");
12
13 static type_t rootType = NULL;              /* the root type */
14 static container_t rootContainer = NULL;    /* the root container */
15 static xbt_dict_t allContainers = NULL;     /* all created containers indexed by name */
16 xbt_dict_t trivaNodeTypes = NULL;     /* all link types defined */
17 xbt_dict_t trivaEdgeTypes = NULL;     /* all host types defined */
18
19 void instr_paje_init (container_t root)
20 {
21   allContainers = xbt_dict_new ();
22   trivaNodeTypes = xbt_dict_new ();
23   trivaEdgeTypes = xbt_dict_new ();
24   rootContainer = root;
25 }
26
27 static long long int newTypeId ()
28 {
29   static long long int counter = 0;
30   return counter++;
31 }
32
33 static type_t newType (const char *typename, const char *key, e_entity_types kind, type_t father)
34 {
35   type_t ret = xbt_new0(s_type_t, 1);
36   ret->name = xbt_strdup (typename);
37   ret->father = father;
38   ret->kind = kind;
39   ret->children = xbt_dict_new ();
40
41   long long int id = newTypeId();
42   char str_id[INSTR_DEFAULT_STR_SIZE];
43   snprintf (str_id, INSTR_DEFAULT_STR_SIZE, "%lld", id);
44   ret->id = xbt_strdup (str_id);
45
46   if (father != NULL){
47     xbt_dict_set (father->children, key, ret, NULL);
48   }
49   return ret;
50 }
51
52 type_t getRootType ()
53 {
54   return rootType;
55 }
56
57 type_t getContainerType (const char *typename, type_t father)
58 {
59   type_t ret;
60   if (father == NULL){
61     ret = newType (typename, typename, TYPE_CONTAINER, father);
62     if (father) pajeDefineContainerType(ret->id, ret->father->id, ret->name);
63     rootType = ret;
64   }else{
65     //check if my father type already has my typename
66     ret = (type_t)xbt_dict_get_or_null (father->children, typename);
67     if (ret == NULL){
68       ret = newType (typename, typename, TYPE_CONTAINER, father);
69       pajeDefineContainerType(ret->id, ret->father->id, ret->name);
70     }
71   }
72   return ret;
73 }
74
75 type_t getEventType (const char *typename, const char *color, type_t father)
76 {
77   type_t ret = xbt_dict_get_or_null (father->children, typename);
78   if (ret == NULL){
79     ret = newType (typename, typename, TYPE_EVENT, father);
80     //INFO4("EventType %s(%s), child of %s(%s)", ret->name, ret->id, father->name, father->id);
81     if (color){
82       pajeDefineEventTypeWithColor (ret->id, ret->father->id, ret->name, color);
83     }else{
84       pajeDefineEventType(ret->id, ret->father->id, ret->name);
85     }
86   }
87   return ret;
88 }
89
90 type_t getVariableType (const char *typename, const char *color, type_t father)
91 {
92   type_t ret = xbt_dict_get_or_null (father->children, typename);
93   if (ret == NULL){
94     ret = newType (typename, typename, TYPE_VARIABLE, father);
95     //INFO4("VariableType %s(%s), child of %s(%s)", ret->name, ret->id, father->name, father->id);
96     if (color){
97       pajeDefineVariableTypeWithColor(ret->id, ret->father->id, ret->name, color);
98     }else{
99       pajeDefineVariableType(ret->id, ret->father->id, ret->name);
100     }
101   }
102   return ret;
103 }
104
105 char *getVariableTypeIdByName (const char *name, type_t father)
106 {
107   xbt_dict_cursor_t cursor = NULL;
108   type_t type;
109   char *key;
110   xbt_dict_foreach(father->children, cursor, key, type) {
111     if (strcmp (name, type->name) == 0) return type->id;
112   }
113   return NULL;
114 }
115
116 type_t getLinkType (const char *typename, type_t father, type_t source, type_t dest)
117 {
118   char key[INSTR_DEFAULT_STR_SIZE];
119   snprintf (key, INSTR_DEFAULT_STR_SIZE, "%s-%s-%s", typename, source->id, dest->id);
120   type_t ret = xbt_dict_get_or_null (father->children, key);
121   if (ret == NULL){
122     ret = newType (typename, key, TYPE_LINK, father);
123     //INFO8("LinkType %s(%s), child of %s(%s)  %s(%s)->%s(%s)", ret->name, ret->id, father->name, father->id, source->name, source->id, dest->name, dest->id);
124     pajeDefineLinkType(ret->id, ret->father->id, source->id, dest->id, ret->name);
125   }
126   return ret;
127 }
128
129 type_t getStateType (const char *typename, type_t father)
130 {
131   type_t ret = xbt_dict_get_or_null (father->children, typename);
132   if (ret == NULL){
133     ret = newType (typename, typename, TYPE_STATE, father);
134     //INFO4("StateType %s(%s), child of %s(%s)", ret->name, ret->id, father->name, father->id);
135     pajeDefineStateType(ret->id, ret->father->id, ret->name);
136   }
137   return ret;
138 }
139
140
141 static long long int newContainedId ()
142 {
143   static long long counter = 0;
144   return counter++;
145 }
146
147 container_t newContainer (const char *name, e_container_types kind, container_t father)
148 {
149   long long int counter = newContainedId();
150   char id_str[INSTR_DEFAULT_STR_SIZE];
151   snprintf (id_str, INSTR_DEFAULT_STR_SIZE, "%lld", counter);
152
153   container_t new = xbt_new0(s_container_t, 1);
154   new->name = xbt_strdup (name); // name of the container
155   new->id = xbt_strdup (id_str); // id (or alias) of the container
156   new->father = father;
157   // level depends on level of father
158   if (new->father){
159     new->level = new->father->level+1;
160   }else{
161     new->level = 0;
162   }
163   // type definition (method depends on kind of this new container)
164   new->kind = kind;
165   if (new->kind == INSTR_AS){
166     //if this container is of an AS, its type name depends on its level
167     char as_typename[INSTR_DEFAULT_STR_SIZE];
168     snprintf (as_typename, INSTR_DEFAULT_STR_SIZE, "L%d", new->level);
169     if (new->father){
170       new->type = getContainerType (as_typename, new->father->type);
171     }else{
172       new->type = getContainerType ("0", NULL);
173     }
174   }else{
175     //otherwise, the name is its kind
176     switch (new->kind){
177       case INSTR_HOST: new->type = getContainerType ("HOST", new->father->type); break;
178       case INSTR_LINK: new->type = getContainerType ("LINK", new->father->type); break;
179       case INSTR_ROUTER: new->type = getContainerType ("ROUTER", new->father->type); break;
180       case INSTR_SMPI: new->type = getContainerType ("MPI", new->father->type); break;
181       case INSTR_MSG_PROCESS: new->type = getContainerType ("MSG_PROCESS", new->father->type); break;
182       case INSTR_MSG_TASK: new->type = getContainerType ("MSG_TASK", new->father->type); break;
183       default: xbt_die ("Congratulations, you have found a bug on newContainer function of instr_routing.c"); break;
184     }
185   }
186   new->children = xbt_dict_new();
187   if (new->father){
188     xbt_dict_set(new->father->children, new->name, new, NULL);
189     pajeCreateContainer (SIMIX_get_clock(), new->id, new->type->id, new->father->id, new->name);
190   }
191
192   //register hosts, routers, links containers
193   if (new->kind == INSTR_HOST || new->kind == INSTR_LINK || new->kind == INSTR_ROUTER) {
194     xbt_dict_set (allContainers, new->name, new, NULL);
195
196     //register NODE types for triva configuration
197     xbt_dict_set (trivaNodeTypes, new->type->name, xbt_strdup("1"), xbt_free);
198   }
199   return new;
200 }
201
202 static container_t recursiveGetContainer (const char *name, container_t root)
203 {
204   if (strcmp (root->name, name) == 0) return root;
205
206   xbt_dict_cursor_t cursor = NULL;
207   container_t child;
208   char *child_name;
209   xbt_dict_foreach(root->children, cursor, child_name, child) {
210     container_t ret = recursiveGetContainer(name, child);
211     if (ret) return ret;
212   }
213   return NULL;
214 }
215
216 container_t getContainer (const char *name)
217 {
218   return recursiveGetContainer(name, rootContainer);
219 }
220
221 container_t getContainerByName (const char *name)
222 {
223   return (container_t)xbt_dict_get (allContainers, name);
224 }
225
226 char *getContainerIdByName (const char *name)
227 {
228   return getContainerByName(name)->id;
229 }
230
231 container_t getRootContainer ()
232 {
233   return rootContainer;
234 }
235
236 static type_t recursiveGetType (const char *name, type_t root)
237 {
238   if (strcmp (root->name, name) == 0) return root;
239
240   xbt_dict_cursor_t cursor = NULL;
241   type_t child;
242   char *child_name;
243   xbt_dict_foreach(root->children, cursor, child_name, child) {
244     type_t ret = recursiveGetType(name, child);
245     if (ret) return ret;
246   }
247   return NULL;
248 }
249
250 type_t getType (const char *name)
251 {
252   return recursiveGetType (name, rootType);
253 }
254
255 void destroyContainer (container_t container)
256 {
257   //remove me from my father
258   if (container->father){
259     xbt_dict_remove(container->father->children, container->name);
260   }
261
262   //trace my destruction
263   pajeDestroyContainer(SIMIX_get_clock(), container->type->id, container->id);
264
265   //free
266   xbt_free (container->name);
267   xbt_free (container->id);
268   xbt_free (container->children);
269   xbt_free (container);
270   container = NULL;
271 }
272
273 static void recursiveDestroyContainer (container_t container)
274 {
275   xbt_dict_cursor_t cursor = NULL;
276   container_t child;
277   char *child_name;
278   xbt_dict_foreach(container->children, cursor, child_name, child) {
279     recursiveDestroyContainer (child);
280   }
281   destroyContainer (container);
282 }
283
284 static void recursiveDestroyType (type_t type)
285 {
286   xbt_dict_cursor_t cursor = NULL;
287   type_t child;
288   char *child_name;
289   xbt_dict_foreach(type->children, cursor, child_name, child) {
290     recursiveDestroyType (child);
291   }
292   xbt_free (type->name);
293   xbt_free (type->id);
294   xbt_free (type->children);
295   xbt_free (type);
296   type = NULL;
297 }
298
299 void destroyAllContainers ()
300 {
301   if (getRootContainer()) recursiveDestroyContainer (getRootContainer());
302   if (getRootType()) recursiveDestroyType (getRootType());
303   rootContainer = NULL;
304   rootType = NULL;
305 }
306
307
308 #endif /* HAVE_TRACING */