Logo AND Algorithmique Numérique Distribuée

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