X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/f2236ed8987d2350cba5d839b6420e53968b6225..13e0a19c4ad0b51d69d582f554e844cc15e74294:/include/simgrid/s4u/mailbox.hpp diff --git a/include/simgrid/s4u/mailbox.hpp b/include/simgrid/s4u/mailbox.hpp index 2a75091cd9..3d1b6abd2e 100644 --- a/include/simgrid/s4u/mailbox.hpp +++ b/include/simgrid/s4u/mailbox.hpp @@ -3,15 +3,15 @@ /* This program is free software; you can redistribute it and/or modify it * under the terms of the license (GNU LGPL) which comes with this package. */ -#ifdef __cplusplus - #ifndef SIMGRID_S4U_MAILBOX_HPP #define SIMGRID_S4U_MAILBOX_HPP -#include - #include #include + +#ifdef __cplusplus + +# include #include namespace simgrid { @@ -33,23 +33,38 @@ public: ~Mailbox(); protected: - smx_mailbox_t getInferior() { return inferior_; } + smx_mailbox_t getInferior() { return pimpl_; } public: + /** 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: - smx_mailbox_t inferior_; + std::string name_; + smx_mailbox_t pimpl_; static boost::unordered_map *mailboxes; + friend s4u::Engine; }; }} // namespace simgrid::s4u -#endif +#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 */