Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Connect the right signal.
[simgrid.git] / include / simgrid / s4u / Comm.hpp
1 /* Copyright (c) 2006-2023. 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::s4u {
16 /** @brief Communication async
17  *
18  * Represents all asynchronous communications, that you can test or wait onto.
19  */
20 class XBT_PUBLIC Comm : public Activity_T<Comm> {
21   friend Mailbox; // Factory of comms
22   friend kernel::activity::CommImpl;
23   /* specified for normal mailbox-based communications*/
24   Mailbox* mailbox_                   = nullptr;
25   kernel::actor::ActorImpl* sender_   = nullptr;
26   kernel::actor::ActorImpl* receiver_ = 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
33   /* FIXME: expose these elements in the API */
34   bool detached_                                                          = false;
35   std::function<bool(void*, void*, kernel::activity::CommImpl*)> match_fun_;
36   std::function<void(void*)> clean_fun_;
37   std::function<void(kernel::activity::CommImpl*, void*, size_t)> copy_data_function_;
38
39   Comm() = default;
40   Comm* do_start() override;
41
42 protected:
43   static xbt::signal<void(Comm const&)> on_send;
44   xbt::signal<void(Comm const&)> on_this_send;
45   static xbt::signal<void(Comm const&)> on_recv;
46   xbt::signal<void(Comm const&)> on_this_recv;
47   inline static xbt::signal<void(Comm const&)> on_start;
48   xbt::signal<void(Comm const&)> on_this_start;
49
50   void fire_on_completion() const override {
51     /* The completion signal of a Comm has to be thrown only once and not by the sender AND the receiver.
52        then Comm::on_completion is thrown in the kernel in CommImpl::finish.
53      */
54   }
55   void fire_on_this_completion() const override {
56     /* The completion signal of a Comm has to be thrown only once and not by the sender AND the receiver.
57        then Comm::on_completion is thrown in the kernel in CommImpl::finish.
58      */
59   }
60   void fire_on_suspend() const override { on_suspend(*this); }
61   void fire_on_this_suspend() const override { on_this_suspend(*this); }
62   void fire_on_resume() const override { on_resume(*this); }
63   void fire_on_this_resume() const override { on_this_resume(*this); }
64   void fire_on_veto() const override { on_veto(const_cast<Comm&>(*this)); }
65   void fire_on_this_veto() const override { on_this_veto(const_cast<Comm&>(*this)); }
66
67 public:
68   /*! \static Add a callback fired when the send of any Comm is posted  */
69   static void on_send_cb(const std::function<void(Comm const&)>& cb) { on_send.connect(cb); }
70   /*! Add a callback fired when the send of this specific Comm is posted  */
71   void on_this_send_cb(const std::function<void(Comm const&)>& cb) { on_this_send.connect(cb); }
72   /*! \static Add a callback fired when the recv of any Comm is posted  */
73   static void on_recv_cb(const std::function<void(Comm const&)>& cb) { on_recv.connect(cb); }
74   /*! Add a callback fired when the recv of this specific Comm is posted  */
75   void on_this_recv_cb(const std::function<void(Comm const&)>& cb) { on_this_recv.connect(cb); }
76   /*! \static Add a callback fired when any Comm starts  */
77   static void on_start_cb(const std::function<void(Comm const&)>& cb) { on_start.connect(cb); }
78   /*!  Add a callback fired when this specific Comm starts  */
79   void on_this_start_cb(const std::function<void(Comm const&)>& cb) { on_this_start.connect(cb); }
80
81   CommPtr set_copy_data_callback(const std::function<void(kernel::activity::CommImpl*, void*, size_t)>& callback);
82   XBT_ATTRIB_DEPRECATED_v337("Please manifest if you actually need this function") static void copy_buffer_callback(
83       kernel::activity::CommImpl*, void*, size_t);
84   XBT_ATTRIB_DEPRECATED_v337("Please manifest if you actually need this function") static void copy_pointer_callback(
85       kernel::activity::CommImpl*, void*, size_t);
86
87   ~Comm() override;
88
89   static void send(kernel::actor::ActorImpl* sender, const Mailbox* mbox, double task_size, double rate, void* src_buff,
90                    size_t src_buff_size,
91                    const std::function<bool(void*, void*, simgrid::kernel::activity::CommImpl*)>& match_fun,
92                    const std::function<void(simgrid::kernel::activity::CommImpl*, void*, size_t)>& copy_data_fun,
93                    void* data, double timeout);
94   static void recv(kernel::actor::ActorImpl* receiver, const Mailbox* mbox, void* dst_buff, size_t* dst_buff_size,
95                    const std::function<bool(void*, void*, simgrid::kernel::activity::CommImpl*)>& match_fun,
96                    const std::function<void(simgrid::kernel::activity::CommImpl*, void*, size_t)>& copy_data_fun,
97                    void* data, double timeout, double rate);
98
99   /* \static
100    * "One-sided" communications. This way of communicating bypasses the mailbox and actors mechanism. It creates a
101    * communication (vetoabled, asynchronous, or synchronous) directly between two hosts. There is really no limit on
102    * the hosts involved. In particular, the actor creating such a communication does not have to be on one of the
103    * involved hosts! Enjoy the comfort of the simulator :)
104    */
105   static CommPtr sendto_init(); /* Source and Destination hosts have to be set before the communication can start */
106   static CommPtr sendto_init(Host* from, Host* to);
107   static CommPtr sendto_async(Host* from, Host* to, uint64_t simulated_size_in_bytes);
108   static void sendto(Host* from, Host* to, uint64_t simulated_size_in_bytes);
109
110   CommPtr set_source(Host* from);
111   Host* get_source() const;
112   CommPtr set_destination(Host* to);
113   Host* get_destination() const;
114
115   /* Mailbox-based communications */
116   CommPtr set_mailbox(Mailbox* mailbox);
117   /** Retrieve the mailbox on which this comm acts */
118   Mailbox* get_mailbox() const { return mailbox_; }
119
120   /** Specify the data to send.
121    *
122    * @beginrst
123    * This is way will get actually copied over to the receiver.
124    * That's completely unrelated from the simulated size (given by :cpp:func:`simgrid::s4u::Comm::set_payload_size`):
125    * you can send a short buffer in your simulator, that represents a very large message
126    * in the simulated world, or the opposite.
127    * @endrst
128    */
129   CommPtr set_src_data(void* buff);
130   /** Specify the size of the data to send (not to be mixed with set_payload_size())
131    *
132    * @beginrst
133    * That's the size of the data to actually copy in the simulator (ie, the data passed with
134    * :cpp:func:`simgrid::s4u::Comm::set_src_data`). That's completely unrelated from the simulated size (given by
135    * :cpp:func:`simgrid::s4u::Comm::set_payload_size`)): you can send a short buffer in your simulator, that represents
136    * a very large message in the simulated world, or the opposite.
137    * @endrst
138    */
139   CommPtr set_src_data_size(size_t size);
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() const { return dst_buff_; }
161   /** Retrieve the size of the received data. Not to be mixed with @ref Activity::get_remaining()  */
162   size_t get_dst_data_size() const { return dst_buff_size_; }
163
164   /* Common functions */
165
166   /** Specify the amount of bytes which exchange should be simulated (not to be mixed with set_src_data_size())
167    *
168    * @beginrst
169    * That's the size of the simulated data, that's completely unrelated from the actual data size (given by
170    * :cpp:func:`simgrid::s4u::Comm::set_src_data_size`).
171    * @endrst
172    */
173   CommPtr set_payload_size(uint64_t bytes);
174   /** Sets the maximal communication rate (in byte/sec). Must be done before start */
175   CommPtr set_rate(double rate);
176
177   bool is_assigned() const override;
178   Actor* get_sender() const;
179   Actor* get_receiver() const;
180
181   /* Comm life cycle */
182   /** Start the comm, and ignore its result. It can be completely forgotten after that. */
183   Comm* detach();
184   /** Start the comm, and ignore its result. It can be completely forgotten after that. */
185   Comm* detach(const std::function<void(void*)>& clean_function)
186   {
187     clean_fun_ = clean_function;
188     return detach();
189   }
190
191   Comm* wait_for(double timeout) override;
192
193   /*! \static take a vector s4u::CommPtr and return the rank of the first finished one (or -1 if none is done). */
194   static ssize_t test_any(const std::vector<CommPtr>& comms);
195
196   /*! \static take a vector s4u::CommPtr and return when one of them is finished.
197    * The return value is the rank of the first finished CommPtr. */
198   static ssize_t wait_any(const std::vector<CommPtr>& comms) { return wait_any_for(comms, -1); }
199   /*! \static Same as wait_any, but with a timeout. Return -1 if the timeout occurs.*/
200   static ssize_t wait_any_for(const std::vector<CommPtr>& comms, double timeout);
201
202   /*! \static take a vector s4u::CommPtr and return when all of them is finished. */
203   static void wait_all(const std::vector<CommPtr>& comms);
204   /*! \static Same as wait_all, but with a timeout. Return the number of terminated comm (less than comms.size() if
205    *  the timeout occurs). */
206   static size_t wait_all_for(const std::vector<CommPtr>& comms, double timeout);
207 };
208 } // namespace simgrid::s4u
209
210 #endif /* SIMGRID_S4U_COMM_HPP */