Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
STFU you dawn VM - The lovingly handmade tests
[simgrid.git] / src / simix / libsmx.cpp
1 /* libsmx.c - public interface to simix                                       */
2 /* --------                                                                   */
3 /* These functions are the only ones that are visible from the higher levels  */
4 /* (most of them simply add some documentation to the generated simcall body) */
5 /*                                                                            */
6 /* This is somehow the "libc" of SimGrid                                      */
7
8 /* Copyright (c) 2010-2015. The SimGrid Team.
9  * All rights reserved.                                                     */
10
11 /* This program is free software; you can redistribute it and/or modify it
12  * under the terms of the license (GNU LGPL) which comes with this package. */
13
14 #include <cmath>         /* std::isfinite() */
15
16 #include <functional>
17
18 #include "src/mc/mc_replay.h"
19 #include "smx_private.h"
20 #include "src/mc/mc_forward.h"
21 #include "xbt/ex.h"
22 #include "mc/mc.h"
23 #include "src/simix/smx_host_private.h"
24 #include "src/simix/smx_private.hpp"
25
26 #include <simgrid/simix.hpp>
27
28 XBT_LOG_EXTERNAL_DEFAULT_CATEGORY(simix);
29
30 #include "popping_bodies.cpp"
31
32 void simcall_call(smx_process_t process)
33 {
34   if (process != simix_global->maestro_process) {
35     XBT_DEBUG("Yield process '%s' on simcall %s (%d)", process->name,
36               SIMIX_simcall_name(process->simcall.call), (int)process->simcall.call);
37     SIMIX_process_yield(process);
38   } else {
39     SIMIX_simcall_handle(&process->simcall, 0);
40   }
41 }
42
43 // ***** Host simcalls
44 // Those functions are replaced by methods on the Host object.
45
46 /** \ingroup simix_host_management
47  * \deprecated */
48 xbt_swag_t simcall_host_get_process_list(sg_host_t host)
49 {
50   return host->processes();
51 }
52
53 /** \ingroup simix_host_management
54  * \deprecated */
55 double simcall_host_get_current_power_peak(sg_host_t host)
56 {
57   return host->currentPowerPeak();
58 }
59
60 /** \ingroup simix_host_management
61  * \deprecated */
62 double simcall_host_get_power_peak_at(sg_host_t host, int pstate_index)
63 {
64   return host->powerPeakAt(pstate_index);
65 }
66
67 /** \deprecated */
68 void simcall_host_get_params(sg_host_t vm, vm_params_t params)
69 {
70   vm->parameters(params);
71 }
72
73 /** \deprecated */
74 void simcall_host_set_params(sg_host_t vm, vm_params_t params)
75 {
76   vm->setParameters(params);
77 }
78
79 /** \ingroup simix_storage_management
80  *  \deprecated */
81 xbt_dict_t simcall_host_get_mounted_storage_list(sg_host_t host)
82 {
83   return host->mountedStoragesAsDict();
84 }
85
86 /** \ingroup simix_storage_management
87  *  \deprecated */
88 xbt_dynar_t simcall_host_get_attached_storage_list(sg_host_t host)
89 {
90   return host->attachedStorages();
91 }
92
93 // ***** Other simcalls
94
95 /**
96  * \ingroup simix_host_management
97  * \brief Returns a dict of the properties assigned to a router or AS.
98  *
99  * \param name The name of the router or AS
100  * \return The properties
101  */
102 xbt_dict_t simcall_asr_get_properties(const char *name)
103 {
104   return simcall_BODY_asr_get_properties(name);
105 }
106
107 /**
108  * \ingroup simix_process_management
109  * \brief Creates a synchro that executes some computation of an host.
110  *
111  * This function creates a SURF action and allocates the data necessary
112  * to create the SIMIX synchro. It can raise a host_error exception if the host crashed.
113  *
114  * \param name Name of the execution synchro to create
115  * \param flops_amount amount Computation amount (in flops)
116  * \param priority computation priority
117  * \param bound
118  * \param affinity_mask
119  * \return A new SIMIX execution synchronization
120  */
121 smx_synchro_t simcall_execution_start(const char *name,
122                                     double flops_amount,
123                                     double priority, double bound, unsigned long affinity_mask)
124 {
125   /* checking for infinite values */
126   xbt_assert(std::isfinite(flops_amount), "flops_amount is not finite!");
127   xbt_assert(std::isfinite(priority), "priority is not finite!");
128
129   return simcall_BODY_execution_start(name, flops_amount, priority, bound, affinity_mask);
130 }
131
132 /**
133  * \ingroup simix_process_management
134  * \brief Creates a synchro that may involve parallel computation on
135  * several hosts and communication between them.
136  *
137  * \param name Name of the execution synchro to create
138  * \param host_nb Number of hosts where the synchro will be executed
139  * \param host_list Array (of size host_nb) of hosts where the synchro will be executed
140  * \param flops_amount Array (of size host_nb) of computation amount of hosts (in bytes)
141  * \param bytes_amount Array (of size host_nb * host_nb) representing the communication
142  * amount between each pair of hosts
143  * \param amount the SURF action amount
144  * \param rate the SURF action rate
145  * \return A new SIMIX execution synchronization
146  */
147 smx_synchro_t simcall_execution_parallel_start(const char *name,
148                                          int host_nb,
149                                          sg_host_t *host_list,
150                                          double *flops_amount,
151                                          double *bytes_amount,
152                                          double amount,
153                                          double rate)
154 {
155   int i,j;
156   /* checking for infinite values */
157   for (i = 0 ; i < host_nb ; ++i) {
158     xbt_assert(std::isfinite(flops_amount[i]), "flops_amount[%d] is not finite!", i);
159     if (bytes_amount != NULL) {
160       for (j = 0 ; j < host_nb ; ++j) {
161         xbt_assert(std::isfinite(bytes_amount[i + host_nb * j]),
162                    "bytes_amount[%d+%d*%d] is not finite!", i, host_nb, j);
163       }
164     }
165   }
166
167   xbt_assert(std::isfinite(amount), "amount is not finite!");
168   xbt_assert(std::isfinite(rate), "rate is not finite!");
169
170   return simcall_BODY_execution_parallel_start(name, host_nb, host_list,
171                                             flops_amount,
172                                             bytes_amount,
173                                             amount, rate);
174
175 }
176
177 /**
178  * \ingroup simix_process_management
179  * \brief Destroys an execution synchro.
180  *
181  * Destroys a synchro, freeing its memory. This function cannot be called if there are a conditional waiting for it.
182  * \param execution The execution synchro to destroy
183  */
184 void simcall_execution_destroy(smx_synchro_t execution)
185 {
186   simcall_BODY_execution_destroy(execution);
187 }
188
189 /**
190  * \ingroup simix_process_management
191  * \brief Cancels an execution synchro.
192  *
193  * This functions stops the execution. It calls a surf function.
194  * \param execution The execution synchro to cancel
195  */
196 void simcall_execution_cancel(smx_synchro_t execution)
197 {
198   simcall_BODY_execution_cancel(execution);
199 }
200
201 /**
202  * \ingroup simix_process_management
203  * \brief Returns how much of an execution synchro remains to be done.
204  *
205  * \param execution The execution synchro
206  * \return The remaining amount
207  */
208 double simcall_execution_get_remains(smx_synchro_t execution)
209 {
210   return simcall_BODY_execution_get_remains(execution);
211 }
212
213 /**
214  * \ingroup simix_process_management
215  * \brief Returns the state of an execution synchro.
216  *
217  * \param execution The execution synchro
218  * \return The state
219  */
220 e_smx_state_t simcall_execution_get_state(smx_synchro_t execution)
221 {
222   return simcall_BODY_execution_get_state(execution);
223 }
224
225 /**
226  * \ingroup simix_process_management
227  * \brief Changes the priority of an execution synchro.
228  *
229  * This functions changes the priority only. It calls a surf function.
230  * \param execution The execution synchro
231  * \param priority The new priority
232  */
233 void simcall_execution_set_priority(smx_synchro_t execution, double priority)
234 {
235   /* checking for infinite values */
236   xbt_assert(std::isfinite(priority), "priority is not finite!");
237
238   simcall_BODY_execution_set_priority(execution, priority);
239 }
240
241 /**
242  * \ingroup simix_process_management
243  * \brief Changes the capping (the maximum CPU utilization) of an execution synchro.
244  *
245  * This functions changes the capping only. It calls a surf function.
246  * \param execution The execution synchro
247  * \param bound The new bound
248  */
249 void simcall_execution_set_bound(smx_synchro_t execution, double bound)
250 {
251   simcall_BODY_execution_set_bound(execution, bound);
252 }
253
254 /**
255  * \ingroup simix_process_management
256  * \brief Changes the CPU affinity of an execution synchro.
257  *
258  * This functions changes the CPU affinity of an execution synchro. See taskset(1) on Linux.
259  * \param execution The execution synchro
260  * \param host Host
261  * \param mask Affinity mask
262  */
263 void simcall_execution_set_affinity(smx_synchro_t execution, sg_host_t host, unsigned long mask)
264 {
265   simcall_BODY_execution_set_affinity(execution, host, mask);
266 }
267
268 /**
269  * \ingroup simix_host_management
270  * \brief Waits for the completion of an execution synchro and destroy it.
271  *
272  * \param execution The execution synchro
273  */
274 e_smx_state_t simcall_execution_wait(smx_synchro_t execution)
275 {
276   return (e_smx_state_t) simcall_BODY_execution_wait(execution);
277 }
278
279
280 /**
281  * \ingroup simix_vm_management
282  * \brief Create a VM on the given physical host.
283  *
284  * \param name VM name
285  * \param host Physical host
286  *
287  * \return The host object of the VM
288  */
289 void* simcall_vm_create(const char *name, sg_host_t phys_host)
290 {
291   return simgrid::simix::kernel(std::bind(SIMIX_vm_create, name, phys_host));
292 }
293
294 /**
295  * \ingroup simix_vm_management
296  * \brief Start the given VM to the given physical host
297  *
298  * \param vm VM
299  */
300 void simcall_vm_start(sg_host_t vm)
301 {
302   return simgrid::simix::kernel(std::bind(SIMIX_vm_start, vm));
303 }
304
305 /**
306  * \ingroup simix_vm_management
307  * \brief Get the state of the given VM
308  *
309  * \param vm VM
310  * \return The state of the VM
311  */
312 int simcall_vm_get_state(sg_host_t vm)
313 {
314   return simgrid::simix::kernel(std::bind(SIMIX_vm_get_state, vm));
315 }
316
317 /**
318  * \ingroup simix_vm_management
319  * \brief Get the name of the physical host on which the given VM runs.
320  *
321  * \param vm VM
322  * \return The name of the physical host
323  */
324 void *simcall_vm_get_pm(sg_host_t vm)
325 {
326   return simgrid::simix::kernel(std::bind(SIMIX_vm_get_pm, vm));
327 }
328
329 void simcall_vm_set_bound(sg_host_t vm, double bound)
330 {
331   simgrid::simix::kernel(std::bind(SIMIX_vm_set_bound, vm, bound));
332 }
333
334 void simcall_vm_set_affinity(sg_host_t vm, sg_host_t pm, unsigned long mask)
335 {
336   simgrid::simix::kernel(std::bind(SIMIX_vm_set_affinity, vm, pm, mask));
337 }
338
339 /**
340  * \ingroup simix_vm_management
341  * \brief Migrate the given VM to the given physical host
342  *
343  * \param vm VM
344  * \param host Destination physical host
345  */
346 void simcall_vm_migrate(sg_host_t vm, sg_host_t host)
347 {
348   return simgrid::simix::kernel(std::bind(SIMIX_vm_migrate, vm, host));
349 }
350
351 /**
352  * \ingroup simix_vm_management
353  * \brief Suspend the given VM
354  *
355  * \param vm VM
356  */
357 void simcall_vm_suspend(sg_host_t vm)
358 {
359   simcall_BODY_vm_suspend(vm);
360 }
361
362 /**
363  * \ingroup simix_vm_management
364  * \brief Resume the given VM
365  *
366  * \param vm VM
367  */
368 void simcall_vm_resume(sg_host_t vm)
369 {
370   simcall_BODY_vm_resume(vm);
371 }
372
373 /**
374  * \ingroup simix_vm_management
375  * \brief Save the given VM
376  *
377  * \param vm VM
378  */
379 void simcall_vm_save(sg_host_t vm)
380 {
381   simcall_BODY_vm_save(vm);
382 }
383
384 /**
385  * \ingroup simix_vm_management
386  * \brief Restore the given VM
387  *
388  * \param vm VM
389  */
390 void simcall_vm_restore(sg_host_t vm)
391 {
392   simcall_BODY_vm_restore(vm);
393 }
394
395 /**
396  * \ingroup simix_vm_management
397  * \brief Shutdown the given VM
398  *
399  * \param vm VM
400  */
401 void simcall_vm_shutdown(sg_host_t vm)
402 {
403   simcall_BODY_vm_shutdown(vm);
404 }
405
406 /**
407  * \ingroup simix_vm_management
408  * \brief Destroy the given VM
409  *
410  * \param vm VM
411  */
412 void simcall_vm_destroy(sg_host_t vm)
413 {
414   simgrid::simix::kernel(std::bind(SIMIX_vm_destroy, vm));
415 }
416
417 /**
418  * \ingroup simix_vm_management
419  * \brief Encompassing simcall to prevent the removal of the src or the dst node at the end of a VM migration
420  *  The simcall actually invokes the following calls: 
421  *     simcall_vm_set_affinity(vm, src_pm, 0); 
422  *     simcall_vm_migrate(vm, dst_pm); 
423  *     simcall_vm_resume(vm);
424  *
425  * It is called at the end of the migration_rx_fun function from msg/msg_vm.c
426  *
427  * \param vm VM to migrate
428  * \param src_pm  Source physical host
429  * \param dst_pmt Destination physical host
430  */
431 void simcall_vm_migratefrom_resumeto(sg_host_t vm, sg_host_t src_pm, sg_host_t dst_pm)
432 {
433   simgrid::simix::kernel(std::bind(
434     SIMIX_vm_migratefrom_resumeto, vm, src_pm, dst_pm));
435 }
436
437 /**
438  * \ingroup simix_process_management
439  * \brief Creates and runs a new SIMIX process.
440  *
441  * The structure and the corresponding thread are created and put in the list of ready processes.
442  *
443  * \param name a name for the process. It is for user-level information and can be NULL.
444  * \param code the main function of the process
445  * \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.
446  * It can be retrieved with the function \ref simcall_process_get_data.
447  * \param hostname name of the host where the new agent is executed.
448  * \param kill_time time when the process is killed
449  * \param argc first argument passed to \a code
450  * \param argv second argument passed to \a code
451  * \param properties the properties of the process
452  * \param auto_restart either it is autorestarting or not.
453  */
454 smx_process_t simcall_process_create(const char *name,
455                               xbt_main_func_t code,
456                               void *data,
457                               const char *hostname,
458                               double kill_time,
459                               int argc, char **argv,
460                               xbt_dict_t properties,
461                               int auto_restart)
462 {
463   return (smx_process_t) simcall_BODY_process_create(name, code, data, hostname,
464                               kill_time, argc, argv, properties,
465                               auto_restart);
466 }
467
468 /**
469  * \ingroup simix_process_management
470  * \brief Kills a SIMIX process.
471  *
472  * This function simply kills a  process.
473  *
474  * \param process poor victim
475  */
476 void simcall_process_kill(smx_process_t process)
477 {
478   simcall_BODY_process_kill(process);
479 }
480
481 /**
482  * \ingroup simix_process_management
483  * \brief Kills all SIMIX processes.
484  */
485 void simcall_process_killall(int reset_pid)
486 {
487   simcall_BODY_process_killall(reset_pid);
488 }
489
490 /**
491  * \ingroup simix_process_management
492  * \brief Cleans up a SIMIX process.
493  * \param process poor victim (must have already been killed)
494  */
495 void simcall_process_cleanup(smx_process_t process)
496 {
497   simcall_BODY_process_cleanup(process);
498 }
499
500 /**
501  * \ingroup simix_process_management
502  * \brief Migrates an agent to another location.
503  *
504  * This function changes the value of the host on which \a process is running.
505  *
506  * \param process the process to migrate
507  * \param dest name of the new host
508  */
509 void simcall_process_set_host(smx_process_t process, sg_host_t dest)
510 {
511   simcall_BODY_process_set_host(process, dest);
512 }
513
514 void simcall_process_join(smx_process_t process, double timeout)
515 {
516   simcall_BODY_process_join(process, timeout);
517 }
518
519 /**
520  * \ingroup simix_process_management
521  * \brief Suspends a process.
522  *
523  * This function suspends the process by suspending the synchro
524  * it was waiting for completion.
525  *
526  * \param process a SIMIX process
527  */
528 void simcall_process_suspend(smx_process_t process)
529 {
530   xbt_assert(process, "Invalid parameters");
531
532   simcall_BODY_process_suspend(process);
533 }
534
535 /**
536  * \ingroup simix_process_management
537  * \brief Resumes a suspended process.
538  *
539  * This function resumes a suspended process by resuming the synchro
540  * it was waiting for completion.
541  *
542  * \param process a SIMIX process
543  */
544 void simcall_process_resume(smx_process_t process)
545 {
546   simcall_BODY_process_resume(process);
547 }
548
549 /**
550  * \ingroup simix_process_management
551  * \brief Returns the amount of SIMIX processes in the system
552  *
553  * Maestro internal process is not counted, only user code processes are
554  */
555 int simcall_process_count(void)
556 {
557   return simgrid::simix::kernel(SIMIX_process_count);
558 }
559
560 /**
561  * \ingroup simix_process_management
562  * \brief Return the PID of a #smx_process_t.
563  * \param process a SIMIX process
564  * \return the PID of this process
565  */
566 int simcall_process_get_PID(smx_process_t process)
567 {
568   return SIMIX_process_get_PID(process);
569 }
570
571 /**
572  * \ingroup simix_process_management
573  * \brief Return the parent PID of a #smx_process_t.
574  * \param process a SIMIX process
575  * \return the PID of this process parenrt
576  */
577 int simcall_process_get_PPID(smx_process_t process)
578 {
579   return SIMIX_process_get_PPID(process);
580 }
581
582 /**
583  * \ingroup simix_process_management
584  * \brief Return the user data of a #smx_process_t.
585  * \param process a SIMIX process
586  * \return the user data of this process
587  */
588 void* simcall_process_get_data(smx_process_t process)
589 {
590   return SIMIX_process_get_data(process);
591 }
592
593 /**
594  * \ingroup simix_process_management
595  * \brief Set the user data of a #smx_process_t.
596  *
597  * This functions sets the user data associated to \a process.
598  * \param process SIMIX process
599  * \param data User data
600  */
601 void simcall_process_set_data(smx_process_t process, void *data)
602 {
603   simgrid::simix::kernel(std::bind(SIMIX_process_set_data, process, data));
604 }
605
606 static void kill_process(void* arg)
607 {
608   simix_global->kill_process_function((smx_process_t) arg);
609 }
610
611 /**
612  * \ingroup simix_process_management
613  * \brief Set the kill time of a process.
614  */
615 void simcall_process_set_kill_time(smx_process_t process, double kill_time)
616 {
617
618   if (kill_time > SIMIX_get_clock()) {
619     if (simix_global->kill_process_function) {
620       XBT_DEBUG("Set kill time %f for process %s(%s)",kill_time, process->name,
621           sg_host_get_name(process->host));
622       process->kill_timer = SIMIX_timer_set(kill_time, kill_process, process);
623     }
624   }
625 }
626 /**
627  * \ingroup simix_process_management
628  * \brief Get the kill time of a process (or 0 if unset).
629  */
630 double simcall_process_get_kill_time(smx_process_t process) {
631   return SIMIX_timer_get_date(process->kill_timer);
632 }
633
634 /**
635  * \ingroup simix_process_management
636  * \brief Return the location on which an agent is running.
637  *
638  * This functions returns the sg_host_t corresponding to the location on which
639  * \a process is running.
640  * \param process SIMIX process
641  * \return SIMIX host
642  */
643 sg_host_t simcall_process_get_host(smx_process_t process)
644 {
645   return SIMIX_process_get_host(process);
646 }
647
648 /**
649  * \ingroup simix_process_management
650  * \brief Return the name of an agent.
651  *
652  * This functions checks whether \a process is a valid pointer or not and return its name.
653  * \param process SIMIX process
654  * \return The process name
655  */
656 const char* simcall_process_get_name(smx_process_t process)
657 {
658   return SIMIX_process_get_name(process);
659 }
660
661 /**
662  * \ingroup simix_process_management
663  * \brief Returns true if the process is suspended .
664  *
665  * This checks whether a process is suspended or not by inspecting the task on which it was waiting for the completion.
666  * \param process SIMIX process
667  * \return 1, if the process is suspended, else 0.
668  */
669 int simcall_process_is_suspended(smx_process_t process)
670 {
671   return simcall_BODY_process_is_suspended(process);
672 }
673
674 /**
675  * \ingroup simix_process_management
676  * \brief Return the properties
677  *
678  * This functions returns the properties associated with this process
679  */
680 xbt_dict_t simcall_process_get_properties(smx_process_t process)
681 {
682   return SIMIX_process_get_properties(process);
683 }
684 /**
685  * \ingroup simix_process_management
686  * \brief Add an on_exit function
687  * Add an on_exit function which will be executed when the process exits/is killed.
688  */
689 XBT_PUBLIC(void) simcall_process_on_exit(smx_process_t process, int_f_pvoid_pvoid_t fun, void *data)
690 {
691   simcall_BODY_process_on_exit(process, fun, data);
692 }
693 /**
694  * \ingroup simix_process_management
695  * \brief Sets the process to be auto-restarted or not by SIMIX when its host comes back up.
696  * Will restart the process when the host comes back up if auto_restart is set to 1.
697  */
698
699 XBT_PUBLIC(void) simcall_process_auto_restart_set(smx_process_t process, int auto_restart)
700 {
701   simcall_BODY_process_auto_restart_set(process, auto_restart);
702 }
703
704 /**
705  * \ingroup simix_process_management
706  * \brief Restarts the process, killing it and starting it again from scratch.
707  */
708 XBT_PUBLIC(smx_process_t) simcall_process_restart(smx_process_t process)
709 {
710   return (smx_process_t) simcall_BODY_process_restart(process);
711 }
712 /**
713  * \ingroup simix_process_management
714  * \brief Creates a new sleep SIMIX synchro.
715  *
716  * This function creates a SURF action and allocates the data necessary
717  * to create the SIMIX synchro. It can raise a host_error exception if the
718  * host crashed. The default SIMIX name of the synchro is "sleep".
719  *
720  *   \param duration Time duration of the sleep.
721  *   \return A result telling whether the sleep was successful
722  */
723 e_smx_state_t simcall_process_sleep(double duration)
724 {
725   /* checking for infinite values */
726   xbt_assert(std::isfinite(duration), "duration is not finite!");
727   return (e_smx_state_t) simcall_BODY_process_sleep(duration);
728 }
729
730 /**
731  *  \ingroup simix_rdv_management
732  *  \brief Creates a new rendez-vous point
733  *  \param name The name of the rendez-vous point
734  *  \return The created rendez-vous point
735  */
736 smx_mailbox_t simcall_rdv_create(const char *name)
737 {
738   return simcall_BODY_rdv_create(name);
739 }
740
741
742 /**
743  *  \ingroup simix_rdv_management
744  *  \brief Destroy a rendez-vous point
745  *  \param rdv The rendez-vous point to destroy
746  */
747 void simcall_rdv_destroy(smx_mailbox_t rdv)
748 {
749   simcall_BODY_rdv_destroy(rdv);
750 }
751 /**
752  *  \ingroup simix_rdv_management
753  *  \brief Returns a rendez-vous point knowing its name
754  */
755 smx_mailbox_t simcall_rdv_get_by_name(const char *name)
756 {
757   xbt_assert(name != NULL, "Invalid parameter for simcall_rdv_get_by_name (name is NULL)");
758
759   /* FIXME: this is a horrible loss of performance, so we hack it out by
760    * skipping the simcall (for now). It works in parallel, it won't work on
761    * distributed but probably we will change MSG for that. */
762
763   return SIMIX_rdv_get_by_name(name);
764 }
765
766 /**
767  *  \ingroup simix_rdv_management
768  *  \brief Counts the number of communication synchros of a given host pending
769  *         on a rendez-vous point.
770  *  \param rdv The rendez-vous point
771  *  \param host The host to be counted
772  *  \return The number of comm synchros pending in the rdv
773  */
774 int simcall_rdv_comm_count_by_host(smx_mailbox_t rdv, sg_host_t host)
775 {
776   return simcall_BODY_rdv_comm_count_by_host(rdv, host);
777 }
778
779 /**
780  *  \ingroup simix_rdv_management
781  *  \brief returns the communication at the head of the rendez-vous
782  *  \param rdv The rendez-vous point
783  *  \return The communication or NULL if empty
784  */
785 smx_synchro_t simcall_rdv_get_head(smx_mailbox_t rdv)
786 {
787   return simcall_BODY_rdv_get_head(rdv);
788 }
789
790 void simcall_rdv_set_receiver(smx_mailbox_t rdv, smx_process_t process)
791 {
792   simcall_BODY_rdv_set_receiver(rdv, process);
793 }
794
795 smx_process_t simcall_rdv_get_receiver(smx_mailbox_t rdv)
796 {
797   return simcall_BODY_rdv_get_receiver(rdv);
798 }
799
800 /**
801  * \ingroup simix_comm_management
802  */
803 void simcall_comm_send(smx_process_t sender, smx_mailbox_t rdv, double task_size, double rate,
804                          void *src_buff, size_t src_buff_size,
805                          int (*match_fun)(void *, void *, smx_synchro_t),
806                          void (*copy_data_fun)(smx_synchro_t, void*, size_t), void *data,
807                          double timeout)
808 {
809   /* checking for infinite values */
810   xbt_assert(std::isfinite(task_size), "task_size is not finite!");
811   xbt_assert(std::isfinite(rate), "rate is not finite!");
812   xbt_assert(std::isfinite(timeout), "timeout is not finite!");
813
814   xbt_assert(rdv, "No rendez-vous point defined for send");
815
816   if (MC_is_active() || MC_record_replay_is_active()) {
817     /* the model-checker wants two separate simcalls */
818     smx_synchro_t comm = NULL; /* MC needs the comm to be set to NULL during the simcall */
819     comm = simcall_comm_isend(sender, rdv, task_size, rate,
820         src_buff, src_buff_size, match_fun, NULL, copy_data_fun, data, 0);
821     simcall_comm_wait(comm, timeout);
822     comm = NULL;
823   }
824   else {
825     simcall_BODY_comm_send(sender, rdv, task_size, rate, src_buff, src_buff_size,
826                          match_fun, copy_data_fun, data, timeout);
827   }
828 }
829
830 /**
831  * \ingroup simix_comm_management
832  */
833 smx_synchro_t simcall_comm_isend(smx_process_t sender, smx_mailbox_t rdv, double task_size, double rate,
834                               void *src_buff, size_t src_buff_size,
835                               int (*match_fun)(void *, void *, smx_synchro_t),
836                               void (*clean_fun)(void *),
837                               void (*copy_data_fun)(smx_synchro_t, void*, size_t),
838                               void *data,
839                               int detached)
840 {
841   /* checking for infinite values */
842   xbt_assert(std::isfinite(task_size), "task_size is not finite!");
843   xbt_assert(std::isfinite(rate), "rate is not finite!");
844
845   xbt_assert(rdv, "No rendez-vous point defined for isend");
846
847   return simcall_BODY_comm_isend(sender, rdv, task_size, rate, src_buff,
848                                  src_buff_size, match_fun,
849                                  clean_fun, copy_data_fun, data, detached);
850 }
851
852 /**
853  * \ingroup simix_comm_management
854  */
855 void simcall_comm_recv(smx_process_t receiver, smx_mailbox_t rdv, void *dst_buff, size_t * dst_buff_size,
856                        int (*match_fun)(void *, void *, smx_synchro_t),
857                        void (*copy_data_fun)(smx_synchro_t, void*, size_t),
858                        void *data, double timeout, double rate)
859 {
860   xbt_assert(std::isfinite(timeout), "timeout is not finite!");
861   xbt_assert(rdv, "No rendez-vous point defined for recv");
862
863   if (MC_is_active() || MC_record_replay_is_active()) {
864     /* the model-checker wants two separate simcalls */
865     smx_synchro_t comm = NULL; /* MC needs the comm to be set to NULL during the simcall */
866     comm = simcall_comm_irecv(receiver, rdv, dst_buff, dst_buff_size,
867                               match_fun, copy_data_fun, data, rate);
868     simcall_comm_wait(comm, timeout);
869     comm = NULL;
870   }
871   else {
872     simcall_BODY_comm_recv(receiver, rdv, dst_buff, dst_buff_size,
873                            match_fun, copy_data_fun, data, timeout, rate);
874   }
875 }
876 /**
877  * \ingroup simix_comm_management
878  */
879 smx_synchro_t simcall_comm_irecv(smx_process_t receiver, smx_mailbox_t rdv, void *dst_buff, size_t *dst_buff_size,
880                                 int (*match_fun)(void *, void *, smx_synchro_t),
881                                 void (*copy_data_fun)(smx_synchro_t, void*, size_t),
882                                 void *data, double rate)
883 {
884   xbt_assert(rdv, "No rendez-vous point defined for irecv");
885
886   return simcall_BODY_comm_irecv(receiver, rdv, dst_buff, dst_buff_size,
887                                  match_fun, copy_data_fun, data, rate);
888 }
889
890 /**
891  * \ingroup simix_comm_management
892  */
893 smx_synchro_t simcall_comm_iprobe(smx_mailbox_t rdv, int type, int src, int tag,
894                                 int (*match_fun)(void *, void *, smx_synchro_t), void *data)
895 {
896   xbt_assert(rdv, "No rendez-vous point defined for iprobe");
897
898   return simcall_BODY_comm_iprobe(rdv, type, src, tag, match_fun, data);
899 }
900
901 /**
902  * \ingroup simix_comm_management
903  */
904 void simcall_comm_cancel(smx_synchro_t comm)
905 {
906   simcall_BODY_comm_cancel(comm);
907 }
908
909 /**
910  * \ingroup simix_comm_management
911  */
912 unsigned int simcall_comm_waitany(xbt_dynar_t comms)
913 {
914   return simcall_BODY_comm_waitany(comms);
915 }
916
917 /**
918  * \ingroup simix_comm_management
919  */
920 int simcall_comm_testany(xbt_dynar_t comms)
921 {
922   if (xbt_dynar_is_empty(comms))
923     return -1;
924   return simcall_BODY_comm_testany(comms);
925 }
926
927 /**
928  * \ingroup simix_comm_management
929  */
930 void simcall_comm_wait(smx_synchro_t comm, double timeout)
931 {
932   xbt_assert(std::isfinite(timeout), "timeout is not finite!");
933   simcall_BODY_comm_wait(comm, timeout);
934 }
935
936 /**
937  * \brief Set the category of an synchro.
938  *
939  * This functions changes the category only. It calls a surf function.
940  * \param execution The execution synchro
941  * \param category The tracing category
942  */
943 void simcall_set_category(smx_synchro_t synchro, const char *category)
944 {
945   if (category == NULL) {
946     return;
947   }
948   simcall_BODY_set_category(synchro, category);
949 }
950
951 /**
952  * \ingroup simix_comm_management
953  *
954  */
955 int simcall_comm_test(smx_synchro_t comm)
956 {
957   return simcall_BODY_comm_test(comm);
958 }
959
960 /**
961  * \ingroup simix_comm_management
962  *
963  */
964 double simcall_comm_get_remains(smx_synchro_t comm)
965 {
966   return simcall_BODY_comm_get_remains(comm);
967 }
968
969 /**
970  * \ingroup simix_comm_management
971  *
972  */
973 e_smx_state_t simcall_comm_get_state(smx_synchro_t comm)
974 {
975   return simcall_BODY_comm_get_state(comm);
976 }
977
978 /**
979  * \ingroup simix_comm_management
980  *
981  */
982 void *simcall_comm_get_src_data(smx_synchro_t comm)
983 {
984   return simcall_BODY_comm_get_src_data(comm);
985 }
986
987 /**
988  * \ingroup simix_comm_management
989  *
990  */
991 void *simcall_comm_get_dst_data(smx_synchro_t comm)
992 {
993   return simcall_BODY_comm_get_dst_data(comm);
994 }
995
996 /**
997  * \ingroup simix_comm_management
998  *
999  */
1000 smx_process_t simcall_comm_get_src_proc(smx_synchro_t comm)
1001 {
1002   return simcall_BODY_comm_get_src_proc(comm);
1003 }
1004
1005 /**
1006  * \ingroup simix_comm_management
1007  *
1008  */
1009 smx_process_t simcall_comm_get_dst_proc(smx_synchro_t comm)
1010 {
1011   return simcall_BODY_comm_get_dst_proc(comm);
1012 }
1013
1014 #ifdef HAVE_LATENCY_BOUND_TRACKING
1015 int simcall_comm_is_latency_bounded(smx_synchro_t comm)
1016 {
1017   return simcall_BODY_comm_is_latency_bounded(comm);
1018 }
1019 #endif
1020
1021 /**
1022  * \ingroup simix_synchro_management
1023  *
1024  */
1025 smx_mutex_t simcall_mutex_init(void)
1026 {
1027   if(!simix_global) {
1028     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
1029     xbt_abort();
1030   }
1031   return simcall_BODY_mutex_init();
1032 }
1033
1034 /**
1035  * \ingroup simix_synchro_management
1036  *
1037  */
1038 void simcall_mutex_lock(smx_mutex_t mutex)
1039 {
1040   simcall_BODY_mutex_lock(mutex);
1041 }
1042
1043 /**
1044  * \ingroup simix_synchro_management
1045  *
1046  */
1047 int simcall_mutex_trylock(smx_mutex_t mutex)
1048 {
1049   return simcall_BODY_mutex_trylock(mutex);
1050 }
1051
1052 /**
1053  * \ingroup simix_synchro_management
1054  *
1055  */
1056 void simcall_mutex_unlock(smx_mutex_t mutex)
1057 {
1058   simcall_BODY_mutex_unlock(mutex);
1059 }
1060
1061 /**
1062  * \ingroup simix_synchro_management
1063  *
1064  */
1065 smx_cond_t simcall_cond_init(void)
1066 {
1067   return simcall_BODY_cond_init();
1068 }
1069
1070 /**
1071  * \ingroup simix_synchro_management
1072  *
1073  */
1074 void simcall_cond_signal(smx_cond_t cond)
1075 {
1076   simcall_BODY_cond_signal(cond);
1077 }
1078
1079 /**
1080  * \ingroup simix_synchro_management
1081  *
1082  */
1083 void simcall_cond_wait(smx_cond_t cond, smx_mutex_t mutex)
1084 {
1085   simcall_BODY_cond_wait(cond, mutex);
1086 }
1087
1088 /**
1089  * \ingroup simix_synchro_management
1090  *
1091  */
1092 void simcall_cond_wait_timeout(smx_cond_t cond,
1093                                  smx_mutex_t mutex,
1094                                  double timeout)
1095 {
1096   xbt_assert(std::isfinite(timeout), "timeout is not finite!");
1097   simcall_BODY_cond_wait_timeout(cond, mutex, timeout);
1098 }
1099
1100 /**
1101  * \ingroup simix_synchro_management
1102  *
1103  */
1104 void simcall_cond_broadcast(smx_cond_t cond)
1105 {
1106   simcall_BODY_cond_broadcast(cond);
1107 }
1108
1109 /**
1110  * \ingroup simix_synchro_management
1111  *
1112  */
1113 smx_sem_t simcall_sem_init(int capacity)
1114 {
1115   return simcall_BODY_sem_init(capacity);
1116 }
1117
1118 /**
1119  * \ingroup simix_synchro_management
1120  *
1121  */
1122 void simcall_sem_release(smx_sem_t sem)
1123 {
1124   simcall_BODY_sem_release(sem);
1125 }
1126
1127 /**
1128  * \ingroup simix_synchro_management
1129  *
1130  */
1131 int simcall_sem_would_block(smx_sem_t sem)
1132 {
1133   return simcall_BODY_sem_would_block(sem);
1134 }
1135
1136 /**
1137  * \ingroup simix_synchro_management
1138  *
1139  */
1140 void simcall_sem_acquire(smx_sem_t sem)
1141 {
1142   simcall_BODY_sem_acquire(sem);
1143 }
1144
1145 /**
1146  * \ingroup simix_synchro_management
1147  *
1148  */
1149 void simcall_sem_acquire_timeout(smx_sem_t sem, double timeout)
1150 {
1151   xbt_assert(std::isfinite(timeout), "timeout is not finite!");
1152   simcall_BODY_sem_acquire_timeout(sem, timeout);
1153 }
1154
1155 /**
1156  * \ingroup simix_synchro_management
1157  *
1158  */
1159 int simcall_sem_get_capacity(smx_sem_t sem)
1160 {
1161   return simcall_BODY_sem_get_capacity(sem);
1162 }
1163
1164 /**
1165  * \ingroup simix_file_management
1166  *
1167  */
1168 sg_size_t simcall_file_read(smx_file_t fd, sg_size_t size, sg_host_t host)
1169 {
1170   return simcall_BODY_file_read(fd, size, host);
1171 }
1172
1173 /**
1174  * \ingroup simix_file_management
1175  *
1176  */
1177 sg_size_t simcall_file_write(smx_file_t fd, sg_size_t size, sg_host_t host)
1178 {
1179   return simcall_BODY_file_write(fd, size, host);
1180 }
1181
1182 /**
1183  * \ingroup simix_file_management
1184  * \brief
1185  */
1186 smx_file_t simcall_file_open(const char* fullpath, sg_host_t host)
1187 {
1188   return simcall_BODY_file_open(fullpath, host);
1189 }
1190
1191 /**
1192  * \ingroup simix_file_management
1193  *
1194  */
1195 int simcall_file_close(smx_file_t fd, sg_host_t host)
1196 {
1197   return simcall_BODY_file_close(fd, host);
1198 }
1199
1200 /**
1201  * \ingroup simix_file_management
1202  *
1203  */
1204 int simcall_file_unlink(smx_file_t fd, sg_host_t host)
1205 {
1206   return simcall_BODY_file_unlink(fd, host);
1207 }
1208
1209 /**
1210  * \ingroup simix_file_management
1211  *
1212  */
1213 sg_size_t simcall_file_get_size(smx_file_t fd){
1214   return simcall_BODY_file_get_size(fd);
1215 }
1216
1217 /**
1218  * \ingroup simix_file_management
1219  *
1220  */
1221 sg_size_t simcall_file_tell(smx_file_t fd){
1222   return simcall_BODY_file_tell(fd);
1223 }
1224
1225 /**
1226  * \ingroup simix_file_management
1227  *
1228  */
1229 xbt_dynar_t simcall_file_get_info(smx_file_t fd)
1230 {
1231   return simcall_BODY_file_get_info(fd);
1232 }
1233
1234 /**
1235  * \ingroup simix_file_management
1236  *
1237  */
1238 int simcall_file_seek(smx_file_t fd, sg_offset_t offset, int origin){
1239   return simcall_BODY_file_seek(fd, offset, origin);
1240 }
1241
1242 /**
1243  * \ingroup simix_file_management
1244  * \brief Move a file to another location on the *same mount point*.
1245  *
1246  */
1247 int simcall_file_move(smx_file_t fd, const char* fullpath)
1248 {
1249   return simcall_BODY_file_move(fd, fullpath);
1250 }
1251
1252 /**
1253  * \ingroup simix_storage_management
1254  * \brief Returns the free space size on a given storage element.
1255  * \param storage a storage
1256  * \return Return the free space size on a given storage element (as sg_size_t)
1257  */
1258 sg_size_t simcall_storage_get_free_size (smx_storage_t storage){
1259   return simcall_BODY_storage_get_free_size(storage);
1260 }
1261
1262 /**
1263  * \ingroup simix_storage_management
1264  * \brief Returns the used space size on a given storage element.
1265  * \param storage a storage
1266  * \return Return the used space size on a given storage element (as sg_size_t)
1267  */
1268 sg_size_t simcall_storage_get_used_size (smx_storage_t storage){
1269   return simcall_BODY_storage_get_used_size(storage);
1270 }
1271
1272 /**
1273  * \ingroup simix_storage_management
1274  * \brief Returns a dict of the properties assigned to a storage element.
1275  *
1276  * \param storage A storage element
1277  * \return The properties of this storage element
1278  */
1279 xbt_dict_t simcall_storage_get_properties(smx_storage_t storage)
1280 {
1281   return simcall_BODY_storage_get_properties(storage);
1282 }
1283
1284 /**
1285  * \ingroup simix_storage_management
1286  * \brief Returns a dict containing the content of a storage element.
1287  *
1288  * \param storage A storage element
1289  * \return The content of this storage element as a dict (full path file => size)
1290  */
1291 xbt_dict_t simcall_storage_get_content(smx_storage_t storage)
1292 {
1293   return simcall_BODY_storage_get_content(storage);
1294 }
1295
1296 void simcall_run_kernel(std::function<void()> const& code)
1297 {
1298   return simcall_BODY_run_kernel((void*) &code);
1299 }
1300
1301 #ifdef HAVE_MC
1302
1303 void *simcall_mc_snapshot(void) {
1304   return simcall_BODY_mc_snapshot();
1305 }
1306
1307 int simcall_mc_compare_snapshots(void *s1, void *s2) {
1308   return simcall_BODY_mc_compare_snapshots((simgrid::mc::Snapshot*)s1, (simgrid::mc::Snapshot*)s2);
1309 }
1310
1311 #endif /* HAVE_MC */
1312
1313 int simcall_mc_random(int min, int max) {
1314   return simcall_BODY_mc_random(min, max);
1315 }
1316
1317 /* ************************************************************************** */
1318
1319 /** @brief returns a printable string representing a simcall */
1320 const char *SIMIX_simcall_name(e_smx_simcall_t kind) {
1321   return simcall_names[kind];
1322 }