Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Activity refactoring
[simgrid.git] / include / simgrid / s4u / Comm.hpp
1 /* Copyright (c) 2006-2021. 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_COMM_HPP
7 #define SIMGRID_S4U_COMM_HPP
8
9 #include <simgrid/forward.h>
10 #include <simgrid/s4u/Activity.hpp>
11
12 #include <string>
13 #include <vector>
14
15 namespace simgrid {
16 namespace s4u {
17 /** @brief Communication async
18  *
19  * Represents all asynchronous communications, that you can test or wait onto.
20  */
21 class XBT_PUBLIC Comm : public Activity_T<Comm> {
22   Mailbox* mailbox_                   = nullptr;
23   kernel::actor::ActorImpl* sender_   = nullptr; /* specified for normal mailbox-based communications*/
24   kernel::actor::ActorImpl* receiver_ = nullptr;
25   Host* from_                         = nullptr; /* specified only for direct host-to-host communications */
26   Host* to_                           = nullptr;
27   double rate_                        = -1;
28   void* dst_buff_                     = nullptr;
29   size_t dst_buff_size_               = 0;
30   void* src_buff_                     = nullptr;
31   size_t src_buff_size_               = sizeof(void*);
32   /* FIXME: expose these elements in the API */
33   bool detached_                                                          = false;
34   bool (*match_fun_)(void*, void*, kernel::activity::CommImpl*)           = nullptr;
35   void (*clean_fun_)(void*)                                               = nullptr;
36   void (*copy_data_function_)(kernel::activity::CommImpl*, void*, size_t) = nullptr;
37
38   Comm() = default;
39
40 public:
41 #ifndef DOXYGEN
42   friend Mailbox; // Factory of comms
43 #endif
44
45   ~Comm() override;
46
47   /*! Creates a communication beween the two given hosts, bypassing the mailbox mechanism. */
48   static CommPtr sendto_init(Host* from, Host* to);
49   /** Do an asynchronous communication between two arbitrary hosts.
50    *
51    * This initializes a communication that completely bypass the mailbox and actors mechanism.
52    * There is really no limit on the hosts involved. In particular, the actor does not have to be on one of the involved
53    * hosts.
54    */
55   static CommPtr sendto_async(Host* from, Host* to, uint64_t simulated_size_in_bytes);
56   /** Do a blocking communication between two arbitrary hosts.
57    *
58    * This starts a blocking communication right away, bypassing the mailbox and actors mechanism.
59    * The calling actor is blocked until the end of the communication; there is really no limit on the hosts involved.
60    * In particular, the actor does not have to be on one of the involved hosts. Enjoy the comfort of the simulator :)
61    */
62   static void sendto(Host* from, Host* to, uint64_t simulated_size_in_bytes);
63
64   static xbt::signal<void(Comm const&)> on_send;
65   static xbt::signal<void(Comm const&)> on_recv;
66   static xbt::signal<void(Comm const&)> on_start;
67   static xbt::signal<void(Comm const&)> on_completion;
68
69   /*! take a vector s4u::CommPtr and return when one of them is finished.
70    * The return value is the rank of the first finished CommPtr. */
71   static ssize_t wait_any(const std::vector<CommPtr>& comms) { return wait_any_for(comms, -1); }
72   /*! Same as wait_any, but with a timeout. Return -1 if the timeout occurs.*/
73   static ssize_t wait_any_for(const std::vector<CommPtr>& comms, double timeout);
74
75   /*! take a vector s4u::CommPtr and return when all of them is finished. */
76   static void wait_all(const std::vector<CommPtr>& comms);
77   /*! Same as wait_all, but with a timeout. Return the number of terminated comm (less than comms.size() if the timeout
78    * occurs). */
79   static size_t wait_all_for(const std::vector<CommPtr>& comms, double timeout);
80   /*! take a vector s4u::CommPtr and return the rank of the first finished one (or -1 if none is done). */
81   static ssize_t test_any(const std::vector<CommPtr>& comms);
82
83 #ifndef DOXYGEN
84   XBT_ATTRIB_DEPRECATED_v332("Please use a plain vector for parameter")
85   static int wait_any(const std::vector<CommPtr>* comms) { return static_cast<int>(wait_any_for(*comms, -1)); }
86   XBT_ATTRIB_DEPRECATED_v332("Please use a plain vector for first parameter")
87   static int wait_any_for(const std::vector<CommPtr>* comms, double timeout) { return static_cast<int>(wait_any_for(*comms, timeout)); }
88   XBT_ATTRIB_DEPRECATED_v332("Please use a plain vector for parameter")
89   static void wait_all(const std::vector<CommPtr>* comms) { wait_all(*comms); }
90   XBT_ATTRIB_DEPRECATED_v332("Please use a plain vector for parameter")
91   static int test_any(const std::vector<CommPtr>* comms) { return static_cast<int>(test_any(*comms)); }
92 #endif
93
94   Comm* start() override;
95   Comm* wait_for(double timeout) override;
96   bool test() override;
97
98   /** Start the comm, and ignore its result. It can be completely forgotten after that. */
99   Comm* detach();
100   /** Start the comm, and ignore its result. It can be completely forgotten after that. */
101   Comm* detach(void (*clean_function)(void*))
102   {
103     clean_fun_ = clean_function;
104     return detach();
105   }
106
107   /** Sets the maximal communication rate (in byte/sec). Must be done before start */
108   CommPtr set_rate(double rate);
109
110   /** Specify the data to send.
111    *
112    * @beginrst
113    * This is way will get actually copied over to the receiver.
114    * That's completely unrelated from the simulated size (given by :cpp:func:`simgrid::s4u::Comm::set_payload_size`):
115    * you can send a short buffer in your simulator, that represents a very large message
116    * in the simulated world, or the opposite.
117    * @endrst
118    */
119   CommPtr set_src_data(void* buff);
120   /** Specify the size of the data to send (not to be mixed with set_payload_size())
121    *
122    * @beginrst
123    * That's the size of the data to actually copy in the simulator (ie, the data passed with
124    * :cpp:func:`simgrid::s4u::Comm::set_src_data`). That's completely unrelated from the simulated size (given by
125    * :cpp:func:`simgrid::s4u::Comm::set_payload_size`)): you can send a short buffer in your simulator, that represents
126    * a very large message in the simulated world, or the opposite.
127    * @endrst
128    */
129   CommPtr set_src_data_size(size_t size);
130
131   /** Specify the amount of bytes which exchange should be simulated (not to be mixed with set_src_data_size())
132    *
133    * @beginrst
134    * That's the size of the simulated data, that's completely related from the actual data size (given by
135    * :cpp:func:`simgrid::s4u::Comm::set_src_data_size`).
136    * @endrst
137    */
138   CommPtr set_payload_size(uint64_t bytes);
139
140   /** Specify the data to send and its size (not to be mixed with set_payload_size())
141    *
142    * @beginrst
143    * This is way will get actually copied over to the receiver.
144    * That's completely unrelated from the simulated size (given by :cpp:func:`simgrid::s4u::Comm::set_payload_size`):
145    * you can send a short buffer in your simulator, that represents a very large message
146    * in the simulated world, or the opposite.
147    * @endrst
148    */
149   CommPtr set_src_data(void* buff, size_t size);
150
151   /** Specify where to receive the data.
152    *
153    * That's a buffer where the sent data will be copied */
154   CommPtr set_dst_data(void** buff);
155   /** Specify the buffer in which the data should be received
156    *
157    * That's a buffer where the sent data will be copied  */
158   CommPtr set_dst_data(void** buff, size_t size);
159   /** Retrieve where the data will be copied on the receiver side */
160   void* get_dst_data();
161
162   /** Retrieve the mailbox on which this comm acts */
163   Mailbox* get_mailbox() const;
164   /** Retrieve the size of the received data. Not to be mixed with @ref Activity::set_remaining()  */
165   size_t get_dst_data_size() const;
166
167   Actor* get_sender() const;
168
169   bool is_assigned() const override { return (to_ != nullptr && from_ != nullptr) || (mailbox_ != nullptr); }
170
171   CommPtr set_copy_data_callback(void (*callback)(kernel::activity::CommImpl*, void*, size_t));
172   static void copy_buffer_callback(kernel::activity::CommImpl*, void*, size_t);
173   static void copy_pointer_callback(kernel::activity::CommImpl*, void*, size_t);
174 };
175 } // namespace s4u
176 } // namespace simgrid
177
178 #endif /* SIMGRID_S4U_COMM_HPP */