X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/4dbb8aa24d54e0a4091b1f01017032702d0376f7..b67d191c3627cb8e64017cfedcbbbafe9f4dfcc3:/include/simgrid/s4u/mailbox.hpp diff --git a/include/simgrid/s4u/mailbox.hpp b/include/simgrid/s4u/mailbox.hpp index d98da456ed..3d1b6abd2e 100644 --- a/include/simgrid/s4u/mailbox.hpp +++ b/include/simgrid/s4u/mailbox.hpp @@ -6,15 +6,17 @@ #ifndef SIMGRID_S4U_MAILBOX_HPP #define SIMGRID_S4U_MAILBOX_HPP -#include +#include +#include -#include "actor.hpp" +#ifdef __cplusplus + +# include +#include 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,26 +24,47 @@ 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 Comm; +XBT_PUBLIC_CLASS Mailbox { + friend Comm; private: - Mailbox(const char*name, smx_rdv_t inferior); + Mailbox(const char*name, smx_mailbox_t inferior); public: - ~Mailbox(); - + ~Mailbox(); + protected: - smx_rdv_t getInferior() { return p_inferior; } + smx_mailbox_t getInferior() { return pimpl_; } public: - /** Retrieve the mailbox associated to the given string */ - static Mailbox *byName(const char *name); + /** Get the name of that mailbox */ + const char *getName(); + /** Retrieve the mailbox associated to the given string */ + static Mailbox *byName(const char *name); + /** Returns whether the mailbox contains queued communications */ + bool empty(); + + /** Declare that the specified process is a permanent receiver on that mailbox + * + * It means that the communications sent to this mailbox will start flowing to its host even before he does a recv(). + * This models the real behavior of TCP and MPI communications, amongst other. + */ + void setReceiver(smx_process_t process); + /** Return the process declared as permanent receiver, or nullptr if none **/ + smx_process_t receiver(); private: - std::string p_name; - smx_rdv_t p_inferior; - static boost::unordered_map *channels; + std::string name_; + smx_mailbox_t pimpl_; + static boost::unordered_map *mailboxes; + friend s4u::Engine; }; }} // namespace simgrid::s4u +#endif /* C++ */ + +XBT_PUBLIC(sg_mbox_t) sg_mbox_by_name(const char*name); +XBT_PUBLIC(int) sg_mbox_is_empty(sg_mbox_t mbox); +XBT_PUBLIC(void)sg_mbox_setReceiver(sg_mbox_t mbox, smx_process_t process); +XBT_PUBLIC(smx_process_t) sg_mbox_receiver(sg_mbox_t mbox); + #endif /* SIMGRID_S4U_MAILBOX_HPP */