Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge pull request #193 from Takishipp/signals
[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_alloc ()
14 {
15 }
16
17 void PJ_type_release ()
18 {
19   rootType = nullptr;
20 }
21
22
23 type_t PJ_type_get_root ()
24 {
25   return rootType;
26 }
27
28 static type_t newType (const char *typeNameBuff, const char *key, const char *color, e_entity_types kind, type_t father)
29 {
30   if (typeNameBuff == nullptr || key == nullptr){
31     THROWF(tracing_error, 0, "can't create a new type with name or key equal nullptr");
32   }
33
34   type_t ret = xbt_new0(s_type_t, 1);
35   ret->name = xbt_strdup (typeNameBuff);
36   ret->father = father;
37   ret->kind = kind;
38   ret->children = xbt_dict_new_homogeneous(nullptr);
39   ret->values = xbt_dict_new_homogeneous(nullptr);
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 != nullptr){
47     xbt_dict_set (father->children, key, ret, nullptr);
48     XBT_DEBUG("new type %s, child of %s", typeNameBuff, 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 = nullptr;
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 = nullptr;
68 }
69
70 static void recursiveDestroyType (type_t type)
71 {
72   XBT_DEBUG("recursiveDestroyType %s", type->name);
73   xbt_dict_cursor_t cursor = nullptr;
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 ()
83 {
84   recursiveDestroyType (PJ_type_get_root());
85   rootType = nullptr;
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 == nullptr){
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 == nullptr || father == nullptr){
100     THROWF (tracing_error, 0, "can't get type with a nullptr name or from a nullptr father");
101   }
102
103   type_t ret = nullptr;
104   type_t child;
105   char *child_name;
106   xbt_dict_cursor_t cursor = nullptr;
107   xbt_dict_foreach(father->children, cursor, child_name, child) {
108     if (strcmp (child->name, name) == 0){
109       if (ret != nullptr){
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 == nullptr){
122     THROWF (tracing_error, 0, "can't create a container type with a nullptr name");
123   }
124
125   type_t ret = nullptr;
126
127   ret = newType (name, name, nullptr, TYPE_CONTAINER, father);
128   if (father == nullptr){
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     DefineContainerEvent(ret);
135   }
136   return ret;
137 }
138
139 type_t PJ_type_event_new (const char *name, type_t father)
140 {
141   if (name == nullptr){
142     THROWF (tracing_error, 0, "can't create an event type with a nullptr name");
143   }
144
145   type_t ret = newType (name, name, nullptr, TYPE_EVENT, father);
146   XBT_DEBUG("EventType %s(%s), child of %s(%s)", ret->name, ret->id, father->name, father->id);
147   LogDefineEventType(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 == nullptr){
154     THROWF (tracing_error, 0, "can't create a variable type with a nullptr name");
155   }
156
157   type_t ret = nullptr;
158
159   char white[INSTR_DEFAULT_STR_SIZE] = "1 1 1";
160   if (not 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   LogVariableTypeDefinition (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 == nullptr){
173     THROWF (tracing_error, 0, "can't create a link type with a nullptr name");
174   }
175
176   type_t ret = nullptr;
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, nullptr, 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,
182             source->name, source->id, dest->name, dest->id);
183   LogLinkTypeDefinition(ret, source, dest);
184   return ret;
185 }
186
187 type_t PJ_type_state_new (const char *name, type_t father)
188 {
189   if (name == nullptr){
190     THROWF (tracing_error, 0, "can't create a state type with a nullptr name");
191   }
192
193   type_t ret = nullptr;
194
195   ret = newType (name, name, nullptr, TYPE_STATE, father);
196   XBT_DEBUG("StateType %s(%s), child of %s(%s)", ret->name, ret->id, father->name, father->id);
197   LogStateTypeDefinition(ret);
198   return ret;
199 }