1 #include "communicator.h"
4 #include <tr1/functional>
11 XBT_LOG_EXTERNAL_DEFAULT_CATEGORY(comm);
13 std::string message::to_string()
15 static const char* str[] = { "INFO", "CREDIT", "LOAD",
16 "CTRL_CLOSE", "DATA_CLOSE" };
17 std::ostringstream oss;
18 oss << str[type] << " (" << amount << ")";
22 const int communicator::send_count_before_flush = 128;
24 communicator::communicator()
25 : host((hostdata* )MSG_host_get_data(MSG_host_self()))
29 , ctrl_close_is_last(false)
32 , data_close_is_last(false)
36 communicator::~communicator()
39 WARN0("ctrl_comm is pending!");
41 WARN0("data_comm is pending!");
42 if (!sent_comm.empty())
43 WARN2("lost %ld send communication%s!",
44 (long )sent_comm.size(), ESSE(sent_comm.size()));
47 void communicator::listen()
49 ctrl_comm = MSG_task_irecv(&ctrl_task, get_ctrl_mbox());
50 data_comm = MSG_task_irecv(&data_task, get_data_mbox());
53 void communicator::send(const char* dest, message* msg)
55 DEBUG2("send %s to %s", msg->to_string().c_str(), dest);
56 double msg_size = sizeof *msg;
57 if (msg->get_type() == message::LOAD)
58 msg_size += opt::comm_cost(msg->get_amount());
59 m_task_t task = MSG_task_create("message", 0.0, msg_size, msg);
60 msg_comm_t comm = MSG_task_isend(task, dest);
61 sent_comm.push_back(comm);
63 if (++send_counter >= send_count_before_flush) {
69 bool communicator::recv(message*& msg, m_host_t& from, bool wait)
75 if (ctrl_comm && comm_test_n_destroy(ctrl_comm)) {
76 msg = (message* )MSG_task_get_data(ctrl_task);
77 from = MSG_task_get_source(ctrl_task);
78 MSG_task_destroy(ctrl_task);
81 (!ctrl_close_is_last || msg->get_type() != message::CTRL_CLOSE)
82 ? MSG_task_irecv(&ctrl_task, get_ctrl_mbox())
85 } else if (data_comm && comm_test_n_destroy(data_comm)) {
86 msg = (message* )MSG_task_get_data(data_task);
87 from = MSG_task_get_source(data_task);
88 MSG_task_destroy(data_task);
91 (!data_close_is_last || msg->get_type() != message::DATA_CLOSE)
92 ? MSG_task_irecv(&data_task, get_data_mbox())
96 restart = wait && !msg && (ctrl_comm || data_comm);
98 xbt_dynar_t comms = xbt_dynar_new(sizeof(msg_comm_t), NULL);
100 xbt_dynar_push(comms, &ctrl_comm);
102 xbt_dynar_push(comms, &data_comm);
103 MSG_comm_waitany(comms);
104 xbt_dynar_free(&comms);
109 DEBUG2("received %s from %s",
110 msg->to_string().c_str(), MSG_host_get_name(from));
115 void communicator::flush(bool wait)
117 using namespace std::tr1;
118 using namespace std::tr1::placeholders;
120 sent_comm.remove_if(comm_test_n_destroy);
121 if (wait && !sent_comm.empty()) {
122 xbt_dynar_t comms = xbt_dynar_new(sizeof(msg_comm_t), NULL);
123 while (!sent_comm.empty()) {
124 std::for_each(sent_comm.begin(), sent_comm.end(),
126 comms, bind(misc::address<msg_comm_t>(), _1)));
127 MSG_comm_waitany(comms);
128 xbt_dynar_reset(comms);
129 sent_comm.remove_if(comm_test_n_destroy);
131 xbt_dynar_free(&comms);
135 void communicator::next_close_on_ctrl_is_last()
137 ctrl_close_is_last = true;
140 void communicator::next_close_on_data_is_last()
142 data_close_is_last = true;
145 bool communicator::comm_test_n_destroy(msg_comm_t comm)
147 if (MSG_comm_test(comm)) {
148 MSG_comm_destroy(comm);