]> AND Private Git Repository - loba.git/commitdiff
Logo AND Algorithmique Numérique Distribuée

Private GIT Repository
MSG type names got renamed in SimGrid 3.8.
authorArnaud Giersch <arnaud.giersch@iut-bm.univ-fcomte.fr>
Mon, 2 Jul 2012 11:04:48 +0000 (13:04 +0200)
committerArnaud Giersch <arnaud.giersch@iut-bm.univ-fcomte.fr>
Mon, 2 Jul 2012 11:04:52 +0000 (13:04 +0200)
communicator.cpp
communicator.h
hostdata.cpp
hostdata.h
main.cpp
messages.cpp
messages.h
msg_thread.h
process.cpp
process.h
simgrid_features.h

index 2ba91a01583ff498df543e571ec46f568b221cce..5abb543582c617a948258fc16845abafbf56cfaa 100644 (file)
@@ -30,7 +30,7 @@ communicator::communicator()
 
 communicator::~communicator()
 {
-    m_task_t task;
+    msg_task_t task;
 
     XBT_DEBUG("send finalize to receiver/ctrl");
     task = MSG_task_create("finalize", 0.0, 0, NULL);
@@ -52,7 +52,7 @@ communicator::~communicator()
 msg_comm_t communicator::real_send(const char* dest, message* msg)
 {
     XBT_DEBUG("send %s to %s", msg->to_string().c_str(), dest);
-    m_task_t task = MSG_task_create("message", 0.0, msg->get_size(), msg);
+    msg_task_t task = MSG_task_create("message", 0.0, msg->get_size(), msg);
     // MSG_task_set_category(task,
     //                       msg->get_type() == message::DATA ?
     //                       TRACE_CAT_DATA : TRACE_CAT_CTRL);
@@ -81,7 +81,7 @@ void communicator::receiver()
     xbt_dynar_t comms = xbt_dynar_new(sizeof(msg_comm_t), NULL);
     struct channel {
         msg_comm_t comm;
-        m_task_t task;
+        msg_task_t task;
         const char* mbox;
         message_queue& received;
     };
index b79210ca7d78dfb365bf276d7788c7f8316b2140..8f3f6bf38e12fda60c6ddcc2f2373d691d816e6f 100644 (file)
@@ -8,6 +8,7 @@
 #include "hostdata.h"
 #include "messages.h"
 #include "msg_thread.h"
+#include "simgrid_features.h"
 
 class communicator {
 public:
@@ -37,10 +38,10 @@ public:
     // Try to get a message.  Returns true on success.
     // Parameter "timeout" may be 0 for non-blocking operation, -1 for
     // infinite waiting, or any positive timeout.
-    bool ctrl_recv(message*& msg, m_host_t& from, double timeout) {
+    bool ctrl_recv(message*& msg, msg_host_t& from, double timeout) {
         return ctrl_received.pop(msg, from, timeout);
     }
-    bool data_recv(message*& msg, m_host_t& from, double timeout) {
+    bool data_recv(message*& msg, msg_host_t& from, double timeout) {
         return data_received.pop(msg, from, timeout);
     }
 
index 5498ba8ad64127573f17748446880bbef4719e9e..403e13c3ee710cc19626f2ba8e0aefdd358b3248 100644 (file)
@@ -21,11 +21,11 @@ void hostdata::create()
 
 #if SIMGRID_VERSION < MAKE_SIMGRID_VERSION(3, 7, 0)
     int nhosts = MSG_get_host_number();
-    m_host_t* host_list = MSG_get_host_table();
+    msg_host_t* host_list = MSG_get_host_table();
 #else // API changed with SG 3.7.0
     xbt_dynar_t host_dynar = MSG_hosts_as_dynar();
     int nhosts = xbt_dynar_length(host_dynar);
-    m_host_t* host_list = static_cast<m_host_t*>(xbt_dynar_to_array(host_dynar));
+    msg_host_t* host_list = static_cast<msg_host_t*>(xbt_dynar_to_array(host_dynar));
 #endif
     // only sort hosts for automatically created deployment
     if (opt::auto_depl::enabled)
@@ -51,7 +51,7 @@ void hostdata::destroy()
     // hosts are automatically destroyed...
 }
 
-hostdata::hostdata(m_host_t 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")
index 722b2bcdc87340095edb6ce7bb669fec8c6f6a95..aa7884c77ccaec8950d5fb270cb6820902f9789e 100644 (file)
@@ -4,6 +4,7 @@
 #include <string>
 #include <vector>
 #include <msg/msg.h>
+#include "simgrid_features.h"
 
 // Helper class that associates instances of itself with each host.
 // Facilitate global operations on hosts, and retreiving of host name
@@ -15,7 +16,7 @@ public:
     static size_t size()                        { return hosts.size(); }
     static const hostdata& at(size_t i)         { return hosts[i];     }
 
-    hostdata(m_host_t host);
+    hostdata(msg_host_t host);
     ~hostdata();
 
     const char* get_name() const                { return name;              }
index 9799ff8c91f8d3c154756f2ffe2f35aa11f02607..9b0f8bf31fc1d57093b6946e6df2bda69cba1fdf 100644 (file)
--- a/main.cpp
+++ b/main.cpp
@@ -203,7 +203,7 @@ int main(int argc, char* argv[])
     double simulated_time = -1.0;
     timestamp elapsed_time(timestamp::wallclock_time);
     timestamp simulation_time(timestamp::cpu_time);
-    MSG_error_t res;
+    msg_error_t res;
 
     elapsed_time.start();
     simulation_time.start();
index e9fbced1c63d659bc9dd358980eca2ff1bda858e..93bdc4ee3ff8ba82925e8b72bbbf107d3e90cb7c 100644 (file)
@@ -51,7 +51,7 @@ std::string message::to_string()
     return oss.str();
 }
 
-void message_queue::push(m_task_t task)
+void message_queue::push(msg_task_t task)
 {
     if (queue.push(task)) {
          // list was empty, the push must be signaled
@@ -61,9 +61,9 @@ void message_queue::push(m_task_t task)
     }
 }
 
-bool message_queue::pop(message*& msg, m_host_t& from, double timeout)
+bool message_queue::pop(message*& msg, msg_host_t& from, double timeout)
 {
-    m_task_t task;
+    msg_task_t task;
     if (!queue.try_pop(task)) {
         if (timeout == 0.0)
             return false;
index 1886301fc1560c835551c6cc7e4774787292df46..cc6efbc2b5cf5e0898e90e95d5783e30fc45991c 100644 (file)
@@ -4,6 +4,7 @@
 #include <queue>
 #include <string>
 #include <msg/msg.h>
+#include "simgrid_features.h"
 #include "synchro.h"
 #include "sync_queue.h"
 
@@ -30,12 +31,12 @@ private:
 class message_queue {
 public:
     // Push a message on queue
-    void push(m_task_t task);
+    void push(msg_task_t task);
 
     // Try to pop a message.  Returns true on success.
     // Parameter "timeout" may be 0 for non-blocking operation, -1 for
     // infinite waiting, or any positive timeout.
-    bool pop(message*& msg, m_host_t& from, double timeout);
+    bool pop(message*& msg, msg_host_t& from, double timeout);
 
     bool empty() const                  { return queue.empty(); }
     size_t size() const                 { return queue.size();  }
@@ -43,7 +44,7 @@ public:
 private:
     mutex_t mutex;
     condition_t cond;
-    sync_queue<m_task_t> queue;
+    sync_queue<msg_task_t> queue;
 };
 
 #endif // !MESSAGES_H
index 0fee6ea0f682d24586df82a7ec3dca5f8dd2a977..69ce02b60fddfd885eac81c5f2f5d74963d12582 100644 (file)
@@ -3,6 +3,7 @@
 
 #include <string>
 #include <msg/msg.h>
+#include "simgrid_features.h"
 #include "synchro.h"
 
 class msg_thread {
@@ -20,7 +21,7 @@ private:
     bool started;
     mutex_t mutex;
     condition_t cond;
-    m_process_t thread;
+    msg_process_t thread;
     std::string thread_name;
 
     void run_wrapper();
index 6c72d4545aefe0c8c6b13f121724f7cbe583afcd..6aceea45c0cc9e8cf96ca2993ec04fe2baadc145 100644 (file)
@@ -58,7 +58,7 @@ process::process(int argc, char* argv[])
     pneigh.reserve(neigh.size());
     for (unsigned i = 0 ; i < neigh.size() ; i++) {
         neighbor* ptr = &neigh[i];
-        m_host_t host = MSG_get_host_by_name(ptr->get_name());
+        msg_host_t host = MSG_get_host_by_name(ptr->get_name());
         pneigh.push_back(ptr);
         rev_neigh.insert(std::make_pair(host, ptr));
     }
@@ -256,7 +256,7 @@ void process::compute_loop()
         idle_duration += MSG_get_clock() - idle_since_date;
         ++comp_iter;
         double flops = opt::comp_cost(real_load);
-        m_task_t task = MSG_task_create("computation", flops, 0.0, NULL);
+        msg_task_t task = MSG_task_create("computation", flops, 0.0, NULL);
         // MSG_task_set_category(task, TRACE_CAT_COMP);
         XBT_DEBUG("compute %g flop%s", flops, ESSE(flops));
         MSG_task_execute(task);
@@ -465,7 +465,7 @@ void process::data_close(neighbor& nb)
 void process::ctrl_receive(double timeout)
 {
     message* msg;
-    m_host_t from;
+    msg_host_t from;
 
     XBT_DEBUG("%sblocking receive on ctrl (%g)", "\0non-" + !timeout, timeout);
     while (ctrl_close_pending && comm.ctrl_recv(msg, from, timeout)) {
@@ -479,7 +479,7 @@ void process::ctrl_receive(double timeout)
 void process::data_receive(double timeout)
 {
     message* msg;
-    m_host_t from;
+    msg_host_t from;
 
     XBT_DEBUG("%sblocking receive on data (%g)", "\0non-" + !timeout, timeout);
     while (data_close_pending && comm.data_recv(msg, from, timeout)) {
@@ -490,7 +490,7 @@ void process::data_receive(double timeout)
     }
 }
 
-void process::handle_message(message* msg, m_host_t from)
+void process::handle_message(message* msg, msg_host_t from)
 {
     switch (msg->get_type()) {
     case message::CTRL: {
index 14d514f27841afb25df662e05bb4e277df749326..25d6c442ca6abb2de60417a69839ac5d7452c189 100644 (file)
--- a/process.h
+++ b/process.h
@@ -22,6 +22,7 @@
 #include "msg_thread.h"
 #include "neighbor.h"
 #include "options.h"
+#include "simgrid_features.h"
 #include "synchro.h"
 
 class process {
@@ -102,10 +103,10 @@ private:
 
     static std::atomic<int> convergence_counter;
 
-    typedef MAP_TEMPLATE<m_host_t, neighbor*> rev_neigh_type;
+    typedef MAP_TEMPLATE<msg_host_t, neighbor*> rev_neigh_type;
     neigh_type neigh;           // list of neighbors (do not alter
                                 // after construction!)
-    rev_neigh_type rev_neigh;   // map m_host_t -> neighbor
+    rev_neigh_type rev_neigh;   // map msg_host_t -> neighbor
 
     communicator comm;          // communicator for this process
     int ctrl_close_pending;     // number of "close" messages to wait
@@ -198,7 +199,7 @@ private:
     // infinite waiting, or any positive timeout.
     void ctrl_receive(double timeout);
     void data_receive(double timeout);
-    void handle_message(message* msg, m_host_t from);
+    void handle_message(message* msg, msg_host_t from);
 };
 
 template <typename Compare>
index 2f32a9b30ce95e5c9834e94c448dabc33cf5db26..114fc09460b8d9bc6bbe4e54df09569794a13a10 100644 (file)
@@ -9,6 +9,10 @@
 
 #if SIMGRID_VERSION < MAKE_SIMGRID_VERSION(3, 8, 0) // ==== SG < 3.8 === //
 #  define MSG_init(argc, argv) MSG_global_init(argc, argv)
+#  define msg_error_t   MSG_error_t
+#  define msg_host_t    m_host_t
+#  define msg_process_t m_process_t
+#  define msg_task_t    m_task_t
 #endif // ============================================================== //
 
 #endif // !SIMGRID_FEATURES_H