X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/641a50f24d1b73046f9f600493cc14bdccf2de03..1bf033cc925aa31693ef5163ea056fde5b75ff1e:/src/msg/instr_msg_task.cpp diff --git a/src/msg/instr_msg_task.cpp b/src/msg/instr_msg_task.cpp index 4eb14d30fa..e4551189b7 100644 --- a/src/msg/instr_msg_task.cpp +++ b/src/msg/instr_msg_task.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2010, 2012-2017. The SimGrid Team. +/* Copyright (c) 2010-2018. The SimGrid Team. * All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it @@ -48,29 +48,18 @@ 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); - } + if (TRACE_actor_is_enabled()) + simgrid::instr::Container::by_name(instr_pid(MSG_process_self())) + ->get_state("ACTOR_STATE") + ->push_event("task_execute"); } 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); - } + if (TRACE_actor_is_enabled()) + simgrid::instr::Container::by_name(instr_pid(MSG_process_self()))->get_state("ACTOR_STATE")->pop_event(); } /* MSG_task_destroy related functions */ @@ -88,69 +77,41 @@ 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); - } + if (TRACE_actor_is_enabled()) + simgrid::instr::Container::by_name(instr_pid(MSG_process_self()))->get_state("ACTOR_STATE")->push_event("receive"); } -void TRACE_msg_task_get_end(double start_time, msg_task_t task) +void TRACE_msg_task_get_end(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]; + if (TRACE_actor_is_enabled()) { + container_t process_container = simgrid::instr::Container::by_name(instr_pid(MSG_process_self())); + process_container->get_state("ACTOR_STATE")->pop_event(); - 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 = simgrid::instr::Type::getRootType()->byName("MSG_PROCESS_TASK_LINK"); - new simgrid::instr::EndLinkEvent(MSG_get_clock(), PJ_container_get_root(), type, process_container, "SR", key); + std::string key = std::string("p") + std::to_string(task->counter); + simgrid::instr::Container::get_root()->get_link("ACTOR_TASK_LINK")->end_event(process_container, "SR", key); } } /* MSG_task_put related functions */ -int TRACE_msg_task_put_start(msg_task_t task) +void 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); + if (TRACE_actor_is_enabled()) { + container_t process_container = simgrid::instr::Container::by_name(instr_pid(MSG_process_self())); + process_container->get_state("ACTOR_STATE")->push_event("send"); - char key[INSTR_DEFAULT_STR_SIZE]; - snprintf (key, INSTR_DEFAULT_STR_SIZE, "p%lld", task->counter); - type = simgrid::instr::Type::getRootType()->byName("MSG_PROCESS_TASK_LINK"); - new simgrid::instr::StartLinkEvent(MSG_get_clock(), PJ_container_get_root(), type, process_container, "SR", key); + std::string key = std::string("p") + std::to_string(task->counter); + simgrid::instr::Container::get_root()->get_link("ACTOR_TASK_LINK")->start_event(process_container, "SR", key); } - - return 1; } 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); - } + if (TRACE_actor_is_enabled()) + simgrid::instr::Container::by_name(instr_pid(MSG_process_self()))->get_state("ACTOR_STATE")->pop_event(); }