Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
kill another dict in instr
[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   father->values_.insert({name, this});
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   } catch (xbt_ex& e) {
33     ret = new Value(name, color, father);
34   }
35   return ret;
36 }
37
38 simgrid::instr::Value* simgrid::instr::Value::byName(std::string name, Type* father)
39 {
40   if (name.empty() || father == nullptr) {
41     THROWF(tracing_error, 0, "can't get a value with no name (or a nullptr father)");
42   }
43
44   if (father->kind_ == TYPE_VARIABLE)
45     THROWF(tracing_error, 0, "variables can't have different values (%s)", father->name_);
46   auto ret = father->values_.find(name);
47   if (ret == father->values_.end()) {
48     THROWF(tracing_error, 2, "value with name (%s) not found in father type (%s)", name.c_str(), father->name_);
49   }
50   return ret->second;
51 }