Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Modernize FindSimGrid
[simgrid.git] / include / simgrid / s4u / Comm.hpp
1 /* Copyright (c) 2006-2017. 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 <xbt/base.h>
10
11 #include <simgrid/forward.h>
12 #include <simgrid/s4u/Activity.hpp>
13 #include <simgrid/s4u/Mailbox.hpp> // DEPRECATED 3.20
14 #include <simgrid/s4u/forward.hpp>
15
16 #include <vector>
17
18 namespace simgrid {
19 namespace s4u {
20 /** @brief Communication async
21  *
22  * Represents all asynchronous communications, that you can test or wait onto.
23  */
24 XBT_PUBLIC_CLASS Comm : public Activity
25 {
26   Comm() : Activity() {}
27 public:
28   friend XBT_PUBLIC(void) intrusive_ptr_release(simgrid::s4u::Comm* c);
29   friend XBT_PUBLIC(void) intrusive_ptr_add_ref(simgrid::s4u::Comm* c);
30   friend Mailbox; // Factory of comms
31
32   virtual ~Comm();
33
34   /*! take a vector s4u::CommPtr and return when one of them is finished.
35    * The return value is the rank of the first finished CommPtr. */
36   static int wait_any(std::vector<CommPtr> * comms) { return wait_any_for(comms, -1); }
37   /*! Same as wait_any, but with a timeout. If the timeout occurs, parameter last is returned.*/
38   static int wait_any_for(std::vector<CommPtr> * comms_in, double timeout)
39   {
40     // Map to dynar<Synchro*>:
41     xbt_dynar_t comms = xbt_dynar_new(sizeof(simgrid::kernel::activity::ActivityImpl*), [](void*ptr){
42       intrusive_ptr_release(*(simgrid::kernel::activity::ActivityImpl**)ptr);
43     });
44     for (auto const& comm : *comms_in) {
45       if (comm->state_ == inited)
46         comm->start();
47       xbt_assert(comm->state_ == started);
48       simgrid::kernel::activity::ActivityImpl* ptr = comm->pimpl_.get();
49       intrusive_ptr_add_ref(ptr);
50       xbt_dynar_push_as(comms, simgrid::kernel::activity::ActivityImpl*, ptr);
51     }
52     // Call the underlying simcall:
53     int idx = simcall_comm_waitany(comms, timeout);
54     xbt_dynar_free(&comms);
55     return idx;
56   }
57
58   /*! take a vector s4u::CommPtr and return when all of them is finished. */
59   static void wait_all(std::vector<CommPtr> * comms)
60   {
61     // TODO: this should be a simcall or something
62     // TODO: we are missing a version with timeout
63     for (CommPtr comm : *comms) {
64       comm->wait();
65     }
66   }
67   /*! take a vector s4u::CommPtr and return the rank of the first finished one (or -1 if none is done). */
68   static int test_any(std::vector<CommPtr> * comms);
69
70   /** Creates (but don't start) an async send to the mailbox @p dest */
71   XBT_ATTRIB_DEPRECATED_v320("Use Mailbox::put_init(): v3.20 will turn this warning into an error.") static CommPtr
72   send_init(MailboxPtr dest)
73   {
74     return dest->put_init();
75   }
76   /** Creates (but don't start) an async send to the mailbox @p dest */
77   XBT_ATTRIB_DEPRECATED_v320("Use Mailbox::put_init(): v3.20 will turn this warning into an error.") static CommPtr
78   send_init(MailboxPtr dest, void* data, int simulatedByteAmount)
79   {
80     return dest->put_init(data, simulatedByteAmount);
81   }
82   /** Creates and start an async send to the mailbox @p dest */
83   XBT_ATTRIB_DEPRECATED_v320("Use Mailbox::put_async(): v3.20 will turn this warning into an error.") static CommPtr
84   send_async(MailboxPtr dest, void* data, int simulatedByteAmount)
85   {
86     return dest->put_async(data, simulatedByteAmount);
87   }
88   /** Creates (but don't start) an async recv onto the mailbox @p from */
89   XBT_ATTRIB_DEPRECATED_v320("Use Mailbox::get_init(): v3.20 will turn this warning into an error.") static CommPtr
90   recv_init(MailboxPtr from)
91   {
92     return from->get_init();
93   }
94   /** Creates and start an async recv to the mailbox @p from */
95   XBT_ATTRIB_DEPRECATED_v320("Use Mailbox::get_async(): v3.20 will turn this warning into an error.") static CommPtr
96   recv_async(MailboxPtr from, void** data)
97   {
98     return from->get_async(data);
99   }
100
101   Activity* start() override;
102   Activity* wait() override;
103   Activity* wait(double timeout) override;
104
105   /** Start the comm, and ignore its result. It can be completely forgotten after that. */
106   Activity* detach();
107   /** Start the comm, and ignore its result. It can be completely forgotten after that. */
108   Activity* detach(void (*cleanFunction)(void*))
109   {
110     cleanFunction_ = cleanFunction;
111     return detach();
112   }
113
114   /** Sets the maximal communication rate (in byte/sec). Must be done before start */
115   Activity* setRate(double rate);
116
117   /** Specify the data to send */
118   Activity* setSrcData(void* buff);
119   /** Specify the size of the data to send */
120   Activity* setSrcDataSize(size_t size);
121   /** Specify the data to send and its size */
122   Activity* setSrcData(void* buff, size_t size);
123
124   /** Specify where to receive the data */
125   Activity* setDstData(void** buff);
126   /** Specify the buffer in which the data should be received */
127   Activity* setDstData(void** buff, size_t size);
128   /** Retrieve the size of the received data */
129   size_t getDstDataSize();
130
131   bool test();
132   Activity* cancel();
133
134   /** Retrieve the mailbox on which this comm acts */
135   MailboxPtr getMailbox();
136
137 private:
138   double rate_        = -1;
139   void* dstBuff_      = nullptr;
140   size_t dstBuffSize_ = 0;
141   void* srcBuff_      = nullptr;
142   size_t srcBuffSize_ = sizeof(void*);
143
144   /* FIXME: expose these elements in the API */
145   int detached_ = 0;
146   int (*matchFunction_)(void*, void*, simgrid::kernel::activity::CommImpl*) = nullptr;
147   void (*cleanFunction_)(void*) = nullptr;
148   void (*copyDataFunction_)(smx_activity_t, void*, size_t) = nullptr;
149
150   smx_actor_t sender_   = nullptr;
151   smx_actor_t receiver_ = nullptr;
152   MailboxPtr mailbox_   = nullptr;
153
154   std::atomic_int_fast32_t refcount_{0};
155 };
156 }
157 } // namespace simgrid::s4u
158
159 #endif /* SIMGRID_S4U_COMM_HPP */