Logo AND Algorithmique Numérique Distribuée

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