6 XBT_LOG_EXTERNAL_DEFAULT_CATEGORY(comm);
11 #include "communicator.h"
15 void check_for_lost_messages(size_t size, const char* descr)
18 XBT_WARN("lost %zu %s message%s!", size, descr, ESSE(size));
23 communicator::communicator()
24 : host(static_cast<hostdata*>(MSG_host_get_data(MSG_host_self())))
26 receiver_thread = new_msg_thread("receiver",
27 std::bind(&communicator::receiver, this));
28 receiver_thread->start();
31 communicator::~communicator()
35 XBT_DEBUG("send finalize to receiver/ctrl");
36 task = MSG_task_create("finalize", 0.0, 0, NULL);
37 MSG_task_send(task, host->get_ctrl_mbox());
39 XBT_DEBUG("send finalize to receiver/data");
40 task = MSG_task_create("finalize", 0.0, 0, NULL);
41 MSG_task_send(task, host->get_data_mbox());
43 receiver_thread->wait();
44 delete receiver_thread;
46 check_for_lost_messages(ctrl_received.size(), "received ctrl");
47 check_for_lost_messages(data_received.size(), "received data");
48 check_for_lost_messages(ctrl_sent.size(), "sent ctrl");
49 check_for_lost_messages(data_sent.size(), "sent data");
52 msg_comm_t communicator::real_send(const char* dest, message* msg)
54 XBT_DEBUG("send %s to %s", msg->to_string().c_str(), dest);
55 m_task_t task = MSG_task_create("message", 0.0, msg->get_size(), msg);
56 // MSG_task_set_category(task,
57 // msg->get_type() == message::DATA ?
58 // TRACE_CAT_DATA : TRACE_CAT_CTRL);
59 return MSG_task_isend(task, dest);
62 void communicator::real_flush(sent_comm_type& sent_comm, bool wait)
64 sent_comm_type::iterator bound =
65 std::remove_if(sent_comm.begin(), sent_comm.end(),
67 sent_comm.erase(bound, sent_comm.end());
68 if (wait && !sent_comm.empty()) {
69 size_t size = sent_comm.size();
70 msg_comm_t* comms = new msg_comm_t[size];
71 std::copy(sent_comm.begin(), sent_comm.end(), comms);
73 MSG_comm_waitall(comms, size, -1.0);
74 std::for_each(comms, comms + size, comm_check_n_destroy);
79 void communicator::receiver()
81 xbt_dynar_t comms = xbt_dynar_new(sizeof(msg_comm_t), NULL);
86 message_queue& received;
88 channel chan[] = { { NULL, NULL, host->get_ctrl_mbox(), ctrl_received },
89 { NULL, NULL, host->get_data_mbox(), data_received } };
90 const int chan_size = (sizeof chan) / (sizeof chan[0]);
92 for (int i = 0 ; i < chan_size ; ++i) {
93 chan[i].comm = MSG_task_irecv(&chan[i].task, chan[i].mbox);
94 xbt_dynar_push(comms, &chan[i].comm);
97 while (!xbt_dynar_is_empty(comms)) {
99 int index = MSG_comm_waitany(comms);
100 msg_comm_t finished_comm = xbt_dynar_get_as(comms, index, msg_comm_t);
103 for (ch = chan ; ch->comm != finished_comm ; ++ch)
106 comm_check_n_destroy(ch->comm);
107 if (strcmp(MSG_task_get_name(ch->task), "finalize")) {
108 XBT_DEBUG("received message on %s", ch->mbox);
109 ch->received.push(ch->task);
111 ch->comm = MSG_task_irecv(&ch->task, ch->mbox);
112 xbt_dynar_set_as(comms, index, msg_comm_t, ch->comm);
114 XBT_DEBUG("received finalize on %s", ch->mbox);
115 MSG_task_destroy(ch->task);
118 xbt_dynar_remove_at(comms, index, NULL);
122 xbt_dynar_free(&comms);
125 void communicator::comm_check_n_destroy(msg_comm_t comm)
127 xbt_assert(MSG_comm_get_status(comm) == MSG_OK);
128 MSG_comm_destroy(comm);
131 bool communicator::comm_test_n_destroy(msg_comm_t comm)
133 if (MSG_comm_test(comm)) {
134 comm_check_n_destroy(comm);