Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
[s4u] Add a header file with forward declarations
[simgrid.git] / include / simgrid / s4u / mailbox.hpp
index c519700..1962201 100644 (file)
@@ -8,13 +8,13 @@
 
 #include <boost/unordered_map.hpp>
 
-#include "actor.hpp"
+#include <xbt/base.h>
+#include <simgrid/s4u/forward.hpp>
+#include <simgrid/s4u/actor.hpp>
 
 namespace simgrid {
 namespace s4u {
 
-class Comm;
-
 /** @brief Mailboxes
  *
  * Rendez-vous point for network communications, similar to URLs on which you could post and retrieve data.
@@ -22,8 +22,7 @@ class Comm;
  * You can access any mailbox without any latency. The network delay are only related to the location of the
  * sender and receiver.
  */
-class Mailbox {
-       friend Actor; // FIXME: remove it when recv async exist
+XBT_PUBLIC_CLASS Mailbox {
        friend Comm;
 
 private:
@@ -35,13 +34,15 @@ protected:
        smx_rdv_t getInferior() { return p_inferior; }
 
 public:
+       /** Get the name of that mailbox */
+       const char *getName();
        /** Retrieve the mailbox associated to the given string */
        static Mailbox *byName(const char *name);
 
 private:
        std::string p_name;
        smx_rdv_t p_inferior;
-       static boost::unordered_map<std::string, Mailbox *> *channels;
+       static boost::unordered_map<std::string, Mailbox *> *mailboxes;
 };
 }} // namespace simgrid::s4u