Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge branch 'master' of scm.gforge.inria.fr:/gitroot/simgrid/simgrid
[simgrid.git] / src / s4u / s4u_comm.cpp
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 #include "xbt/log.h"
7 #include "src/msg/msg_private.h"
8
9 #include "simgrid/s4u/Comm.hpp"
10 #include "simgrid/s4u/Mailbox.hpp"
11
12 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(s4u_comm,s4u_activity,"S4U asynchronous communications");
13
14 namespace simgrid {
15 namespace s4u {
16 Comm::~Comm()
17 {
18   if (state_ == started && not detached_ && (pimpl_ == nullptr || pimpl_->state == SIMIX_RUNNING)) {
19     XBT_INFO("Comm %p freed before its completion. Detached: %d, State: %d", this, detached_, state_);
20     if (pimpl_ != nullptr)
21       XBT_INFO("pimpl_->state: %d", pimpl_->state);
22     else
23       XBT_INFO("pimpl_ is null");
24     xbt_backtrace_display_current();
25   }
26   if (pimpl_)
27     pimpl_->unref();
28 }
29
30 s4u::CommPtr Comm::send_init(s4u::MailboxPtr chan)
31 {
32   CommPtr res   = CommPtr(new s4u::Comm());
33   res->sender_ = SIMIX_process_self();
34   res->mailbox_ = chan;
35   return res;
36 }
37
38 s4u::CommPtr Comm::recv_init(s4u::MailboxPtr chan)
39 {
40   CommPtr res    = CommPtr(new s4u::Comm());
41   res->receiver_ = SIMIX_process_self();
42   res->mailbox_ = chan;
43   return res;
44 }
45
46 void Comm::setRate(double rate) {
47   xbt_assert(state_==inited);
48   rate_ = rate;
49 }
50
51 void Comm::setSrcData(void * buff) {
52   xbt_assert(state_==inited);
53   xbt_assert(dstBuff_ == nullptr, "Cannot set the src and dst buffers at the same time");
54   srcBuff_ = buff;
55 }
56 void Comm::setSrcDataSize(size_t size){
57   xbt_assert(state_==inited);
58   srcBuffSize_ = size;
59 }
60 void Comm::setSrcData(void * buff, size_t size) {
61   xbt_assert(state_==inited);
62
63   xbt_assert(dstBuff_ == nullptr, "Cannot set the src and dst buffers at the same time");
64   srcBuff_ = buff;
65   srcBuffSize_ = size;
66 }
67 void Comm::setDstData(void ** buff) {
68   xbt_assert(state_==inited);
69   xbt_assert(srcBuff_ == nullptr, "Cannot set the src and dst buffers at the same time");
70   dstBuff_ = buff;
71 }
72 size_t Comm::getDstDataSize(){
73   xbt_assert(state_==finished);
74   return dstBuffSize_;
75 }
76 void Comm::setDstData(void ** buff, size_t size) {
77   xbt_assert(state_==inited);
78
79   xbt_assert(srcBuff_ == nullptr, "Cannot set the src and dst buffers at the same time");
80   dstBuff_ = buff;
81   dstBuffSize_ = size;
82 }
83
84 void Comm::start() {
85   xbt_assert(state_ == inited);
86
87   if (srcBuff_ != nullptr) { // Sender side
88     pimpl_ = simcall_comm_isend(sender_, mailbox_->getImpl(), remains_, rate_,
89         srcBuff_, srcBuffSize_,
90         matchFunction_, cleanFunction_, copyDataFunction_,
91         userData_, detached_);
92   } else if (dstBuff_ != nullptr) { // Receiver side
93     pimpl_ = simcall_comm_irecv(receiver_, mailbox_->getImpl(), dstBuff_, &dstBuffSize_,
94         matchFunction_, copyDataFunction_,
95         userData_, rate_);
96
97   } else {
98     xbt_die("Cannot start a communication before specifying whether we are the sender or the receiver");
99   }
100   state_ = started;
101 }
102 void Comm::wait() {
103   xbt_assert(state_ == started || state_ == inited);
104
105   if (state_ == started)
106     simcall_comm_wait(pimpl_, -1/*timeout*/);
107   else { // state_ == inited. Save a simcall and do directly a blocking send/recv
108     if (srcBuff_ != nullptr) {
109       simcall_comm_send(sender_, mailbox_->getImpl(), remains_, rate_,
110           srcBuff_, srcBuffSize_,
111           matchFunction_, copyDataFunction_,
112           userData_, -1 /*timeout*/);
113     } else {
114       simcall_comm_recv(receiver_, mailbox_->getImpl(), dstBuff_, &dstBuffSize_,
115           matchFunction_, copyDataFunction_,
116           userData_, -1/*timeout*/, rate_);
117     }
118   }
119   state_ = finished;
120   if (pimpl_)
121     pimpl_->unref();
122 }
123
124 void Comm::wait(double timeout) {
125   xbt_assert(state_ == started || state_ == inited);
126
127   if (state_ == started) {
128     simcall_comm_wait(pimpl_, timeout);
129     state_ = finished;
130     pimpl_->unref();
131     return;
132   }
133
134   // It's not started yet. Do it in one simcall
135   if (srcBuff_ != nullptr) {
136     simcall_comm_send(sender_, mailbox_->getImpl(), remains_, rate_,
137         srcBuff_, srcBuffSize_,
138         matchFunction_, copyDataFunction_,
139         userData_, timeout);
140   } else { // Receiver
141     simcall_comm_recv(receiver_, mailbox_->getImpl(), dstBuff_, &dstBuffSize_,
142         matchFunction_, copyDataFunction_,
143         userData_, timeout, rate_);
144   }
145   state_ = finished;
146   if (pimpl_)
147     pimpl_->unref();
148 }
149
150 void Comm::send_detached(MailboxPtr dest, void* data, int simulatedSize)
151 {
152   s4u::CommPtr res = CommPtr(s4u::Comm::send_init(dest));
153   res->setRemains(simulatedSize);
154   res->srcBuff_     = data;
155   res->srcBuffSize_ = sizeof(void*);
156   res->detached_    = true;
157   res->start();
158 }
159
160 s4u::CommPtr Comm::send_async(MailboxPtr dest, void* data, int simulatedSize)
161 {
162   s4u::CommPtr res = CommPtr(s4u::Comm::send_init(dest));
163   res->setRemains(simulatedSize);
164   res->srcBuff_     = data;
165   res->srcBuffSize_ = sizeof(void*);
166   res->start();
167   return res;
168 }
169
170 s4u::CommPtr Comm::recv_async(MailboxPtr dest, void** data)
171 {
172   s4u::CommPtr res = CommPtr(s4u::Comm::recv_init(dest));
173   res->setDstData(data, sizeof(*data));
174   res->start();
175   return res;
176 }
177
178 void Comm::cancel()
179 {
180   simgrid::kernel::activity::CommImpl* commPimpl = static_cast<simgrid::kernel::activity::CommImpl*>(pimpl_);
181   commPimpl->cancel();
182 }
183
184 bool Comm::test() {
185   xbt_assert(state_ == inited || state_ == started || state_ == finished);
186   
187   if (state_ == finished) 
188     xbt_die("Don't call test on a finished comm.");
189   
190   if (state_ == inited) {
191     this->start();
192   }
193   
194   if(simcall_comm_test(pimpl_)){
195     state_ = finished;
196     pimpl_->unref();
197     return true;
198   }
199   return false;
200 }
201
202 void intrusive_ptr_release(simgrid::s4u::Comm* c)
203 {
204   if (c->refcount_.fetch_sub(1, std::memory_order_release) == 1) {
205     std::atomic_thread_fence(std::memory_order_acquire);
206     delete c;
207   }
208 }
209 void intrusive_ptr_add_ref(simgrid::s4u::Comm* c)
210 {
211   c->refcount_.fetch_add(1, std::memory_order_relaxed);
212 }
213 }
214 } // namespaces