Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
s4u: stick to the new naming conventions
authorMartin Quinson <martin.quinson@loria.fr>
Tue, 3 May 2016 19:00:35 +0000 (21:00 +0200)
committerMartin Quinson <martin.quinson@loria.fr>
Tue, 3 May 2016 19:00:40 +0000 (21:00 +0200)
include/simgrid/s4u/actor.hpp
include/simgrid/s4u/async.hpp
src/s4u/s4u_actor.cpp
src/s4u/s4u_async.cpp
src/s4u/s4u_comm.cpp

index 9860051..8c6e1fc 100644 (file)
@@ -95,9 +95,9 @@ public:
   void send(Mailbox &chan, void*payload, size_t simulatedSize);
 
 protected:
   void send(Mailbox &chan, void*payload, size_t simulatedSize);
 
 protected:
-  smx_process_t getInferior() {return p_smx_process;}
+  smx_process_t getInferior() {return inferior_;}
 private:
 private:
-  smx_process_t p_smx_process;
+  smx_process_t inferior_;
 };
 }} // namespace simgrid::s4u
 
 };
 }} // namespace simgrid::s4u
 
index 6500b79..69981aa 100644 (file)
@@ -33,10 +33,10 @@ protected:
   virtual ~Async();
   
 private:
   virtual ~Async();
   
 private:
-  struct s_smx_synchro *p_inferior = NULL;
+  struct s_smx_synchro *inferior_ = NULL;
 
 private:
 
 private:
-  e_s4u_async_state_t p_state = inited;
+  e_s4u_async_state_t state_ = inited;
 public:
   /** Starts a previously created async.
    *
 public:
   /** Starts a previously created async.
    *
@@ -53,10 +53,10 @@ public:
   /** Cancel that async */
   //virtual void cancel();
   /** Retrieve the current state of the async */
   /** Cancel that async */
   //virtual void cancel();
   /** Retrieve the current state of the async */
-  e_s4u_async_state_t getState() {return p_state;}
+  e_s4u_async_state_t getState() {return state_;}
 
 private:
 
 private:
-  double p_remains = 0;
+  double remains_ = 0;
 public:
   /** Get the remaining amount of work that this Async entails. When it's 0, it's done. */
   double getRemains();
 public:
   /** Get the remaining amount of work that this Async entails. When it's 0, it's done. */
   double getRemains();
@@ -66,12 +66,12 @@ public:
   void setRemains(double remains);
 
 private:
   void setRemains(double remains);
 
 private:
-  void *p_userData = NULL;
+  void *userData_ = NULL;
 public:
   /** Put some user data onto the Async */
 public:
   /** Put some user data onto the Async */
-  void setUserData(void *data) {p_userData=data;}
+  void setUserData(void *data) {userData_=data;}
   /** Retrieve the user data of the Async */
   /** Retrieve the user data of the Async */
-  void *getUserData() { return p_userData; }
+  void *getUserData() { return userData_; }
 }; // class
 
 }}; // Namespace simgrid::s4u
 }; // class
 
 }}; // Namespace simgrid::s4u
index e1358a5..b29b9ee 100644 (file)
@@ -27,15 +27,15 @@ static int s4u_actor_runner(int argc, char **argv)
 using namespace simgrid;
 
 s4u::Actor::Actor(smx_process_t smx_proc) {
 using namespace simgrid;
 
 s4u::Actor::Actor(smx_process_t smx_proc) {
-  p_smx_process = smx_proc;
+  inferior_ = smx_proc;
 }
 s4u::Actor::Actor(const char *name, s4u::Host *host, int argc, char **argv)
     : s4u::Actor::Actor(name,host, argc,argv, -1) {
 }
 s4u::Actor::Actor(const char *name, s4u::Host *host, int argc, char **argv, double killTime) {
 }
 s4u::Actor::Actor(const char *name, s4u::Host *host, int argc, char **argv)
     : s4u::Actor::Actor(name,host, argc,argv, -1) {
 }
 s4u::Actor::Actor(const char *name, s4u::Host *host, int argc, char **argv, double killTime) {
-  p_smx_process = simcall_process_create(name, s4u_actor_runner, this, host->name().c_str(), killTime, argc, argv, NULL/*properties*/,0);
+  inferior_ = simcall_process_create(name, s4u_actor_runner, this, host->name().c_str(), killTime, argc, argv, NULL/*properties*/,0);
 
 
-  xbt_assert(p_smx_process,"Cannot create the actor");
+  xbt_assert(inferior_,"Cannot create the actor");
 //  TRACE_msg_process_create(procname, simcall_process_get_PID(p_smx_process), host->getInferior());
 //  simcall_process_on_exit(p_smx_process,(int_f_pvoid_pvoid_t)TRACE_msg_process_kill,p_smx_process);
 }
 //  TRACE_msg_process_create(procname, simcall_process_get_PID(p_smx_process), host->getInferior());
 //  simcall_process_on_exit(p_smx_process,(int_f_pvoid_pvoid_t)TRACE_msg_process_kill,p_smx_process);
 }
@@ -54,30 +54,30 @@ s4u::Actor &s4u::Actor::self()
 }
 
 void s4u::Actor::setAutoRestart(bool autorestart) {
 }
 
 void s4u::Actor::setAutoRestart(bool autorestart) {
-  simcall_process_auto_restart_set(p_smx_process,autorestart);
+  simcall_process_auto_restart_set(inferior_,autorestart);
 }
 
 s4u::Host *s4u::Actor::getHost() {
 }
 
 s4u::Host *s4u::Actor::getHost() {
-  return s4u::Host::by_name(sg_host_get_name(simcall_process_get_host(p_smx_process)));
+  return s4u::Host::by_name(sg_host_get_name(simcall_process_get_host(inferior_)));
 }
 const char* s4u::Actor::getName() {
 }
 const char* s4u::Actor::getName() {
-  return simcall_process_get_name(p_smx_process);
+  return simcall_process_get_name(inferior_);
 }
 int s4u::Actor::getPid(){
 }
 int s4u::Actor::getPid(){
-  return simcall_process_get_PID(p_smx_process);
+  return simcall_process_get_PID(inferior_);
 }
 
 void s4u::Actor::setKillTime(double time) {
 }
 
 void s4u::Actor::setKillTime(double time) {
-  simcall_process_set_kill_time(p_smx_process,time);
+  simcall_process_set_kill_time(inferior_,time);
 }
 double s4u::Actor::getKillTime() {
 }
 double s4u::Actor::getKillTime() {
-  return simcall_process_get_kill_time(p_smx_process);
+  return simcall_process_get_kill_time(inferior_);
 }
 void s4u::Actor::killAll() {
   simcall_process_killall(1);
 }
 void s4u::Actor::kill() {
 }
 void s4u::Actor::killAll() {
   simcall_process_killall(1);
 }
 void s4u::Actor::kill() {
-  simcall_process_kill(p_smx_process);
+  simcall_process_kill(inferior_);
 }
 
 void s4u::Actor::sleep(double duration) {
 }
 
 void s4u::Actor::sleep(double duration) {
index 183803d..bf2f951 100644 (file)
@@ -21,7 +21,7 @@ s4u::Async::~Async() {
 }
 
 void s4u::Async::setRemains(double remains) {
 }
 
 void s4u::Async::setRemains(double remains) {
-  xbt_assert(p_state == inited, "Cannot change the remaining amount of work once the Async is started");
-  p_remains = remains;
+  xbt_assert(state_ == inited, "Cannot change the remaining amount of work once the Async is started");
+  remains_ = remains;
 }
 
 }
 
index 9dbd00d..e19a052 100644 (file)
@@ -32,37 +32,37 @@ s4u::Comm &s4u::Comm::recv_init(s4u::Actor *receiver, s4u::Mailbox &chan) {
 }
 
 void s4u::Comm::setRate(double rate) {
 }
 
 void s4u::Comm::setRate(double rate) {
-  xbt_assert(p_state==inited);
+  xbt_assert(state_==inited);
   rate_ = rate;
 }
 
 void s4u::Comm::setSrcData(void * buff) {
   rate_ = rate;
 }
 
 void s4u::Comm::setSrcData(void * buff) {
-  xbt_assert(p_state==inited);
+  xbt_assert(state_==inited);
   xbt_assert(dstBuff_ == NULL, "Cannot set the src and dst buffers at the same time");
   srcBuff_ = buff;
 }
 void s4u::Comm::setSrcDataSize(size_t size){
   xbt_assert(dstBuff_ == NULL, "Cannot set the src and dst buffers at the same time");
   srcBuff_ = buff;
 }
 void s4u::Comm::setSrcDataSize(size_t size){
-  xbt_assert(p_state==inited);
+  xbt_assert(state_==inited);
   srcBuffSize_ = size;
 }
 void s4u::Comm::setSrcData(void * buff, size_t size) {
   srcBuffSize_ = size;
 }
 void s4u::Comm::setSrcData(void * buff, size_t size) {
-  xbt_assert(p_state==inited);
+  xbt_assert(state_==inited);
 
   xbt_assert(dstBuff_ == NULL, "Cannot set the src and dst buffers at the same time");
   srcBuff_ = buff;
   srcBuffSize_ = size;
 }
 void s4u::Comm::setDstData(void ** buff) {
 
   xbt_assert(dstBuff_ == NULL, "Cannot set the src and dst buffers at the same time");
   srcBuff_ = buff;
   srcBuffSize_ = size;
 }
 void s4u::Comm::setDstData(void ** buff) {
-  xbt_assert(p_state==inited);
+  xbt_assert(state_==inited);
   xbt_assert(srcBuff_ == NULL, "Cannot set the src and dst buffers at the same time");
   dstBuff_ = buff;
 }
 size_t s4u::Comm::getDstDataSize(){
   xbt_assert(srcBuff_ == NULL, "Cannot set the src and dst buffers at the same time");
   dstBuff_ = buff;
 }
 size_t s4u::Comm::getDstDataSize(){
-  xbt_assert(p_state==finished);
+  xbt_assert(state_==finished);
   return dstBuffSize_;
 }
 void s4u::Comm::setDstData(void ** buff, size_t size) {
   return dstBuffSize_;
 }
 void s4u::Comm::setDstData(void ** buff, size_t size) {
-  xbt_assert(p_state==inited);
+  xbt_assert(state_==inited);
 
   xbt_assert(srcBuff_ == NULL, "Cannot set the src and dst buffers at the same time");
   dstBuff_ = buff;
 
   xbt_assert(srcBuff_ == NULL, "Cannot set the src and dst buffers at the same time");
   dstBuff_ = buff;
@@ -70,63 +70,63 @@ void s4u::Comm::setDstData(void ** buff, size_t size) {
 }
 
 void s4u::Comm::start() {
 }
 
 void s4u::Comm::start() {
-  xbt_assert(p_state == inited);
+  xbt_assert(state_ == inited);
 
   if (srcBuff_ != NULL) { // Sender side
 
   if (srcBuff_ != NULL) { // Sender side
-    p_inferior = simcall_comm_isend(sender_->getInferior(), mailbox_->getInferior(), p_remains, rate_,
+    inferior_ = simcall_comm_isend(sender_->getInferior(), mailbox_->getInferior(), remains_, rate_,
         srcBuff_, srcBuffSize_,
         matchFunction_, cleanFunction_, copyDataFunction_,
         srcBuff_, srcBuffSize_,
         matchFunction_, cleanFunction_, copyDataFunction_,
-        p_userData, detached_);
+        userData_, detached_);
   } else if (dstBuff_ != NULL) { // Receiver side
   } else if (dstBuff_ != NULL) { // Receiver side
-    p_inferior = simcall_comm_irecv(receiver_->getInferior(), mailbox_->getInferior(), dstBuff_, &dstBuffSize_,
+    inferior_ = simcall_comm_irecv(receiver_->getInferior(), mailbox_->getInferior(), dstBuff_, &dstBuffSize_,
         matchFunction_, copyDataFunction_,
         matchFunction_, copyDataFunction_,
-        p_userData, rate_);
+        userData_, rate_);
 
   } else {
     xbt_die("Cannot start a communication before specifying whether we are the sender or the receiver");
   }
 
   } else {
     xbt_die("Cannot start a communication before specifying whether we are the sender or the receiver");
   }
-  p_state = started;
+  state_ = started;
 }
 void s4u::Comm::wait() {
 }
 void s4u::Comm::wait() {
-  xbt_assert(p_state == started || p_state == inited);
+  xbt_assert(state_ == started || state_ == inited);
 
 
-  if (p_state == started)
-    simcall_comm_wait(p_inferior, -1/*timeout*/);
+  if (state_ == started)
+    simcall_comm_wait(inferior_, -1/*timeout*/);
   else {// p_state == inited. Save a simcall and do directly a blocking send/recv
     if (srcBuff_ != NULL) {
   else {// p_state == inited. Save a simcall and do directly a blocking send/recv
     if (srcBuff_ != NULL) {
-      simcall_comm_send(sender_->getInferior(), mailbox_->getInferior(), p_remains, rate_,
+      simcall_comm_send(sender_->getInferior(), mailbox_->getInferior(), remains_, rate_,
           srcBuff_, srcBuffSize_,
           matchFunction_, copyDataFunction_,
           srcBuff_, srcBuffSize_,
           matchFunction_, copyDataFunction_,
-          p_userData, -1 /*timeout*/);
+          userData_, -1 /*timeout*/);
     } else {
       simcall_comm_recv(receiver_->getInferior(), mailbox_->getInferior(), dstBuff_, &dstBuffSize_,
           matchFunction_, copyDataFunction_,
     } else {
       simcall_comm_recv(receiver_->getInferior(), mailbox_->getInferior(), dstBuff_, &dstBuffSize_,
           matchFunction_, copyDataFunction_,
-          p_userData, -1/*timeout*/, rate_);
+          userData_, -1/*timeout*/, rate_);
     }
   }
     }
   }
-  p_state = finished;
+  state_ = finished;
 }
 void s4u::Comm::wait(double timeout) {
 }
 void s4u::Comm::wait(double timeout) {
-  xbt_assert(p_state == started || p_state == inited);
+  xbt_assert(state_ == started || state_ == inited);
 
 
-  if (p_state == started) {
-    simcall_comm_wait(p_inferior, timeout);
-    p_state = finished;
+  if (state_ == started) {
+    simcall_comm_wait(inferior_, timeout);
+    state_ = finished;
     return;
   }
 
   // It's not started yet. Do it in one simcall
   if (srcBuff_ != NULL) {
     return;
   }
 
   // It's not started yet. Do it in one simcall
   if (srcBuff_ != NULL) {
-    simcall_comm_send(sender_->getInferior(), mailbox_->getInferior(), p_remains, rate_,
+    simcall_comm_send(sender_->getInferior(), mailbox_->getInferior(), remains_, rate_,
         srcBuff_, srcBuffSize_,
         matchFunction_, copyDataFunction_,
         srcBuff_, srcBuffSize_,
         matchFunction_, copyDataFunction_,
-        p_userData, timeout);
+        userData_, timeout);
   } else { // Receiver
     simcall_comm_recv(receiver_->getInferior(), mailbox_->getInferior(), dstBuff_, &dstBuffSize_,
         matchFunction_, copyDataFunction_,
   } else { // Receiver
     simcall_comm_recv(receiver_->getInferior(), mailbox_->getInferior(), dstBuff_, &dstBuffSize_,
         matchFunction_, copyDataFunction_,
-        p_userData, timeout, rate_);
+        userData_, timeout, rate_);
   }
   }
-  p_state = finished;
+  state_ = finished;
 }
 
 s4u::Comm &s4u::Comm::send_async(s4u::Actor *sender, Mailbox &dest, void *data, int simulatedSize) {
 }
 
 s4u::Comm &s4u::Comm::send_async(s4u::Actor *sender, Mailbox &dest, void *data, int simulatedSize) {