2 #include <tr1/functional>
7 XBT_LOG_EXTERNAL_DEFAULT_CATEGORY(comm);
12 #include "communicator.h"
14 std::string message::to_string()
16 static const char* str[] = { "INFO", "CREDIT", "LOAD",
17 "CTRL_CLOSE", "DATA_CLOSE" };
18 std::ostringstream oss;
19 oss << str[type] << ": " << amount;
23 const int communicator::send_count_before_flush = 4;
25 communicator::communicator()
26 : host((hostdata* )MSG_host_get_data(MSG_host_self()))
30 , ctrl_close_is_last(false)
33 , data_close_is_last(false)
37 communicator::~communicator()
40 WARN0("ctrl_comm is pending!");
42 WARN0("data_comm is pending!");
43 if (!sent_comm.empty())
44 WARN2("lost %ld send communication%s!",
45 (long )sent_comm.size(), ESSE(sent_comm.size()));
48 void communicator::listen()
50 ctrl_comm = MSG_task_irecv(&ctrl_task, get_ctrl_mbox());
51 data_comm = MSG_task_irecv(&data_task, get_data_mbox());
54 void communicator::send(const char* dest, message* msg)
56 DEBUG2("send %s to %s", msg->to_string().c_str(), dest);
57 double msg_size = sizeof *msg;
58 if (msg->get_type() == message::LOAD)
59 msg_size += opt::comm_cost(msg->get_amount());
60 m_task_t task = MSG_task_create("message", 0.0, msg_size, msg);
61 msg_comm_t comm = MSG_task_isend(task, dest);
62 sent_comm.push_back(comm);
64 if (++send_counter >= send_count_before_flush) {
70 bool communicator::recv(message*& msg, m_host_t& from, bool wait)
76 if (ctrl_comm && comm_test_n_destroy(ctrl_comm)) {
77 msg = (message* )MSG_task_get_data(ctrl_task);
78 from = MSG_task_get_source(ctrl_task);
79 MSG_task_destroy(ctrl_task);
82 (!ctrl_close_is_last || msg->get_type() != message::CTRL_CLOSE)
83 ? MSG_task_irecv(&ctrl_task, get_ctrl_mbox())
86 } else if (data_comm && comm_test_n_destroy(data_comm)) {
87 msg = (message* )MSG_task_get_data(data_task);
88 from = MSG_task_get_source(data_task);
89 MSG_task_destroy(data_task);
92 (!data_close_is_last || msg->get_type() != message::DATA_CLOSE)
93 ? MSG_task_irecv(&data_task, get_data_mbox())
97 restart = wait && !msg && (ctrl_comm || data_comm);
99 xbt_dynar_t comms = xbt_dynar_new(sizeof(msg_comm_t), NULL);
101 xbt_dynar_push(comms, &ctrl_comm);
103 xbt_dynar_push(comms, &data_comm);
104 MSG_comm_waitany(comms);
105 xbt_dynar_free(&comms);
110 DEBUG2("received %s from %s",
111 msg->to_string().c_str(), MSG_host_get_name(from));
116 void communicator::flush(bool wait)
118 using std::tr1::bind;
119 using std::tr1::placeholders::_1;
121 sent_comm.remove_if(comm_test_n_destroy);
122 if (wait && !sent_comm.empty()) {
123 xbt_dynar_t comms = xbt_dynar_new(sizeof(msg_comm_t), NULL);
124 while (!sent_comm.empty()) {
125 std::for_each(sent_comm.begin(), sent_comm.end(),
127 comms, bind(misc::address<msg_comm_t>(), _1)));
128 MSG_comm_waitany(comms);
129 xbt_dynar_reset(comms);
130 sent_comm.remove_if(comm_test_n_destroy);
132 xbt_dynar_free(&comms);
136 void communicator::next_close_on_ctrl_is_last()
138 ctrl_close_is_last = true;
141 void communicator::next_close_on_data_is_last()
143 data_close_is_last = true;
146 bool communicator::comm_test_n_destroy(msg_comm_t comm)
148 if (MSG_comm_test(comm)) {
149 MSG_comm_destroy(comm);