-#include "hostdata.h"
-
-#include <xbt/log.h>
+#include <algorithm>
+#include <cstring>
#include <stdexcept>
+#include <xbt/log.h>
+#include <xbt/sysdep.h>
+
+XBT_LOG_EXTERNAL_DEFAULT_CATEGORY(main);
-XBT_LOG_EXTERNAL_DEFAULT_CATEGORY(simu);
+#include "misc.h"
+#include "options.h"
-hostdata* hostdata::instances = NULL;
+#include "hostdata.h"
+
+std::vector<hostdata> hostdata::hosts;
void hostdata::create()
{
- int nhosts = MSG_get_host_number();
- m_host_t* host_list = MSG_get_host_table();
- VERB1("Got %d hosts.", nhosts);
+ xbt_dynar_t host_dynar = MSG_hosts_as_dynar();
+ int nhosts = xbt_dynar_length(host_dynar);
+ msg_host_t* host_list = static_cast<msg_host_t*>(xbt_dynar_to_array(host_dynar));
+ // only sort hosts for automatically created deployment
+ if (opt::auto_depl::enabled)
+ std::sort(host_list, host_list + nhosts,
+ [](msg_host_t a, msg_host_t b) {
+ return std::strcmp(MSG_host_get_name(a), MSG_host_get_name(b)) < 0;
+ });
+ hosts.assign(host_list, host_list + nhosts);
+ xbt_free(host_list);
+
+ e_xbt_log_priority_t logp = xbt_log_priority_verbose;
+ if (!LOG_ISENABLED(logp))
+ return;
+ XBT_LOG(logp, "Got %zu hosts.", hosts.size());
for (int i = 0; i < nhosts; i++) {
- hostdata* h = new hostdata(host_list[i]);
- MSG_host_set_data(host_list[i], h);
- VERB2("Host #%d named \"%s\".", i, h->get_name());
- h->next = instances;
- instances = h;
+ XBT_LOG(logp, "Host #%d named \"%s\".", i, hosts[i].get_name());
}
- xbt_free(host_list);
}
void hostdata::destroy()
{
- while (instances) {
- hostdata* h = instances;
- instances = h->next;
- delete h;
- }
+ // hosts are automatically destroyed...
}
-hostdata::hostdata(m_host_t host)
- : next(NULL)
- , name(MSG_host_get_name(host))
+hostdata::hostdata(msg_host_t host)
+ : name(MSG_host_get_name(host))
, ctrl_mbox(std::string(name) + "_ctrl")
, data_mbox(std::string(name) + "_data")
{
+ MSG_host_set_data(host, this);
}
hostdata::~hostdata()