Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
[s4u] add Actor::getPPid and this_actor::getPPid()
[simgrid.git] / src / s4u / s4u_mailbox.cpp
1 /* Copyright (c) 2006-2015. The SimGrid Team.
2  * All rights reserved.                                                     */
3
4 /* This program is free software; you can redistribute it and/or modify it
5  * under the terms of the license (GNU LGPL) which comes with this package. */
6
7 #include "xbt/log.h"
8 #include "src/msg/msg_private.h"
9 #include "src/simix/ActorImpl.hpp"
10 #include "src/simix/smx_network_private.h"
11 #include "simgrid/s4u/mailbox.hpp"
12
13 XBT_LOG_EXTERNAL_CATEGORY(s4u);
14 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(s4u_channel,s4u,"S4U Communication Mailboxes");
15
16 namespace simgrid {
17 namespace s4u {
18
19 const char *Mailbox::getName() {
20   return pimpl_->name;
21 }
22
23 MailboxPtr Mailbox::byName(const char*name)
24 {
25   // FIXME: there is a race condition here where two actors run Mailbox::byName
26   // on a non-existent mailbox during the same scheduling round. Both will be
27   // interrupted in the simcall creating the underlying simix mbox.
28   // Only one simix object will be created, but two S4U objects will be created.
29   // Only one S4U object will be stored in the hashmap and used, and the other
30   // one will be leaked.
31   smx_mailbox_t mbox = SIMIX_mbox_get_by_name(name);
32   if (mbox == nullptr)
33     mbox = simcall_mbox_create(name);
34   return MailboxPtr(&mbox->piface_, true);
35 }
36
37 bool Mailbox::empty()
38 {
39   return pimpl_->comm_queue.empty();
40 }
41
42 smx_activity_t Mailbox::front()
43 {
44   return pimpl_->comm_queue.empty() ? nullptr : pimpl_->comm_queue.front();
45 }
46
47 void Mailbox::setReceiver(ActorPtr actor) {
48   simcall_mbox_set_receiver(pimpl_, actor == nullptr ? nullptr : actor->pimpl_);
49 }
50
51 /** @brief get the receiver (process associated to the mailbox) */
52 ActorPtr Mailbox::receiver() {
53   if(pimpl_->permanent_receiver == nullptr)
54     return ActorPtr();
55   return ActorPtr(&pimpl_->permanent_receiver->getIface());
56 }
57
58 }
59 }
60
61 /*------- C functions -------*/
62
63 sg_mbox_t sg_mbox_by_name(const char*name){
64   return simgrid::s4u::Mailbox::byName(name).get();
65 }
66 int sg_mbox_is_empty(sg_mbox_t mbox) {
67   return mbox->empty();
68 }
69 void sg_mbox_setReceiver(sg_mbox_t mbox, smx_process_t process) {
70   mbox->setReceiver(&process->getIface());
71 }