Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
a31dcd186330f442566053dd0014e0f360892085
[simgrid.git] / src / instr / instr_paje_values.cpp
1 /* Copyright (c) 2012-2017. 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.hpp"
10
11 XBT_LOG_NEW_DEFAULT_SUBCATEGORY (instr_paje_values, instr, "Paje tracing event system (values)");
12
13 simgrid::instr::Value::Value(std::string name, std::string color, simgrid::instr::Type* father)
14     : name_(name), color_(color), father_(father)
15 {
16   if (name.empty() || father == nullptr) {
17     THROWF(tracing_error, 0, "can't create a value with no name (or a nullptr father)");
18   }
19   this->id_    = std::to_string(instr_new_paje_id());
20
21   xbt_dict_set(father->values_, name.c_str(), this, nullptr);
22   XBT_DEBUG("new value %s, child of %s", name_.c_str(), father_->name_);
23   print();
24 };
25
26 simgrid::instr::Value* simgrid::instr::Value::byNameOrCreate(std::string name, std::string color,
27                                                              simgrid::instr::Type* father)
28 {
29   Value* ret = 0;
30   try {
31     ret = Value::byName(name, father);
32   }
33   catch(xbt_ex& e) {
34     ret = new Value(name, color, father);
35   }
36   return ret;
37 }
38
39 simgrid::instr::Value* simgrid::instr::Value::byName(std::string name, Type* father)
40 {
41   if (name.empty() || father == nullptr) {
42     THROWF(tracing_error, 0, "can't get a value with no name (or a nullptr father)");
43   }
44
45   if (father->kind_ == TYPE_VARIABLE)
46     THROWF(tracing_error, 0, "variables can't have different values (%s)", father->name_);
47   Value* ret = (Value*)xbt_dict_get_or_null(father->values_, name.c_str());
48   if (ret == nullptr) {
49     THROWF(tracing_error, 2, "value with name (%s) not found in father type (%s)", name.c_str(), father->name_);
50   }
51   return ret;
52 }