6 #include <xbt/sysdep.h>
8 XBT_LOG_EXTERNAL_DEFAULT_CATEGORY(main);
15 std::vector<hostdata> hostdata::hosts;
17 void hostdata::create()
19 using std::placeholders::_1;
20 using std::placeholders::_2;
22 #if SIMGRID_VERSION < MAKE_SIMGRID_VERSION(3, 7, 0)
23 int nhosts = MSG_get_host_number();
24 msg_host_t* host_list = MSG_get_host_table();
25 #else // API changed with SG 3.7.0
26 xbt_dynar_t host_dynar = MSG_hosts_as_dynar();
27 int nhosts = xbt_dynar_length(host_dynar);
28 msg_host_t* host_list = static_cast<msg_host_t*>(xbt_dynar_to_array(host_dynar));
30 // only sort hosts for automatically created deployment
31 if (opt::auto_depl::enabled)
32 std::sort(host_list, host_list + nhosts,
33 std::bind(std::less<int>(),
35 std::bind(MSG_host_get_name, _1),
36 std::bind(MSG_host_get_name, _2)), 0));
37 hosts.assign(host_list, host_list + nhosts);
40 e_xbt_log_priority_t logp = xbt_log_priority_verbose;
41 if (!LOG_ISENABLED(logp))
43 XBT_LOG(logp, "Got %zu hosts.", hosts.size());
44 for (int i = 0; i < nhosts; i++) {
45 XBT_LOG(logp, "Host #%d named \"%s\".", i, hosts[i].get_name());
49 void hostdata::destroy()
51 // hosts are automatically destroyed...
54 hostdata::hostdata(msg_host_t host)
55 : name(MSG_host_get_name(host))
56 , ctrl_mbox(std::string(name) + "_ctrl")
57 , data_mbox(std::string(name) + "_data")
59 MSG_host_set_data(host, this);