Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge branch 'master' into depencencies
[simgrid.git] / src / kernel / activity / MailboxImpl.hpp
1 /* Copyright (c) 2007-2020. 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_KERNEL_ACTIVITY_MAILBOX_HPP
7 #define SIMGRID_KERNEL_ACTIVITY_MAILBOX_HPP
8
9 #include <boost/circular_buffer.hpp>
10 #include <xbt/string.hpp>
11
12 #include "simgrid/s4u/Mailbox.hpp"
13 #include "src/kernel/activity/CommImpl.hpp"
14 #include "src/kernel/actor/ActorImpl.hpp"
15
16 namespace simgrid {
17 namespace kernel {
18 namespace activity {
19
20 /** @brief Implementation of the s4u::Mailbox */
21
22 class MailboxImpl {
23   static constexpr size_t MAX_MAILBOX_SIZE = 10000000;
24
25   s4u::Mailbox piface_;
26   xbt::string name_;
27
28   friend s4u::Mailbox;
29   friend s4u::Mailbox* s4u::Mailbox::by_name(const std::string& name);
30   friend mc::CommunicationDeterminismChecker;
31
32   explicit MailboxImpl(const std::string& name) : piface_(this), name_(name) {}
33
34 public:
35   const xbt::string& get_name() const { return name_; }
36   const char* get_cname() const { return name_.c_str(); }
37   static MailboxImpl* by_name_or_null(const std::string& name);
38   static MailboxImpl* by_name_or_create(const std::string& name);
39   void set_receiver(s4u::ActorPtr actor);
40   void push(CommImplPtr comm);
41   void remove(const CommImplPtr& comm);
42   CommImplPtr iprobe(int type, bool (*match_fun)(void*, void*, CommImpl*), void* data);
43   CommImplPtr find_matching_comm(CommImpl::Type type, bool (*match_fun)(void*, void*, CommImpl*), void* this_user_data,
44                                  const CommImplPtr& my_synchro, bool done, bool remove_matching);
45
46   actor::ActorImplPtr permanent_receiver_; // actor to which the mailbox is attached
47   boost::circular_buffer_space_optimized<CommImplPtr> comm_queue_{MAX_MAILBOX_SIZE};
48   // messages already received in the permanent receive mode
49   boost::circular_buffer_space_optimized<CommImplPtr> done_comm_queue_{MAX_MAILBOX_SIZE};
50 };
51 } // namespace activity
52 } // namespace kernel
53 } // namespace simgrid
54
55 XBT_PRIVATE void SIMIX_mailbox_exit();
56
57 #endif