X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/d12de13701e94b8b5e72e48faaea4b9941c9a23f..7eed757b0efb54a58b781ea4a8c963f0b6321b92:/src/instr/instr_paje_types.cpp diff --git a/src/instr/instr_paje_types.cpp b/src/instr/instr_paje_types.cpp index c4fb6cf495..daa0d4eaf7 100644 --- a/src/instr/instr_paje_types.cpp +++ b/src/instr/instr_paje_types.cpp @@ -10,10 +10,6 @@ XBT_LOG_NEW_DEFAULT_SUBCATEGORY (instr_paje_types, instr, "Paje tracing event sy static type_t rootType = nullptr; /* the root type */ -void PJ_type_alloc () -{ -} - void PJ_type_release () { rootType = nullptr; @@ -30,7 +26,7 @@ static type_t newType (const char *typeNameBuff, const char *key, const char *co THROWF(tracing_error, 0, "can't create a new type with name or key equal nullptr"); } - type_t ret = xbt_new0(s_type_t, 1); + type_t ret = xbt_new0(s_type, 1); ret->name = xbt_strdup (typeNameBuff); ret->father = father; ret->kind = kind; @@ -51,11 +47,12 @@ static type_t newType (const char *typeNameBuff, const char *key, const char *co void PJ_type_free (type_t type) { - val_t value; + value* val; char *value_name; xbt_dict_cursor_t cursor = nullptr; - xbt_dict_foreach(type->values, cursor, value_name, value) { - PJ_value_free (value); + xbt_dict_foreach (type->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); @@ -66,7 +63,7 @@ void PJ_type_free (type_t type) type = nullptr; } -static void recursiveDestroyType (type_t type) +void recursiveDestroyType (type_t type) { XBT_DEBUG("recursiveDestroyType %s", type->name); xbt_dict_cursor_t cursor = nullptr; @@ -78,12 +75,6 @@ static void recursiveDestroyType (type_t type) PJ_type_free(type); } -void PJ_type_free_all () -{ - recursiveDestroyType (PJ_type_get_root()); - rootType = nullptr; -} - type_t PJ_type_get (const char *name, type_t father) { type_t ret = PJ_type_get_or_null (name, father); @@ -136,14 +127,14 @@ type_t PJ_type_container_new (const char *name, type_t father) } type_t PJ_type_event_new (const char *name, type_t father) -{ +{ if (name == nullptr){ THROWF (tracing_error, 0, "can't create an event type with a nullptr name"); } type_t ret = newType (name, name, nullptr, TYPE_EVENT, father); XBT_DEBUG("EventType %s(%s), child of %s(%s)", ret->name, ret->id, father->name, father->id); - new DefineEventTypeEvent(ret); + LogDefineEventType(ret); return ret; } @@ -162,7 +153,7 @@ type_t PJ_type_variable_new (const char *name, const char *color, type_t father) ret = newType (name, name, color, TYPE_VARIABLE, father); } XBT_DEBUG("VariableType %s(%s), child of %s(%s)", ret->name, ret->id, father->name, father->id); - new DefineVariableTypeEvent (ret); + LogVariableTypeDefinition (ret); return ret; } @@ -179,7 +170,7 @@ type_t PJ_type_link_new (const char *name, type_t father, type_t source, type_t ret = newType (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); - new DefineLinkTypeEvent(ret, source, dest); + LogLinkTypeDefinition(ret, source, dest); return ret; } @@ -193,6 +184,6 @@ type_t PJ_type_state_new (const char *name, type_t father) ret = newType (name, name, nullptr, TYPE_STATE, father); XBT_DEBUG("StateType %s(%s), child of %s(%s)", ret->name, ret->id, father->name, father->id); - new DefineStateTypeEvent(ret); + LogStateTypeDefinition(ret); return ret; }