1 /* Copyright (c) 2012. 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. */
6 #include "instr/instr_private.h"
10 XBT_LOG_NEW_DEFAULT_SUBCATEGORY (instr_paje_values, instr, "Paje tracing event system (values)");
12 val_t PJ_value_new (const char *name, const char *color, type_t father)
14 val_t ret = xbt_new0(s_val_t, 1);
15 ret->name = xbt_strdup (name);
17 ret->color = xbt_strdup (color);
19 char str_id[INSTR_DEFAULT_STR_SIZE];
20 snprintf (str_id, INSTR_DEFAULT_STR_SIZE, "%lld", instr_new_paje_id());
21 ret->id = xbt_strdup (str_id);
23 xbt_dict_set (father->values, name, ret, NULL);
24 XBT_DEBUG("new value %s, child of %s", ret->name, ret->father->name);
25 new_pajeDefineEntityValue(ret);
29 val_t PJ_value_get (const char *name, type_t father)
31 if (father->kind == TYPE_VARIABLE) return NULL; //Variables can't have different values
32 val_t ret = (val_t)xbt_dict_get_or_null (father->values, name);
39 void PJ_value_free (val_t value)
41 XBT_DEBUG("free value %s, child of %s", value->name, value->father->name);
42 xbt_free(((val_t)value)->name);
43 xbt_free(((val_t)value)->color);
44 xbt_free(((val_t)value)->id);