1 /* Copyright (c) 2010. The SimGrid Team.
2 * All rights reserved. */
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. */
7 #include "instr/instr_private.h"
11 XBT_LOG_NEW_DEFAULT_SUBCATEGORY (instr_paje_containers, instr, "Paje tracing event system (containers)");
13 static container_t rootContainer = NULL; /* the root container */
14 static xbt_dict_t allContainers = NULL; /* all created containers indexed by name */
15 xbt_dict_t trivaNodeTypes = NULL; /* all link types defined */
16 xbt_dict_t trivaEdgeTypes = NULL; /* all host types defined */
18 long long int instr_new_paje_id (void)
20 static long long int type_id = 0;
24 void PJ_container_alloc (void)
26 allContainers = xbt_dict_new_homogeneous(NULL);
27 trivaNodeTypes = xbt_dict_new_homogeneous(xbt_free);
28 trivaEdgeTypes = xbt_dict_new_homogeneous(xbt_free);
31 void PJ_container_release (void)
33 xbt_dict_free (&allContainers);
34 xbt_dict_free (&trivaNodeTypes);
35 xbt_dict_free (&trivaEdgeTypes);
38 void PJ_container_set_root (container_t root)
43 container_t PJ_container_new (const char *name, e_container_types kind, container_t father)
46 THROWF (tracing_error, 0, "can't create a container with a NULL name");
49 static long long int container_id = 0;
50 char id_str[INSTR_DEFAULT_STR_SIZE];
51 snprintf (id_str, INSTR_DEFAULT_STR_SIZE, "%lld", container_id++);
53 container_t new = xbt_new0(s_container_t, 1);
54 new->name = xbt_strdup (name); // name of the container
55 new->id = xbt_strdup (id_str); // id (or alias) of the container
57 // level depends on level of father
59 new->level = new->father->level+1;
60 XBT_DEBUG("new container %s, child of %s", name, father->name);
64 // type definition (method depends on kind of this new container)
66 if (new->kind == INSTR_AS){
67 //if this container is of an AS, its type name depends on its level
68 char as_typename[INSTR_DEFAULT_STR_SIZE];
69 snprintf (as_typename, INSTR_DEFAULT_STR_SIZE, "L%d", new->level);
71 new->type = PJ_type_get (as_typename, new->father->type);
72 if (new->type == NULL){
73 new->type = PJ_type_container_new (as_typename, new->father->type);
76 new->type = PJ_type_container_new ("0", NULL);
79 //otherwise, the name is its kind
80 char typename[INSTR_DEFAULT_STR_SIZE];
82 case INSTR_HOST: snprintf (typename, INSTR_DEFAULT_STR_SIZE, "HOST"); break;
83 case INSTR_LINK: snprintf (typename, INSTR_DEFAULT_STR_SIZE, "LINK"); break;
84 case INSTR_ROUTER: snprintf (typename, INSTR_DEFAULT_STR_SIZE, "ROUTER"); break;
85 case INSTR_SMPI: snprintf (typename, INSTR_DEFAULT_STR_SIZE, "MPI"); break;
86 case INSTR_MSG_PROCESS: snprintf (typename, INSTR_DEFAULT_STR_SIZE, "MSG_PROCESS"); break;
87 case INSTR_MSG_TASK: snprintf (typename, INSTR_DEFAULT_STR_SIZE, "MSG_TASK"); break;
88 default: THROWF (tracing_error, 0, "new container kind is unknown."); break;
90 type_t type = PJ_type_get (typename, new->father->type);
92 new->type = PJ_type_container_new (typename, new->father->type);
97 new->children = xbt_dict_new_homogeneous(NULL);
99 xbt_dict_set(new->father->children, new->name, new, NULL);
100 new_pajeCreateContainer (new);
103 //register all kinds by name
104 if (xbt_dict_get_or_null(allContainers, new->name) != NULL){
105 THROWF(tracing_error, 1, "container %s already present in allContainers data structure", new->name);
107 xbt_dict_set (allContainers, new->name, new, NULL);
109 //register NODE types for triva configuration
110 if (new->kind == INSTR_HOST || new->kind == INSTR_LINK || new->kind == INSTR_ROUTER) {
111 xbt_dict_set (trivaNodeTypes, new->type->name, xbt_strdup("1"), NULL);
116 container_t PJ_container_get (const char *name)
118 container_t ret = PJ_container_get_or_null (name);
120 THROWF(tracing_error, 1, "container with name %s not found", name);
125 container_t PJ_container_get_or_null (const char *name)
127 if (name == NULL) return NULL;
128 container_t ret = xbt_dict_get_or_null (allContainers, name);
135 container_t PJ_container_get_root ()
137 return rootContainer;
140 void PJ_container_remove_from_parent (container_t child)
143 THROWF (tracing_error, 0, "can't remove from parent with a NULL child");
146 container_t parent = child->father;
148 XBT_DEBUG("removeChildContainer (%s) FromContainer (%s) ",
151 xbt_dict_remove (parent->children, child->name);
155 void PJ_container_free (container_t container)
157 if (container == NULL){
158 THROWF (tracing_error, 0, "trying to free a NULL container");
160 XBT_DEBUG("destroy container %s", container->name);
162 //obligation to dump previous events because they might
163 //reference the container that is about to be destroyed
164 TRACE_last_timestamp_to_dump = surf_get_clock();
165 TRACE_paje_dump_buffer(1);
167 //trace my destruction
168 if (!TRACE_disable_destroy()){
169 //do not trace the container destruction if user requests
170 new_pajeDestroyContainer(container);
173 //remove it from allContainers data structure
174 xbt_dict_remove (allContainers, container->name);
177 xbt_free (container->name);
178 xbt_free (container->id);
179 xbt_dict_free (&container->children);
180 xbt_free (container);
184 static void recursiveDestroyContainer (container_t container)
186 if (container == NULL){
187 THROWF (tracing_error, 0, "trying to recursively destroy a NULL container");
189 XBT_DEBUG("recursiveDestroyContainer %s", container->name);
190 xbt_dict_cursor_t cursor = NULL;
193 xbt_dict_foreach(container->children, cursor, child_name, child) {
194 recursiveDestroyContainer (child);
196 PJ_container_free (container);
199 void PJ_container_free_all ()
201 container_t root = PJ_container_get_root();
203 THROWF (tracing_error, 0, "trying to free all containers, but root is NULL");
205 recursiveDestroyContainer (root);
206 rootContainer = NULL;
209 if (xbt_dict_length(allContainers) != 0){
210 THROWF(tracing_error, 0, "some containers still present even after destroying all of them");
214 #endif /* HAVE_TRACING */