X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/9fb274493911c49b0e1e9ef4b19c81adea5ff7c8..8976bfbf1b73e13049d914169c672eabf7b63164:/src/msg/instr_msg_task.cpp diff --git a/src/msg/instr_msg_task.cpp b/src/msg/instr_msg_task.cpp index 1237b184e3..7a146ac018 100644 --- a/src/msg/instr_msg_task.cpp +++ b/src/msg/instr_msg_task.cpp @@ -49,13 +49,10 @@ void TRACE_msg_task_execute_start(msg_task_t task) XBT_DEBUG("EXEC,in %p, %lld, %s", task, task->counter, task->category); if (TRACE_msg_process_is_enabled()){ - int len = INSTR_DEFAULT_STR_SIZE; - char str[INSTR_DEFAULT_STR_SIZE]; - - container_t process_container = simgrid::instr::Container::byName(instr_process_id(MSG_process_self(), str, len)); - simgrid::instr::Type* type = process_container->type_->byName("MSG_PROCESS_STATE"); - simgrid::instr::Value* val = simgrid::instr::Value::byName("task_execute", type); - new simgrid::instr::PushStateEvent(MSG_get_clock(), process_container, type, val); + container_t process_container = simgrid::instr::Container::byName(instr_process_id(MSG_process_self())); + simgrid::instr::StateType* state = + static_cast(process_container->type_->byName("MSG_PROCESS_STATE")); + state->pushEvent(MSG_get_clock(), process_container, "task_execute"); } } @@ -64,12 +61,10 @@ void TRACE_msg_task_execute_end(msg_task_t task) XBT_DEBUG("EXEC,out %p, %lld, %s", task, task->counter, task->category); if (TRACE_msg_process_is_enabled()){ - int len = INSTR_DEFAULT_STR_SIZE; - char str[INSTR_DEFAULT_STR_SIZE]; - - container_t process_container = simgrid::instr::Container::byName(instr_process_id(MSG_process_self(), str, len)); - simgrid::instr::Type* type = process_container->type_->byName("MSG_PROCESS_STATE"); - new simgrid::instr::PopStateEvent(MSG_get_clock(), process_container, type); + container_t process_container = simgrid::instr::Container::byName(instr_process_id(MSG_process_self())); + simgrid::instr::StateType* state = + static_cast(process_container->type_->byName("MSG_PROCESS_STATE")); + state->popEvent(MSG_get_clock(), process_container); } } @@ -89,13 +84,10 @@ void TRACE_msg_task_get_start() XBT_DEBUG("GET,in"); if (TRACE_msg_process_is_enabled()){ - int len = INSTR_DEFAULT_STR_SIZE; - char str[INSTR_DEFAULT_STR_SIZE]; - - container_t process_container = simgrid::instr::Container::byName(instr_process_id(MSG_process_self(), str, len)); - simgrid::instr::Type* type = process_container->type_->byName("MSG_PROCESS_STATE"); - simgrid::instr::Value* val = simgrid::instr::Value::byName("receive", type); - new simgrid::instr::PushStateEvent(MSG_get_clock(), process_container, type, val); + container_t process_container = simgrid::instr::Container::byName(instr_process_id(MSG_process_self())); + simgrid::instr::StateType* state = + static_cast(process_container->type_->byName("MSG_PROCESS_STATE")); + state->pushEvent(MSG_get_clock(), process_container, "receive"); } } @@ -104,17 +96,15 @@ void TRACE_msg_task_get_end(double start_time, msg_task_t task) XBT_DEBUG("GET,out %p, %lld, %s", task, task->counter, task->category); if (TRACE_msg_process_is_enabled()){ - int len = INSTR_DEFAULT_STR_SIZE; - char str[INSTR_DEFAULT_STR_SIZE]; - - container_t process_container = simgrid::instr::Container::byName(instr_process_id(MSG_process_self(), str, len)); - simgrid::instr::Type* type = process_container->type_->byName("MSG_PROCESS_STATE"); - new simgrid::instr::PopStateEvent(MSG_get_clock(), process_container, type); - - char key[INSTR_DEFAULT_STR_SIZE]; - snprintf (key, INSTR_DEFAULT_STR_SIZE, "p%lld", task->counter); - type = PJ_type_get_root()->byName("MSG_PROCESS_TASK_LINK"); - new simgrid::instr::EndLinkEvent(MSG_get_clock(), PJ_container_get_root(), type, process_container, "SR", key); + container_t process_container = simgrid::instr::Container::byName(instr_process_id(MSG_process_self())); + simgrid::instr::StateType* state = + static_cast(process_container->type_->byName("MSG_PROCESS_STATE")); + state->popEvent(MSG_get_clock(), process_container); + + std::string key = std::string("p") + std::to_string(task->counter); + simgrid::instr::LinkType* link = + static_cast(simgrid::instr::Type::getRootType()->byName("MSG_PROCESS_TASK_LINK")); + link->endEvent(MSG_get_clock(), simgrid::instr::Container::getRootContainer(), process_container, "SR", key); } } @@ -124,18 +114,15 @@ int TRACE_msg_task_put_start(msg_task_t task) XBT_DEBUG("PUT,in %p, %lld, %s", task, task->counter, task->category); if (TRACE_msg_process_is_enabled()){ - int len = INSTR_DEFAULT_STR_SIZE; - char str[INSTR_DEFAULT_STR_SIZE]; - - container_t process_container = simgrid::instr::Container::byName(instr_process_id(MSG_process_self(), str, len)); - simgrid::instr::Type* type = process_container->type_->byName("MSG_PROCESS_STATE"); - simgrid::instr::Value* val = simgrid::instr::Value::byName("send", type); - new simgrid::instr::PushStateEvent(MSG_get_clock(), process_container, type, val); - - char key[INSTR_DEFAULT_STR_SIZE]; - snprintf (key, INSTR_DEFAULT_STR_SIZE, "p%lld", task->counter); - type = PJ_type_get_root()->byName("MSG_PROCESS_TASK_LINK"); - new simgrid::instr::StartLinkEvent(MSG_get_clock(), PJ_container_get_root(), type, process_container, "SR", key); + container_t process_container = simgrid::instr::Container::byName(instr_process_id(MSG_process_self())); + simgrid::instr::StateType* state = + static_cast(process_container->type_->byName("MSG_PROCESS_STATE")); + state->pushEvent(MSG_get_clock(), process_container, "send"); + + std::string key = std::string("p") + std::to_string(task->counter); + simgrid::instr::LinkType* link = + static_cast(simgrid::instr::Type::getRootType()->byName("MSG_PROCESS_TASK_LINK")); + link->startEvent(MSG_get_clock(), simgrid::instr::Container::getRootContainer(), process_container, "SR", key); } return 1; @@ -146,11 +133,9 @@ void TRACE_msg_task_put_end() XBT_DEBUG("PUT,out"); if (TRACE_msg_process_is_enabled()){ - int len = INSTR_DEFAULT_STR_SIZE; - char str[INSTR_DEFAULT_STR_SIZE]; - - container_t process_container = simgrid::instr::Container::byName(instr_process_id(MSG_process_self(), str, len)); - simgrid::instr::Type* type = process_container->type_->byName("MSG_PROCESS_STATE"); - new simgrid::instr::PopStateEvent(MSG_get_clock(), process_container, type); + container_t process_container = simgrid::instr::Container::byName(instr_process_id(MSG_process_self())); + simgrid::instr::StateType* state = + static_cast(process_container->type_->byName("MSG_PROCESS_STATE")); + state->popEvent(MSG_get_clock(), process_container); } }