Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
51b017684d3122311ca8c97078a2dd446cfc1ce1
[simgrid.git] / src / simix / smx_network_private.h
1 /* Copyright (c) 2007-2010, 2012-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 #ifndef _SIMIX_NETWORK_PRIVATE_H
8 #define _SIMIX_NETWORK_PRIVATE_H
9
10 #include <string>
11
12 #include <boost/intrusive_ptr.hpp>
13 #include <boost/circular_buffer.hpp>
14
15 #include <xbt/base.h>
16
17 #include <simgrid/s4u/Mailbox.hpp>
18
19 #include "simgrid/simix.h"
20 #include "popping_private.h"
21 #include "src/simix/ActorImpl.hpp"
22
23
24 #define MAX_MAILBOX_SIZE 10000000
25 namespace simgrid {
26 namespace simix {
27
28 /** @brief Rendez-vous point datatype */
29
30 class Mailbox {
31 public:
32   Mailbox(const char* name) : piface_(this), name(xbt_strdup(name)), comm_queue(MAX_MAILBOX_SIZE), done_comm_queue(MAX_MAILBOX_SIZE) {}
33   ~Mailbox() {
34     xbt_free(name);
35   }
36
37   simgrid::s4u::Mailbox piface_; // Our interface
38   char* name;
39   boost::circular_buffer_space_optimized<smx_activity_t> comm_queue;
40   boost::intrusive_ptr<simgrid::simix::ActorImpl> permanent_receiver; //process which the mailbox is attached to
41   boost::circular_buffer_space_optimized<smx_activity_t> done_comm_queue;//messages already received in the permanent receive mode
42 };
43
44 }
45 }
46
47 XBT_PRIVATE void SIMIX_mailbox_exit();
48
49 XBT_PRIVATE smx_mailbox_t SIMIX_mbox_create(const char *name);
50 XBT_PRIVATE smx_mailbox_t SIMIX_mbox_get_by_name(const char *name);
51 XBT_PRIVATE void SIMIX_mbox_remove(smx_mailbox_t mbox, smx_activity_t comm);
52
53 XBT_PRIVATE void SIMIX_mbox_set_receiver(smx_mailbox_t mbox, smx_actor_t proc);
54 XBT_PRIVATE smx_activity_t SIMIX_comm_irecv(smx_actor_t dst_proc, smx_mailbox_t mbox,
55                               void *dst_buff, size_t *dst_buff_size,
56                               int (*match_fun)(void *, void *, smx_activity_t),
57                               void (*copy_data_fun)(smx_activity_t, void*, size_t),
58                               void *data, double rate);
59 XBT_PRIVATE smx_activity_t SIMIX_comm_iprobe(smx_actor_t dst_proc, smx_mailbox_t mbox, int type, int src,
60                               int tag, int (*match_fun)(void *, void *, smx_activity_t), void *data);
61
62 #endif