Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge branch 'master' of scm.gforge.inria.fr:/gitroot/simgrid/simgrid
[simgrid.git] / src / instr / instr_paje_values.cpp
1 /* Copyright (c) 2012-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 <xbt/ex.hpp>
8
9 #include "src/instr/instr_private.h"
10
11 XBT_LOG_NEW_DEFAULT_SUBCATEGORY (instr_paje_values, instr, "Paje tracing event system (values)");
12
13 val_t PJ_value_new (const char *name, const char *color, type_t father)
14 {
15   if (name == nullptr || father == nullptr){
16     THROWF (tracing_error, 0, "can't create a value with a nullptr name (or a nullptr father)");
17   }
18
19   val_t ret = xbt_new0(s_val_t, 1);
20   ret->name = xbt_strdup (name);
21   ret->father = father;
22   ret->color = xbt_strdup (color);
23
24   char str_id[INSTR_DEFAULT_STR_SIZE];
25   snprintf (str_id, INSTR_DEFAULT_STR_SIZE, "%lld", instr_new_paje_id());
26   ret->id = xbt_strdup (str_id);
27
28   xbt_dict_set (father->values, name, ret, nullptr);
29   XBT_DEBUG("new value %s, child of %s", ret->name, ret->father->name);
30   new_pajeDefineEntityValue(ret);
31   return ret;
32 }
33
34 val_t PJ_value_get_or_new (const char *name, const char *color, type_t father)
35 {
36   val_t ret = 0;
37   try {
38     ret = PJ_value_get(name, father);
39   }
40   catch(xbt_ex& e) {
41     ret = PJ_value_new(name, color, father);
42   }
43   return ret;
44 }
45
46 val_t PJ_value_get (const char *name, type_t father)
47 {
48   if (name == nullptr || father == nullptr){
49     THROWF (tracing_error, 0, "can't get a value with a nullptr name (or a nullptr father)");
50   }
51
52   if (father->kind == TYPE_VARIABLE)
53     THROWF(tracing_error, 0, "variables can't have different values (%s)", father->name);
54   val_t ret = (val_t)xbt_dict_get_or_null (father->values, name);
55   if (ret == nullptr) {
56     THROWF(tracing_error, 2, "value with name (%s) not found in father type (%s)", name, father->name);
57   }
58   return ret;
59 }
60
61 void PJ_value_free (val_t value)
62 {
63   XBT_DEBUG("free value %s, child of %s", value->name, value->father->name);
64   xbt_free(((val_t)value)->name);
65   xbt_free(((val_t)value)->color);
66   xbt_free(((val_t)value)->id);
67   xbt_free(value);
68 }