Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
dfdb2a499e077fc5fe7e799c7f64f83c375c609b
[simgrid.git] / include / msg / msg.h
1 /* Copyright (c) 2004, 2005, 2006, 2007, 2008, 2009, 2010. 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 MSG_H
8 #define MSG_H
9
10 #include "xbt.h"
11
12 #include "msg/datatypes.h"
13 #include "xbt/automaton.h"
14
15 #include "simgrid/simix.h"
16
17 SG_BEGIN_DECL()
18
19 /** @brief Return code of most MSG functions
20     @ingroup msg_simulation
21     @{ */
22 /* Keep these code as binary values: java bindings manipulate | of these values */
23 typedef enum {
24   MSG_OK = 0,                 /**< @brief Everything is right. Keep on going this way ! */
25   MSG_TIMEOUT = 1,            /**< @brief nothing good happened before the timer you provided elapsed */
26   MSG_TRANSFER_FAILURE = 2,   /**< @brief There has been a problem during you task
27       transfer. Either the network is down or the remote host has been
28       shutdown. */
29   MSG_HOST_FAILURE = 4,       /**< @brief System shutdown. The host on which you are
30       running has just been rebooted. Free your datastructures and
31       return now !*/
32   MSG_TASK_CANCELED = 8      /**< @brief Canceled task. This task has been canceled by somebody!*/
33 } MSG_error_t;
34 /** @} */
35
36
37 /************************** Global ******************************************/
38 XBT_PUBLIC(void) MSG_config(const char *name, ...);
39 XBT_PUBLIC(void) MSG_global_init(int *argc, char **argv);
40 XBT_PUBLIC(void) MSG_global_init_args(int *argc, char **argv);
41 XBT_PUBLIC(MSG_error_t) MSG_main(void);
42 XBT_PUBLIC(MSG_error_t) MSG_main_stateful(void);
43 XBT_PUBLIC(MSG_error_t) MSG_main_liveness(xbt_automaton_t a, char *prgm);
44 XBT_PUBLIC(MSG_error_t) MSG_clean(void);
45 XBT_PUBLIC(void) MSG_function_register(const char *name,
46                                        xbt_main_func_t code);
47 XBT_PUBLIC(void) MSG_function_register_default(xbt_main_func_t code);
48 XBT_PUBLIC(xbt_main_func_t) MSG_get_registered_function(const char *name);
49 XBT_PUBLIC(void) MSG_launch_application(const char *file);
50 /*Bypass the parser */
51 XBT_PUBLIC(void) MSG_set_function(const char *host_id,
52                                   const char *function_name,
53                                   xbt_dynar_t arguments);
54
55 XBT_PUBLIC(double) MSG_get_clock(void);
56 XBT_PUBLIC(unsigned long int) MSG_get_sent_msg(void);
57
58
59 /************************** File handling ***********************************/
60 XBT_PUBLIC(size_t) MSG_file_read(const char* storage, void* ptr, size_t size, size_t nmemb, msg_file_t stream);
61 XBT_PUBLIC(size_t) MSG_file_write(const char* storage, const void* ptr, size_t size, size_t nmemb, msg_file_t stream);
62 XBT_PUBLIC(msg_file_t) MSG_file_open(const char* storage, const char* path, const char* mode);
63 XBT_PUBLIC(int) MSG_file_close(const char* storage, msg_file_t fp);
64 XBT_PUBLIC(int) MSG_file_stat(const char* storage, msg_file_t fd, s_msg_stat_t *buf);
65
66
67 /************************** Host handling ***********************************/
68 XBT_PUBLIC(MSG_error_t) MSG_host_set_data(m_host_t host, void *data);
69 XBT_PUBLIC(void *) MSG_host_get_data(m_host_t host);
70 XBT_PUBLIC(const char *) MSG_host_get_name(m_host_t host);
71 XBT_PUBLIC(m_host_t) MSG_host_self(void);
72 XBT_PUBLIC(int) MSG_get_host_msgload(m_host_t host);
73 /* int MSG_get_msgload(void); This function lacks specification; discard it */
74 XBT_PUBLIC(double) MSG_get_host_speed(m_host_t h);
75 XBT_PUBLIC(int) MSG_host_is_avail(m_host_t h);
76 XBT_PUBLIC(void) __MSG_host_destroy(m_host_t host);
77
78 /*property handlers*/
79 XBT_PUBLIC(xbt_dict_t) MSG_host_get_properties(m_host_t host);
80 XBT_PUBLIC(const char *) MSG_host_get_property_value(m_host_t host,
81                                                      const char *name);
82
83 XBT_PUBLIC(void) MSG_create_environment(const char *file);
84 XBT_PUBLIC(void) MSG_load_platform_script(const char *script_file);
85
86 XBT_PUBLIC(m_host_t) MSG_get_host_by_name(const char *name);
87 XBT_PUBLIC(xbt_dynar_t) MSG_hosts_as_dynar(void);
88
89 /************************** Process handling *********************************/
90 XBT_PUBLIC(m_process_t) MSG_process_create(const char *name,
91                                            xbt_main_func_t code,
92                                            void *data, m_host_t host);
93 XBT_PUBLIC(m_process_t) MSG_process_create_with_arguments(const char *name,
94                                                           xbt_main_func_t
95                                                           code, void *data,
96                                                           m_host_t host,
97                                                           int argc,
98                                                           char **argv);
99 XBT_PUBLIC(m_process_t) MSG_process_create_with_environment(const char
100                                                             *name,
101                                                             xbt_main_func_t
102                                                             code,
103                                                             void *data,
104                                                             m_host_t host,
105                                                             int argc,
106                                                             char **argv,
107                                                             xbt_dict_t
108                                                             properties);
109 XBT_PUBLIC(void) MSG_process_kill(m_process_t process);
110 XBT_PUBLIC(int) MSG_process_killall(int reset_PIDs);
111
112 XBT_PUBLIC(MSG_error_t) MSG_process_migrate(m_process_t process, m_host_t host);
113
114 XBT_PUBLIC(void *) MSG_process_get_data(m_process_t process);
115 XBT_PUBLIC(MSG_error_t) MSG_process_set_data(m_process_t process,
116                                              void *data);
117 XBT_PUBLIC(void) MSG_process_set_data_cleanup(void_f_pvoid_t data_cleanup);
118 XBT_PUBLIC(m_host_t) MSG_process_get_host(m_process_t process);
119 XBT_PUBLIC(m_process_t) MSG_process_from_PID(int PID);
120 XBT_PUBLIC(int) MSG_process_get_PID(m_process_t process);
121 XBT_PUBLIC(int) MSG_process_get_PPID(m_process_t process);
122 XBT_PUBLIC(const char *) MSG_process_get_name(m_process_t process);
123 XBT_PUBLIC(int) MSG_process_self_PID(void);
124 XBT_PUBLIC(int) MSG_process_self_PPID(void);
125 XBT_PUBLIC(m_process_t) MSG_process_self(void);
126 XBT_PUBLIC(xbt_dynar_t) MSG_processes_as_dynar(void);
127 XBT_PUBLIC(MSG_error_t) MSG_process_set_kill_time(m_process_t process, double kill_time);
128
129 /*property handlers*/
130 XBT_PUBLIC(xbt_dict_t) MSG_process_get_properties(m_process_t process);
131 XBT_PUBLIC(const char *) MSG_process_get_property_value(m_process_t
132                                                         process,
133                                                         const char *name);
134
135 XBT_PUBLIC(MSG_error_t) MSG_process_suspend(m_process_t process);
136 XBT_PUBLIC(MSG_error_t) MSG_process_resume(m_process_t process);
137 XBT_PUBLIC(int) MSG_process_is_suspended(m_process_t process);
138
139 /************************** Task handling ************************************/
140 XBT_PUBLIC(m_task_t) MSG_task_create(const char *name,
141                                      double compute_duration,
142                                      double message_size, void *data);
143 XBT_PUBLIC(m_gpu_task_t) MSG_gpu_task_create(const char *name,
144                                      double compute_duration,
145                                      double dispatch_latency,
146                                      double collect_latency);
147 XBT_PUBLIC(m_task_t) MSG_parallel_task_create(const char *name,
148                                               int host_nb,
149                                               const m_host_t * host_list,
150                                               double *computation_amount,
151                                               double *communication_amount,
152                                               void *data);
153 XBT_PUBLIC(void *) MSG_task_get_data(m_task_t task);
154 XBT_PUBLIC(void) MSG_task_set_data(m_task_t task, void *data);
155 XBT_PUBLIC(void) MSG_task_set_copy_callback(void (*callback) (
156     m_task_t task, m_process_t src, m_process_t dst));
157 XBT_PUBLIC(m_process_t) MSG_task_get_sender(m_task_t task);
158 XBT_PUBLIC(m_host_t) MSG_task_get_source(m_task_t task);
159 XBT_PUBLIC(const char *) MSG_task_get_name(m_task_t task);
160 XBT_PUBLIC(void) MSG_task_set_name(m_task_t task, const char *name);
161 XBT_PUBLIC(MSG_error_t) MSG_task_cancel(m_task_t task);
162 XBT_PUBLIC(MSG_error_t) MSG_task_destroy(m_task_t task);
163
164 XBT_PUBLIC(MSG_error_t) MSG_task_receive_from_host(m_task_t * task, const char *alias,
165                                        m_host_t host);
166
167 XBT_PUBLIC(MSG_error_t) MSG_task_execute(m_task_t task);
168 XBT_PUBLIC(MSG_error_t) MSG_parallel_task_execute(m_task_t task);
169 XBT_PUBLIC(void) MSG_task_set_priority(m_task_t task, double priority);
170
171 XBT_PUBLIC(MSG_error_t) MSG_process_sleep(double nb_sec);
172
173 XBT_PUBLIC(double) MSG_task_get_compute_duration(m_task_t task);
174 XBT_PUBLIC(void) MSG_task_set_compute_duration(m_task_t task,
175                                                double compute_duration);
176 XBT_PUBLIC(double) MSG_task_get_remaining_computation(m_task_t task);
177 XBT_PUBLIC(double) MSG_task_get_remaining_communication(m_task_t task);
178 XBT_PUBLIC(int) MSG_task_is_latency_bounded(m_task_t task);
179 XBT_PUBLIC(double) MSG_task_get_data_size(m_task_t task);
180
181
182 XBT_PUBLIC(MSG_error_t)
183     MSG_task_receive_ext(m_task_t * task, const char *alias, double timeout,
184                      m_host_t host);
185
186 XBT_PUBLIC(MSG_error_t)
187     MSG_task_receive_with_timeout(m_task_t * task, const char *alias,
188                               double timeout);
189
190 XBT_PUBLIC(MSG_error_t)
191     MSG_task_receive(m_task_t * task, const char *alias);
192 #define MSG_task_recv(t,a) MSG_task_receive(t,a)
193
194 XBT_PUBLIC(msg_comm_t) MSG_task_isend(m_task_t task, const char *alias);
195 XBT_PUBLIC(msg_comm_t) MSG_task_isend_with_matching(m_task_t task,
196                                                     const char *alias,
197                                                     int (*match_fun)(void*,void*, smx_action_t),
198                                                     void *match_data);
199
200 XBT_PUBLIC(void) MSG_task_dsend(m_task_t task, const char *alias, void_f_pvoid_t cleanup);
201 XBT_PUBLIC(msg_comm_t) MSG_task_irecv(m_task_t * task, const char *alias);
202 XBT_PUBLIC(int) MSG_comm_test(msg_comm_t comm);
203 XBT_PUBLIC(int) MSG_comm_testany(xbt_dynar_t comms);
204 XBT_PUBLIC(void) MSG_comm_destroy(msg_comm_t comm);
205 XBT_PUBLIC(MSG_error_t) MSG_comm_wait(msg_comm_t comm, double timeout);
206 XBT_PUBLIC(void) MSG_comm_waitall(msg_comm_t * comm, int nb_elem,
207                                   double timeout);
208 XBT_PUBLIC(int) MSG_comm_waitany(xbt_dynar_t comms);
209 XBT_PUBLIC(m_task_t) MSG_comm_get_task(msg_comm_t comm);
210 XBT_PUBLIC(MSG_error_t) MSG_comm_get_status(msg_comm_t comm);
211
212 XBT_PUBLIC(int) MSG_task_listen(const char *alias);
213
214 XBT_PUBLIC(int) MSG_task_listen_from_host(const char *alias,
215                                           m_host_t host);
216
217 XBT_PUBLIC(MSG_error_t)
218     MSG_task_send_with_timeout(m_task_t task, const char *alias,
219                            double timeout);
220
221 XBT_PUBLIC(MSG_error_t)
222     MSG_task_send(m_task_t task, const char *alias);
223
224 XBT_PUBLIC(MSG_error_t)
225     MSG_task_send_bounded(m_task_t task, const char *alias, double rate);
226
227 XBT_PUBLIC(int) MSG_task_listen_from(const char *alias);
228
229 XBT_PUBLIC(void) MSG_task_set_category (m_task_t task, const char *category);
230 XBT_PUBLIC(const char *) MSG_task_get_category (m_task_t task);
231
232 /************************** Task handling ************************************/
233 XBT_PUBLIC(MSG_error_t)
234     MSG_mailbox_get_task_ext(msg_mailbox_t mailbox, m_task_t * task,
235                          m_host_t host, double timeout);
236
237 XBT_PUBLIC(MSG_error_t)
238     MSG_mailbox_put_with_timeout(msg_mailbox_t mailbox, m_task_t task,
239                              double timeout);
240
241 /************************** Action handling **********************************/
242 typedef void (*msg_action_fun) (const char *const *args);
243 XBT_PUBLIC(void) MSG_action_register(const char *action_name,
244                                      msg_action_fun function);
245 XBT_PUBLIC(void) MSG_action_unregister(const char *action_name);
246 MSG_error_t MSG_action_trace_run(char *path);
247
248 #ifdef MSG_USE_DEPRECATED
249 /* these are the functions which are deprecated. Do not use them, they may get removed in future releases */
250 XBT_PUBLIC(int) MSG_get_host_number(void);
251 XBT_PUBLIC(m_host_t *) MSG_get_host_table(void);
252
253 #define MSG_TIMEOUT_FAILURE MSG_TIMEOUT
254 #define MSG_TASK_CANCELLED MSG_TASK_CANCELED
255 #define MSG_mailbox_put_with_time_out(mailbox, task, timeout) \
256         MSG_mailbox_put_with_timeout(mailbox, task, timeout)
257
258 #define MSG_process_change_host(h) MSG_process_migrate(MSG_process_self(),h);
259 XBT_PUBLIC(MSG_error_t) MSG_get_errno(void);
260
261 XBT_PUBLIC(MSG_error_t) MSG_task_get(m_task_t * task, m_channel_t channel);
262 XBT_PUBLIC(MSG_error_t) MSG_task_get_with_timeout(m_task_t * task,
263                                                   m_channel_t channel,
264                                                   double max_duration);
265 XBT_PUBLIC(MSG_error_t) MSG_task_get_from_host(m_task_t * task,
266                                                int channel, m_host_t host);
267 XBT_PUBLIC(MSG_error_t) MSG_task_get_ext(m_task_t * task, int channel,
268                                          double max_duration,
269                                          m_host_t host);
270 XBT_PUBLIC(MSG_error_t) MSG_task_put(m_task_t task, m_host_t dest,
271                                      m_channel_t channel);
272 XBT_PUBLIC(MSG_error_t) MSG_task_put_bounded(m_task_t task,
273                                              m_host_t dest,
274                                              m_channel_t channel,
275                                              double max_rate);
276 XBT_PUBLIC(MSG_error_t) MSG_task_put_with_timeout(m_task_t task,
277                                                   m_host_t dest,
278                                                   m_channel_t channel,
279                                                   double max_duration);
280 XBT_PUBLIC(int) MSG_task_Iprobe(m_channel_t channel);
281 XBT_PUBLIC(int) MSG_task_probe_from(m_channel_t channel);
282 XBT_PUBLIC(int) MSG_task_probe_from_host(int channel, m_host_t host);
283
284 XBT_PUBLIC(MSG_error_t) MSG_set_channel_number(int number);
285 XBT_PUBLIC(int) MSG_get_channel_number(void);
286 #endif
287
288 #include "instr/instr.h"
289
290 /* Used only by the bindings */
291 XBT_PUBLIC(smx_context_t) MSG_process_get_smx_ctx(m_process_t process);
292
293 SG_END_DECL()
294 #endif