2 #include <tr1/functional>
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())))
28 receiver_thread = new_msg_thread("receiver",
29 bind(&communicator::receiver, this));
30 receiver_thread->start();
33 communicator::~communicator()
37 XBT_DEBUG("send finalize to receiver/ctrl");
38 task = MSG_task_create("finalize", 0.0, 0, NULL);
39 MSG_task_send(task, host->get_ctrl_mbox());
41 XBT_DEBUG("send finalize to receiver/data");
42 task = MSG_task_create("finalize", 0.0, 0, NULL);
43 MSG_task_send(task, host->get_data_mbox());
45 receiver_thread->wait();
46 delete receiver_thread;
48 check_for_lost_messages(ctrl_received.size(), "received ctrl");
49 check_for_lost_messages(data_received.size(), "received data");
50 check_for_lost_messages(ctrl_sent.size(), "sent ctrl");
51 check_for_lost_messages(data_sent.size(), "sent data");
54 msg_comm_t communicator::real_send(const char* dest, message* msg)
56 XBT_DEBUG("send %s to %s", msg->to_string().c_str(), dest);
57 m_task_t task = MSG_task_create("message", 0.0, msg->get_size(), msg);
58 TRACE_msg_set_task_category(task,
59 msg->get_type() == message::LOAD ?
60 TRACE_CAT_DATA : TRACE_CAT_CTRL);
61 return MSG_task_isend(task, dest);
64 void communicator::real_flush(sent_comm_type& sent_comm, bool wait)
66 sent_comm_type::iterator bound =
67 std::remove_if(sent_comm.begin(), sent_comm.end(),
69 sent_comm.erase(bound, sent_comm.end());
70 if (wait && !sent_comm.empty()) {
71 size_t size = sent_comm.size();
72 msg_comm_t* comms = new msg_comm_t[size];
73 std::copy(sent_comm.begin(), sent_comm.end(), comms);
75 MSG_comm_waitall(comms, size, -1.0);
76 std::for_each(comms, comms + size, comm_check_n_destroy);
81 void communicator::receiver()
83 xbt_dynar_t comms = xbt_dynar_new(sizeof(msg_comm_t), NULL);
88 message_queue& received;
90 channel chan[] = { { NULL, NULL, host->get_ctrl_mbox(), ctrl_received },
91 { NULL, NULL, host->get_data_mbox(), data_received } };
92 const int chan_size = (sizeof chan) / (sizeof chan[0]);
94 for (int i = 0 ; i < chan_size ; ++i) {
95 chan[i].comm = MSG_task_irecv(&chan[i].task, chan[i].mbox);
96 xbt_dynar_push(comms, &chan[i].comm);
99 while (!xbt_dynar_is_empty(comms)) {
101 int index = MSG_comm_waitany(comms);
102 msg_comm_t finished_comm = xbt_dynar_get_as(comms, index, msg_comm_t);
105 for (ch = chan ; ch->comm != finished_comm ; ++ch)
108 comm_check_n_destroy(ch->comm);
109 if (strcmp(MSG_task_get_name(ch->task), "finalize")) {
110 XBT_DEBUG("received message on %s", ch->mbox);
111 ch->received.push(ch->task);
113 ch->comm = MSG_task_irecv(&ch->task, ch->mbox);
114 xbt_dynar_set_as(comms, index, msg_comm_t, ch->comm);
116 XBT_DEBUG("received finalize on %s", ch->mbox);
117 MSG_task_destroy(ch->task);
120 xbt_dynar_remove_at(comms, index, NULL);
124 xbt_dynar_free(&comms);
127 void communicator::comm_check_n_destroy(msg_comm_t comm)
129 xbt_assert(MSG_comm_get_status(comm) == MSG_OK);
130 MSG_comm_destroy(comm);
133 bool communicator::comm_test_n_destroy(msg_comm_t comm)
135 if (MSG_comm_test(comm)) {
136 comm_check_n_destroy(comm);