Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Don't mix public and private data members (sonar).
[simgrid.git] / src / kernel / activity / CommImpl.cpp
1 /* Copyright (c) 2007-2022. 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 <simgrid/Exception.hpp>
7 #include <simgrid/kernel/routing/NetPoint.hpp>
8 #include <simgrid/modelchecker.h>
9 #include <simgrid/s4u/Host.hpp>
10
11 #include "src/kernel/activity/CommImpl.hpp"
12 #include "src/kernel/activity/MailboxImpl.hpp"
13 #include "src/kernel/actor/SimcallObserver.hpp"
14 #include "src/kernel/context/Context.hpp"
15 #include "src/kernel/resource/CpuImpl.hpp"
16 #include "src/kernel/resource/LinkImpl.hpp"
17 #include "src/kernel/resource/StandardLinkImpl.hpp"
18 #include "src/mc/mc_replay.hpp"
19
20 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(ker_network, kernel, "Kernel network-related synchronization");
21
22 XBT_PRIVATE void simcall_HANDLER_comm_send(smx_simcall_t simcall, smx_actor_t src, smx_mailbox_t mbox, double task_size,
23                                            double rate, unsigned char* src_buff, size_t src_buff_size,
24                                            bool (*match_fun)(void*, void*, simgrid::kernel::activity::CommImpl*),
25                                            void (*copy_data_fun)(simgrid::kernel::activity::CommImpl*, void*, size_t),
26                                            void* data, double timeout)
27 {
28   simgrid::kernel::actor::CommIsendSimcall observer(src, mbox, task_size, rate, src_buff, src_buff_size, match_fun,
29                                                     nullptr, copy_data_fun, data, false);
30   simgrid::kernel::activity::ActivityImplPtr comm = simgrid::kernel::activity::CommImpl::isend(&observer);
31   simcall->mc_value_ = 0;
32   comm->wait_for(simcall->issuer_, timeout);
33 }
34
35 XBT_PRIVATE simgrid::kernel::activity::ActivityImplPtr simcall_HANDLER_comm_isend(
36     smx_simcall_t /*simcall*/, smx_actor_t src_proc, smx_mailbox_t mbox, double task_size, double rate,
37     unsigned char* src_buff, size_t src_buff_size,
38     bool (*match_fun)(void*, void*, simgrid::kernel::activity::CommImpl*),
39     void (*clean_fun)(void*), // used to free the synchro in case of problem after a detached send
40     void (*copy_data_fun)(simgrid::kernel::activity::CommImpl*, void*, size_t), // used to copy data if not default one
41     void* data, bool detached)
42 {
43   simgrid::kernel::actor::CommIsendSimcall observer(src_proc, mbox, task_size, rate, src_buff, src_buff_size, match_fun,
44                                                     clean_fun, copy_data_fun, data, detached);
45   return simgrid::kernel::activity::CommImpl::isend(&observer);
46 }
47
48 XBT_PRIVATE void simcall_HANDLER_comm_recv(smx_simcall_t simcall, smx_actor_t receiver, smx_mailbox_t mbox,
49                                            unsigned char* dst_buff, size_t* dst_buff_size,
50                                            bool (*match_fun)(void*, void*, simgrid::kernel::activity::CommImpl*),
51                                            void (*copy_data_fun)(simgrid::kernel::activity::CommImpl*, void*, size_t),
52                                            void* data, double timeout, double rate)
53 {
54   simgrid::kernel::actor::CommIrecvSimcall observer(receiver, mbox, dst_buff, dst_buff_size, match_fun, copy_data_fun,
55                                                     data, rate);
56   simgrid::kernel::activity::ActivityImplPtr comm = simgrid::kernel::activity::CommImpl::irecv(&observer);
57   simcall->mc_value_ = 0;
58   comm->wait_for(simcall->issuer_, timeout);
59 }
60
61 XBT_PRIVATE simgrid::kernel::activity::ActivityImplPtr
62 simcall_HANDLER_comm_irecv(smx_simcall_t /*simcall*/, smx_actor_t receiver, smx_mailbox_t mbox, unsigned char* dst_buff,
63                            size_t* dst_buff_size, bool (*match_fun)(void*, void*, simgrid::kernel::activity::CommImpl*),
64                            void (*copy_data_fun)(simgrid::kernel::activity::CommImpl*, void*, size_t), void* data,
65                            double rate)
66 {
67   simgrid::kernel::actor::CommIrecvSimcall observer(receiver, mbox, dst_buff, dst_buff_size, match_fun, copy_data_fun,
68                                                     data, rate);
69   return simgrid::kernel::activity::CommImpl::irecv(&observer);
70 }
71
72 void simcall_HANDLER_comm_wait(smx_simcall_t simcall, simgrid::kernel::activity::CommImpl* comm, double timeout)
73 {
74   comm->wait_for(simcall->issuer_, timeout);
75 }
76
77 void simcall_HANDLER_comm_waitany(smx_simcall_t simcall, simgrid::kernel::activity::CommImpl* comms[], size_t count,
78                                   double timeout)
79 {
80   std::vector<simgrid::kernel::activity::CommImpl*> comms_vec(comms, comms + count);
81   simgrid::kernel::activity::CommImpl::wait_any_for(simcall->issuer_, comms_vec, timeout);
82 }
83
84 /******************************************************************************/
85 /*                    SIMIX_comm_copy_data callbacks                       */
86 /******************************************************************************/
87 // XBT_ATTRIB_DEPRECATED_v333
88 void SIMIX_comm_set_copy_data_callback(void (*callback)(simgrid::kernel::activity::CommImpl*, void*, size_t))
89 {
90   simgrid::kernel::activity::CommImpl::set_copy_data_callback(callback);
91 }
92
93 // XBT_ATTRIB_DEPRECATED_v333
94 void SIMIX_comm_copy_buffer_callback(simgrid::kernel::activity::CommImpl* comm, void* buff, size_t buff_size)
95 {
96   simgrid::s4u::Comm::copy_buffer_callback(comm, buff, buff_size);
97 }
98
99 // XBT_ATTRIB_DEPRECATED_v333
100 void SIMIX_comm_copy_pointer_callback(simgrid::kernel::activity::CommImpl* comm, void* buff, size_t buff_size)
101 {
102   simgrid::s4u::Comm::copy_pointer_callback(comm, buff, buff_size);
103 }
104
105 namespace simgrid {
106 namespace kernel {
107 namespace activity {
108 xbt::signal<void(CommImpl const&)> CommImpl::on_start;
109 xbt::signal<void(CommImpl const&)> CommImpl::on_completion;
110
111 void (*CommImpl::copy_data_callback_)(CommImpl*, void*, size_t) = &s4u::Comm::copy_pointer_callback;
112
113 void CommImpl::set_copy_data_callback(void (*callback)(CommImpl*, void*, size_t))
114 {
115   copy_data_callback_ = callback;
116 }
117
118 CommImpl& CommImpl::set_size(double size)
119 {
120   size_ = size;
121   return *this;
122 }
123
124 CommImpl& CommImpl::set_rate(double rate)
125 {
126   rate_ = rate;
127   return *this;
128 }
129 CommImpl& CommImpl::set_mailbox(MailboxImpl* mbox)
130 {
131   if (mbox != nullptr)
132     mbox_id_ = mbox->get_id();
133   mbox_ = mbox;
134   return *this;
135 }
136
137 CommImpl& CommImpl::set_src_buff(unsigned char* buff, size_t size)
138 {
139   src_buff_      = buff;
140   src_buff_size_ = size;
141   return *this;
142 }
143
144 CommImpl& CommImpl::set_dst_buff(unsigned char* buff, size_t* size)
145 {
146   dst_buff_      = buff;
147   dst_buff_size_ = size;
148   return *this;
149 }
150
151 CommImpl& CommImpl::detach()
152 {
153   detached_ = true;
154   return *this;
155 }
156
157 CommImpl::CommImpl(s4u::Host* from, s4u::Host* to, double bytes) : size_(bytes), detached_(true), from_(from), to_(to)
158 {
159   set_state(State::READY);
160 }
161
162 CommImpl::~CommImpl()
163 {
164   XBT_DEBUG("Really free communication %p in state %s (detached = %d)", this, get_state_str(), detached_);
165
166   cleanup_surf();
167
168   if (detached_ && get_state() != State::DONE) {
169     /* the communication has failed and was detached:
170      * we have to free the buffer */
171     if (clean_fun)
172       clean_fun(src_buff_);
173     src_buff_ = nullptr;
174   } else if (mbox_) {
175     mbox_->remove(this);
176   }
177 }
178
179 /**  @brief Starts the simulation of a communication synchro. */
180 CommImpl* CommImpl::start()
181 {
182   /* If both the sender and the receiver are already there, start the communication */
183   if (get_state() == State::READY) {
184     from_ = from_ != nullptr ? from_ : src_actor_->get_host();
185     to_   = to_ != nullptr ? to_ : dst_actor_->get_host();
186     /* Getting the network_model from the origin host
187      * Valid while we have a single network model, otherwise we would need to change this function to first get the
188      * routes and later create the respective surf actions */
189     auto net_model = from_->get_netpoint()->get_englobing_zone()->get_network_model();
190
191     surf_action_ = net_model->communicate(from_, to_, size_, rate_);
192     surf_action_->set_activity(this);
193     surf_action_->set_category(get_tracing_category());
194     set_start_time(surf_action_->get_start_time());
195     set_state(State::RUNNING);
196     on_start(*this);
197
198     XBT_DEBUG("Starting communication %p from '%s' to '%s' (surf_action: %p; state: %s)", this, from_->get_cname(),
199               to_->get_cname(), surf_action_, get_state_str());
200
201     /* If a link is failed, detect it immediately */
202     if (surf_action_->get_state() == resource::Action::State::FAILED) {
203       XBT_DEBUG("Communication from '%s' to '%s' failed to start because of a link failure", from_->get_cname(),
204                 to_->get_cname());
205       set_state(State::LINK_FAILURE);
206       post();
207
208     } else if ((src_actor_ != nullptr && src_actor_->is_suspended()) ||
209                (dst_actor_ != nullptr && dst_actor_->is_suspended())) {
210       /* If any of the actor is suspended, create the synchro but stop its execution,
211          it will be restarted when the sender actor resume */
212       if (src_actor_->is_suspended())
213         XBT_DEBUG("The communication is suspended on startup because src (%s@%s) was suspended since it initiated the "
214                   "communication",
215                   src_actor_->get_cname(), src_actor_->get_host()->get_cname());
216       else
217         XBT_DEBUG("The communication is suspended on startup because dst (%s@%s) was suspended since it initiated the "
218                   "communication",
219                   dst_actor_->get_cname(), dst_actor_->get_host()->get_cname());
220
221       surf_action_->suspend();
222     }
223   }
224
225   return this;
226 }
227
228 std::vector<s4u::Link*> CommImpl::get_traversed_links() const
229 {
230   xbt_assert(get_state() != State::WAITING, "You cannot use %s() if your communication is not ready (%s)", __FUNCTION__,
231              get_state_str());
232   std::vector<s4u::Link*> vlinks;
233   XBT_ATTRIB_UNUSED double res = 0;
234   from_->route_to(to_, vlinks, &res);
235   return vlinks;
236 }
237
238 /** @brief Copy the communication data from the sender's buffer to the receiver's one  */
239 void CommImpl::copy_data()
240 {
241   size_t buff_size = src_buff_size_;
242   /* If there is no data to copy then return */
243   if (not src_buff_ || not dst_buff_ || copied_)
244     return;
245
246   XBT_DEBUG("Copying comm %p data from %s (%p) -> %s (%p) (%zu bytes)", this,
247             src_actor_ ? src_actor_->get_host()->get_cname() : "a finished actor", src_buff_,
248             dst_actor_ ? dst_actor_->get_host()->get_cname() : "a finished actor", dst_buff_, buff_size);
249
250   /* Copy at most dst_buff_size bytes of the message to receiver's buffer */
251   if (dst_buff_size_) {
252     buff_size = std::min(buff_size, *dst_buff_size_);
253
254     /* Update the receiver's buffer size to the copied amount */
255     *dst_buff_size_ = buff_size;
256   }
257
258   if (buff_size > 0) {
259     if (copy_data_fun)
260       copy_data_fun(this, src_buff_, buff_size);
261     else
262       copy_data_callback_(this, src_buff_, buff_size);
263   }
264
265   /* Set the copied flag so we copy data only once */
266   /* (this function might be called from both communication ends) */
267   copied_ = true;
268 }
269
270 ActivityImplPtr CommImpl::isend(const actor::CommIsendSimcall* observer)
271 {
272   auto* mbox = observer->get_mailbox();
273   XBT_DEBUG("send from mailbox %p", mbox);
274
275   /* Prepare a synchro describing us, so that it gets passed to the user-provided filter of other side */
276   CommImplPtr this_comm(new CommImpl(CommImpl::Type::SEND));
277
278   /* Look for communication synchro matching our needs. We also provide a description of
279    * ourself so that the other side also gets a chance of choosing if it wants to match with us.
280    *
281    * If it is not found then push our communication into the rendez-vous point */
282   CommImplPtr other_comm =
283       mbox->find_matching_comm(CommImpl::Type::RECEIVE, observer->get_match_fun(), observer->get_payload(), this_comm,
284                                /*done*/ false, /*remove_matching*/ true);
285
286   if (not other_comm) {
287     other_comm = std::move(this_comm);
288
289     if (mbox->is_permanent()) {
290       // this mailbox is for small messages, which have to be sent right now
291       other_comm->set_state(State::READY);
292       other_comm->dst_actor_ = mbox->get_permanent_receiver().get();
293       mbox->push_done(other_comm);
294       XBT_DEBUG("pushing a message into the permanent receive list %p, comm %p", mbox, other_comm.get());
295
296     } else {
297       mbox->push(other_comm);
298     }
299   } else {
300     XBT_DEBUG("Receive already pushed");
301
302     other_comm->set_state(State::READY);
303   }
304
305   if (observer->is_detached()) {
306     other_comm->detach();
307     other_comm->clean_fun = observer->get_clean_fun();
308   } else {
309     other_comm->clean_fun = nullptr;
310     observer->get_issuer()->activities_.emplace_back(other_comm);
311   }
312
313   /* Setup the communication synchro */
314   other_comm->src_actor_ = observer->get_issuer();
315   other_comm->src_data_  = observer->get_payload();
316   (*other_comm)
317       .set_src_buff(observer->get_src_buff(), observer->get_src_buff_size())
318       .set_size(observer->get_payload_size())
319       .set_rate(observer->get_rate());
320
321   other_comm->match_fun     = observer->get_match_fun();
322   other_comm->copy_data_fun = observer->get_copy_data_fun();
323
324   if (MC_is_active() || MC_record_replay_is_active())
325     other_comm->set_state(simgrid::kernel::activity::State::RUNNING);
326   else
327     other_comm->start();
328
329   return (observer->is_detached() ? nullptr : other_comm);
330 }
331
332 ActivityImplPtr CommImpl::irecv(const actor::CommIrecvSimcall* observer)
333 {
334   CommImplPtr this_synchro(new CommImpl(CommImpl::Type::RECEIVE));
335   auto* mbox = observer->get_mailbox();
336   XBT_DEBUG("recv from mbox %p. this_synchro=%p", mbox, this_synchro.get());
337
338   CommImplPtr other_comm;
339   // communication already done, get it inside the list of completed comms
340   if (mbox->is_permanent() && mbox->has_some_done_comm()) {
341     XBT_DEBUG("We have a comm that has probably already been received, trying to match it, to skip the communication");
342     // find a match in the list of already received comms
343     other_comm = mbox->find_matching_comm(CommImpl::Type::SEND, observer->get_match_fun(), observer->get_payload(),
344                                           this_synchro, /*done*/ true, /*remove_matching*/ true);
345     // if not found, assume the receiver came first, register it to the mailbox in the classical way
346     if (not other_comm) {
347       XBT_DEBUG("We have messages in the permanent receive list, but not the one we are looking for, pushing request "
348                 "into list");
349       other_comm = std::move(this_synchro);
350       mbox->push(other_comm);
351     } else {
352       if (other_comm->surf_action_ && other_comm->get_remaining() < 1e-12) {
353         XBT_DEBUG("comm %p has been already sent, and is finished, destroy it", other_comm.get());
354         other_comm->set_state(State::DONE);
355         other_comm->set_mailbox(nullptr);
356       }
357     }
358   } else {
359     /* Prepare a comm describing us, so that it gets passed to the user-provided filter of other side */
360
361     /* Look for communication activity matching our needs. We also provide a description of
362      * ourself so that the other side also gets a chance of choosing if it wants to match with us.
363      *
364      * If it is not found then push our communication into the rendez-vous point */
365     other_comm = mbox->find_matching_comm(CommImpl::Type::SEND, observer->get_match_fun(), observer->get_payload(),
366                                           this_synchro, /*done*/ false, /*remove_matching*/ true);
367
368     if (other_comm == nullptr) {
369       XBT_DEBUG("Receive pushed first (%zu comm enqueued so far)", mbox->size());
370       other_comm = std::move(this_synchro);
371       mbox->push(other_comm);
372     } else {
373       XBT_DEBUG("Match my %p with the existing %p", this_synchro.get(), other_comm.get());
374
375       other_comm->set_state(simgrid::kernel::activity::State::READY);
376     }
377     observer->get_issuer()->activities_.emplace_back(other_comm);
378   }
379
380   /* Setup communication synchro */
381   other_comm->dst_actor_ = observer->get_issuer();
382   other_comm->dst_data_  = observer->get_payload();
383   other_comm->set_dst_buff(observer->get_dst_buff(), observer->get_dst_buff_size());
384
385   if (observer->get_rate() > -1.0 && (other_comm->get_rate() < 0.0 || observer->get_rate() < other_comm->get_rate()))
386     other_comm->set_rate(observer->get_rate());
387
388   other_comm->match_fun     = observer->get_match_fun();
389   other_comm->copy_data_fun = observer->get_copy_data_fun();
390
391   if (MC_is_active() || MC_record_replay_is_active()) {
392     other_comm->set_state(State::RUNNING);
393     return other_comm;
394   }
395   other_comm->start();
396
397   return other_comm;
398 }
399
400 bool CommImpl::test(actor::ActorImpl* issuer)
401 {
402   if ((MC_is_active() || MC_record_replay_is_active()) && src_actor_ && dst_actor_)
403     set_state(State::DONE);
404   return ActivityImpl::test(issuer);
405 }
406
407 void CommImpl::wait_for(actor::ActorImpl* issuer, double timeout)
408 {
409   XBT_DEBUG("CommImpl::wait_for(%g), %p, state %s", timeout, this, get_state_str());
410
411   /* Associate this simcall to the wait synchro */
412   register_simcall(&issuer->simcall_);
413   if (MC_is_active() || MC_record_replay_is_active()) {
414     int idx = issuer->simcall_.mc_value_;
415     if (idx == 0) {
416       set_state(State::DONE);
417     } else {
418       /* If we reached this point, the wait simcall must have a timeout */
419       /* Otherwise it shouldn't be enabled and executed by the MC */
420       xbt_assert(timeout >= 0.0,
421                  "The checker asked me to raise a timeout on a communication that is not expecting any timeout");
422       set_state(issuer == src_actor_ ? State::SRC_TIMEOUT : State::DST_TIMEOUT);
423     }
424     finish();
425     return;
426   }
427   ActivityImpl::wait_for(issuer, timeout);
428 }
429
430 void CommImpl::wait_any_for(actor::ActorImpl* issuer, const std::vector<CommImpl*>& comms, double timeout)
431 {
432   std::vector<ActivityImpl*> activities(comms.begin(), comms.end());
433   ActivityImpl::wait_any_for(issuer, activities, timeout);
434 }
435
436 void CommImpl::suspend()
437 {
438   /* FIXME: shall we suspend also the timeout synchro? */
439   if (surf_action_)
440     surf_action_->suspend();
441   /* if not created yet, the action will be suspended on creation, in CommImpl::start() */
442 }
443
444 void CommImpl::resume()
445 {
446   /*FIXME: check what happen with the timeouts */
447   if (surf_action_)
448     surf_action_->resume();
449   /* in the other case, the synchro were not really suspended yet, see CommImpl::suspend() and CommImpl::start() */
450 }
451
452 void CommImpl::cancel()
453 {
454   /* if the synchro is a waiting state means that it is still in a mbox so remove from it and delete it */
455   if (get_state() == State::WAITING) {
456     if (not detached_) {
457       mbox_->remove(this);
458       set_state(State::CANCELED);
459     }
460   } else if (not MC_is_active() /* when running the MC there are no surf actions */
461              && not MC_record_replay_is_active() && (get_state() == State::READY || get_state() == State::RUNNING)) {
462     surf_action_->cancel();
463   }
464 }
465
466 /** @brief This is part of the cleanup process, probably an internal command */
467 void CommImpl::cleanup_surf()
468 {
469   clean_action();
470
471   if (src_timeout_) {
472     src_timeout_->unref();
473     src_timeout_ = nullptr;
474   }
475
476   if (dst_timeout_) {
477     dst_timeout_->unref();
478     dst_timeout_ = nullptr;
479   }
480 }
481
482 void CommImpl::post()
483 {
484   on_completion(*this);
485
486   /* Update synchro state */
487   if (src_timeout_ && src_timeout_->get_state() == resource::Action::State::FINISHED)
488     set_state(State::SRC_TIMEOUT);
489   else if (dst_timeout_ && dst_timeout_->get_state() == resource::Action::State::FINISHED)
490     set_state(State::DST_TIMEOUT);
491   else if (src_timeout_ && src_timeout_->get_state() == resource::Action::State::FAILED)
492     set_state(State::SRC_HOST_FAILURE);
493   else if (dst_timeout_ && dst_timeout_->get_state() == resource::Action::State::FAILED)
494     set_state(State::DST_HOST_FAILURE);
495   else if (surf_action_ && surf_action_->get_state() == resource::Action::State::FAILED) {
496     set_state(State::LINK_FAILURE);
497   } else
498     set_state(State::DONE);
499
500   XBT_DEBUG("CommImpl::post(): comm %p, state %s, src_proc %p, dst_proc %p, detached: %d", this, get_state_str(),
501             src_actor_.get(), dst_actor_.get(), detached_);
502
503   /* destroy the surf actions associated with the Simix communication */
504   cleanup_surf();
505
506   /* Answer all simcalls associated with the synchro */
507   finish();
508 }
509 void CommImpl::set_exception(actor::ActorImpl* issuer)
510 {
511   switch (get_state()) {
512     case State::FAILED:
513       issuer->exception_ = std::make_exception_ptr(NetworkFailureException(XBT_THROW_POINT, "Remote peer failed"));
514       break;
515     case State::SRC_TIMEOUT:
516       issuer->exception_ =
517           std::make_exception_ptr(TimeoutException(XBT_THROW_POINT, "Communication timeouted because of the sender"));
518       break;
519
520     case State::DST_TIMEOUT:
521       issuer->exception_ =
522           std::make_exception_ptr(TimeoutException(XBT_THROW_POINT, "Communication timeouted because of the receiver"));
523       break;
524
525     case State::SRC_HOST_FAILURE:
526       if (issuer == src_actor_)
527         issuer->context_->set_wannadie();
528       else {
529         set_state(State::FAILED);
530         issuer->exception_ = std::make_exception_ptr(NetworkFailureException(XBT_THROW_POINT, "Remote peer failed"));
531       }
532       break;
533
534     case State::DST_HOST_FAILURE:
535       if (issuer == dst_actor_)
536         issuer->context_->set_wannadie();
537       else {
538         set_state(State::FAILED);
539         issuer->exception_ = std::make_exception_ptr(NetworkFailureException(XBT_THROW_POINT, "Remote peer failed"));
540       }
541       break;
542
543     case State::LINK_FAILURE:
544       XBT_DEBUG("Link failure in synchro %p between '%s' and '%s': posting an exception to the issuer: %s (%p) "
545                 "detached:%d",
546                 this, src_actor_ ? src_actor_->get_host()->get_cname() : nullptr,
547                 dst_actor_ ? dst_actor_->get_host()->get_cname() : nullptr, issuer->get_cname(), issuer, detached_);
548       if (src_actor_ == issuer) {
549         XBT_DEBUG("I'm source");
550       } else if (dst_actor_ == issuer) {
551         XBT_DEBUG("I'm dest");
552       } else {
553         XBT_DEBUG("I'm neither source nor dest");
554       }
555       set_state(State::FAILED);
556       issuer->throw_exception(std::make_exception_ptr(NetworkFailureException(XBT_THROW_POINT, "Link failure")));
557       break;
558
559     case State::CANCELED:
560       if (issuer == dst_actor_)
561         issuer->exception_ =
562             std::make_exception_ptr(CancelException(XBT_THROW_POINT, "Communication canceled by the sender"));
563       else
564         issuer->exception_ =
565             std::make_exception_ptr(CancelException(XBT_THROW_POINT, "Communication canceled by the receiver"));
566       break;
567
568     default:
569       xbt_assert(get_state() == State::DONE, "Internal error in CommImpl::finish(): unexpected synchro state %s",
570                  get_state_str());
571   }
572 }
573
574 void CommImpl::finish()
575 {
576   XBT_DEBUG("CommImpl::finish() in state %s", get_state_str());
577   /* If the synchro is still in a rendez-vous point then remove from it */
578   if (mbox_)
579     mbox_->remove(this);
580
581   if (get_state() == State::DONE)
582     copy_data();
583
584   while (not simcalls_.empty()) {
585     smx_simcall_t simcall = simcalls_.front();
586     simcalls_.pop_front();
587
588     /* If a waitany simcall is waiting for this synchro to finish, then remove it from the other synchros in the waitany
589      * list. Afterwards, get the position of the actual synchro in the waitany list and return it as the result of the
590      * simcall */
591
592     if (simcall->call_ == simix::Simcall::NONE) // FIXME: maybe a better way to handle this case
593       continue;                                 // if actor handling comm is killed
594
595     handle_activity_waitany(simcall);
596
597     /* Check out for errors */
598
599     if (not simcall->issuer_->get_host()->is_on()) {
600       simcall->issuer_->context_->set_wannadie();
601     } else {
602       // Do not answer to dying actors
603       if (not simcall->issuer_->context_->wannadie()) {
604         set_exception(simcall->issuer_);
605         simcall->issuer_->simcall_answer();
606       }
607     }
608
609     simcall->issuer_->waiting_synchro_ = nullptr;
610     simcall->issuer_->activities_.remove(this);
611     if (detached_) {
612       if (simcall->issuer_ != dst_actor_ && dst_actor_ != nullptr)
613         dst_actor_->activities_.remove(this);
614       if (simcall->issuer_ != src_actor_ && src_actor_ != nullptr)
615         src_actor_->activities_.remove(this);
616     }
617   }
618 }
619
620 } // namespace activity
621 } // namespace kernel
622 } // namespace simgrid