Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
user data doesn't have to be stored at kernel level
[simgrid.git] / include / simgrid / simix.h
1 /* Copyright (c) 2007-2019. 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_SIMIX_H
7 #define SIMGRID_SIMIX_H
8
9 #include <simgrid/forward.h>
10 #include <simgrid/host.h>
11 #include <xbt/ex.h>
12 #include <xbt/parmap.h>
13 #ifdef __cplusplus
14 #include <functional>
15 #include <string>
16 #include <unordered_map>
17 #include <vector>
18 #endif
19
20 /* ******************************** Host ************************************ */
21 /** @brief Host datatype
22     @ingroup simix_host_management
23
24     A <em>location</em> (or <em>host</em>) is any possible place where
25     a process may run. Thus it is represented as a <em>physical
26     resource with computing capabilities</em>, some <em>mailboxes</em>
27     to enable running process to communicate with remote ones, and
28     some <em>private data</em> that can be only accessed by local
29     process.
30
31     @see m_host_management
32   @{ */
33 typedef enum {
34   SIMIX_WAITING,
35   SIMIX_READY,
36   SIMIX_RUNNING,
37   SIMIX_DONE,
38   SIMIX_CANCELED,
39   SIMIX_FAILED,
40   SIMIX_SRC_HOST_FAILURE,
41   SIMIX_DST_HOST_FAILURE,
42   SIMIX_TIMEOUT,
43   SIMIX_SRC_TIMEOUT,
44   SIMIX_DST_TIMEOUT,
45   SIMIX_LINK_FAILURE
46 } e_smx_state_t;
47 /** @} */
48
49 /******************************* Networking ***********************************/
50 extern unsigned smx_context_stack_size;
51 extern unsigned smx_context_guard_size;
52
53 SG_BEGIN_DECL
54
55 XBT_PUBLIC smx_actor_t SIMIX_process_from_PID(aid_t PID);
56
57 /* parallelism */
58 XBT_PUBLIC int SIMIX_context_is_parallel();
59 XBT_PUBLIC int SIMIX_context_get_nthreads();
60 XBT_PUBLIC void SIMIX_context_set_nthreads(int nb_threads);
61 XBT_PUBLIC int SIMIX_context_get_parallel_threshold();
62 XBT_PUBLIC void SIMIX_context_set_parallel_threshold(int threshold);
63 XBT_PUBLIC e_xbt_parmap_mode_t SIMIX_context_get_parallel_mode();
64 XBT_PUBLIC void SIMIX_context_set_parallel_mode(e_xbt_parmap_mode_t mode);
65 XBT_PUBLIC int SIMIX_is_maestro();
66
67 /********************************** Global ************************************/
68 /* Initialization and exit */
69 XBT_PUBLIC void SIMIX_global_init(int* argc, char** argv);
70
71 /* Set to execute in the maestro
72  *
73  * If no maestro code is registered (the default), the main thread
74  * is assumed to be the maestro. */
75 XBT_PUBLIC void SIMIX_set_maestro(void (*code)(void*), void* data);
76
77 /* Simulation execution */
78 XBT_PUBLIC void SIMIX_run();
79 XBT_PUBLIC double SIMIX_get_clock();
80
81 XBT_ATTRIB_DEPRECATED_v329("Please use simgrid::simix::Timer::set()") XBT_PUBLIC smx_timer_t
82     SIMIX_timer_set(double date, void (*function)(void*), void* arg);
83 XBT_ATTRIB_DEPRECATED_v329("Please use simgrid::simix::Timer::remove()") XBT_PUBLIC
84     void SIMIX_timer_remove(smx_timer_t timer);
85 XBT_ATTRIB_DEPRECATED_v329("Please use simgrid::simix::Timer::next()") XBT_PUBLIC double SIMIX_timer_next();
86 XBT_ATTRIB_DEPRECATED_v329("Please use simgrid::simix::Timer::get_date()") XBT_PUBLIC
87     double SIMIX_timer_get_date(smx_timer_t timer);
88
89 XBT_PUBLIC void SIMIX_display_process_status();
90 SG_END_DECL
91
92 /******************************** Deployment **********************************/
93 SG_BEGIN_DECL
94 XBT_PUBLIC void SIMIX_function_register_default(xbt_main_func_t code);
95
96 XBT_PUBLIC void SIMIX_init_application();
97 XBT_PUBLIC void SIMIX_process_set_function(const char* process_host, const char* process_function,
98                                            xbt_dynar_t arguments, double process_start_time, double process_kill_time);
99 SG_END_DECL
100
101 #ifdef __cplusplus
102 XBT_PUBLIC void SIMIX_function_register(const std::string& name, void (*code)(std::vector<std::string>));
103 XBT_PUBLIC void SIMIX_function_register(const std::string& name, xbt_main_func_t code);
104 XBT_PUBLIC void SIMIX_launch_application(const std::string& file);
105 #endif
106
107 /********************************* Process ************************************/
108 SG_BEGIN_DECL
109 XBT_PUBLIC int SIMIX_process_count();
110 XBT_PUBLIC smx_actor_t SIMIX_process_self();
111 XBT_PUBLIC const char* SIMIX_process_self_get_name();
112 XBT_ATTRIB_DEPRECATED_v329("This function will be removed in 3.29") XBT_PUBLIC
113     void SIMIX_process_self_set_data(void* data);
114 XBT_ATTRIB_DEPRECATED_v329("This function will be removed in 3.29") XBT_PUBLIC void* SIMIX_process_self_get_data();
115 SG_END_DECL
116
117 #ifdef __cplusplus
118 XBT_PUBLIC void SIMIX_process_on_exit(smx_actor_t process, const std::function<void(bool /*failed*/)>& fun);
119 #endif
120
121 /****************************** Communication *********************************/
122 #ifdef __cplusplus
123 XBT_PUBLIC void SIMIX_comm_set_copy_data_callback(void (*callback)(simgrid::kernel::activity::CommImpl*, void*,
124                                                                    size_t));
125 XBT_PUBLIC void SIMIX_comm_copy_pointer_callback(simgrid::kernel::activity::CommImpl* comm, void* buff,
126                                                  size_t buff_size);
127 XBT_PUBLIC void SIMIX_comm_copy_buffer_callback(simgrid::kernel::activity::CommImpl* comm, void* buff,
128                                                 size_t buff_size);
129 #endif
130
131 /******************************************************************************/
132 /*                            SIMIX simcalls                                  */
133 /******************************************************************************/
134 /* These functions are a system call-like interface to the simulation kernel. */
135 /* They can also be called from maestro's context, and they are thread safe.  */
136 /******************************************************************************/
137
138 /******************************* Host simcalls ********************************/
139 #ifdef __cplusplus
140 XBT_PUBLIC e_smx_state_t simcall_execution_wait(const smx_activity_t& execution);
141 XBT_PUBLIC unsigned int simcall_execution_waitany_for(simgrid::kernel::activity::ExecImpl* execs[], size_t count,
142                                                       double timeout);
143 XBT_PUBLIC bool simcall_execution_test(const smx_activity_t& execution);
144 #endif
145
146 /**************************** Process simcalls ********************************/
147 SG_BEGIN_DECL
148 void simcall_process_set_data(smx_actor_t process, void* data);
149 XBT_ATTRIB_DEPRECATED_v328("Please use Actor::suspend()") XBT_PUBLIC void simcall_process_suspend(smx_actor_t process);
150
151 XBT_ATTRIB_DEPRECATED_v328("Please use Actor::join()") XBT_PUBLIC
152     void simcall_process_join(smx_actor_t process, double timeout);
153
154 /* Sleep control */
155 XBT_PUBLIC e_smx_state_t simcall_process_sleep(double duration);
156 SG_END_DECL
157
158 /************************** Communication simcalls ****************************/
159
160 #ifdef __cplusplus
161 XBT_PUBLIC void simcall_comm_send(smx_actor_t sender, smx_mailbox_t mbox, double task_size, double rate, void* src_buff,
162                                   size_t src_buff_size,
163                                   int (*match_fun)(void*, void*, simgrid::kernel::activity::CommImpl*),
164                                   void (*copy_data_fun)(simgrid::kernel::activity::CommImpl*, void*, size_t),
165                                   void* data, double timeout);
166
167 XBT_PUBLIC smx_activity_t simcall_comm_isend(smx_actor_t sender, smx_mailbox_t mbox, double task_size, double rate,
168                                              void* src_buff, size_t src_buff_size,
169                                              int (*match_fun)(void*, void*, simgrid::kernel::activity::CommImpl*),
170                                              void (*clean_fun)(void*),
171                                              void (*copy_data_fun)(simgrid::kernel::activity::CommImpl*, void*, size_t),
172                                              void* data, bool detached);
173
174 XBT_PUBLIC void simcall_comm_recv(smx_actor_t receiver, smx_mailbox_t mbox, void* dst_buff, size_t* dst_buff_size,
175                                   int (*match_fun)(void*, void*, simgrid::kernel::activity::CommImpl*),
176                                   void (*copy_data_fun)(simgrid::kernel::activity::CommImpl*, void*, size_t),
177                                   void* data, double timeout, double rate);
178
179 XBT_PUBLIC smx_activity_t simcall_comm_irecv(smx_actor_t receiver, smx_mailbox_t mbox, void* dst_buff,
180                                              size_t* dst_buff_size,
181                                              int (*match_fun)(void*, void*, simgrid::kernel::activity::CommImpl*),
182                                              void (*copy_data_fun)(simgrid::kernel::activity::CommImpl*, void*, size_t),
183                                              void* data, double rate);
184
185 XBT_PUBLIC smx_activity_t simcall_comm_iprobe(smx_mailbox_t mbox, int type,
186                                               int (*match_fun)(void*, void*, simgrid::kernel::activity::CommImpl*),
187                                               void* data);
188
189 /* FIXME: waitany is going to be a vararg function, and should take a timeout */
190 XBT_PUBLIC unsigned int simcall_comm_waitany(smx_activity_t comms[], size_t count, double timeout);
191 XBT_PUBLIC unsigned int simcall_comm_waitany(simgrid::kernel::activity::CommImpl* comms[], size_t count,
192                                              double timeout);
193 XBT_PUBLIC void simcall_comm_wait(const smx_activity_t& comm, double timeout);
194 XBT_PUBLIC bool simcall_comm_test(const smx_activity_t& comm);
195 XBT_PUBLIC int simcall_comm_testany(smx_activity_t comms[], size_t count);
196 XBT_PUBLIC int simcall_comm_testany(simgrid::kernel::activity::CommImpl* comms[], size_t count);
197 #endif
198
199 /************************** Synchro simcalls **********************************/
200 SG_BEGIN_DECL
201 XBT_PUBLIC smx_mutex_t simcall_mutex_init();
202 XBT_PUBLIC void simcall_mutex_lock(smx_mutex_t mutex);
203 XBT_PUBLIC int simcall_mutex_trylock(smx_mutex_t mutex);
204 XBT_PUBLIC void simcall_mutex_unlock(smx_mutex_t mutex);
205
206 XBT_PUBLIC smx_cond_t simcall_cond_init();
207 XBT_PUBLIC void simcall_cond_wait(smx_cond_t cond, smx_mutex_t mutex);
208 XBT_PUBLIC int simcall_cond_wait_timeout(smx_cond_t cond, smx_mutex_t mutex, double max_duration);
209
210 XBT_PUBLIC void simcall_sem_acquire(smx_sem_t sem);
211 XBT_PUBLIC int simcall_sem_acquire_timeout(smx_sem_t sem, double max_duration);
212 SG_END_DECL
213
214 /*****************************   Io   **************************************/
215 #ifdef __cplusplus
216 XBT_PUBLIC e_smx_state_t simcall_io_wait(const smx_activity_t& io);
217 #endif
218 /************************** MC simcalls   **********************************/
219 SG_BEGIN_DECL
220 XBT_PUBLIC int simcall_mc_random(int min, int max);
221 SG_END_DECL
222
223 #endif