6 XBT_LOG_EXTERNAL_DEFAULT_CATEGORY(comm);
9 #include "simgrid_features.h"
12 #include "communicator.h"
16 void check_for_lost_messages(size_t size, const char* descr)
19 XBT_WARN("lost %zu %s message%s!", size, descr, ESSE(size));
24 communicator::communicator()
25 : host(static_cast<hostdata*>(MSG_host_get_data(MSG_host_self())))
27 receiver_thread = new_msg_thread("receiver",
28 std::bind(&communicator::receiver, this));
29 receiver_thread->start();
32 communicator::~communicator()
36 XBT_DEBUG("send finalize to receiver/ctrl");
37 task = MSG_task_create("finalize", 0.0, 0, NULL);
38 MSG_task_send(task, host->get_ctrl_mbox());
40 XBT_DEBUG("send finalize to receiver/data");
41 task = MSG_task_create("finalize", 0.0, 0, NULL);
42 MSG_task_send(task, host->get_data_mbox());
44 receiver_thread->wait();
45 delete receiver_thread;
47 check_for_lost_messages(ctrl_received.size(), "received ctrl");
48 check_for_lost_messages(data_received.size(), "received data");
49 check_for_lost_messages(ctrl_sent.size(), "sent ctrl");
50 check_for_lost_messages(data_sent.size(), "sent data");
53 msg_comm_t communicator::real_send(const char* dest, message* msg)
55 XBT_DEBUG("send %s to %s", msg->to_string().c_str(), dest);
56 m_task_t task = MSG_task_create("message", 0.0, msg->get_size(), msg);
57 TRACE_msg_set_task_category(task,
58 msg->get_type() == message::DATA ?
59 TRACE_CAT_DATA : TRACE_CAT_CTRL);
60 return MSG_task_isend(task, dest);
63 void communicator::real_flush(sent_comm_type& sent_comm, bool wait)
65 sent_comm_type::iterator bound =
66 std::remove_if(sent_comm.begin(), sent_comm.end(),
68 sent_comm.erase(bound, sent_comm.end());
69 if (wait && !sent_comm.empty()) {
70 size_t size = sent_comm.size();
71 msg_comm_t* comms = new msg_comm_t[size];
72 std::copy(sent_comm.begin(), sent_comm.end(), comms);
74 MSG_comm_waitall(comms, size, -1.0);
75 std::for_each(comms, comms + size, comm_check_n_destroy);
80 void communicator::receiver()
82 xbt_dynar_t comms = xbt_dynar_new(sizeof(msg_comm_t), NULL);
87 message_queue& received;
89 channel chan[] = { { NULL, NULL, host->get_ctrl_mbox(), ctrl_received },
90 { NULL, NULL, host->get_data_mbox(), data_received } };
91 const int chan_size = (sizeof chan) / (sizeof chan[0]);
93 for (int i = 0 ; i < chan_size ; ++i) {
94 chan[i].comm = MSG_task_irecv(&chan[i].task, chan[i].mbox);
95 xbt_dynar_push(comms, &chan[i].comm);
98 while (!xbt_dynar_is_empty(comms)) {
100 int index = MSG_comm_waitany(comms);
101 msg_comm_t finished_comm = xbt_dynar_get_as(comms, index, msg_comm_t);
104 for (ch = chan ; ch->comm != finished_comm ; ++ch)
107 comm_check_n_destroy(ch->comm);
108 if (strcmp(MSG_task_get_name(ch->task), "finalize")) {
109 XBT_DEBUG("received message on %s", ch->mbox);
110 ch->received.push(ch->task);
112 ch->comm = MSG_task_irecv(&ch->task, ch->mbox);
113 xbt_dynar_set_as(comms, index, msg_comm_t, ch->comm);
115 XBT_DEBUG("received finalize on %s", ch->mbox);
116 MSG_task_destroy(ch->task);
119 xbt_dynar_remove_at(comms, index, NULL);
123 xbt_dynar_free(&comms);
126 void communicator::comm_check_n_destroy(msg_comm_t comm)
128 xbt_assert(MSG_comm_get_status(comm) == MSG_OK);
129 MSG_comm_destroy(comm);
132 bool communicator::comm_test_n_destroy(msg_comm_t comm)
134 if (MSG_comm_test(comm)) {
135 comm_check_n_destroy(comm);