Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
(partially) convert simix::MailboxImpl to C++
[simgrid.git] / src / simix / MailboxImpl.hpp
1 /* Copyright (c) 2007-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 #ifndef SIMIX_MAILBOXIMPL_H
7 #define SIMIX_MAILBOXIMPL_H
8
9 #include <boost/circular_buffer.hpp>
10
11 #include "simgrid/s4u/Mailbox.hpp"
12 #include "src/simix/ActorImpl.hpp"
13
14 #define MAX_MAILBOX_SIZE 10000000
15 namespace simgrid {
16 namespace simix {
17
18 /** @brief Rendez-vous point datatype */
19
20 class MailboxImpl {
21   explicit MailboxImpl(const char* name)
22       : piface_(this), name_(xbt_strdup(name)), comm_queue(MAX_MAILBOX_SIZE), done_comm_queue(MAX_MAILBOX_SIZE)
23   {
24   }
25
26 public:
27   ~MailboxImpl() { xbt_free(name_); }
28
29   static MailboxImpl* byNameOrNull(const char* name);
30   static MailboxImpl* byNameOrCreate(const char* name);
31   void push(smx_activity_t synchro);
32   void remove(smx_activity_t activity);
33   simgrid::s4u::Mailbox piface_; // Our interface
34   char* name_;
35
36   boost::intrusive_ptr<simgrid::simix::ActorImpl> permanent_receiver; //process which the mailbox is attached to
37   boost::circular_buffer_space_optimized<smx_activity_t> comm_queue;
38   boost::circular_buffer_space_optimized<smx_activity_t> done_comm_queue;//messages already received in the permanent receive mode
39 };
40 }
41 }
42
43 XBT_PRIVATE void SIMIX_mailbox_exit();
44
45 XBT_PRIVATE void SIMIX_mbox_set_receiver(smx_mailbox_t mbox, smx_actor_t proc);
46
47 #endif /* SIMIX_MAILBOXIMPL_H */