Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
63d8f4a1ddcf9554855baec0503006e52a718abc
[simgrid.git] / src / simix / smx_user.c
1 /* smx_user.c - public interface to simix                                   */
2
3 /* Copyright (c) 2010-2014. The SimGrid Team.
4  * All rights reserved.                                                     */
5
6 /* This program is free software; you can redistribute it and/or modify it
7  * under the terms of the license (GNU LGPL) which comes with this package. */
8
9 #include "smx_private.h"
10 #include "mc/mc.h"
11 #include "xbt/ex.h"
12 #include <math.h>         /* isfinite() */
13
14 XBT_LOG_EXTERNAL_DEFAULT_CATEGORY(simix);
15
16 /* generate strings from the enumeration values */
17 static const char* simcall_names[] = {
18 #include "simcalls_generated_string.c"
19 [SIMCALL_NONE] = "NONE"
20 };
21
22 #include "simcalls_generated_body.c"
23
24 /**
25  * \ingroup simix_host_management
26  * \brief Returns a host given its name.
27  *
28  * \param name The name of the host to get
29  * \return The corresponding host
30  */
31 smx_host_t simcall_host_get_by_name(const char *name)
32 {
33   return simcall_BODY_host_get_by_name(name);
34 }
35
36 /**
37  * \ingroup simix_host_management
38  * \brief Returns the name of a host.
39  *
40  * \param host A SIMIX host
41  * \return The name of this host
42  */
43 const char* simcall_host_get_name(smx_host_t host)
44 {
45   return simcall_BODY_host_get_name(host);
46 }
47
48 /**
49  * \ingroup simix_host_management
50  * \brief Start the host if it is off
51  *
52  * \param host A SIMIX host
53  */
54 void simcall_host_on(smx_host_t host)
55 {
56   simcall_BODY_host_on(host);
57 }
58
59 /**
60  * \ingroup simix_host_management
61  * \brief Stop the host if it is on
62  *
63  * \param host A SIMIX host
64  */
65 void simcall_host_off(smx_host_t host)
66 {
67   simcall_BODY_host_off(host);
68 }
69
70 /**
71  * \ingroup simix_host_management
72  * \brief Returns a dict of the properties assigned to a host.
73  *
74  * \param host A host
75  * \return The properties of this host
76  */
77 xbt_dict_t simcall_host_get_properties(smx_host_t host)
78 {
79   return simcall_BODY_host_get_properties(host);
80 }
81
82 /**
83  * \ingroup simix_host_management
84  * \brief Returns a dict of the properties assigned to a router or AS.
85  *
86  * \param name The name of the router or AS
87  * \return The properties
88  */
89 xbt_dict_t simcall_asr_get_properties(const char *name)
90 {
91   return simcall_BODY_asr_get_properties(name);
92 }
93
94
95 /**
96  * \ingroup simix_host_management
97  * \brief Returns the speed of the processor.
98  *
99  * The speed returned does not take into account the current load on the machine.
100  * \param host A SIMIX host
101  * \return The speed of this host (in Mflop/s)
102  */
103 double simcall_host_get_speed(smx_host_t host)
104 {
105   return simcall_BODY_host_get_speed(host);
106 }
107
108 /**
109  * \ingroup simix_host_management
110  * \brief Returns the number of core of the processor.
111  *
112  * \param host A SIMIX host
113  * \return The number of core
114  */
115 int simcall_host_get_core(smx_host_t host)
116 {
117   return simcall_BODY_host_get_core(host);
118 }
119
120 /**
121  * \ingroup simix_host_management
122  * \brief Returns the list of processes attached to the host.
123  *
124  * \param host A SIMIX host
125  * \return the swag of attached processes
126  */
127 xbt_swag_t simcall_host_get_process_list(smx_host_t host)
128 {
129   return simcall_BODY_host_get_process_list(host);
130 }
131
132
133 /**
134  * \ingroup simix_host_management
135  * \brief Returns the available speed of the processor.
136  *
137  * \return Speed currently available (in Mflop/s)
138  */
139 double simcall_host_get_available_speed(smx_host_t host)
140 {
141   return simcall_BODY_host_get_available_speed(host);
142 }
143
144 /**
145  * \ingroup simix_host_management
146  * \brief Returns the state of a host.
147  *
148  * Two states are possible: 1 if the host is active or 0 if it has crashed.
149  * \param host A SIMIX host
150  * \return 1 if the host is available, 0 otherwise
151  */
152 int simcall_host_get_state(smx_host_t host)
153 {
154   return simcall_BODY_host_get_state(host);
155 }
156
157 /**
158  * \ingroup simix_host_management
159  * \brief Returns the power peak of a host.
160  *
161  * \param host A SIMIX host
162  * \return the current power peak value (double)
163  */
164 double simcall_host_get_current_power_peak(smx_host_t host)
165 {
166   return simcall_BODY_host_get_current_power_peak(host);
167 }
168
169 /**
170  * \ingroup simix_host_management
171  * \brief Returns one power peak (in flops/s) of a host at a given pstate
172  *
173  * \param host A SIMIX host
174  * \param pstate_index pstate to test
175  * \return the current power peak value (double) for pstate_index
176  */
177 double simcall_host_get_power_peak_at(smx_host_t host, int pstate_index)
178 {
179   return simcall_BODY_host_get_power_peak_at(host, pstate_index);
180 }
181
182 /**
183  * \ingroup simix_host_management
184  * \brief Returns the number of power states for a host.
185  *
186  * \param host A SIMIX host
187  * \return the number of power states
188  */
189 int simcall_host_get_nb_pstates(smx_host_t host)
190 {
191   return simcall_BODY_host_get_nb_pstates(host);
192 }
193
194 /**
195  * \ingroup simix_host_management
196  * \brief Sets a new power peak for a host.
197  *
198  * \param host A SIMIX host
199  * \param pstate_index The pstate to which the CPU power will be set
200  * \return void
201  */
202 void simcall_host_set_power_peak_at(smx_host_t host, int pstate_index)
203 {
204         simcall_BODY_host_set_power_peak_at(host, pstate_index);
205 }
206
207 /**
208  * \ingroup simix_host_management
209  * \brief Returns the total energy consumed by the host (in Joules)
210  *
211  * \param host A SIMIX host
212  * \return the energy consumed by the host (double)
213  */
214 double simcall_host_get_consumed_energy(smx_host_t host)
215 {
216   return simcall_BODY_host_get_consumed_energy(host);
217 }
218
219
220 /**
221  * \ingroup simix_host_management
222  * \brief Creates an action that executes some computation of an host.
223  *
224  * This function creates a SURF action and allocates the data necessary
225  * to create the SIMIX action. It can raise a host_error exception if the host crashed.
226  *
227  * \param name Name of the execution action to create
228  * \param host SIMIX host where the action will be executed
229  * \param computation_amount amount Computation amount (in bytes)
230  * \param priority computation priority
231  * \param bound
232  * \param affinity_mask
233  * \return A new SIMIX execution action
234  */
235 smx_action_t simcall_host_execute(const char *name, smx_host_t host,
236                                     double computation_amount,
237                                     double priority, double bound, unsigned long affinity_mask)
238 {
239   /* checking for infinite values */
240   xbt_assert(isfinite(computation_amount), "computation_amount is not finite!");
241   xbt_assert(isfinite(priority), "priority is not finite!");
242   
243   return simcall_BODY_host_execute(name, host, computation_amount, priority, bound, affinity_mask);
244 }
245
246 /**
247  * \ingroup simix_host_management
248  * \brief Creates an action that may involve parallel computation on
249  * several hosts and communication between them.
250  *
251  * \param name Name of the execution action to create
252  * \param host_nb Number of hosts where the action will be executed
253  * \param host_list Array (of size host_nb) of hosts where the action will be executed
254  * \param computation_amount Array (of size host_nb) of computation amount of hosts (in bytes)
255  * \param communication_amount Array (of size host_nb * host_nb) representing the communication
256  * amount between each pair of hosts
257  * \param amount the SURF action amount
258  * \param rate the SURF action rate
259  * \return A new SIMIX execution action
260  */
261 smx_action_t simcall_host_parallel_execute(const char *name,
262                                          int host_nb,
263                                          smx_host_t *host_list,
264                                          double *computation_amount,
265                                          double *communication_amount,
266                                          double amount,
267                                          double rate)
268 {
269   int i,j;
270   /* checking for infinite values */
271   for (i = 0 ; i < host_nb ; ++i) {
272      xbt_assert(isfinite(computation_amount[i]), "computation_amount[%d] is not finite!", i);
273      for (j = 0 ; j < host_nb ; ++j) {
274         xbt_assert(isfinite(communication_amount[i + host_nb * j]), 
275              "communication_amount[%d+%d*%d] is not finite!", i, host_nb, j);
276      }   
277   }   
278  
279   xbt_assert(isfinite(amount), "amount is not finite!");
280   xbt_assert(isfinite(rate), "rate is not finite!");
281   
282   return simcall_BODY_host_parallel_execute(name, host_nb, host_list,
283                                             computation_amount,
284                                             communication_amount,
285                                             amount, rate);
286
287 }
288
289 /**
290  * \ingroup simix_host_management
291  * \brief Destroys an execution action.
292  *
293  * Destroys an action, freing its memory. This function cannot be called if there are a conditional waiting for it.
294  * \param execution The execution action to destroy
295  */
296 void simcall_host_execution_destroy(smx_action_t execution)
297 {
298   simcall_BODY_host_execution_destroy(execution);
299 }
300
301 /**
302  * \ingroup simix_host_management
303  * \brief Cancels an execution action.
304  *
305  * This functions stops the execution. It calls a surf function.
306  * \param execution The execution action to cancel
307  */
308 void simcall_host_execution_cancel(smx_action_t execution)
309 {
310   simcall_BODY_host_execution_cancel(execution);
311 }
312
313 /**
314  * \ingroup simix_host_management
315  * \brief Returns how much of an execution action remains to be done.
316  *
317  * \param execution The execution action
318  * \return The remaining amount
319  */
320 double simcall_host_execution_get_remains(smx_action_t execution)
321 {
322   return simcall_BODY_host_execution_get_remains(execution);
323 }
324
325 /**
326  * \ingroup simix_host_management
327  * \brief Returns the state of an execution action.
328  *
329  * \param execution The execution action
330  * \return The state
331  */
332 e_smx_state_t simcall_host_execution_get_state(smx_action_t execution)
333 {
334   return simcall_BODY_host_execution_get_state(execution);
335 }
336
337 /**
338  * \ingroup simix_host_management
339  * \brief Changes the priority of an execution action.
340  *
341  * This functions changes the priority only. It calls a surf function.
342  * \param execution The execution action
343  * \param priority The new priority
344  */
345 void simcall_host_execution_set_priority(smx_action_t execution, double priority)
346 {
347   /* checking for infinite values */
348   xbt_assert(isfinite(priority), "priority is not finite!");
349   
350   simcall_BODY_host_execution_set_priority(execution, priority);
351 }
352
353 /**
354  * \ingroup simix_host_management
355  * \brief Changes the capping (the maximum CPU utilization) of an execution action.
356  *
357  * This functions changes the capping only. It calls a surf function.
358  * \param execution The execution action
359  * \param bound The new bound
360  */
361 void simcall_host_execution_set_bound(smx_action_t execution, double bound)
362 {
363   simcall_BODY_host_execution_set_bound(execution, bound);
364 }
365
366 /**
367  * \ingroup simix_host_management
368  * \brief Changes the CPU affinity of an execution action.
369  *
370  * This functions changes the CPU affinity of an execution action. See taskset(1) on Linux.
371  * \param execution The execution action
372  * \param host Host
373  * \param mask Affinity mask
374  */
375 void simcall_host_execution_set_affinity(smx_action_t execution, smx_host_t host, unsigned long mask)
376 {
377   simcall_BODY_host_execution_set_affinity(execution, host, mask);
378 }
379
380 /**
381  * \ingroup simix_host_management
382  * \brief Waits for the completion of an execution action and destroy it.
383  *
384  * \param execution The execution action
385  */
386 e_smx_state_t simcall_host_execution_wait(smx_action_t execution)
387 {
388   return simcall_BODY_host_execution_wait(execution);
389 }
390
391
392 /**
393  * \ingroup simix_vm_management
394  * \brief Create a VM on the given physical host.
395  *
396  * \param name VM name
397  * \param host Physical host
398  *
399  * \return The host object of the VM
400  */
401 void* simcall_vm_create(const char *name, smx_host_t phys_host){
402   /* will jump to SIMIX_pre_vm_create() in src/simix/smx_smurf_private.h */
403   return simcall_BODY_vm_create(name, phys_host);
404 }
405
406 /**
407  * \ingroup simix_vm_management
408  * \brief Start the given VM to the given physical host
409  *
410  * \param vm VM
411  */
412 void simcall_vm_start(smx_host_t vm)
413 {
414   /* will jump to SIMIX_pre_vm_start in src/simix/smx_smurf_private.h */
415   simcall_BODY_vm_start(vm);
416 }
417
418 /**
419  * \ingroup simix_vm_management
420  * \brief Get the state of the given VM
421  *
422  * \param vm VM
423  * \return The state of the VM
424  */
425 int simcall_vm_get_state(smx_host_t vm)
426 {
427   /* will jump to SIMIX_pre_vm_get_state in src/simix/smx_smurf_private.h */
428   return simcall_BODY_vm_get_state(vm);
429 }
430
431 /**
432  * \ingroup simix_vm_management
433  * \brief Get the name of the physical host on which the given VM runs.
434  *
435  * \param vm VM
436  * \return The name of the physical host
437  */
438 void *simcall_vm_get_pm(smx_host_t vm)
439 {
440   /* will jump to SIMIX_pre_vm_migrate in src/simix/smx_smurf_private.h */
441   return simcall_BODY_vm_get_pm(vm);
442 }
443
444 void simcall_vm_set_bound(smx_host_t vm, double bound)
445 {
446   /* will jump to SIMIX_pre_vm_set_bound in src/simix/smx_smurf_private.h */
447   simcall_BODY_vm_set_bound(vm, bound);
448 }
449
450 void simcall_vm_set_affinity(smx_host_t vm, smx_host_t pm, unsigned long mask)
451 {
452   /* will jump to SIMIX_pre_vm_set_affinity in src/simix/smx_smurf_private.h */
453   simcall_BODY_vm_set_affinity(vm, pm, mask);
454 }
455
456 void simcall_host_get_params(smx_host_t vm, ws_params_t params)
457 {
458   /* will jump to SIMIX_pre_host_get_params in src/simix/smx_smurf_private.h */
459   simcall_BODY_host_get_params(vm, params);
460 }
461
462 void simcall_host_set_params(smx_host_t vm, ws_params_t params)
463 {
464   /* will jump to SIMIX_pre_host_set_params in src/simix/smx_smurf_private.h */
465   simcall_BODY_host_set_params(vm, params);
466 }
467
468 /**
469  * \ingroup simix_vm_management
470  * \brief Migrate the given VM to the given physical host
471  *
472  * \param vm VM
473  * \param host Destination physical host
474  */
475 void simcall_vm_migrate(smx_host_t vm, smx_host_t host)
476 {
477   /* will jump to SIMIX_pre_vm_migrate in src/simix/smx_smurf_private.h */
478   simcall_BODY_vm_migrate(vm, host);
479 }
480
481 /**
482  * \ingroup simix_vm_management
483  * \brief Suspend the given VM
484  *
485  * \param vm VM
486  */
487 void simcall_vm_suspend(smx_host_t vm)
488 {
489   /* will jump to SIMIX_pre_vm_suspend in src/simix/smx_smurf_private.h */
490   simcall_BODY_vm_suspend(vm);
491 }
492
493 /**
494  * \ingroup simix_vm_management
495  * \brief Resume the given VM
496  *
497  * \param vm VM
498  */
499 void simcall_vm_resume(smx_host_t vm)
500 {
501   /* will jump to SIMIX_pre_vm_resume in src/simix/smx_smurf_private.h */
502   simcall_BODY_vm_resume(vm);
503 }
504
505 /**
506  * \ingroup simix_vm_management
507  * \brief Save the given VM
508  *
509  * \param vm VM
510  */
511 void simcall_vm_save(smx_host_t vm)
512 {
513   /* will jump to SIMIX_pre_vm_save in src/simix/smx_smurf_private.h */
514   simcall_BODY_vm_save(vm);
515 }
516
517 /**
518  * \ingroup simix_vm_management
519  * \brief Restore the given VM
520  *
521  * \param vm VM
522  */
523 void simcall_vm_restore(smx_host_t vm)
524 {
525   /* will jump to SIMIX_pre_vm_restore in src/simix/smx_smurf_private.h */
526   simcall_BODY_vm_restore(vm);
527 }
528
529 /**
530  * \ingroup simix_vm_management
531  * \brief Shutdown the given VM
532  *
533  * \param vm VM
534  */
535 void simcall_vm_shutdown(smx_host_t vm)
536 {
537   /* will jump to SIMIX_pre_vm_shutdown in src/simix/smx_smurf_private.h */
538   simcall_BODY_vm_shutdown(vm);
539 }
540
541 /**
542  * \ingroup simix_vm_management
543  * \brief Destroy the given VM
544  *
545  * \param vm VM
546  */
547 void simcall_vm_destroy(smx_host_t vm)
548 {
549    /* will jump to SIMIX_pre_vm_destroy in src/simix/smx_smurf_private.h */
550   simcall_BODY_vm_destroy(vm);
551 }
552
553
554 /**
555  * \ingroup simix_process_management
556  * \brief Creates and runs a new SIMIX process.
557  *
558  * The structure and the corresponding thread are created and put in the list of ready processes.
559  *
560  * \param process the process created will be stored in this pointer
561  * \param name a name for the process. It is for user-level information and can be NULL.
562  * \param code the main function of the process
563  * \param data a pointer to any data one may want to attach to the new object. It is for user-level information and can be NULL.
564  * It can be retrieved with the function \ref simcall_process_get_data.
565  * \param hostname name of the host where the new agent is executed.
566  * \param kill_time time when the process is killed
567  * \param argc first argument passed to \a code
568  * \param argv second argument passed to \a code
569  * \param properties the properties of the process
570  * \param auto_restart either it is autorestarting or not.
571  */
572 void simcall_process_create(smx_process_t *process, const char *name,
573                               xbt_main_func_t code,
574                               void *data,
575                               const char *hostname,
576                               double kill_time,
577                               int argc, char **argv,
578                               xbt_dict_t properties,
579                               int auto_restart)
580 {
581   simcall_BODY_process_create(process, name, code, data, hostname,
582                               kill_time, argc, argv, properties,
583                               auto_restart);
584 }
585
586 /**
587  * \ingroup simix_process_management
588  * \brief Kills a SIMIX process.
589  *
590  * This function simply kills a  process.
591  *
592  * \param process poor victim
593  */
594 void simcall_process_kill(smx_process_t process)
595 {
596   simcall_BODY_process_kill(process);
597 }
598
599 /**
600  * \ingroup simix_process_management
601  * \brief Kills all SIMIX processes.
602  */
603 void simcall_process_killall(int reset_pid)
604 {
605   simcall_BODY_process_killall(reset_pid);
606 }
607
608 /**
609  * \ingroup simix_process_management
610  * \brief Cleans up a SIMIX process.
611  * \param process poor victim (must have already been killed)
612  */
613 void simcall_process_cleanup(smx_process_t process)
614 {
615   simcall_BODY_process_cleanup(process);
616 }
617
618 /**
619  * \ingroup simix_process_management
620  * \brief Migrates an agent to another location.
621  *
622  * This function changes the value of the host on which \a process is running.
623  *
624  * \param process the process to migrate
625  * \param dest name of the new host
626  */
627 void simcall_process_change_host(smx_process_t process, smx_host_t dest)
628 {
629   simcall_BODY_process_change_host(process, dest);
630 }
631
632 /**
633  * \ingroup simix_process_management
634  * \brief Suspends a process.
635  *
636  * This function suspends the process by suspending the action
637  * it was waiting for completion.
638  *
639  * \param process a SIMIX process
640  */
641 void simcall_process_suspend(smx_process_t process)
642 {
643   xbt_assert(process, "Invalid parameters");
644
645   simcall_BODY_process_suspend(process);
646 }
647
648 /**
649  * \ingroup simix_process_management
650  * \brief Resumes a suspended process.
651  *
652  * This function resumes a suspended process by resuming the action
653  * it was waiting for completion.
654  *
655  * \param process a SIMIX process
656  */
657 void simcall_process_resume(smx_process_t process)
658 {
659   simcall_BODY_process_resume(process);
660 }
661
662 /**
663  * \ingroup simix_process_management
664  * \brief Returns the amount of SIMIX processes in the system
665  *
666  * Maestro internal process is not counted, only user code processes are
667  */
668 int simcall_process_count(void)
669 {
670   return simcall_BODY_process_count();
671 }
672
673 /**
674  * \ingroup simix_process_management
675  * \brief Return the PID of a #smx_process_t.
676  * \param process a SIMIX process
677  * \return the PID of this process
678  */
679 int simcall_process_get_PID(smx_process_t process)
680 {
681   if (process == SIMIX_process_self()) {
682     /* avoid a simcall if this function is called by the process itself */
683     return SIMIX_process_get_PID(process);
684   }
685
686   return simcall_BODY_process_get_PID(process);
687 }
688
689 /**
690  * \ingroup simix_process_management
691  * \brief Return the parent PID of a #smx_process_t.
692  * \param process a SIMIX process
693  * \return the PID of this process parenrt
694  */
695 int simcall_process_get_PPID(smx_process_t process)
696 {
697   if (process == SIMIX_process_self()) {
698     /* avoid a simcall if this function is called by the process itself */
699     return SIMIX_process_get_PPID(process);
700   }
701
702   return simcall_BODY_process_get_PPID(process);
703 }
704
705 /**
706  * \ingroup simix_process_management
707  * \brief Return the user data of a #smx_process_t.
708  * \param process a SIMIX process
709  * \return the user data of this process
710  */
711 void* simcall_process_get_data(smx_process_t process)
712 {
713   if (process == SIMIX_process_self()) {
714     /* avoid a simcall if this function is called by the process itself */
715     return SIMIX_process_get_data(process);
716   }
717
718   return simcall_BODY_process_get_data(process);
719 }
720
721 /**
722  * \ingroup simix_process_management
723  * \brief Set the user data of a #smx_process_t.
724  *
725  * This functions sets the user data associated to \a process.
726  * \param process SIMIX process
727  * \param data User data
728  */
729 void simcall_process_set_data(smx_process_t process, void *data)
730 {
731   if (process == SIMIX_process_self()) {
732     /* avoid a simcall if this function is called by the process itself */
733     SIMIX_process_self_set_data(process, data);
734   }
735   else {
736     simcall_BODY_process_set_data(process, data);
737   }
738 }
739
740 /**
741  * \ingroup simix_process_management
742  * \brief Set the kill time of a process.
743  * \param process a process
744  * \param kill_time a double
745  */
746 void simcall_process_set_kill_time(smx_process_t process, double kill_time)
747 {
748
749   if (kill_time > SIMIX_get_clock()) {
750     if (simix_global->kill_process_function) {
751       XBT_DEBUG("Set kill time %f for process %s(%s)",kill_time, process->name,
752           sg_host_name(process->smx_host));
753       SIMIX_timer_set(kill_time, simix_global->kill_process_function, process);
754     }
755   }
756 }
757
758 /**
759  * \ingroup simix_process_management
760  * \brief Return the location on which an agent is running.
761  *
762  * This functions returns the smx_host_t corresponding to the location on which
763  * \a process is running.
764  * \param process SIMIX process
765  * \return SIMIX host
766  */
767 smx_host_t simcall_process_get_host(smx_process_t process)
768 {
769   return simcall_BODY_process_get_host(process);
770 }
771
772 /**
773  * \ingroup simix_process_management
774  * \brief Return the name of an agent.
775  *
776  * This functions checks whether \a process is a valid pointer or not and return its name.
777  * \param process SIMIX process
778  * \return The process name
779  */
780 const char* simcall_process_get_name(smx_process_t process)
781 {
782   if (process == SIMIX_process_self()) {
783     /* avoid a simcall if this function is called by the process itself */
784     return process->name;
785   }
786   return simcall_BODY_process_get_name(process);
787 }
788
789 /**
790  * \ingroup simix_process_management
791  * \brief Returns true if the process is suspended .
792  *
793  * This checks whether a process is suspended or not by inspecting the task on which it was waiting for the completion.
794  * \param process SIMIX process
795  * \return 1, if the process is suspended, else 0.
796  */
797 int simcall_process_is_suspended(smx_process_t process)
798 {
799   return  simcall_BODY_process_is_suspended(process);
800 }
801
802 /**
803  * \ingroup simix_process_management
804  * \brief Return the properties
805  *
806  * This functions returns the properties associated with this process
807  */
808 xbt_dict_t simcall_process_get_properties(smx_process_t process)
809 {
810   return simcall_BODY_process_get_properties(process);
811 }
812 /**
813  * \ingroup simix_process_management
814  * \brief Add an on_exit function
815  * Add an on_exit function which will be executed when the process exits/is killed.
816  */
817 XBT_PUBLIC(void) simcall_process_on_exit(smx_process_t process, int_f_pvoid_t fun, void *data)
818 {
819   simcall_BODY_process_on_exit(process, fun, data);
820 }
821 /**
822  * \ingroup simix_process_management
823  * \brief Sets the process to be auto-restarted or not by SIMIX when its host comes back up.
824  * Will restart the process when the host comes back up if auto_restart is set to 1.
825  */
826
827 XBT_PUBLIC(void) simcall_process_auto_restart_set(smx_process_t process, int auto_restart)
828 {
829   simcall_BODY_process_auto_restart_set(process, auto_restart);
830 }
831
832 /**
833  * \ingroup simix_process_management
834  * \brief Restarts the process, killing it and starting it again from scratch.
835  */
836 XBT_PUBLIC(smx_process_t) simcall_process_restart(smx_process_t process)
837 {
838   return simcall_BODY_process_restart(process);
839 }
840 /**
841  * \ingroup simix_process_management
842  * \brief Creates a new sleep SIMIX action.
843  *
844  * This function creates a SURF action and allocates the data necessary
845  * to create the SIMIX action. It can raise a host_error exception if the
846  * host crashed. The default SIMIX name of the action is "sleep".
847  *
848  *   \param duration Time duration of the sleep.
849  *   \return A result telling whether the sleep was successful
850  */
851 e_smx_state_t simcall_process_sleep(double duration)
852 {
853   /* checking for infinite values */
854   xbt_assert(isfinite(duration), "duration is not finite!");
855   return simcall_BODY_process_sleep(duration);
856 }
857
858 /**
859  *  \ingroup simix_rdv_management
860  *  \brief Creates a new rendez-vous point
861  *  \param name The name of the rendez-vous point
862  *  \return The created rendez-vous point
863  */
864 smx_rdv_t simcall_rdv_create(const char *name)
865 {
866   return simcall_BODY_rdv_create(name);
867 }
868
869
870 /**
871  *  \ingroup simix_rdv_management
872  *  \brief Destroy a rendez-vous point
873  *  \param rdv The rendez-vous point to destroy
874  */
875 void simcall_rdv_destroy(smx_rdv_t rdv)
876 {
877   simcall_BODY_rdv_destroy(rdv);
878 }
879 /**
880  *  \ingroup simix_rdv_management
881  *  \brief Returns a rendez-vous point knowing its name
882  */
883 smx_rdv_t simcall_rdv_get_by_name(const char *name)
884 {
885   xbt_assert(name != NULL, "Invalid parameter for simcall_rdv_get_by_name (name is NULL)");
886
887   /* FIXME: this is a horrible loss of performance, so we hack it out by
888    * skipping the simcall (for now). It works in parallel, it won't work on
889    * distributed but probably we will change MSG for that. */
890
891   /*
892   smx_simcall_t simcall = simcall_mine();
893   simcall->call = SIMCALL_RDV_GEY_BY_NAME;
894   simcall->rdv_get_by_name.name = name;
895   SIMIX_simcall_push(simcall->issuer);
896   return simcall->rdv_get_by_name.result;*/
897
898   return SIMIX_rdv_get_by_name(name);
899 }
900
901 /**
902  *  \ingroup simix_rdv_management
903  *  \brief Counts the number of communication actions of a given host pending
904  *         on a rendez-vous point.
905  *  \param rdv The rendez-vous point
906  *  \param host The host to be counted
907  *  \return The number of comm actions pending in the rdv
908  */
909 int simcall_rdv_comm_count_by_host(smx_rdv_t rdv, smx_host_t host)
910 {
911   return simcall_BODY_rdv_comm_count_by_host(rdv, host);
912 }
913
914 /**
915  *  \ingroup simix_rdv_management
916  *  \brief returns the communication at the head of the rendez-vous
917  *  \param rdv The rendez-vous point
918  *  \return The communication or NULL if empty
919  */
920 smx_action_t simcall_rdv_get_head(smx_rdv_t rdv)
921 {
922   return simcall_BODY_rdv_get_head(rdv);
923 }
924
925 void simcall_rdv_set_receiver(smx_rdv_t rdv, smx_process_t process)
926 {
927   simcall_BODY_rdv_set_receiver(rdv, process);
928 }
929
930 smx_process_t simcall_rdv_get_receiver(smx_rdv_t rdv)
931 {
932   return simcall_BODY_rdv_get_receiver(rdv);
933 }
934
935 /**
936  * \ingroup simix_comm_management
937  */
938 void simcall_comm_send(smx_rdv_t rdv, double task_size, double rate,
939                          void *src_buff, size_t src_buff_size,
940                          int (*match_fun)(void *, void *, smx_action_t), void *data,
941                          double timeout)
942 {
943   /* checking for infinite values */
944   xbt_assert(isfinite(task_size), "task_size is not finite!");
945   xbt_assert(isfinite(rate), "rate is not finite!");
946   xbt_assert(isfinite(timeout), "timeout is not finite!");
947   
948   xbt_assert(rdv, "No rendez-vous point defined for send");
949
950   if (MC_is_active()) {
951     /* the model-checker wants two separate simcalls */
952     smx_action_t comm = NULL; /* MC needs the comm to be set to NULL during the simcall */
953     comm = simcall_comm_isend(rdv, task_size, rate,
954         src_buff, src_buff_size, match_fun, NULL, data, 0);
955     simcall_comm_wait(comm, timeout);
956     comm = NULL;
957   }
958   else {
959     simcall_BODY_comm_send(rdv, task_size, rate, src_buff, src_buff_size,
960                          match_fun, data, timeout);
961   }
962 }
963
964 /**
965  * \ingroup simix_comm_management
966  */
967 smx_action_t simcall_comm_isend(smx_rdv_t rdv, double task_size, double rate,
968                               void *src_buff, size_t src_buff_size,
969                               int (*match_fun)(void *, void *, smx_action_t),
970                               void (*clean_fun)(void *),
971                               void *data,
972                               int detached)
973 {
974   /* checking for infinite values */
975   xbt_assert(isfinite(task_size), "task_size is not finite!");
976   xbt_assert(isfinite(rate), "rate is not finite!");
977   
978   xbt_assert(rdv, "No rendez-vous point defined for isend");
979
980   return simcall_BODY_comm_isend(rdv, task_size, rate, src_buff,
981                                  src_buff_size, match_fun,
982                                  clean_fun, data, detached);
983 }
984
985 /**
986  * \ingroup simix_comm_management
987  */
988 void simcall_comm_recv(smx_rdv_t rdv, void *dst_buff, size_t * dst_buff_size,
989                        int (*match_fun)(void *, void *, smx_action_t),
990                        void *data, double timeout, double rate)
991 {
992   xbt_assert(isfinite(timeout), "timeout is not finite!");
993   xbt_assert(rdv, "No rendez-vous point defined for recv");
994
995   if (MC_is_active()) {
996     /* the model-checker wants two separate simcalls */
997     smx_action_t comm = NULL; /* MC needs the comm to be set to NULL during the simcall */
998     comm = simcall_comm_irecv(rdv, dst_buff, dst_buff_size,
999                               match_fun, data, rate);
1000     simcall_comm_wait(comm, timeout);
1001     comm = NULL;
1002   }
1003   else {
1004     simcall_BODY_comm_recv(rdv, dst_buff, dst_buff_size,
1005                            match_fun, data, timeout, rate);
1006   }
1007 }
1008 /**
1009  * \ingroup simix_comm_management
1010  */
1011 smx_action_t simcall_comm_irecv(smx_rdv_t rdv, void *dst_buff, size_t *dst_buff_size,
1012                                 int (*match_fun)(void *, void *, smx_action_t),
1013                                 void *data, double rate)
1014 {
1015   xbt_assert(rdv, "No rendez-vous point defined for irecv");
1016
1017   return simcall_BODY_comm_irecv(rdv, dst_buff, dst_buff_size,
1018                                  match_fun, data, rate);
1019 }
1020
1021
1022 /**
1023  * \ingroup simix_comm_management
1024  */
1025 smx_action_t simcall_comm_iprobe(smx_rdv_t rdv, int src, int tag,
1026                                 int (*match_fun)(void *, void *, smx_action_t), void *data)
1027 {
1028   xbt_assert(rdv, "No rendez-vous point defined for iprobe");
1029
1030   return simcall_BODY_comm_iprobe(rdv, src, tag, match_fun, data);
1031 }
1032
1033 void simcall_comm_destroy(smx_action_t comm)
1034 {
1035   xbt_assert(comm, "Invalid parameter");
1036
1037   /* FIXME remove this simcall type: comms are auto-destroyed now */
1038
1039   /*
1040   smx_simcall_t simcall = simcall_mine();
1041
1042   simcall->call = SIMCALL_COMM_DESTROY;
1043   simcall->comm_destroy.comm = comm;
1044
1045   SIMIX_simcall_push(simcall->issuer);
1046   */
1047 }
1048
1049 /**
1050  * \ingroup simix_comm_management
1051  */
1052 void simcall_comm_cancel(smx_action_t comm)
1053 {
1054   simcall_BODY_comm_cancel(comm);
1055 }
1056
1057 /**
1058  * \ingroup simix_comm_management
1059  */
1060 unsigned int simcall_comm_waitany(xbt_dynar_t comms)
1061 {
1062   return simcall_BODY_comm_waitany(comms);
1063 }
1064
1065 /**
1066  * \ingroup simix_comm_management
1067  */
1068 int simcall_comm_testany(xbt_dynar_t comms)
1069 {
1070   if (xbt_dynar_is_empty(comms))
1071     return -1;
1072   return simcall_BODY_comm_testany(comms);
1073 }
1074
1075 /**
1076  * \ingroup simix_comm_management
1077  */
1078 void simcall_comm_wait(smx_action_t comm, double timeout)
1079 {
1080   xbt_assert(isfinite(timeout), "timeout is not finite!");
1081   simcall_BODY_comm_wait(comm, timeout);
1082 }
1083
1084 #ifdef HAVE_TRACING
1085 /**
1086  * \brief Set the category of an action.
1087  *
1088  * This functions changes the category only. It calls a surf function.
1089  * \param execution The execution action
1090  * \param category The tracing category
1091  */
1092 void simcall_set_category(smx_action_t action, const char *category)
1093 {
1094   if (category == NULL) {
1095     return;
1096   }
1097   simcall_BODY_set_category(action, category);
1098 }
1099 #endif
1100
1101 /**
1102  * \ingroup simix_comm_management
1103  *
1104  */
1105 int simcall_comm_test(smx_action_t comm)
1106 {
1107   return simcall_BODY_comm_test(comm);
1108 }
1109
1110 /**
1111  * \ingroup simix_comm_management
1112  *
1113  */
1114 double simcall_comm_get_remains(smx_action_t comm)
1115 {
1116   return simcall_BODY_comm_get_remains(comm);
1117 }
1118
1119 /**
1120  * \ingroup simix_comm_management
1121  *
1122  */
1123 e_smx_state_t simcall_comm_get_state(smx_action_t comm)
1124 {
1125   return simcall_BODY_comm_get_state(comm);
1126 }
1127
1128 /**
1129  * \ingroup simix_comm_management
1130  *
1131  */
1132 void *simcall_comm_get_src_data(smx_action_t comm)
1133 {
1134   return simcall_BODY_comm_get_src_data(comm);
1135 }
1136
1137 /**
1138  * \ingroup simix_comm_management
1139  *
1140  */
1141 void *simcall_comm_get_dst_data(smx_action_t comm)
1142 {
1143   return simcall_BODY_comm_get_dst_data(comm);
1144 }
1145
1146 /**
1147  * \ingroup simix_comm_management
1148  *
1149  */
1150 smx_process_t simcall_comm_get_src_proc(smx_action_t comm)
1151 {
1152   return simcall_BODY_comm_get_src_proc(comm);
1153 }
1154
1155 /**
1156  * \ingroup simix_comm_management
1157  *
1158  */
1159 smx_process_t simcall_comm_get_dst_proc(smx_action_t comm)
1160 {
1161   return simcall_BODY_comm_get_dst_proc(comm);  
1162 }
1163
1164 #ifdef HAVE_LATENCY_BOUND_TRACKING
1165 int simcall_comm_is_latency_bounded(smx_action_t comm)
1166 {
1167   return simcall_BODY_comm_is_latency_bounded(comm);
1168 }
1169 #endif
1170
1171 /**
1172  * \ingroup simix_synchro_management
1173  *
1174  */
1175 smx_mutex_t simcall_mutex_init(void)
1176 {
1177   if(!simix_global) {
1178     fprintf(stderr,"You must run MSG_init before using MSG\n"); // We can't use xbt_die since we may get there before the initialization
1179     xbt_abort();
1180   }
1181   return simcall_BODY_mutex_init();
1182 }
1183
1184 /**
1185  * \ingroup simix_synchro_management
1186  *
1187  */
1188 void simcall_mutex_destroy(smx_mutex_t mutex)
1189 {
1190   simcall_BODY_mutex_destroy(mutex);
1191 }
1192
1193 /**
1194  * \ingroup simix_synchro_management
1195  *
1196  */
1197 void simcall_mutex_lock(smx_mutex_t mutex)
1198 {
1199   simcall_BODY_mutex_lock(mutex);  
1200 }
1201
1202 /**
1203  * \ingroup simix_synchro_management
1204  *
1205  */
1206 int simcall_mutex_trylock(smx_mutex_t mutex)
1207 {
1208   return simcall_BODY_mutex_trylock(mutex);  
1209 }
1210
1211 /**
1212  * \ingroup simix_synchro_management
1213  *
1214  */
1215 void simcall_mutex_unlock(smx_mutex_t mutex)
1216 {
1217   simcall_BODY_mutex_unlock(mutex); 
1218 }
1219
1220 /**
1221  * \ingroup simix_synchro_management
1222  *
1223  */
1224 smx_cond_t simcall_cond_init(void)
1225 {
1226   return simcall_BODY_cond_init();
1227 }
1228
1229 /**
1230  * \ingroup simix_synchro_management
1231  *
1232  */
1233 void simcall_cond_destroy(smx_cond_t cond)
1234 {
1235   simcall_BODY_cond_destroy(cond);
1236 }
1237
1238 /**
1239  * \ingroup simix_synchro_management
1240  *
1241  */
1242 void simcall_cond_signal(smx_cond_t cond)
1243 {
1244   simcall_BODY_cond_signal(cond);
1245 }
1246
1247 /**
1248  * \ingroup simix_synchro_management
1249  *
1250  */
1251 void simcall_cond_wait(smx_cond_t cond, smx_mutex_t mutex)
1252 {
1253   simcall_BODY_cond_wait(cond, mutex);
1254 }
1255
1256 /**
1257  * \ingroup simix_synchro_management
1258  *
1259  */
1260 void simcall_cond_wait_timeout(smx_cond_t cond,
1261                                  smx_mutex_t mutex,
1262                                  double timeout)
1263 {
1264   xbt_assert(isfinite(timeout), "timeout is not finite!");
1265   simcall_BODY_cond_wait_timeout(cond, mutex, timeout);
1266 }
1267
1268 /**
1269  * \ingroup simix_synchro_management
1270  *
1271  */
1272 void simcall_cond_broadcast(smx_cond_t cond)
1273 {
1274   simcall_BODY_cond_broadcast(cond);
1275 }
1276
1277 /**
1278  * \ingroup simix_synchro_management
1279  *
1280  */
1281 smx_sem_t simcall_sem_init(int capacity)
1282 {
1283   return simcall_BODY_sem_init(capacity);  
1284 }
1285
1286 /**
1287  * \ingroup simix_synchro_management
1288  *
1289  */
1290 void simcall_sem_destroy(smx_sem_t sem)
1291 {
1292   simcall_sem_destroy(sem);
1293 }
1294
1295 /**
1296  * \ingroup simix_synchro_management
1297  *
1298  */
1299 void simcall_sem_release(smx_sem_t sem)
1300 {
1301   simcall_BODY_sem_release(sem);  
1302 }
1303
1304 /**
1305  * \ingroup simix_synchro_management
1306  *
1307  */
1308 int simcall_sem_would_block(smx_sem_t sem)
1309 {
1310   return simcall_BODY_sem_would_block(sem);
1311 }
1312
1313 /**
1314  * \ingroup simix_synchro_management
1315  *
1316  */
1317 void simcall_sem_acquire(smx_sem_t sem)
1318 {
1319   simcall_BODY_sem_acquire(sem);
1320 }
1321
1322 /**
1323  * \ingroup simix_synchro_management
1324  *
1325  */
1326 void simcall_sem_acquire_timeout(smx_sem_t sem, double timeout)
1327 {
1328   xbt_assert(isfinite(timeout), "timeout is not finite!");
1329   simcall_BODY_sem_acquire_timeout(sem, timeout);
1330 }
1331
1332 /**
1333  * \ingroup simix_synchro_management
1334  *
1335  */
1336 int simcall_sem_get_capacity(smx_sem_t sem)
1337 {
1338   return simcall_BODY_sem_get_capacity(sem);
1339 }
1340
1341 /**
1342  * \ingroup simix_file_management
1343  * \brief Returns the user data associated to a file.
1344  *
1345  * \param fd A simix file
1346  * \return the user data of this file
1347  */
1348 void* simcall_file_get_data(smx_file_t fd)
1349 {
1350   return simcall_BODY_file_get_data(fd);
1351 }
1352
1353 /**
1354  * \ingroup simix_file_management
1355  * \brief Sets the user data associated to a file.
1356  *
1357  * \param fd A SIMIX file
1358  * \param data The user data to set
1359  */
1360 void simcall_file_set_data(smx_file_t fd, void *data)
1361 {
1362   simcall_file_set_data(fd, data);
1363 }
1364
1365 /**
1366  * \ingroup simix_file_management
1367  *
1368  */
1369 sg_size_t simcall_file_read(smx_file_t fd, sg_size_t size)
1370 {
1371   return simcall_BODY_file_read(fd, size);
1372 }
1373
1374 /**
1375  * \ingroup simix_file_management
1376  *
1377  */
1378 sg_size_t simcall_file_write(smx_file_t fd, sg_size_t size)
1379 {
1380   return simcall_BODY_file_write(fd, size);
1381 }
1382
1383 /**
1384  * \ingroup simix_file_management
1385  * \brief
1386  */
1387 smx_file_t simcall_file_open(const char* mount, const char* path)
1388 {
1389   return simcall_BODY_file_open(mount, path);
1390 }
1391
1392 /**
1393  * \ingroup simix_file_management
1394  *
1395  */
1396 int simcall_file_close(smx_file_t fd)
1397 {
1398   return simcall_BODY_file_close(fd);
1399 }
1400
1401 /**
1402  * \ingroup simix_file_management
1403  *
1404  */
1405 int simcall_file_unlink(smx_file_t fd)
1406 {
1407   return simcall_BODY_file_unlink(fd);
1408 }
1409
1410 /**
1411  * \ingroup simix_file_management
1412  *
1413  */
1414 xbt_dict_t simcall_file_ls(const char* mount, const char* path)
1415 {
1416   return simcall_BODY_file_ls(mount, path);
1417 }
1418 /**
1419  * \ingroup simix_file_management
1420  *
1421  */
1422 sg_size_t simcall_file_get_size(smx_file_t fd){
1423   return simcall_BODY_file_get_size(fd);
1424 }
1425
1426 /**
1427  * \ingroup simix_file_management
1428  *
1429  */
1430 sg_size_t simcall_file_tell(smx_file_t fd){
1431   return simcall_BODY_file_tell(fd);
1432 }
1433
1434 /**
1435  * \ingroup simix_file_management
1436  *
1437  */
1438 xbt_dynar_t simcall_file_get_info(smx_file_t fd)
1439 {
1440   return simcall_BODY_file_get_info(fd);
1441 }
1442
1443 /**
1444  * \ingroup simix_file_management
1445  *
1446  */
1447 int simcall_file_seek(smx_file_t fd, sg_size_t offset, int origin){
1448   return simcall_BODY_file_seek(fd, offset, origin);
1449 }
1450
1451 /**
1452  * \ingroup simix_file_management
1453  *
1454  */
1455 void simcall_storage_file_rename(smx_storage_t storage, const char* src,  const char* dest)
1456 {
1457   return simcall_BODY_storage_file_rename(storage, src, dest);
1458 }
1459
1460 /**
1461  * \ingroup simix_storage_management
1462  * \brief Returns the free space size on a given storage element.
1463  * \param storage name
1464  * \return Return the free space size on a given storage element (as sg_size_t)
1465  */
1466 sg_size_t simcall_storage_get_free_size (const char* name){
1467   return simcall_BODY_storage_get_free_size(name);
1468 }
1469
1470 /**
1471  * \ingroup simix_storage_management
1472  * \brief Returns the used space size on a given storage element.
1473  * \param storage name
1474  * \return Return the used space size on a given storage element (as sg_size_t)
1475  */
1476 sg_size_t simcall_storage_get_used_size (const char* name){
1477   return simcall_BODY_storage_get_used_size(name);
1478 }
1479
1480 /**
1481  * \ingroup simix_storage_management
1482  * \brief Returns the list of storages mounted on an host.
1483  * \param host A SIMIX host
1484  * \return a dict containing all storages mounted on the host
1485  */
1486 xbt_dict_t simcall_host_get_storage_list(smx_host_t host)
1487 {
1488   return simcall_BODY_host_get_storage_list(host);
1489 }
1490
1491 /**
1492  * \ingroup simix_storage_management
1493  * \brief Returns a dict of the properties assigned to a storage element.
1494  *
1495  * \param storage A storage element
1496  * \return The properties of this storage element
1497  */
1498 xbt_dict_t simcall_storage_get_properties(smx_storage_t storage)
1499 {
1500   return simcall_BODY_storage_get_properties(storage);
1501 }
1502
1503 /**
1504  * \ingroup simix_storage_management
1505  * \brief Returns a dict containing the content of a storage element.
1506  *
1507  * \param storage A storage element
1508  * \return The content of this storage element as a dict (full path file => size)
1509  */
1510 xbt_dict_t simcall_storage_get_content(smx_storage_t storage)
1511 {
1512   return simcall_BODY_storage_get_content(storage);
1513 }
1514
1515 #ifdef HAVE_MC
1516
1517 void *simcall_mc_snapshot(void)
1518 {
1519   return simcall_BODY_mc_snapshot();
1520 }
1521
1522 int simcall_mc_compare_snapshots(void *s1, void *s2){ 
1523   return simcall_BODY_mc_compare_snapshots(s1, s2);
1524 }
1525
1526 int simcall_mc_random(int min, int max)
1527 {
1528   return simcall_BODY_mc_random(min, max);
1529 }
1530
1531
1532 #endif /* HAVE_MC */
1533
1534 /* ****************************************************************************************** */
1535 /* TUTORIAL: New API                                                                          */
1536 /* All functions for simcall                                                                  */
1537 /* ****************************************************************************************** */
1538 int simcall_new_api_fct(const char* param1, double param2){
1539   smx_simcall_t simcall = SIMIX_simcall_mine();
1540   simcall->call = SIMCALL_NEW_API_INIT;
1541   simcall->new_api.param1 = param1;
1542   simcall->new_api.param2 = param2;
1543
1544   SIMIX_simcall_push(simcall->issuer);
1545   return simcall->new_api.result;
1546 }
1547
1548 /* ************************************************************************** */
1549
1550 /** @brief returns a printable string representing a simcall */
1551 const char *SIMIX_simcall_name(e_smx_simcall_t kind) {
1552   return simcall_names[kind];
1553 }