Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Fix remaining warnings with mingw.
[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
68   /** Creates (but don't start) an async send to the mailbox @p dest */
69   XBT_ATTRIB_DEPRECATED_v320("Use Mailbox::put_init(): v3.20 will turn this warning into an error.") static CommPtr
70   send_init(MailboxPtr dest)
71   {
72     return dest->put_init();
73   }
74   /** Creates (but don't start) an async send to the mailbox @p dest */
75   XBT_ATTRIB_DEPRECATED_v320("Use Mailbox::put_init(): v3.20 will turn this warning into an error.") static CommPtr
76   send_init(MailboxPtr dest, void* data, int simulatedByteAmount)
77   {
78     return dest->put_init(data, simulatedByteAmount);
79   }
80   /** Creates and start an async send to the mailbox @p dest */
81   XBT_ATTRIB_DEPRECATED_v320("Use Mailbox::put_async(): v3.20 will turn this warning into an error.") static CommPtr
82   send_async(MailboxPtr dest, void* data, int simulatedByteAmount)
83   {
84     return dest->put_async(data, simulatedByteAmount);
85   }
86   /** Creates (but don't start) an async recv onto the mailbox @p from */
87   XBT_ATTRIB_DEPRECATED_v320("Use Mailbox::get_init(): v3.20 will turn this warning into an error.") static CommPtr
88   recv_init(MailboxPtr from)
89   {
90     return from->get_init();
91   }
92   /** Creates and start an async recv to the mailbox @p from */
93   XBT_ATTRIB_DEPRECATED_v320("Use Mailbox::get_async(): v3.20 will turn this warning into an error.") static CommPtr
94   recv_async(MailboxPtr from, void** data)
95   {
96     return from->get_async(data);
97   }
98
99   void start() override;
100   void wait() override;
101   void wait(double timeout) override;
102
103   /** Start the comm, and ignore its result. It can be completely forgotten after that. */
104   void detach();
105   /** Start the comm, and ignore its result. It can be completely forgotten after that. */
106   void detach(void (*cleanFunction)(void*))
107   {
108     cleanFunction_ = cleanFunction;
109     detach();
110   }
111
112   /** Sets the maximal communication rate (in byte/sec). Must be done before start */
113   void setRate(double rate);
114
115   /** Specify the data to send */
116   void setSrcData(void* buff);
117   /** Specify the size of the data to send */
118   void setSrcDataSize(size_t size);
119   /** Specify the data to send and its size */
120   void setSrcData(void* buff, size_t size);
121
122   /** Specify where to receive the data */
123   void setDstData(void** buff);
124   /** Specify the buffer in which the data should be received */
125   void setDstData(void** buff, size_t size);
126   /** Retrieve the size of the received data */
127   size_t getDstDataSize();
128
129   bool test();
130   void cancel();
131
132   /** Retrieve the mailbox on which this comm acts */
133   MailboxPtr getMailbox();
134
135 private:
136   double rate_        = -1;
137   void* dstBuff_      = nullptr;
138   size_t dstBuffSize_ = 0;
139   void* srcBuff_      = nullptr;
140   size_t srcBuffSize_ = sizeof(void*);
141
142   /* FIXME: expose these elements in the API */
143   int detached_ = 0;
144   int (*matchFunction_)(void*, void*, simgrid::kernel::activity::CommImpl*) = nullptr;
145   void (*cleanFunction_)(void*) = nullptr;
146   void (*copyDataFunction_)(smx_activity_t, void*, size_t) = nullptr;
147
148   smx_actor_t sender_   = nullptr;
149   smx_actor_t receiver_ = nullptr;
150   MailboxPtr mailbox_   = nullptr;
151
152   std::atomic_int_fast32_t refcount_{0};
153 };
154 }
155 } // namespace simgrid::s4u
156
157 #endif /* SIMGRID_S4U_COMM_HPP */