Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
bypass MSG in the java bindings
[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 <xbt/functional.hpp>
19
20 #include <simgrid/s4u/VirtualMachine.hpp>
21 #include <simgrid/simix/blocking_simcall.hpp>
22
23 #include "mc/mc.h"
24 #include "smx_private.h"
25 #include "src/kernel/activity/SynchroComm.hpp"
26 #include "src/mc/mc_forward.hpp"
27 #include "src/mc/mc_replay.h"
28 #include "src/plugins/vm/VirtualMachineImpl.hpp"
29 #include "src/simix/smx_host_private.h"
30 #include "xbt/ex.h"
31
32 #include <simgrid/simix.hpp>
33
34 XBT_LOG_EXTERNAL_DEFAULT_CATEGORY(simix);
35
36 #include "popping_bodies.cpp"
37
38 void simcall_call(smx_actor_t process)
39 {
40   if (process != simix_global->maestro_process) {
41     XBT_DEBUG("Yield process '%s' on simcall %s (%d)", process->name.c_str(),
42               SIMIX_simcall_name(process->simcall.call), (int)process->simcall.call);
43     SIMIX_process_yield(process);
44   } else {
45     SIMIX_simcall_handle(&process->simcall, 0);
46   }
47 }
48
49 // ***** AS simcalls
50
51 /**
52  * \ingroup simix_host_management
53  * \brief Returns a dict of the properties assigned to a router or AS.
54  *
55  * \param name The name of the router or AS
56  * \return The properties
57  */
58 xbt_dict_t simcall_asr_get_properties(const char *name)
59 {
60   return simcall_BODY_asr_get_properties(name);
61 }
62
63 /**
64  * \ingroup simix_process_management
65  * \brief Creates a synchro that executes some computation of an host.
66  *
67  * This function creates a SURF action and allocates the data necessary
68  * to create the SIMIX synchro. It can raise a host_error exception if the host crashed.
69  *
70  * \param name Name of the execution synchro to create
71  * \param flops_amount amount Computation amount (in flops)
72  * \param priority computation priority
73  * \param bound
74  * \return A new SIMIX execution synchronization
75  */
76 smx_activity_t simcall_execution_start(const char *name,
77                                     double flops_amount,
78                                     double priority, double bound)
79 {
80   /* checking for infinite values */
81   xbt_assert(std::isfinite(flops_amount), "flops_amount is not finite!");
82   xbt_assert(std::isfinite(priority), "priority is not finite!");
83
84   return simcall_BODY_execution_start(name, flops_amount, priority, bound);
85 }
86
87 /**
88  * \ingroup simix_process_management
89  * \brief Creates a synchro that may involve parallel computation on
90  * several hosts and communication between them.
91  *
92  * \param name Name of the execution synchro to create
93  * \param host_nb Number of hosts where the synchro will be executed
94  * \param host_list Array (of size host_nb) of hosts where the synchro will be executed
95  * \param flops_amount Array (of size host_nb) of computation amount of hosts (in bytes)
96  * \param bytes_amount Array (of size host_nb * host_nb) representing the communication
97  * amount between each pair of hosts
98  * \param amount the SURF action amount
99  * \param rate the SURF action rate
100  * \param timeout timeout
101  * \return A new SIMIX execution synchronization
102  */
103 smx_activity_t simcall_execution_parallel_start(const char* name, int host_nb, sg_host_t* host_list,
104                                                 double* flops_amount, double* bytes_amount, double amount, double rate,
105                                                 double timeout)
106 {
107   int i,j;
108   /* checking for infinite values */
109   for (i = 0 ; i < host_nb ; ++i) {
110     xbt_assert(std::isfinite(flops_amount[i]), "flops_amount[%d] is not finite!", i);
111     if (bytes_amount != nullptr) {
112       for (j = 0 ; j < host_nb ; ++j) {
113         xbt_assert(std::isfinite(bytes_amount[i + host_nb * j]),
114                    "bytes_amount[%d+%d*%d] is not finite!", i, host_nb, j);
115       }
116     }
117   }
118
119   xbt_assert(std::isfinite(amount), "amount is not finite!");
120   xbt_assert(std::isfinite(rate), "rate is not finite!");
121
122   return simcall_BODY_execution_parallel_start(name, host_nb, host_list, flops_amount, bytes_amount, amount, rate,
123                                                timeout);
124 }
125
126 /**
127  * \ingroup simix_process_management
128  * \brief Cancels an execution synchro.
129  *
130  * This functions stops the execution. It calls a surf function.
131  * \param execution The execution synchro to cancel
132  */
133 void simcall_execution_cancel(smx_activity_t execution)
134 {
135   simcall_BODY_execution_cancel(execution);
136 }
137
138 /**
139  * \ingroup simix_process_management
140  * \brief Changes the priority of an execution synchro.
141  *
142  * This functions changes the priority only. It calls a surf function.
143  * \param execution The execution synchro
144  * \param priority The new priority
145  */
146 void simcall_execution_set_priority(smx_activity_t execution, double priority)
147 {
148   /* checking for infinite values */
149   xbt_assert(std::isfinite(priority), "priority is not finite!");
150
151   simcall_BODY_execution_set_priority(execution, priority);
152 }
153
154 /**
155  * \ingroup simix_process_management
156  * \brief Changes the capping (the maximum CPU utilization) of an execution synchro.
157  *
158  * This functions changes the capping only. It calls a surf function.
159  * \param execution The execution synchro
160  * \param bound The new bound
161  */
162 void simcall_execution_set_bound(smx_activity_t execution, double bound)
163 {
164   simcall_BODY_execution_set_bound(execution, bound);
165 }
166
167 /**
168  * \ingroup simix_host_management
169  * \brief Waits for the completion of an execution synchro and destroy it.
170  *
171  * \param execution The execution synchro
172  */
173 e_smx_state_t simcall_execution_wait(smx_activity_t execution)
174 {
175   return (e_smx_state_t) simcall_BODY_execution_wait(execution);
176 }
177
178 /**
179  * \ingroup simix_vm_management
180  * \brief Suspend the given VM
181  *
182  * \param vm VM
183  */
184 void simcall_vm_suspend(sg_host_t vm)
185 {
186   simcall_BODY_vm_suspend(vm);
187 }
188
189 /**
190  * \ingroup simix_vm_management
191  * \brief Resume the given VM
192  *
193  * \param vm VM
194  */
195 void simcall_vm_resume(sg_host_t vm)
196 {
197   simcall_BODY_vm_resume(vm);
198 }
199
200 /**
201  * \ingroup simix_vm_management
202  * \brief Save the given VM
203  *
204  * \param vm VM
205  */
206 void simcall_vm_save(sg_host_t vm)
207 {
208   simcall_BODY_vm_save(vm);
209 }
210
211 /**
212  * \ingroup simix_vm_management
213  * \brief Shutdown the given VM
214  *
215  * \param vm VM
216  */
217 void simcall_vm_shutdown(sg_host_t vm)
218 {
219   simcall_BODY_vm_shutdown(vm);
220 }
221
222 /**
223  * \ingroup simix_process_management
224  * \brief Kills a SIMIX process.
225  *
226  * This function simply kills a  process.
227  *
228  * \param process poor victim
229  */
230 void simcall_process_kill(smx_actor_t process)
231 {
232   simcall_BODY_process_kill(process);
233 }
234
235 /**
236  * \ingroup simix_process_management
237  * \brief Kills all SIMIX processes.
238  */
239 void simcall_process_killall(int reset_pid)
240 {
241   simcall_BODY_process_killall(reset_pid);
242 }
243
244 /**
245  * \ingroup simix_process_management
246  * \brief Cleans up a SIMIX process.
247  * \param process poor victim (must have already been killed)
248  */
249 void simcall_process_cleanup(smx_actor_t process)
250 {
251   simcall_BODY_process_cleanup(process);
252 }
253
254 /**
255  * \ingroup simix_process_management
256  * \brief Migrates an agent to another location.
257  *
258  * This function changes the value of the host on which \a process is running.
259  *
260  * \param process the process to migrate
261  * \param dest name of the new host
262  */
263 void simcall_process_set_host(smx_actor_t process, sg_host_t dest)
264 {
265   simcall_BODY_process_set_host(process, dest);
266 }
267
268 void simcall_process_join(smx_actor_t process, double timeout)
269 {
270   simcall_BODY_process_join(process, timeout);
271 }
272
273 /**
274  * \ingroup simix_process_management
275  * \brief Suspends a process.
276  *
277  * This function suspends the process by suspending the synchro
278  * it was waiting for completion.
279  *
280  * \param process a SIMIX process
281  */
282 void simcall_process_suspend(smx_actor_t process)
283 {
284   simcall_BODY_process_suspend(process);
285 }
286
287 /**
288  * \ingroup simix_process_management
289  * \brief Resumes a suspended process.
290  *
291  * This function resumes a suspended process by resuming the synchro
292  * it was waiting for completion.
293  *
294  * \param process a SIMIX process
295  */
296 void simcall_process_resume(smx_actor_t process)
297 {
298   simcall_BODY_process_resume(process);
299 }
300
301 /**
302  * \ingroup simix_process_management
303  * \brief Returns the amount of SIMIX processes in the system
304  *
305  * Maestro internal process is not counted, only user code processes are
306  */
307 int simcall_process_count()
308 {
309   return simgrid::simix::kernelImmediate(SIMIX_process_count);
310 }
311
312 /**
313  * \ingroup simix_process_management
314  * \brief Return the user data of a #smx_actor_t.
315  * \param process a SIMIX process
316  * \return the user data of this process
317  */
318 void* simcall_process_get_data(smx_actor_t process)
319 {
320   return SIMIX_process_get_data(process);
321 }
322
323 /**
324  * \ingroup simix_process_management
325  * \brief Set the user data of a #smx_actor_t.
326  *
327  * This functions sets the user data associated to \a process.
328  * \param process SIMIX process
329  * \param data User data
330  */
331 void simcall_process_set_data(smx_actor_t process, void *data)
332 {
333   simgrid::simix::kernelImmediate(std::bind(SIMIX_process_set_data, process, data));
334 }
335
336 /**
337  * \ingroup simix_process_management
338  * \brief Set the kill time of a process.
339  */
340 void simcall_process_set_kill_time(smx_actor_t process, double kill_time)
341 {
342
343   if (kill_time <= SIMIX_get_clock() || simix_global->kill_process_function == nullptr)
344     return;
345   XBT_DEBUG("Set kill time %f for process %s@%s", kill_time, process->cname(), process->host->cname());
346   process->kill_timer = SIMIX_timer_set(kill_time, [=] {
347     simix_global->kill_process_function(process);
348     process->kill_timer=nullptr;
349   });
350 }
351 /**
352  * \ingroup simix_process_management
353  * \brief Get the kill time of a process (or 0 if unset).
354  */
355 double simcall_process_get_kill_time(smx_actor_t process) {
356   return SIMIX_timer_get_date(process->kill_timer);
357 }
358
359 /**
360  * \ingroup simix_process_management
361  * \brief Returns true if the process is suspended .
362  *
363  * This checks whether a process is suspended or not by inspecting the task on which it was waiting for the completion.
364  * \param process SIMIX process
365  * \return 1, if the process is suspended, else 0.
366  */
367 int simcall_process_is_suspended(smx_actor_t process)
368 {
369   return simcall_BODY_process_is_suspended(process);
370 }
371
372 /**
373  * \ingroup simix_process_management
374  * \brief Return the properties
375  *
376  * This functions returns the properties associated with this process
377  */
378 xbt_dict_t simcall_process_get_properties(smx_actor_t process)
379 {
380   return SIMIX_process_get_properties(process);
381 }
382 /**
383  * \ingroup simix_process_management
384  * \brief Add an on_exit function
385  * Add an on_exit function which will be executed when the process exits/is killed.
386  */
387 XBT_PUBLIC(void) simcall_process_on_exit(smx_actor_t process, int_f_pvoid_pvoid_t fun, void *data)
388 {
389   simcall_BODY_process_on_exit(process, fun, data);
390 }
391 /**
392  * \ingroup simix_process_management
393  * \brief Sets the process to be auto-restarted or not by SIMIX when its host comes back up.
394  * Will restart the process when the host comes back up if auto_restart is set to 1.
395  */
396
397 XBT_PUBLIC(void) simcall_process_auto_restart_set(smx_actor_t process, int auto_restart)
398 {
399   simcall_BODY_process_auto_restart_set(process, auto_restart);
400 }
401
402 /**
403  * \ingroup simix_process_management
404  * \brief Restarts the process, killing it and starting it again from scratch.
405  */
406 XBT_PUBLIC(smx_actor_t) simcall_process_restart(smx_actor_t process)
407 {
408   return (smx_actor_t) simcall_BODY_process_restart(process);
409 }
410 /**
411  * \ingroup simix_process_management
412  * \brief Creates a new sleep SIMIX synchro.
413  *
414  * This function creates a SURF action and allocates the data necessary
415  * to create the SIMIX synchro. It can raise a host_error exception if the
416  * host crashed. The default SIMIX name of the synchro is "sleep".
417  *
418  *   \param duration Time duration of the sleep.
419  *   \return A result telling whether the sleep was successful
420  */
421 e_smx_state_t simcall_process_sleep(double duration)
422 {
423   /* checking for infinite values */
424   xbt_assert(std::isfinite(duration), "duration is not finite!");
425   return (e_smx_state_t) simcall_BODY_process_sleep(duration);
426 }
427
428 /**
429  *  \ingroup simix_mbox_management
430  *  \brief Creates a new rendez-vous point
431  *  \param name The name of the rendez-vous point
432  *  \return The created rendez-vous point
433  */
434 smx_mailbox_t simcall_mbox_create(const char *name)
435 {
436   return simcall_BODY_mbox_create(name);
437 }
438
439 void simcall_mbox_set_receiver(smx_mailbox_t mbox, smx_actor_t process)
440 {
441   simcall_BODY_mbox_set_receiver(mbox, process);
442 }
443
444 /**
445  * \ingroup simix_comm_management
446  */
447 void simcall_comm_send(smx_actor_t sender, smx_mailbox_t mbox, double task_size, double rate,
448                          void *src_buff, size_t src_buff_size,
449                          int (*match_fun)(void *, void *, smx_activity_t),
450                          void (*copy_data_fun)(smx_activity_t, void*, size_t), void *data,
451                          double timeout)
452 {
453   /* checking for infinite values */
454   xbt_assert(std::isfinite(task_size), "task_size is not finite!");
455   xbt_assert(std::isfinite(rate), "rate is not finite!");
456   xbt_assert(std::isfinite(timeout), "timeout is not finite!");
457
458   xbt_assert(mbox, "No rendez-vous point defined for send");
459
460   if (MC_is_active() || MC_record_replay_is_active()) {
461     /* the model-checker wants two separate simcalls */
462     smx_activity_t comm = nullptr; /* MC needs the comm to be set to nullptr during the simcall */
463     comm = simcall_comm_isend(sender, mbox, task_size, rate,
464         src_buff, src_buff_size, match_fun, nullptr, copy_data_fun, data, 0);
465     simcall_comm_wait(comm, timeout);
466     comm = nullptr;
467   }
468   else {
469     simcall_BODY_comm_send(sender, mbox, task_size, rate, src_buff, src_buff_size,
470                          match_fun, copy_data_fun, data, timeout);
471   }
472 }
473
474 /**
475  * \ingroup simix_comm_management
476  */
477 smx_activity_t simcall_comm_isend(smx_actor_t sender, smx_mailbox_t mbox, double task_size, double rate,
478                               void *src_buff, size_t src_buff_size,
479                               int (*match_fun)(void *, void *, smx_activity_t),
480                               void (*clean_fun)(void *),
481                               void (*copy_data_fun)(smx_activity_t, void*, size_t),
482                               void *data,
483                               int detached)
484 {
485   /* checking for infinite values */
486   xbt_assert(std::isfinite(task_size), "task_size is not finite!");
487   xbt_assert(std::isfinite(rate), "rate is not finite!");
488
489   xbt_assert(mbox, "No rendez-vous point defined for isend");
490
491   return simcall_BODY_comm_isend(sender, mbox, task_size, rate, src_buff,
492                                  src_buff_size, match_fun,
493                                  clean_fun, copy_data_fun, data, detached);
494 }
495
496 /**
497  * \ingroup simix_comm_management
498  */
499 void simcall_comm_recv(smx_actor_t receiver, smx_mailbox_t mbox, void *dst_buff, size_t * dst_buff_size,
500                        int (*match_fun)(void *, void *, smx_activity_t),
501                        void (*copy_data_fun)(smx_activity_t, void*, size_t),
502                        void *data, double timeout, double rate)
503 {
504   xbt_assert(std::isfinite(timeout), "timeout is not finite!");
505   xbt_assert(mbox, "No rendez-vous point defined for recv");
506
507   if (MC_is_active() || MC_record_replay_is_active()) {
508     /* the model-checker wants two separate simcalls */
509     smx_activity_t comm = nullptr; /* MC needs the comm to be set to nullptr during the simcall */
510     comm = simcall_comm_irecv(receiver, mbox, dst_buff, dst_buff_size,
511                               match_fun, copy_data_fun, data, rate);
512     simcall_comm_wait(comm, timeout);
513     comm = nullptr;
514   }
515   else {
516     simcall_BODY_comm_recv(receiver, mbox, dst_buff, dst_buff_size,
517                            match_fun, copy_data_fun, data, timeout, rate);
518   }
519 }
520 /**
521  * \ingroup simix_comm_management
522  */
523 smx_activity_t simcall_comm_irecv(smx_actor_t receiver, smx_mailbox_t mbox, void *dst_buff, size_t *dst_buff_size,
524                                 int (*match_fun)(void *, void *, smx_activity_t),
525                                 void (*copy_data_fun)(smx_activity_t, void*, size_t),
526                                 void *data, double rate)
527 {
528   xbt_assert(mbox, "No rendez-vous point defined for irecv");
529
530   return simcall_BODY_comm_irecv(receiver, mbox, dst_buff, dst_buff_size,
531                                  match_fun, copy_data_fun, data, rate);
532 }
533
534 /**
535  * \ingroup simix_comm_management
536  */
537 smx_activity_t simcall_comm_iprobe(smx_mailbox_t mbox, int type, int src, int tag,
538                                 int (*match_fun)(void *, void *, smx_activity_t), void *data)
539 {
540   xbt_assert(mbox, "No rendez-vous point defined for iprobe");
541
542   return simcall_BODY_comm_iprobe(mbox, type, src, tag, match_fun, data);
543 }
544
545 /**
546  * \ingroup simix_comm_management
547  */
548 void simcall_comm_cancel(smx_activity_t synchro)
549 {
550   simgrid::simix::kernelImmediate([synchro]{
551     simgrid::kernel::activity::Comm *comm = static_cast<simgrid::kernel::activity::Comm*>(synchro);
552     comm->cancel();
553   });
554 }
555
556 /**
557  * \ingroup simix_comm_management
558  */
559 unsigned int simcall_comm_waitany(xbt_dynar_t comms, double timeout)
560 {
561   return simcall_BODY_comm_waitany(comms, timeout);
562 }
563
564 /**
565  * \ingroup simix_comm_management
566  */
567 int simcall_comm_testany(smx_activity_t* comms, size_t count)
568 {
569   if (count == 0)
570     return -1;
571   return simcall_BODY_comm_testany(comms, count);
572 }
573
574 /**
575  * \ingroup simix_comm_management
576  */
577 void simcall_comm_wait(smx_activity_t comm, double timeout)
578 {
579   xbt_assert(std::isfinite(timeout), "timeout is not finite!");
580   simcall_BODY_comm_wait(comm, timeout);
581 }
582
583 /**
584  * \brief Set the category of an synchro.
585  *
586  * This functions changes the category only. It calls a surf function.
587  * \param execution The execution synchro
588  * \param category The tracing category
589  */
590 void simcall_set_category(smx_activity_t synchro, const char *category)
591 {
592   if (category == nullptr) {
593     return;
594   }
595   simcall_BODY_set_category(synchro, category);
596 }
597
598 /**
599  * \ingroup simix_comm_management
600  *
601  */
602 int simcall_comm_test(smx_activity_t comm)
603 {
604   return simcall_BODY_comm_test(comm);
605 }
606
607 /**
608  * \ingroup simix_synchro_management
609  *
610  */
611 smx_mutex_t simcall_mutex_init()
612 {
613   if(!simix_global) {
614     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
615     xbt_abort();
616   }
617   return simcall_BODY_mutex_init();
618 }
619
620 /**
621  * \ingroup simix_synchro_management
622  *
623  */
624 void simcall_mutex_lock(smx_mutex_t mutex)
625 {
626   simcall_BODY_mutex_lock(mutex);
627 }
628
629 /**
630  * \ingroup simix_synchro_management
631  *
632  */
633 int simcall_mutex_trylock(smx_mutex_t mutex)
634 {
635   return simcall_BODY_mutex_trylock(mutex);
636 }
637
638 /**
639  * \ingroup simix_synchro_management
640  *
641  */
642 void simcall_mutex_unlock(smx_mutex_t mutex)
643 {
644   simcall_BODY_mutex_unlock(mutex);
645 }
646
647 /**
648  * \ingroup simix_synchro_management
649  *
650  */
651 smx_cond_t simcall_cond_init()
652 {
653   return simcall_BODY_cond_init();
654 }
655
656 /**
657  * \ingroup simix_synchro_management
658  *
659  */
660 void simcall_cond_signal(smx_cond_t cond)
661 {
662   simcall_BODY_cond_signal(cond);
663 }
664
665 /**
666  * \ingroup simix_synchro_management
667  *
668  */
669 void simcall_cond_wait(smx_cond_t cond, smx_mutex_t mutex)
670 {
671   simcall_BODY_cond_wait(cond, mutex);
672 }
673
674 /**
675  * \ingroup simix_synchro_management
676  *
677  */
678 void simcall_cond_wait_timeout(smx_cond_t cond,
679                                  smx_mutex_t mutex,
680                                  double timeout)
681 {
682   xbt_assert(std::isfinite(timeout), "timeout is not finite!");
683   simcall_BODY_cond_wait_timeout(cond, mutex, timeout);
684 }
685
686 /**
687  * \ingroup simix_synchro_management
688  *
689  */
690 void simcall_cond_broadcast(smx_cond_t cond)
691 {
692   simcall_BODY_cond_broadcast(cond);
693 }
694
695 /**
696  * \ingroup simix_synchro_management
697  *
698  */
699 smx_sem_t simcall_sem_init(int capacity)
700 {
701   return simcall_BODY_sem_init(capacity);
702 }
703
704 /**
705  * \ingroup simix_synchro_management
706  *
707  */
708 void simcall_sem_release(smx_sem_t sem)
709 {
710   simcall_BODY_sem_release(sem);
711 }
712
713 /**
714  * \ingroup simix_synchro_management
715  *
716  */
717 int simcall_sem_would_block(smx_sem_t sem)
718 {
719   return simcall_BODY_sem_would_block(sem);
720 }
721
722 /**
723  * \ingroup simix_synchro_management
724  *
725  */
726 void simcall_sem_acquire(smx_sem_t sem)
727 {
728   simcall_BODY_sem_acquire(sem);
729 }
730
731 /**
732  * \ingroup simix_synchro_management
733  *
734  */
735 void simcall_sem_acquire_timeout(smx_sem_t sem, double timeout)
736 {
737   xbt_assert(std::isfinite(timeout), "timeout is not finite!");
738   simcall_BODY_sem_acquire_timeout(sem, timeout);
739 }
740
741 /**
742  * \ingroup simix_synchro_management
743  *
744  */
745 int simcall_sem_get_capacity(smx_sem_t sem)
746 {
747   return simcall_BODY_sem_get_capacity(sem);
748 }
749
750 /**
751  * \ingroup simix_file_management
752  *
753  */
754 sg_size_t simcall_file_read(smx_file_t fd, sg_size_t size, sg_host_t host)
755 {
756   return simcall_BODY_file_read(fd, size, host);
757 }
758
759 /**
760  * \ingroup simix_file_management
761  *
762  */
763 sg_size_t simcall_file_write(smx_file_t fd, sg_size_t size, sg_host_t host)
764 {
765   return simcall_BODY_file_write(fd, size, host);
766 }
767
768 /**
769  * \ingroup simix_file_management
770  * \brief
771  */
772 smx_file_t simcall_file_open(const char* fullpath, sg_host_t host)
773 {
774   return simcall_BODY_file_open(fullpath, host);
775 }
776
777 /**
778  * \ingroup simix_file_management
779  *
780  */
781 int simcall_file_close(smx_file_t fd, sg_host_t host)
782 {
783   return simcall_BODY_file_close(fd, host);
784 }
785
786 /**
787  * \ingroup simix_file_management
788  *
789  */
790 int simcall_file_unlink(smx_file_t fd, sg_host_t host)
791 {
792   return simcall_BODY_file_unlink(fd, host);
793 }
794
795 /**
796  * \ingroup simix_file_management
797  *
798  */
799 sg_size_t simcall_file_get_size(smx_file_t fd){
800   return simcall_BODY_file_get_size(fd);
801 }
802
803 /**
804  * \ingroup simix_file_management
805  *
806  */
807 sg_size_t simcall_file_tell(smx_file_t fd){
808   return simcall_BODY_file_tell(fd);
809 }
810
811 /**
812  * \ingroup simix_file_management
813  *
814  */
815 xbt_dynar_t simcall_file_get_info(smx_file_t fd)
816 {
817   return simcall_BODY_file_get_info(fd);
818 }
819
820 /**
821  * \ingroup simix_file_management
822  *
823  */
824 int simcall_file_seek(smx_file_t fd, sg_offset_t offset, int origin){
825   return simcall_BODY_file_seek(fd, offset, origin);
826 }
827
828 /**
829  * \ingroup simix_file_management
830  * \brief Move a file to another location on the *same mount point*.
831  *
832  */
833 int simcall_file_move(smx_file_t fd, const char* fullpath)
834 {
835   return simcall_BODY_file_move(fd, fullpath);
836 }
837
838 /**
839  * \ingroup simix_storage_management
840  * \brief Returns the free space size on a given storage element.
841  * \param storage a storage
842  * \return Return the free space size on a given storage element (as sg_size_t)
843  */
844 sg_size_t simcall_storage_get_free_size (smx_storage_t storage){
845   return simcall_BODY_storage_get_free_size(storage);
846 }
847
848 /**
849  * \ingroup simix_storage_management
850  * \brief Returns the used space size on a given storage element.
851  * \param storage a storage
852  * \return Return the used space size on a given storage element (as sg_size_t)
853  */
854 sg_size_t simcall_storage_get_used_size (smx_storage_t storage){
855   return simcall_BODY_storage_get_used_size(storage);
856 }
857
858 /**
859  * \ingroup simix_storage_management
860  * \brief Returns a dict of the properties assigned to a storage element.
861  *
862  * \param storage A storage element
863  * \return The properties of this storage element
864  */
865 xbt_dict_t simcall_storage_get_properties(smx_storage_t storage)
866 {
867   return simcall_BODY_storage_get_properties(storage);
868 }
869
870 /**
871  * \ingroup simix_storage_management
872  * \brief Returns a dict containing the content of a storage element.
873  *
874  * \param storage A storage element
875  * \return The content of this storage element as a dict (full path file => size)
876  */
877 xbt_dict_t simcall_storage_get_content(smx_storage_t storage)
878 {
879   return simcall_BODY_storage_get_content(storage);
880 }
881
882 void simcall_run_kernel(std::function<void()> const& code)
883 {
884   simcall_BODY_run_kernel(&code);
885 }
886
887 void simcall_run_blocking(std::function<void()> const& code)
888 {
889   simcall_BODY_run_blocking(&code);
890 }
891
892 int simcall_mc_random(int min, int max) {
893   return simcall_BODY_mc_random(min, max);
894 }
895
896 /* ************************************************************************** */
897
898 /** @brief returns a printable string representing a simcall */
899 const char *SIMIX_simcall_name(e_smx_simcall_t kind) {
900   return simcall_names[kind];
901 }
902
903 namespace simgrid {
904 namespace simix {
905
906 void unblock(smx_actor_t process)
907 {
908   xbt_assert(SIMIX_is_maestro());
909   SIMIX_simcall_answer(&process->simcall);
910 }
911
912 }
913 }