Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
afac0e94f53b1587b76040482f9322ee514bf00a
[simgrid.git] / include / msg / msg.h
1 /* Copyright (c) 2004-2012. 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 MSG_H
7 #define MSG_H
8
9 #include "xbt.h"
10
11 #include "msg/datatypes.h"
12
13 #include "simgrid/simix.h"
14
15 SG_BEGIN_DECL()
16
17 /** @brief Return code of most MSG functions
18     @ingroup msg_simulation
19     @{ */
20 /* Keep these code as binary values: java bindings manipulate | of these values */
21 typedef enum {
22   MSG_OK = 0,                 /**< @brief Everything is right. Keep on going this way ! */
23   MSG_TIMEOUT = 1,            /**< @brief nothing good happened before the timer you provided elapsed */
24   MSG_TRANSFER_FAILURE = 2,   /**< @brief There has been a problem during you task
25       transfer. Either the network is down or the remote host has been
26       shutdown. */
27   MSG_HOST_FAILURE = 4,       /**< @brief System shutdown. The host on which you are
28       running has just been rebooted. Free your datastructures and
29       return now !*/
30   MSG_TASK_CANCELED = 8      /**< @brief Canceled task. This task has been canceled by somebody!*/
31 } msg_error_t;
32 /** @} */
33
34 /************************** Global ******************************************/
35 XBT_PUBLIC(void) MSG_config(const char *key, const char *value);
36 /** \ingroup msg_simulation
37  *  \brief Initialize the MSG internal data.
38  *  \hideinitializer
39  *
40  *  It also check that the link-time and compile-time versions of SimGrid do
41  *  match, so you should use this version instead of the #MSG_init_nocheck
42  *  function that does the same initializations, but without this check.
43  *
44  *  We allow to link against compiled versions that differ in the patch level.
45  */
46 #define MSG_init(argc,argv)  {                      \
47           int ver_major,ver_minor,ver_patch;              \
48           sg_version(&ver_major,&ver_minor,&ver_patch);   \
49           if ((ver_major != SIMGRID_VERSION_MAJOR) ||     \
50               (ver_minor != SIMGRID_VERSION_MINOR)) {     \
51             fprintf(stderr,"FATAL ERROR: Your program was compiled with SimGrid version %d.%d.%d, and then linked against SimGrid %d.%d.%d. Please fix this.\n", \
52                 SIMGRID_VERSION_MAJOR,SIMGRID_VERSION_MINOR,SIMGRID_VERSION_PATCH,ver_major,ver_minor,ver_patch);                          \
53           }                                               \
54           MSG_init_nocheck(argc,argv);                    \
55         }
56
57 XBT_PUBLIC(void) MSG_init_nocheck(int *argc, char **argv);
58 XBT_PUBLIC(msg_error_t) MSG_main(void);
59 XBT_PUBLIC(void) MSG_function_register(const char *name,
60                                        xbt_main_func_t code);
61 XBT_PUBLIC(void) MSG_function_register_default(xbt_main_func_t code);
62 XBT_PUBLIC(xbt_main_func_t) MSG_get_registered_function(const char *name);
63 XBT_PUBLIC(void) MSG_launch_application(const char *file);
64 /*Bypass the parser */
65 XBT_PUBLIC(void) MSG_set_function(const char *host_id,
66                                   const char *function_name,
67                                   xbt_dynar_t arguments);
68
69 XBT_PUBLIC(double) MSG_get_clock(void);
70 XBT_PUBLIC(unsigned long int) MSG_get_sent_msg(void);
71
72
73 /************************** File handling ***********************************/
74 XBT_PUBLIC(double) MSG_file_read(void* ptr, size_t size, size_t nmemb, msg_file_t stream);
75 XBT_PUBLIC(size_t) MSG_file_write(const void* ptr, size_t size, size_t nmemb, msg_file_t stream);
76 XBT_PUBLIC(msg_file_t) MSG_file_open(const char* mount, const char* path, const char* mode);
77 XBT_PUBLIC(int) MSG_file_close(msg_file_t fp);
78 XBT_PUBLIC(int) MSG_file_stat(msg_file_t fd, s_msg_stat_t *buf);
79 XBT_PUBLIC(void) MSG_file_free_stat(s_msg_stat_t *stat);
80
81 XBT_PUBLIC(int) MSG_file_unlink(msg_file_t fd);
82 XBT_PUBLIC(xbt_dict_t) MSG_file_ls(const char *mount, const char *path);
83
84 /************************** AS Router handling ************************************/
85 XBT_PUBLIC(const char *) MSG_as_router_get_property_value(const char* asr, const char *name);
86 XBT_PUBLIC(xbt_dict_t) MSG_as_router_get_properties(const char* asr);
87 XBT_PUBLIC(void) MSG_as_router_set_property_value(const char* asr, const char *name, char *value,void_f_pvoid_t free_ctn);
88
89 /************************** Host handling ***********************************/
90 XBT_PUBLIC(msg_error_t) MSG_host_set_data(msg_host_t host, void *data);
91 XBT_PUBLIC(void *) MSG_host_get_data(msg_host_t host);
92 XBT_PUBLIC(const char *) MSG_host_get_name(msg_host_t host);
93 XBT_PUBLIC(msg_host_t) MSG_host_self(void);
94 XBT_PUBLIC(int) MSG_get_host_msgload(msg_host_t host);
95 /* int MSG_get_msgload(void); This function lacks specification; discard it */
96 XBT_PUBLIC(double) MSG_get_host_speed(msg_host_t h);
97 XBT_PUBLIC(int) MSG_host_is_avail(msg_host_t h);
98 XBT_PUBLIC(void) __MSG_host_destroy(msg_host_t host);
99
100 /*property handlers*/
101 XBT_PUBLIC(xbt_dict_t) MSG_host_get_properties(msg_host_t host);
102 XBT_PUBLIC(const char *) MSG_host_get_property_value(msg_host_t host,
103                                                      const char *name);
104 XBT_PUBLIC(void) MSG_host_set_property_value(msg_host_t host,
105                                              const char *name, char *value,
106                                              void_f_pvoid_t free_ctn);
107
108
109 XBT_PUBLIC(void) MSG_create_environment(const char *file);
110 XBT_PUBLIC(void) MSG_load_platform_script(const char *script_file);
111
112 XBT_PUBLIC(msg_host_t) MSG_get_host_by_name(const char *name);
113 XBT_PUBLIC(xbt_dynar_t) MSG_hosts_as_dynar(void);
114 XBT_PUBLIC(int) MSG_get_host_number(void);
115
116 /************************** Process handling *********************************/
117 XBT_PUBLIC(msg_process_t) MSG_process_create(const char *name,
118                                            xbt_main_func_t code,
119                                            void *data, msg_host_t host);
120 XBT_PUBLIC(msg_process_t) MSG_process_create_with_arguments(const char *name,
121                                                           xbt_main_func_t
122                                                           code, void *data,
123                                                           msg_host_t host,
124                                                           int argc,
125                                                           char **argv);
126 XBT_PUBLIC(msg_process_t) MSG_process_create_with_environment(const char
127                                                             *name,
128                                                             xbt_main_func_t
129                                                             code,
130                                                             void *data,
131                                                             msg_host_t host,
132                                                             int argc,
133                                                             char **argv,
134                                                             xbt_dict_t
135                                                             properties);
136 XBT_PUBLIC(void) MSG_process_kill(msg_process_t process);
137 XBT_PUBLIC(int) MSG_process_killall(int reset_PIDs);
138
139 XBT_PUBLIC(msg_error_t) MSG_process_migrate(msg_process_t process, msg_host_t host);
140
141 XBT_PUBLIC(void *) MSG_process_get_data(msg_process_t process);
142 XBT_PUBLIC(msg_error_t) MSG_process_set_data(msg_process_t process,
143                                              void *data);
144 XBT_PUBLIC(void) MSG_process_set_data_cleanup(void_f_pvoid_t data_cleanup);
145 XBT_PUBLIC(msg_host_t) MSG_process_get_host(msg_process_t process);
146 XBT_PUBLIC(msg_process_t) MSG_process_from_PID(int PID);
147 XBT_PUBLIC(int) MSG_process_get_PID(msg_process_t process);
148 XBT_PUBLIC(int) MSG_process_get_PPID(msg_process_t process);
149 XBT_PUBLIC(const char *) MSG_process_get_name(msg_process_t process);
150 XBT_PUBLIC(int) MSG_process_self_PID(void);
151 XBT_PUBLIC(int) MSG_process_self_PPID(void);
152 XBT_PUBLIC(msg_process_t) MSG_process_self(void);
153 XBT_PUBLIC(xbt_dynar_t) MSG_processes_as_dynar(void);
154 XBT_PUBLIC(int) MSG_process_get_number(void);
155
156 XBT_PUBLIC(msg_error_t) MSG_process_set_kill_time(msg_process_t process, double kill_time);
157
158 /*property handlers*/
159 XBT_PUBLIC(xbt_dict_t) MSG_process_get_properties(msg_process_t process);
160 XBT_PUBLIC(const char *) MSG_process_get_property_value(msg_process_t
161                                                         process,
162                                                         const char *name);
163
164 XBT_PUBLIC(msg_error_t) MSG_process_suspend(msg_process_t process);
165 XBT_PUBLIC(msg_error_t) MSG_process_resume(msg_process_t process);
166 XBT_PUBLIC(int) MSG_process_is_suspended(msg_process_t process);
167 XBT_PUBLIC(void) MSG_process_on_exit(int_f_pvoid_t fun, void *data);
168 XBT_PUBLIC(void) MSG_process_auto_restart_set(msg_process_t process, int auto_restart);
169
170 XBT_PUBLIC(msg_process_t) MSG_process_restart(msg_process_t process);
171
172 /************************** Task handling ************************************/
173 XBT_PUBLIC(msg_task_t) MSG_task_create(const char *name,
174                                      double compute_duration,
175                                      double message_size, void *data);
176 XBT_PUBLIC(msg_gpu_task_t) MSG_gpu_task_create(const char *name,
177                                      double compute_duration,
178                                      double dispatch_latency,
179                                      double collect_latency);
180 XBT_PUBLIC(msg_task_t) MSG_parallel_task_create(const char *name,
181                                               int host_nb,
182                                               const msg_host_t * host_list,
183                                               double *computation_amount,
184                                               double *communication_amount,
185                                               void *data);
186 XBT_PUBLIC(void *) MSG_task_get_data(msg_task_t task);
187 XBT_PUBLIC(void) MSG_task_set_data(msg_task_t task, void *data);
188 XBT_PUBLIC(void) MSG_task_set_copy_callback(void (*callback) (
189     msg_task_t task, msg_process_t src, msg_process_t dst));
190 XBT_PUBLIC(msg_process_t) MSG_task_get_sender(msg_task_t task);
191 XBT_PUBLIC(msg_host_t) MSG_task_get_source(msg_task_t task);
192 XBT_PUBLIC(const char *) MSG_task_get_name(msg_task_t task);
193 XBT_PUBLIC(void) MSG_task_set_name(msg_task_t task, const char *name);
194 XBT_PUBLIC(msg_error_t) MSG_task_cancel(msg_task_t task);
195 XBT_PUBLIC(msg_error_t) MSG_task_destroy(msg_task_t task);
196
197 XBT_PUBLIC(msg_error_t) MSG_task_receive_from_host(msg_task_t * task, const char *alias,
198                                        msg_host_t host);
199
200 XBT_PUBLIC(msg_error_t) MSG_task_execute(msg_task_t task);
201 XBT_PUBLIC(msg_error_t) MSG_parallel_task_execute(msg_task_t task);
202 XBT_PUBLIC(void) MSG_task_set_priority(msg_task_t task, double priority);
203
204 XBT_PUBLIC(msg_error_t) MSG_process_sleep(double nb_sec);
205
206 XBT_PUBLIC(double) MSG_task_get_compute_duration(msg_task_t task);
207 XBT_PUBLIC(void) MSG_task_set_compute_duration(msg_task_t task,
208                                                double compute_duration);
209 XBT_PUBLIC(double) MSG_task_get_remaining_computation(msg_task_t task);
210 XBT_PUBLIC(double) MSG_task_get_remaining_communication(msg_task_t task);
211 XBT_PUBLIC(int) MSG_task_is_latency_bounded(msg_task_t task);
212 XBT_PUBLIC(double) MSG_task_get_data_size(msg_task_t task);
213
214
215 XBT_PUBLIC(msg_error_t)
216     MSG_task_receive_ext(msg_task_t * task, const char *alias, double timeout,
217                      msg_host_t host);
218
219 XBT_PUBLIC(msg_error_t)
220     MSG_task_receive_with_timeout(msg_task_t * task, const char *alias,
221                               double timeout);
222
223 XBT_PUBLIC(msg_error_t)
224     MSG_task_receive(msg_task_t * task, const char *alias);
225 #define MSG_task_recv(t,a) MSG_task_receive(t,a)
226
227 XBT_PUBLIC(msg_comm_t) MSG_task_isend(msg_task_t task, const char *alias);
228 XBT_PUBLIC(msg_comm_t) MSG_task_isend_with_matching(msg_task_t task,
229                                                     const char *alias,
230                                                     int (*match_fun)(void*,void*, smx_action_t),
231                                                     void *match_data);
232
233 XBT_PUBLIC(void) MSG_task_dsend(msg_task_t task, const char *alias, void_f_pvoid_t cleanup);
234 XBT_PUBLIC(msg_comm_t) MSG_task_irecv(msg_task_t * task, const char *alias);
235 XBT_PUBLIC(int) MSG_comm_test(msg_comm_t comm);
236 XBT_PUBLIC(int) MSG_comm_testany(xbt_dynar_t comms);
237 XBT_PUBLIC(void) MSG_comm_destroy(msg_comm_t comm);
238 XBT_PUBLIC(msg_error_t) MSG_comm_wait(msg_comm_t comm, double timeout);
239 XBT_PUBLIC(void) MSG_comm_waitall(msg_comm_t * comm, int nb_elem,
240                                   double timeout);
241 XBT_PUBLIC(int) MSG_comm_waitany(xbt_dynar_t comms);
242 XBT_PUBLIC(msg_task_t) MSG_comm_get_task(msg_comm_t comm);
243 XBT_PUBLIC(msg_error_t) MSG_comm_get_status(msg_comm_t comm);
244
245 XBT_PUBLIC(int) MSG_task_listen(const char *alias);
246
247 XBT_PUBLIC(int) MSG_task_listen_from_host(const char *alias,
248                                           msg_host_t host);
249
250 XBT_PUBLIC(msg_error_t)
251     MSG_task_send_with_timeout(msg_task_t task, const char *alias,
252                            double timeout);
253
254 XBT_PUBLIC(msg_error_t)
255     MSG_task_send(msg_task_t task, const char *alias);
256
257 XBT_PUBLIC(msg_error_t)
258     MSG_task_send_bounded(msg_task_t task, const char *alias, double rate);
259
260 XBT_PUBLIC(int) MSG_task_listen_from(const char *alias);
261
262 XBT_PUBLIC(void) MSG_task_set_category (msg_task_t task, const char *category);
263 XBT_PUBLIC(const char *) MSG_task_get_category (msg_task_t task);
264
265 /************************** Task handling ************************************/
266 XBT_PUBLIC(msg_error_t)
267     MSG_mailbox_get_task_ext(msg_mailbox_t mailbox, msg_task_t * task,
268                          msg_host_t host, double timeout);
269
270 XBT_PUBLIC(msg_error_t)
271     MSG_mailbox_put_with_timeout(msg_mailbox_t mailbox, msg_task_t task,
272                              double timeout);
273
274 void MSG_mailbox_set_async(const char *alias);
275
276
277 /************************** Action handling **********************************/
278 XBT_PUBLIC(msg_error_t) MSG_action_trace_run(char *path);
279
280 #ifdef MSG_USE_DEPRECATED
281
282 typedef msg_error_t MSG_error_t;
283
284 #define MSG_global_init(argc, argv)      MSG_init(argc,argv)
285 #define MSG_global_init_args(argc, argv) MSG_init(argc,argv)
286
287 /* these are the functions which are deprecated. Do not use them, they may get removed in future releases */
288 XBT_PUBLIC(msg_host_t *) MSG_get_host_table(void);
289
290 #define MSG_TIMEOUT_FAILURE MSG_TIMEOUT
291 #define MSG_TASK_CANCELLED MSG_TASK_CANCELED
292 #define MSG_mailbox_put_with_time_out(mailbox, task, timeout) \
293         MSG_mailbox_put_with_timeout(mailbox, task, timeout)
294
295 #define MSG_process_change_host(h) MSG_process_migrate(MSG_process_self(),h);
296 XBT_PUBLIC(msg_error_t) MSG_get_errno(void);
297
298 XBT_PUBLIC(msg_error_t) MSG_clean(void);
299
300 XBT_PUBLIC(msg_error_t) MSG_task_get(msg_task_t * task, m_channel_t channel);
301 XBT_PUBLIC(msg_error_t) MSG_task_get_with_timeout(msg_task_t * task,
302                                                   m_channel_t channel,
303                                                   double max_duration);
304 XBT_PUBLIC(msg_error_t) MSG_task_get_from_host(msg_task_t * task,
305                                                int channel, msg_host_t host);
306 XBT_PUBLIC(msg_error_t) MSG_task_get_ext(msg_task_t * task, int channel,
307                                          double max_duration,
308                                          msg_host_t host);
309 XBT_PUBLIC(msg_error_t) MSG_task_put(msg_task_t task, msg_host_t dest,
310                                      m_channel_t channel);
311 XBT_PUBLIC(msg_error_t) MSG_task_put_bounded(msg_task_t task,
312                                              msg_host_t dest,
313                                              m_channel_t channel,
314                                              double max_rate);
315 XBT_PUBLIC(msg_error_t) MSG_task_put_with_timeout(msg_task_t task,
316                                                   msg_host_t dest,
317                                                   m_channel_t channel,
318                                                   double max_duration);
319 XBT_PUBLIC(int) MSG_task_Iprobe(m_channel_t channel);
320 XBT_PUBLIC(int) MSG_task_probe_from(m_channel_t channel);
321 XBT_PUBLIC(int) MSG_task_probe_from_host(int channel, msg_host_t host);
322
323 XBT_PUBLIC(msg_error_t) MSG_set_channel_number(int number);
324 XBT_PUBLIC(int) MSG_get_channel_number(void);
325 #endif
326
327 /** @brief Opaque type describing a Virtual Machine.
328  *  @ingroup msg_VMs
329  *
330  * All this is highly experimental and the interface will probably change in the future.
331  * Please don't depend on this yet (although testing is welcomed if you feel so).
332  * Usual lack of guaranty of any kind applies here, and is even increased.
333  *
334  */
335 /* This function should not be called directly, but rather from MSG_vm_start_from_template that does not exist yet*/
336 XBT_PUBLIC(msg_vm_t) MSG_vm_start(msg_host_t location, const char *name, int coreAmount);
337
338 XBT_PUBLIC(int) MSG_vm_is_suspended(msg_vm_t);
339 XBT_PUBLIC(int) MSG_vm_is_running(msg_vm_t);
340
341 XBT_PUBLIC(void) MSG_vm_bind(msg_vm_t vm, msg_process_t process);
342 XBT_PUBLIC(void) MSG_vm_unbind(msg_vm_t vm, msg_process_t process); // simple wrapper over process_kill
343
344 XBT_PUBLIC(void) MSG_vm_migrate(msg_vm_t vm, msg_host_t destination);
345
346 XBT_PUBLIC(void) MSG_vm_suspend(msg_vm_t vm);
347   // \forall p in VM, MSG_process_suspend(p) // Freeze the processes
348
349 XBT_PUBLIC(void) MSG_vm_resume(msg_vm_t vm);  // Simulate the fact of reading the processes from disk and resuming them
350   // \forall p in VM, MSG_process_resume(p) // unfreeze them
351
352 XBT_PUBLIC(void) MSG_vm_shutdown(msg_vm_t vm); // killall
353
354 XBT_PUBLIC(void) MSG_vm_reboot(msg_vm_t vm);
355
356 XBT_PUBLIC(void) MSG_vm_destroy(msg_vm_t vm);
357
358 XBT_PUBLIC(xbt_dynar_t) MSG_vms_as_dynar(void);
359
360 /*
361 void* MSG_process_get_property(msg_process_t, char* key)
362 void MSG_process_set_property(msg_process_t, char* key, void* data)
363 void MSG_vm_set_property(msg_vm_t, char* key, void* data)
364
365 void MSG_vm_setMemoryUsed(msg_vm_t vm, double size);
366 void MSG_vm_setCpuUsed(msg_vm_t vm, double inducedLoad);
367   // inducedLoad: un pourcentage (>100 si ca charge plus d'un coeur;
368   //                              <100 si c'est pas CPU intensive)
369   // Contraintes à poser:
370   //   HOST_Power >= CpuUsedVm (\forall VM) + CpuUsedTask (\forall Task)
371   //   VM_coreAmount >= Load de toutes les tasks
372 */
373
374   /*
375 xbt_dynar_t<msg_vm_t> MSG_vm_get_list_from_host(msg_host_t)
376 xbt_dynar_t<msg_vm_t> MSG_vm_get_list_from_hosts(msg_dynar_t<msg_host_t>)
377 + des fonctions de filtrage sur les dynar
378 */
379 #include "instr/instr.h"
380
381
382
383 /* ****************************************************************************************** */
384 /* Used only by the bindings -- unclean pimple, please ignore if you're not writing a binding */
385 XBT_PUBLIC(smx_context_t) MSG_process_get_smx_ctx(msg_process_t process);
386
387 /* ****************************************************************************************** */
388 /* TUTORIAL: New API                                                                        */
389 /* Declare all functions for the API                                                          */
390 /* ****************************************************************************************** */
391 XBT_PUBLIC(int) MSG_new_API_fct(const char* param1, double param2);
392
393 SG_END_DECL()
394 #endif