X-Git-Url: https://bilbo.iut-bm.univ-fcomte.fr/and/gitweb/loba.git/blobdiff_plain/f4125505064e3ff346b31ab9e48f894672e5a7a7..c9c9afbd2a24d9e7771636bd391de0c2c0271529:/communicator.cpp diff --git a/communicator.cpp b/communicator.cpp index da5e2b5..649ff80 100644 --- a/communicator.cpp +++ b/communicator.cpp @@ -1,92 +1,226 @@ #include #include +#include +#include #include #include -#include "communicator.h" -#include "simgrid_features.h" -// XBT_LOG_EXTERNAL_DEFAULT_CATEGORY(simu); -XBT_LOG_NEW_DEFAULT_SUBCATEGORY(comm, simu, - "Messages from asynchronous pipes"); +XBT_LOG_EXTERNAL_DEFAULT_CATEGORY(comm); -namespace { +#include "misc.h" +#include "options.h" +#include "simgrid_features.h" +#include "tracing.h" - bool comm_test_n_destroy(msg_comm_t& comm) - { - if (MSG_comm_test(comm)) { - MSG_comm_destroy(comm); - return true; - } else - return false; - } +#include "communicator.h" +std::string message::to_string() +{ + static const char* str[] = { "INFO", "CREDIT", "LOAD", + "CTRL_CLOSE", "DATA_CLOSE" }; + std::ostringstream oss; + oss << str[type] << ": " << amount; + return oss.str(); } communicator::communicator() + : host(static_cast(MSG_host_get_data(MSG_host_self()))) + , mutex(xbt_mutex_init()) + , cond(xbt_cond_init()) + , ctrl_task(NULL) + , ctrl_comm(NULL) + , data_task(NULL) + , data_comm(NULL) { - const char* hostname = MSG_host_get_name(MSG_host_self()); - ctrl_mbox = hostname; - ctrl_mbox += "_ctrl"; - ctrl_task = NULL; - ctrl_comm = MSG_task_irecv(&ctrl_task, get_ctrl_mbox()); - - data_mbox = hostname; - data_mbox += "_data"; - data_task = NULL; - data_comm = MSG_task_irecv(&data_task, get_data_mbox()); + xbt_mutex_acquire(mutex); + receiver_process = + MSG_process_create("receiver", communicator::receiver_wrapper, + this, MSG_host_self()); + xbt_cond_wait(cond, mutex); // wait for the receiver to be ready + xbt_mutex_release(mutex); } communicator::~communicator() { - // fixme: don't know how to free pending communications - // (data_comm, ctrl_comm and sent_comm) + m_task_t task; + + XBT_DEBUG("send finalize to receiver/ctrl"); + task = MSG_task_create("finalize", 0.0, 0, NULL); + MSG_task_send(task, get_ctrl_mbox()); + + XBT_DEBUG("send finalize to receiver/data"); + task = MSG_task_create("finalize", 0.0, 0, NULL); + MSG_task_send(task, get_data_mbox()); - flush_sent(); + xbt_mutex_acquire(mutex); + while (receiver_process) { + XBT_DEBUG("waiting for receiver to terminate"); + xbt_cond_wait(cond, mutex); + } + xbt_mutex_release(mutex); + + if (ctrl_comm) + XBT_WARN("ctrl_comm is pending!"); + if (data_comm) + XBT_WARN("data_comm is pending!"); + if (!received.empty()) + XBT_WARN("lost %zu received message%s!", + received.size(), ESSE(received.size())); if (!sent_comm.empty()) - WARN1("Lost %ld send communications!", (long )sent_comm.size()); + XBT_WARN("lost %zu sent message%s!", + sent_comm.size(), ESSE(sent_comm.size())); + + xbt_cond_destroy(cond); + xbt_mutex_destroy(mutex); } void communicator::send(const char* dest, message* msg) { + XBT_DEBUG("send %s to %s", msg->to_string().c_str(), dest); double msg_size = sizeof *msg; if (msg->get_type() == message::LOAD) - msg_size += msg->get_amount(); + msg_size += opt::comm_cost(msg->get_amount()); m_task_t task = MSG_task_create("message", 0.0, msg_size, msg); - sent_comm.push_back(MSG_task_isend(task, dest)); - flush_sent(); + TRACE_msg_set_task_category(task, + msg->get_type() == message::LOAD ? + TRACE_CAT_DATA : TRACE_CAT_CTRL); + msg_comm_t comm = MSG_task_isend(task, dest); + sent_comm.push_back(comm); +} + +bool communicator::recv(message*& msg, m_host_t& from, double timeout) +{ + if (timeout != 0) { + volatile double deadline = + timeout > 0 ? MSG_get_clock() + timeout : 0.0; + xbt_mutex_acquire(mutex); + while (received.empty() && (!deadline || deadline > MSG_get_clock())) { + xbt_ex_t e; + XBT_DEBUG("waiting for a message to come"); + TRY { + if (deadline) + xbt_cond_timedwait(cond, mutex, deadline - MSG_get_clock()); + else + xbt_cond_wait(cond, mutex); + } + CATCH (e) { + if (e.category != timeout_error) + RETHROW; + xbt_ex_free(e); + } + } + xbt_mutex_release(mutex); + } + + if (received.empty()) + return false; + + m_task_t task = received.front(); + received.pop(); + msg = static_cast(MSG_task_get_data(task)); + from = MSG_task_get_source(task); + MSG_task_destroy(task); + + XBT_DEBUG("received %s from %s", + msg->to_string().c_str(), MSG_host_get_name(from)); + + return true; } -bool communicator::recv(message*& msg, m_host_t& from) +void communicator::flush(bool wait) { - msg = NULL; - - if (comm_test_n_destroy(ctrl_comm)) { - msg = (message* )MSG_task_get_data(ctrl_task); - from = MSG_task_get_source(ctrl_task); - MSG_task_destroy(ctrl_task); - ctrl_task = NULL; - ctrl_comm = MSG_task_irecv(&ctrl_task, get_ctrl_mbox()); - - } else if (comm_test_n_destroy(data_comm)) { - msg = (message* )MSG_task_get_data(data_task); - from = MSG_task_get_source(data_task); - MSG_task_destroy(data_task); - data_task = NULL; - data_comm = MSG_task_irecv(&data_task, get_data_mbox()); + sent_comm.remove_if(comm_test_n_destroy); + if (wait && !sent_comm.empty()) { + msg_comm_t comms[sent_comm.size()]; + std::copy(sent_comm.begin(), sent_comm.end(), comms); + MSG_comm_waitall(comms, sent_comm.size(), -1.0); + if (!MSG_WAIT_DESTROYS_COMMS) + std::for_each(sent_comm.begin(), sent_comm.end(), MSG_comm_destroy); + sent_comm.clear(); } +} - return msg != NULL; +bool communicator::comm_test_n_destroy(msg_comm_t comm) +{ + if (MSG_comm_test(comm)) { + MSG_comm_destroy(comm); + return true; + } else + return false; } -int communicator::send_backlog() +int communicator::receiver_wrapper(int, char* []) { - flush_sent(); - return sent_comm.size(); + communicator* comm; + comm = static_cast(MSG_process_get_data(MSG_process_self())); + int result = comm->receiver(); + + XBT_DEBUG("terminate"); + xbt_mutex_acquire(comm->mutex); + comm->receiver_process = NULL; + xbt_cond_signal(comm->cond); + xbt_mutex_release(comm->mutex); + + return result; } -void communicator::flush_sent() +int communicator::receiver() { - std::remove_if(sent_comm.begin(), sent_comm.end(), comm_test_n_destroy); + ctrl_comm = MSG_task_irecv(&ctrl_task, get_ctrl_mbox()); + data_comm = MSG_task_irecv(&data_task, get_data_mbox()); + XBT_DEBUG("receiver ready"); + xbt_mutex_acquire(mutex); + xbt_cond_signal(cond); // signal master that we are ready + xbt_mutex_release(mutex); + + xbt_dynar_t comms = xbt_dynar_new(sizeof(msg_comm_t), NULL); + while (ctrl_comm || data_comm) { + + if (ctrl_comm) + xbt_dynar_push(comms, &ctrl_comm); + if (data_comm) + xbt_dynar_push(comms, &data_comm); + MSG_comm_waitany(comms); + xbt_dynar_reset(comms); + + if (ctrl_comm && comm_test_n_destroy(ctrl_comm)) { + if (strcmp(MSG_task_get_name(ctrl_task), "finalize")) { + XBT_DEBUG("received message from ctrl"); + xbt_mutex_acquire(mutex); + received.push(ctrl_task); + xbt_mutex_release(mutex); + ctrl_task = NULL; + ctrl_comm = MSG_task_irecv(&ctrl_task, get_ctrl_mbox()); + } else { + XBT_DEBUG("received finalize from ctrl"); + MSG_task_destroy(ctrl_task); + ctrl_task = NULL; + ctrl_comm = NULL; + } + } + + if (data_comm && comm_test_n_destroy(data_comm)) { + if (strcmp(MSG_task_get_name(data_task), "finalize")) { + XBT_DEBUG("received message from data"); + xbt_mutex_acquire(mutex); + received.push(data_task); + xbt_mutex_release(mutex); + data_task = NULL; + data_comm = MSG_task_irecv(&data_task, get_data_mbox()); + } else { + XBT_DEBUG("received finalize from data"); + MSG_task_destroy(data_task); + data_task = NULL; + data_comm = NULL; + } + } + xbt_mutex_acquire(mutex); + if (!received.empty()) + xbt_cond_signal(cond); + xbt_mutex_release(mutex); + } + xbt_dynar_free(&comms); + return 0; } // Local variables: