Logo AND Algorithmique Numérique Distribuée

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