X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/b35b83061342281d4bfb1ef0b3e738dbcd0bee15..26de68319e3690dfd6537d61fd9b7dbb536ce140:/src/instr/instr_paje_types.cpp diff --git a/src/instr/instr_paje_types.cpp b/src/instr/instr_paje_types.cpp index 3bf10618fb..e8b59fa77a 100644 --- a/src/instr/instr_paje_types.cpp +++ b/src/instr/instr_paje_types.cpp @@ -8,95 +8,76 @@ XBT_LOG_NEW_DEFAULT_SUBCATEGORY (instr_paje_types, instr, "Paje tracing event system (types)"); -static Type* rootType = nullptr; /* the root type */ +static simgrid::instr::Type* rootType = nullptr; /* the root type */ -void PJ_type_release () -{ - rootType = nullptr; -} - -type_t PJ_type_get_root () +simgrid::instr::Type* PJ_type_get_root() { return rootType; } -Type::Type (const char *typeNameBuff, const char *key, const char *color, e_entity_types kind, Type* father) +simgrid::instr::Type::Type(const char* typeNameBuff, const char* key, const char* color, e_entity_types kind, + Type* father) + : kind_(kind), father_(father) { if (typeNameBuff == nullptr || key == nullptr){ THROWF(tracing_error, 0, "can't create a new type with name or key equal nullptr"); } - this->name = xbt_strdup (typeNameBuff); - this->father = father; - this->kind = kind; - this->children = xbt_dict_new_homogeneous(nullptr); - this->values = xbt_dict_new_homogeneous(nullptr); - this->color = xbt_strdup (color); + this->name_ = xbt_strdup(typeNameBuff); + this->children_ = xbt_dict_new_homogeneous(nullptr); + this->values_ = xbt_dict_new_homogeneous(nullptr); + this->color_ = xbt_strdup(color); - char str_id[INSTR_DEFAULT_STR_SIZE]; - snprintf (str_id, INSTR_DEFAULT_STR_SIZE, "%lld", instr_new_paje_id()); - this->id = xbt_strdup (str_id); + this->id_ = bprintf("%lld", instr_new_paje_id()); if (father != nullptr){ - xbt_dict_set (father->children, key, this, nullptr); - XBT_DEBUG("new type %s, child of %s", typeNameBuff, father->name); + xbt_dict_set(father->children_, key, this, nullptr); + XBT_DEBUG("new type %s, child of %s", typeNameBuff, father->name_); } } -void PJ_type_free (type_t type) +simgrid::instr::Type::~Type() { - value* val; + simgrid::instr::Value* val; char *value_name; xbt_dict_cursor_t cursor = nullptr; - xbt_dict_foreach (type->values, cursor, value_name, val) { - XBT_DEBUG("free value %s, child of %s", val->name, val->father->name); - xbt_free(val); + xbt_dict_foreach (values_, cursor, value_name, val) { + XBT_DEBUG("free value %s, child of %s", val->name_, val->father_->name_); + delete val; } - xbt_dict_free (&type->values); - xbt_free (type->name); - xbt_free (type->id); - xbt_free (type->color); - xbt_dict_free (&type->children); - xbt_free (type); - type = nullptr; -} - -void recursiveDestroyType (type_t type) -{ - XBT_DEBUG("recursiveDestroyType %s", type->name); - xbt_dict_cursor_t cursor = nullptr; - Type* child; + xbt_dict_free(&values_); + simgrid::instr::Type* child; char *child_name; - xbt_dict_foreach(type->children, cursor, child_name, child) { - recursiveDestroyType (child); + xbt_dict_foreach (children_, cursor, child_name, child) { + delete child; } - PJ_type_free(type); + xbt_dict_free(&children_); + xbt_free(name_); + xbt_free(id_); + xbt_free(color_); } -type_t PJ_type_get (const char *name, Type* father) +simgrid::instr::Type* simgrid::instr::Type::getChild(const char* name) { - Type* ret = Type::getOrNull (name, father); - if (ret == nullptr){ - THROWF (tracing_error, 2, "type with name (%s) not found in father type (%s)", name, father->name); - } + simgrid::instr::Type* ret = this->getChildOrNull(name); + if (ret == nullptr) + THROWF(tracing_error, 2, "type with name (%s) not found in father type (%s)", name, this->name_); return ret; } -type_t Type::getOrNull (const char *name, Type* father) +simgrid::instr::Type* simgrid::instr::Type::getChildOrNull(const char* name) { - if (name == nullptr || father == nullptr){ - THROWF (tracing_error, 0, "can't get type with a nullptr name or from a nullptr father"); - } + xbt_assert(name != nullptr, "can't get type with a nullptr name"); - Type* ret = nullptr; - Type* child; + simgrid::instr::Type* ret = nullptr; + simgrid::instr::Type* child; char *child_name; xbt_dict_cursor_t cursor = nullptr; - xbt_dict_foreach(father->children, cursor, child_name, child) { - if (strcmp (child->name, name) == 0){ - if (ret != nullptr){ + xbt_dict_foreach (children_, cursor, child_name, child) { + if (strcmp(child->name_, name) == 0) { + if (ret != nullptr) { THROWF (tracing_error, 0, "there are two children types with the same name?"); - }else{ + } else { ret = child; } } @@ -104,35 +85,36 @@ type_t Type::getOrNull (const char *name, Type* father) return ret; } -type_t Type::containerNew (const char *name, Type* father) +simgrid::instr::Type* simgrid::instr::Type::containerNew(const char* name, simgrid::instr::Type* father) { if (name == nullptr){ THROWF (tracing_error, 0, "can't create a container type with a nullptr name"); } - Type* ret = new Type (name, name, nullptr, TYPE_CONTAINER, father); + simgrid::instr::Type* ret = new simgrid::instr::Type(name, name, nullptr, TYPE_CONTAINER, father); if (father == nullptr) { rootType = ret; } else { - XBT_DEBUG("ContainerType %s(%s), child of %s(%s)", ret->name, ret->id, father->name, father->id); - DefineContainerEvent(ret); + XBT_DEBUG("ContainerType %s(%s), child of %s(%s)", ret->name_, ret->id_, father->name_, father->id_); + LogContainerTypeDefinition(ret); } return ret; } -type_t Type::eventNew (const char *name, Type* father) +simgrid::instr::Type* simgrid::instr::Type::eventNew(const char* name, simgrid::instr::Type* father) { if (name == nullptr){ THROWF (tracing_error, 0, "can't create an event type with a nullptr name"); } Type* ret = new Type (name, name, nullptr, TYPE_EVENT, father); - XBT_DEBUG("EventType %s(%s), child of %s(%s)", ret->name, ret->id, father->name, father->id); + XBT_DEBUG("EventType %s(%s), child of %s(%s)", ret->name_, ret->id_, father->name_, father->id_); LogDefineEventType(ret); return ret; } -type_t Type::variableNew (const char *name, const char *color, Type* father) +simgrid::instr::Type* simgrid::instr::Type::variableNew(const char* name, const char* color, + simgrid::instr::Type* father) { if (name == nullptr){ THROWF (tracing_error, 0, "can't create a variable type with a nullptr name"); @@ -146,38 +128,34 @@ type_t Type::variableNew (const char *name, const char *color, Type* father) }else{ ret = new Type (name, name, color, TYPE_VARIABLE, father); } - XBT_DEBUG("VariableType %s(%s), child of %s(%s)", ret->name, ret->id, father->name, father->id); + XBT_DEBUG("VariableType %s(%s), child of %s(%s)", ret->name_, ret->id_, father->name_, father->id_); LogVariableTypeDefinition (ret); return ret; } -type_t Type::linkNew (const char *name, Type* father, Type* source, Type* dest) +simgrid::instr::Type* simgrid::instr::Type::linkNew(const char* name, Type* father, Type* source, Type* dest) { if (name == nullptr){ THROWF (tracing_error, 0, "can't create a link type with a nullptr name"); } - Type* ret = nullptr; - char key[INSTR_DEFAULT_STR_SIZE]; - snprintf (key, INSTR_DEFAULT_STR_SIZE, "%s-%s-%s", name, source->id, dest->id); - ret = new Type (name, key, nullptr, TYPE_LINK, father); - XBT_DEBUG("LinkType %s(%s), child of %s(%s) %s(%s)->%s(%s)", ret->name, ret->id, father->name, father->id, - source->name, source->id, dest->name, dest->id); + snprintf(key, INSTR_DEFAULT_STR_SIZE, "%s-%s-%s", name, source->id_, dest->id_); + Type* ret = new Type(name, key, nullptr, TYPE_LINK, father); + XBT_DEBUG("LinkType %s(%s), child of %s(%s) %s(%s)->%s(%s)", ret->name_, ret->id_, father->name_, father->id_, + source->name_, source->id_, dest->name_, dest->id_); LogLinkTypeDefinition(ret, source, dest); return ret; } -type_t Type::stateNew (const char *name, Type* father) +simgrid::instr::Type* simgrid::instr::Type::stateNew(const char* name, Type* father) { if (name == nullptr){ THROWF (tracing_error, 0, "can't create a state type with a nullptr name"); } - Type* ret = nullptr; - - ret = new Type (name, name, nullptr, TYPE_STATE, father); - XBT_DEBUG("StateType %s(%s), child of %s(%s)", ret->name, ret->id, father->name, father->id); + Type* ret = new Type(name, name, nullptr, TYPE_STATE, father); + XBT_DEBUG("StateType %s(%s), child of %s(%s)", ret->name_, ret->id_, father->name_, father->id_); LogStateTypeDefinition(ret); return ret; }