Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
cosmetic in mutex
[simgrid.git] / src / kernel / activity / MailboxImpl.cpp
1 /* Copyright (c) 2007-2018. 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 "src/kernel/activity/MailboxImpl.hpp"
7 #include "src/kernel/activity/CommImpl.hpp"
8
9 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(simix_mailbox, simix, "Mailbox implementation");
10
11 static std::map<std::string, smx_mailbox_t>* mailboxes = new std::map<std::string, smx_mailbox_t>;
12
13 void SIMIX_mailbox_exit()
14 {
15   for (auto const& elm : *mailboxes)
16     delete elm.second;
17   delete mailboxes;
18 }
19
20 /******************************************************************************/
21 /*                           Rendez-Vous Points                               */
22 /******************************************************************************/
23
24 namespace simgrid {
25 namespace kernel {
26 namespace activity {
27 /** @brief Returns the mailbox of that name, or nullptr */
28 MailboxImpl* MailboxImpl::byNameOrNull(const char* name)
29 {
30   auto mbox = mailboxes->find(name);
31   if (mbox != mailboxes->end())
32     return mbox->second;
33   else
34     return nullptr;
35 }
36 /** @brief Returns the mailbox of that name, newly created on need */
37 MailboxImpl* MailboxImpl::byNameOrCreate(const char* name)
38 {
39   xbt_assert(name, "Mailboxes must have a name");
40   /* two processes may have pushed the same mbox_create simcall at the same time */
41   auto m = mailboxes->find(name);
42   if (m == mailboxes->end()) {
43     smx_mailbox_t mbox = new MailboxImpl(name);
44     XBT_DEBUG("Creating a mailbox at %p with name %s", mbox, name);
45     (*mailboxes)[mbox->name_] = mbox;
46     return mbox;
47   } else
48     return m->second;
49 }
50 /** @brief set the receiver of the mailbox to allow eager sends
51  *  \param actor The receiving dude
52  */
53 void MailboxImpl::setReceiver(s4u::ActorPtr actor)
54 {
55   if (actor != nullptr)
56     this->permanent_receiver = actor.get()->get_impl();
57   else
58     this->permanent_receiver = nullptr;
59 }
60 /** @brief Pushes a communication activity into a mailbox
61  *  @param comm What to add
62  */
63 void MailboxImpl::push(activity::CommImplPtr comm)
64 {
65   comm->mbox = this;
66   this->comm_queue.push_back(std::move(comm));
67 }
68
69 /** @brief Removes a communication activity from a mailbox
70  *  @param activity What to remove
71  */
72 void MailboxImpl::remove(smx_activity_t activity)
73 {
74   simgrid::kernel::activity::CommImplPtr comm =
75       boost::static_pointer_cast<simgrid::kernel::activity::CommImpl>(activity);
76
77   xbt_assert(comm->mbox == this, "Comm %p is in mailbox %s, not mailbox %s", comm.get(),
78              (comm->mbox ? comm->mbox->get_cname() : "(null)"), this->get_cname());
79   comm->mbox = nullptr;
80   for (auto it = this->comm_queue.begin(); it != this->comm_queue.end(); it++)
81     if (*it == comm) {
82       this->comm_queue.erase(it);
83       return;
84     }
85   xbt_die("Comm %p not found in mailbox %s", comm.get(), this->get_cname());
86 }
87 }
88 }
89 }