Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
All activities have their own finish method \o/
[simgrid.git] / src / simix / popping_bodies.cpp
1 /**********************************************************************/
2 /* File generated by src/simix/simcalls.py from src/simix/simcalls.in */
3 /*                                                                    */
4 /*                    DO NOT EVER CHANGE THIS FILE                    */
5 /*                                                                    */
6 /* change simcalls specification in src/simix/simcalls.in             */
7 /* Copyright (c) 2014-2019. The SimGrid Team. All rights reserved.    */
8 /**********************************************************************/
9
10 /*
11  * Note that the name comes from http://en.wikipedia.org/wiki/Popping
12  * Indeed, the control flow is doing a strange dance in there.
13  *
14  * That's not about http://en.wikipedia.org/wiki/Poop, despite the odor :)
15  */
16
17 #include "smx_private.hpp"
18 #include "src/mc/mc_forward.hpp"
19 #include "xbt/ex.h"
20 #include <functional>
21 #include <simgrid/simix.hpp>
22 /** @cond */ // Please Doxygen, don't look at this
23
24 template<class R, class... T>
25 inline static R simcall(e_smx_simcall_t call, T const&... t)
26 {
27   smx_actor_t self = SIMIX_process_self();
28   simgrid::simix::marshal(&self->simcall, call, t...);
29   if (self != simix_global->maestro_process) {
30     XBT_DEBUG("Yield process '%s' on simcall %s (%d)", self->get_cname(), SIMIX_simcall_name(self->simcall.call),
31               (int)self->simcall.call);
32     self->yield();
33   } else {
34     SIMIX_simcall_handle(&self->simcall, 0);
35   }
36   return simgrid::simix::unmarshal<R>(self->simcall.result);
37 }
38
39 inline static void simcall_BODY_process_suspend(smx_actor_t process)
40 {
41   if (0) /* Go to that function to follow the code flow through the simcall barrier */
42     simcall_HANDLER_process_suspend(&SIMIX_process_self()->simcall, process);
43   return simcall<void, smx_actor_t>(SIMCALL_PROCESS_SUSPEND, process);
44 }
45
46 inline static int simcall_BODY_process_join(smx_actor_t process, double timeout)
47 {
48   if (0) /* Go to that function to follow the code flow through the simcall barrier */
49     simcall_HANDLER_process_join(&SIMIX_process_self()->simcall, process, timeout);
50   return simcall<int, smx_actor_t, double>(SIMCALL_PROCESS_JOIN, process, timeout);
51 }
52
53 inline static int simcall_BODY_process_sleep(double duration)
54 {
55   if (0) /* Go to that function to follow the code flow through the simcall barrier */
56     simcall_HANDLER_process_sleep(&SIMIX_process_self()->simcall, duration);
57   return simcall<int, double>(SIMCALL_PROCESS_SLEEP, duration);
58 }
59
60 inline static int simcall_BODY_execution_wait(boost::intrusive_ptr<simgrid::kernel::activity::ActivityImpl> execution)
61 {
62   if (0) /* Go to that function to follow the code flow through the simcall barrier */
63     simcall_HANDLER_execution_wait(&SIMIX_process_self()->simcall, execution);
64   return simcall<int, boost::intrusive_ptr<simgrid::kernel::activity::ActivityImpl>>(SIMCALL_EXECUTION_WAIT, execution);
65 }
66
67 inline static int simcall_BODY_execution_test(boost::intrusive_ptr<simgrid::kernel::activity::ActivityImpl> execution)
68 {
69   if (0) /* Go to that function to follow the code flow through the simcall barrier */
70     simcall_HANDLER_execution_test(&SIMIX_process_self()->simcall, execution);
71   return simcall<int, boost::intrusive_ptr<simgrid::kernel::activity::ActivityImpl>>(SIMCALL_EXECUTION_TEST, execution);
72 }
73
74 inline static void simcall_BODY_comm_send(smx_actor_t sender, smx_mailbox_t mbox, double task_size, double rate, void* src_buff, size_t src_buff_size, simix_match_func_t match_fun, simix_copy_data_func_t copy_data_fun, void* data, double timeout)
75 {
76   if (0) /* Go to that function to follow the code flow through the simcall barrier */
77     simcall_HANDLER_comm_send(&SIMIX_process_self()->simcall, sender, mbox, task_size, rate, src_buff, src_buff_size, match_fun, copy_data_fun, data, timeout);
78   return simcall<void, smx_actor_t, smx_mailbox_t, double, double, void*, size_t, simix_match_func_t, simix_copy_data_func_t, void*, double>(SIMCALL_COMM_SEND, sender, mbox, task_size, rate, src_buff, src_buff_size, match_fun, copy_data_fun, data, timeout);
79 }
80
81 inline static boost::intrusive_ptr<simgrid::kernel::activity::ActivityImpl> simcall_BODY_comm_isend(smx_actor_t sender, smx_mailbox_t mbox, double task_size, double rate, void* src_buff, size_t src_buff_size, simix_match_func_t match_fun, simix_clean_func_t clean_fun, simix_copy_data_func_t copy_data_fun, void* data, int detached)
82 {
83   if (0) /* Go to that function to follow the code flow through the simcall barrier */
84     simcall_HANDLER_comm_isend(&SIMIX_process_self()->simcall, sender, mbox, task_size, rate, src_buff, src_buff_size, match_fun, clean_fun, copy_data_fun, data, detached);
85   return simcall<boost::intrusive_ptr<simgrid::kernel::activity::ActivityImpl>, smx_actor_t, smx_mailbox_t, double, double, void*, size_t, simix_match_func_t, simix_clean_func_t, simix_copy_data_func_t, void*, int>(SIMCALL_COMM_ISEND, sender, mbox, task_size, rate, src_buff, src_buff_size, match_fun, clean_fun, copy_data_fun, data, detached);
86 }
87
88 inline static void simcall_BODY_comm_recv(smx_actor_t receiver, smx_mailbox_t mbox, void* dst_buff, size_t* dst_buff_size, simix_match_func_t match_fun, simix_copy_data_func_t copy_data_fun, void* data, double timeout, double rate)
89 {
90   if (0) /* Go to that function to follow the code flow through the simcall barrier */
91     simcall_HANDLER_comm_recv(&SIMIX_process_self()->simcall, receiver, mbox, dst_buff, dst_buff_size, match_fun, copy_data_fun, data, timeout, rate);
92   return simcall<void, smx_actor_t, smx_mailbox_t, void*, size_t*, simix_match_func_t, simix_copy_data_func_t, void*, double, double>(SIMCALL_COMM_RECV, receiver, mbox, dst_buff, dst_buff_size, match_fun, copy_data_fun, data, timeout, rate);
93 }
94
95 inline static boost::intrusive_ptr<simgrid::kernel::activity::ActivityImpl> simcall_BODY_comm_irecv(smx_actor_t receiver, smx_mailbox_t mbox, void* dst_buff, size_t* dst_buff_size, simix_match_func_t match_fun, simix_copy_data_func_t copy_data_fun, void* data, double rate)
96 {
97   if (0) /* Go to that function to follow the code flow through the simcall barrier */
98     simcall_HANDLER_comm_irecv(&SIMIX_process_self()->simcall, receiver, mbox, dst_buff, dst_buff_size, match_fun, copy_data_fun, data, rate);
99   return simcall<boost::intrusive_ptr<simgrid::kernel::activity::ActivityImpl>, smx_actor_t, smx_mailbox_t, void*, size_t*, simix_match_func_t, simix_copy_data_func_t, void*, double>(SIMCALL_COMM_IRECV, receiver, mbox, dst_buff, dst_buff_size, match_fun, copy_data_fun, data, rate);
100 }
101
102 inline static int simcall_BODY_comm_waitany(xbt_dynar_t comms, double timeout)
103 {
104   if (0) /* Go to that function to follow the code flow through the simcall barrier */
105     simcall_HANDLER_comm_waitany(&SIMIX_process_self()->simcall, comms, timeout);
106   return simcall<int, xbt_dynar_t, double>(SIMCALL_COMM_WAITANY, comms, timeout);
107 }
108
109 inline static void simcall_BODY_comm_wait(boost::intrusive_ptr<simgrid::kernel::activity::ActivityImpl> comm, double timeout)
110 {
111   if (0) /* Go to that function to follow the code flow through the simcall barrier */
112     simcall_HANDLER_comm_wait(&SIMIX_process_self()->simcall, comm, timeout);
113   return simcall<void, boost::intrusive_ptr<simgrid::kernel::activity::ActivityImpl>, double>(SIMCALL_COMM_WAIT, comm, timeout);
114 }
115
116 inline static int simcall_BODY_comm_test(boost::intrusive_ptr<simgrid::kernel::activity::ActivityImpl> comm)
117 {
118   if (0) /* Go to that function to follow the code flow through the simcall barrier */
119     simcall_HANDLER_comm_test(&SIMIX_process_self()->simcall, comm);
120   return simcall<int, boost::intrusive_ptr<simgrid::kernel::activity::ActivityImpl>>(SIMCALL_COMM_TEST, comm);
121 }
122
123 inline static int simcall_BODY_comm_testany(boost::intrusive_ptr<simgrid::kernel::activity::ActivityImpl>* comms, size_t count)
124 {
125   if (0) /* Go to that function to follow the code flow through the simcall barrier */
126     simcall_HANDLER_comm_testany(&SIMIX_process_self()->simcall, comms, count);
127   return simcall<int, boost::intrusive_ptr<simgrid::kernel::activity::ActivityImpl>*, size_t>(SIMCALL_COMM_TESTANY, comms, count);
128 }
129
130 inline static void simcall_BODY_mutex_lock(smx_mutex_t mutex)
131 {
132   if (0) /* Go to that function to follow the code flow through the simcall barrier */
133     simcall_HANDLER_mutex_lock(&SIMIX_process_self()->simcall, mutex);
134   return simcall<void, smx_mutex_t>(SIMCALL_MUTEX_LOCK, mutex);
135 }
136
137 inline static int simcall_BODY_mutex_trylock(smx_mutex_t mutex)
138 {
139   if (0) /* Go to that function to follow the code flow through the simcall barrier */
140     simcall_HANDLER_mutex_trylock(&SIMIX_process_self()->simcall, mutex);
141   return simcall<int, smx_mutex_t>(SIMCALL_MUTEX_TRYLOCK, mutex);
142 }
143
144 inline static void simcall_BODY_mutex_unlock(smx_mutex_t mutex)
145 {
146   if (0) /* Go to that function to follow the code flow through the simcall barrier */
147     simcall_HANDLER_mutex_unlock(&SIMIX_process_self()->simcall, mutex);
148   return simcall<void, smx_mutex_t>(SIMCALL_MUTEX_UNLOCK, mutex);
149 }
150
151 inline static void simcall_BODY_cond_wait(smx_cond_t cond, smx_mutex_t mutex)
152 {
153   if (0) /* Go to that function to follow the code flow through the simcall barrier */
154     simcall_HANDLER_cond_wait(&SIMIX_process_self()->simcall, cond, mutex);
155   return simcall<void, smx_cond_t, smx_mutex_t>(SIMCALL_COND_WAIT, cond, mutex);
156 }
157
158 inline static int simcall_BODY_cond_wait_timeout(smx_cond_t cond, smx_mutex_t mutex, double timeout)
159 {
160   if (0) /* Go to that function to follow the code flow through the simcall barrier */
161     simcall_HANDLER_cond_wait_timeout(&SIMIX_process_self()->simcall, cond, mutex, timeout);
162   return simcall<int, smx_cond_t, smx_mutex_t, double>(SIMCALL_COND_WAIT_TIMEOUT, cond, mutex, timeout);
163 }
164
165 inline static void simcall_BODY_sem_acquire(smx_sem_t sem)
166 {
167   if (0) /* Go to that function to follow the code flow through the simcall barrier */
168     simcall_HANDLER_sem_acquire(&SIMIX_process_self()->simcall, sem);
169   return simcall<void, smx_sem_t>(SIMCALL_SEM_ACQUIRE, sem);
170 }
171
172 inline static int simcall_BODY_sem_acquire_timeout(smx_sem_t sem, double timeout)
173 {
174   if (0) /* Go to that function to follow the code flow through the simcall barrier */
175     simcall_HANDLER_sem_acquire_timeout(&SIMIX_process_self()->simcall, sem, timeout);
176   return simcall<int, smx_sem_t, double>(SIMCALL_SEM_ACQUIRE_TIMEOUT, sem, timeout);
177 }
178
179 inline static sg_size_t simcall_BODY_io_wait(boost::intrusive_ptr<simgrid::kernel::activity::ActivityImpl> io)
180 {
181   if (0) /* Go to that function to follow the code flow through the simcall barrier */
182     simcall_HANDLER_io_wait(&SIMIX_process_self()->simcall, io);
183   return simcall<sg_size_t, boost::intrusive_ptr<simgrid::kernel::activity::ActivityImpl>>(SIMCALL_IO_WAIT, io);
184 }
185
186 inline static int simcall_BODY_mc_random(int min, int max)
187 {
188   if (0) /* Go to that function to follow the code flow through the simcall barrier */
189     simcall_HANDLER_mc_random(&SIMIX_process_self()->simcall, min, max);
190   return simcall<int, int, int>(SIMCALL_MC_RANDOM, min, max);
191 }
192
193 inline static void simcall_BODY_run_kernel(std::function<void()> const* code)
194 {
195   if (0) /* Go to that function to follow the code flow through the simcall barrier */
196     SIMIX_run_kernel(code);
197   return simcall<void, std::function<void()> const*>(SIMCALL_RUN_KERNEL, code);
198 }
199
200 inline static void simcall_BODY_run_blocking(std::function<void()> const* code)
201 {
202   if (0) /* Go to that function to follow the code flow through the simcall barrier */
203     SIMIX_run_blocking(code);
204   return simcall<void, std::function<void()> const*>(SIMCALL_RUN_BLOCKING, code);
205 } /** @endcond */