Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Implement send async
[simgrid.git] / include / simgrid / s4u / mailbox.hpp
1 /* Copyright (c) 2006-2015. The SimGrid Team. All rights reserved.          */
2
3 /* This program is free software; you can redistribute it and/or modify it
4  * under the terms of the license (GNU LGPL) which comes with this package. */
5
6 #ifndef SIMGRID_S4U_MAILBOX_HPP
7 #define SIMGRID_S4U_MAILBOX_HPP
8
9 #include <boost/unordered_map.hpp>
10
11 #include "actor.hpp"
12
13 namespace simgrid {
14 namespace s4u {
15
16 class Comm;
17
18 /** @brief Mailboxes
19  *
20  * Rendez-vous point for network communications, similar to URLs on which you could post and retrieve data.
21  * They are not network locations: you can post and retrieve on a given mailbox from anywhere on the network.
22  * You can access any mailbox without any latency. The network delay are only related to the location of the
23  * sender and receiver.
24  */
25 class Mailbox {
26         friend Actor; // FIXME: remove it when recv async exist
27         friend Comm;
28
29 private:
30         Mailbox(const char*name, smx_rdv_t inferior);
31 public:
32         ~Mailbox();
33         
34 protected:
35         smx_rdv_t getInferior() { return p_inferior; }
36
37 public:
38         /** Retrieve the mailbox associated to the given string */
39         static Mailbox *byName(const char *name);
40
41 private:
42         std::string p_name;
43         smx_rdv_t p_inferior;
44         static boost::unordered_map<std::string, Mailbox *> *channels;
45 };
46 }} // namespace simgrid::s4u
47
48 #endif /* SIMGRID_S4U_MAILBOX_HPP */