Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Make s_smx_process_t a C++ class (constructor, new, delete)
[simgrid.git] / src / simix / smx_process.cpp
1 /* Copyright (c) 2007-2015. The SimGrid Team.
2  * All rights reserved.                                                     */
3
4 /* This program is free software; you can redistribute it and/or modify it
5  * under the terms of the license (GNU LGPL) which comes with this package. */
6
7 #include "src/surf/surf_interface.hpp"
8 #include "smx_private.h"
9 #include "xbt/sysdep.h"
10 #include "xbt/log.h"
11 #include "xbt/dict.h"
12 #include "mc/mc.h"
13 #include "src/mc/mc_replay.h"
14 #include "src/mc/Client.hpp"
15 #include "src/msg/msg_private.h"
16
17 #include "src/simix/SynchroSleep.hpp"
18 #include "src/simix/SynchroRaw.hpp"
19 #include "src/simix/SynchroIo.hpp"
20
21 #ifdef HAVE_SMPI
22 #include "src/smpi/private.h"
23 #endif
24
25 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(simix_process, simix, "Logging specific to SIMIX (process)");
26
27 unsigned long simix_process_maxpid = 0;
28
29 /**
30  * \brief Returns the current agent.
31  *
32  * This functions returns the currently running SIMIX process.
33  *
34  * \return The SIMIX process
35  */
36 smx_process_t SIMIX_process_self(void)
37 {
38   smx_context_t self_context = SIMIX_context_self();
39
40   return self_context ? self_context->process() : NULL;
41 }
42
43 /**
44  * \brief Returns whether a process has pending asynchronous communications.
45  * \return true if there are asynchronous communications in this process
46  */
47 int SIMIX_process_has_pending_comms(smx_process_t process) {
48
49   return xbt_fifo_size(process->comms) > 0;
50 }
51
52 /**
53  * \brief Moves a process to the list of processes to destroy.
54  */
55 void SIMIX_process_cleanup(smx_process_t process)
56 {
57   XBT_DEBUG("Cleanup process %s (%p), waiting synchro %p",
58       process->name, process, process->waiting_synchro);
59
60   SIMIX_process_on_exit_runall(process);
61
62   /* Unregister from the kill timer if any */
63   if (process->kill_timer != NULL)
64       SIMIX_timer_remove(process->kill_timer);
65
66   xbt_os_mutex_acquire(simix_global->mutex);
67
68   /* cancel non-blocking communications */
69   smx_synchro_t synchro;
70   while ((synchro = (smx_synchro_t) xbt_fifo_pop(process->comms))) {
71     simgrid::simix::Comm *comm = static_cast<simgrid::simix::Comm*>(synchro);
72
73     /* make sure no one will finish the comm after this process is destroyed,
74      * because src_proc or dst_proc would be an invalid pointer */
75     comm->cancel();
76
77     if (comm->src_proc == process) {
78       XBT_DEBUG("Found an unfinished send comm %p (detached = %d), state %d, src = %p, dst = %p",
79           comm, comm->detached, (int)comm->state, comm->src_proc, comm->dst_proc);
80       comm->src_proc = NULL;
81
82       /* I'm not supposed to destroy a detached comm from the sender side, */
83       if (comm->detached)
84         XBT_DEBUG("Don't destroy it since it's a detached comm and I'm the sender");
85       else
86         comm->unref();
87
88     }
89     else if (comm->dst_proc == process){
90       XBT_DEBUG("Found an unfinished recv comm %p, state %d, src = %p, dst = %p",
91           comm, (int)comm->state, comm->src_proc, comm->dst_proc);
92       comm->dst_proc = NULL;
93
94       if (comm->detached && comm->src_proc != NULL) {
95         /* the comm will be freed right now, remove it from the sender */
96         xbt_fifo_remove(comm->src_proc->comms, comm);
97       }
98       
99       comm->unref();
100     } else {
101       xbt_die("Communication synchro %p is in my list but I'm not the sender nor the receiver", synchro);
102     }
103   }
104
105   XBT_DEBUG("%p should not be run anymore",process);
106   xbt_swag_remove(process, simix_global->process_list);
107   if (process->host)
108     xbt_swag_remove(process, sg_host_simix(process->host)->process_list);
109   xbt_swag_insert(process, simix_global->process_to_destroy);
110   process->context->iwannadie = 0;
111
112   xbt_os_mutex_release(simix_global->mutex);
113 }
114
115 /**
116  * Garbage collection
117  *
118  * Should be called some time to time to free the memory allocated for processes
119  * that have finished (or killed).
120  */
121 void SIMIX_process_empty_trash(void)
122 {
123   smx_process_t process = NULL;
124
125   while ((process = (smx_process_t) xbt_swag_extract(simix_global->process_to_destroy))) {
126     XBT_DEBUG("Getting rid of %p",process);
127
128     delete process->context;
129
130     /* Free the exception allocated at creation time */
131     free(process->running_ctx);
132     xbt_dict_free(&process->properties);
133
134     xbt_fifo_free(process->comms);
135
136     xbt_dynar_free(&process->on_exit);
137
138     xbt_free(process->name);
139     delete process;
140   }
141 }
142
143 namespace simgrid {
144 namespace simix {
145
146 void create_maestro(std::function<void()> code)
147 {
148   smx_process_t maestro = NULL;
149   /* Create maestro process and intilialize it */
150   maestro = new simgrid::simix::Process();
151   maestro->pid = simix_process_maxpid++;
152   maestro->ppid = -1;
153   maestro->name = (char*) "";
154   maestro->data = nullptr;
155   maestro->running_ctx = (xbt_running_ctx_t*) xbt_malloc0(sizeof(xbt_running_ctx_t));
156   XBT_RUNNING_CTX_INITIALIZE(maestro->running_ctx);
157
158   if (!code) {
159     maestro->context = SIMIX_context_new(NULL, 0, nullptr, NULL, maestro);
160   } else {
161     if (!simix_global)
162       xbt_die("simix is not initialized, please call MSG_init first");
163     maestro->context =
164       simix_global->context_factory->create_maestro(code, maestro);
165   }
166
167   maestro->simcall.issuer = maestro;
168   simix_global->maestro_process = maestro;
169 }
170
171 }
172 }
173
174 /**
175  * \brief Creates and runs the maestro process
176  */
177 void SIMIX_maestro_create(void (*code)(void*), void* data)
178 {
179   simgrid::simix::create_maestro(std::bind(code, data));
180 }
181
182 /**
183  * \brief Stops a process.
184  *
185  * Stops the process, execute all the registered on_exit functions,
186  * register it to the list of the process to restart if needed
187  * and stops its context.
188  */
189 void SIMIX_process_stop(smx_process_t arg) {
190   /* execute the on_exit functions */
191   SIMIX_process_on_exit_runall(arg);
192   /* Add the process to the list of process to restart, only if the host is down */
193   if (arg->auto_restart && arg->host->isOff()) {
194     SIMIX_host_add_auto_restart_process(arg->host,arg->name,arg->code, arg->data,
195                                         sg_host_get_name(arg->host),
196                                         SIMIX_timer_get_date(arg->kill_timer),
197                                         arg->argc,arg->argv,arg->properties,
198                                         arg->auto_restart);
199   }
200   XBT_DEBUG("Process %s (%s) is dead",arg->name,sg_host_get_name(arg->host));
201   arg->context->stop();
202 }
203
204 /**
205  * \brief Same as SIMIX_process_create() but with only one argument (used by timers).
206  * This function frees the argument.
207  * \return the process created
208  */
209 smx_process_t SIMIX_process_create_from_wrapper(smx_process_arg_t args) {
210
211   smx_process_t process = simix_global->create_process_function(
212                                         args->name,
213                                         args->code,
214                                         args->data,
215                                         args->hostname,
216                                         args->kill_time,
217                                         args->argc,
218                                         args->argv,
219                                         args->properties,
220                                         args->auto_restart,
221                                         NULL);
222   xbt_free(args);
223   return process;
224 }
225
226
227 void* simcall_HANDLER_process_create(smx_simcall_t simcall,
228                           const char *name,
229                           xbt_main_func_t code,
230                           void *data,
231                           const char *hostname,
232                           double kill_time,
233                           int argc, char **argv,
234                           xbt_dict_t properties,
235                           int auto_restart){
236   return (void*)SIMIX_process_create(name, code, data, hostname,
237                        kill_time, argc, argv, properties, auto_restart,
238                        simcall->issuer);
239 }
240
241 static void kill_process(void* process)
242 {
243   simix_global->kill_process_function((smx_process_t) process);
244 }
245
246 /**
247  * \brief Internal function to create a process.
248  *
249  * This function actually creates the process.
250  * It may be called when a SIMCALL_PROCESS_CREATE simcall occurs,
251  * or directly for SIMIX internal purposes. The sure thing is that it's called from maestro context.
252  *
253  * \return the process created
254  */
255 smx_process_t SIMIX_process_create(
256                           const char *name,
257                           xbt_main_func_t code,
258                           void *data,
259                           const char *hostname,
260                           double kill_time,
261                           int argc, char **argv,
262                           xbt_dict_t properties,
263                           int auto_restart,
264                           smx_process_t parent_process)
265 {
266   smx_process_t process = NULL;
267   sg_host_t host = sg_host_by_name(hostname);
268
269   XBT_DEBUG("Start process %s on host '%s'", name, hostname);
270
271   if (host->isOff()) {
272     int i;
273     XBT_WARN("Cannot launch process '%s' on failed host '%s'", name,
274           hostname);
275     for (i = 0; i < argc; i++)
276       xbt_free(argv[i]);
277     xbt_free(argv);
278   }
279   else {
280     process = new simgrid::simix::Process();
281
282     xbt_assert(((code != NULL) && (host != NULL)), "Invalid parameters");
283     /* Process data */
284     process->pid = simix_process_maxpid++;
285     process->name = xbt_strdup(name);
286     process->host = host;
287     process->data = data;
288     process->comms = xbt_fifo_new();
289     process->simcall.issuer = process;
290     /* Initiliaze data segment to default value */
291     SIMIX_segment_index_set(process, -1);
292
293      if (parent_process != NULL) {
294        process->ppid = SIMIX_process_get_PID(parent_process);
295        /* SMPI process have their own data segment and
296           each other inherit from their father */
297 #if HAVE_SMPI
298        if(smpi_privatize_global_variables){
299          if( parent_process->pid != 0){
300            SIMIX_segment_index_set(process, parent_process->segment_index);
301          } else {
302            SIMIX_segment_index_set(process, process->pid - 1);
303          }
304        }
305 #endif
306      } else {
307        process->ppid = -1;
308      }
309
310     /* Process data for auto-restart */
311     process->auto_restart = auto_restart;
312     process->code = code;
313     process->argc = argc;
314     process->argv = argv;
315
316
317     XBT_VERB("Create context %s", process->name);
318     process->context = SIMIX_context_new(code, argc, argv, simix_global->cleanup_process_function, process);
319
320     process->running_ctx = (xbt_running_ctx_t*) xbt_malloc0(sizeof(xbt_running_ctx_t));
321     XBT_RUNNING_CTX_INITIALIZE(process->running_ctx);
322
323     if(MC_is_active()){
324       MC_ignore_heap(process->running_ctx, sizeof(*process->running_ctx));
325     }
326
327     /* Add properties */
328     process->properties = properties;
329
330     /* Add the process to it's host process list */
331     xbt_swag_insert(process, sg_host_simix(host)->process_list);
332
333     XBT_DEBUG("Start context '%s'", process->name);
334
335     /* Now insert it in the global process list and in the process to run list */
336     xbt_swag_insert(process, simix_global->process_list);
337     XBT_DEBUG("Inserting %s(%s) in the to_run list", process->name, sg_host_get_name(host));
338     xbt_dynar_push_as(simix_global->process_to_run, smx_process_t, process);
339
340     if (kill_time > SIMIX_get_clock() && simix_global->kill_process_function) {
341       XBT_DEBUG("Process %s(%s) will be kill at time %f", process->name,
342           sg_host_get_name(process->host), kill_time);
343       process->kill_timer = SIMIX_timer_set(kill_time, kill_process, process);
344     }
345
346     /* Tracing the process creation */
347     TRACE_msg_process_create(process->name, process->pid, process->host);
348   }
349   return process;
350 }
351
352 smx_process_t SIMIX_process_attach(
353   const char* name,
354   void *data,
355   const char* hostname,
356   xbt_dict_t properties,
357   smx_process_t parent_process)
358 {
359   // This is mostly a copy/paste from SIMIX_process_new(),
360   // it'd be nice to share some code between those two functions.
361
362   sg_host_t host = sg_host_by_name(hostname);
363   XBT_DEBUG("Attach process %s on host '%s'", name, hostname);
364
365   if (host->isOff()) {
366     XBT_WARN("Cannot launch process '%s' on failed host '%s'",
367       name, hostname);
368     return nullptr;
369   }
370
371   smx_process_t process = new simgrid::simix::Process();
372   /* Process data */
373   process->pid = simix_process_maxpid++;
374   process->name = xbt_strdup(name);
375   process->host = host;
376   process->data = data;
377   process->comms = xbt_fifo_new();
378   process->simcall.issuer = process;
379   process->ppid = -1;
380   /* Initiliaze data segment to default value */
381   SIMIX_segment_index_set(process, -1);
382   if (parent_process != NULL) {
383     process->ppid = SIMIX_process_get_PID(parent_process);
384    /* SMPI process have their own data segment and
385       each other inherit from their father */
386   #if HAVE_SMPI
387     if(smpi_privatize_global_variables){
388       if(parent_process->pid != 0){
389         SIMIX_segment_index_set(process, parent_process->segment_index);
390       } else {
391         SIMIX_segment_index_set(process, process->pid - 1);
392       }
393     }
394   #endif
395   }
396
397   /* Process data for auto-restart */
398   process->auto_restart = false;
399   process->code = nullptr;
400   process->argc = 0;
401   process->argv = nullptr;
402
403   XBT_VERB("Create context %s", process->name);
404   if (!simix_global)
405     xbt_die("simix is not initialized, please call MSG_init first");
406   process->context = simix_global->context_factory->attach(
407     simix_global->cleanup_process_function, process);
408
409   process->running_ctx = (xbt_running_ctx_t*) xbt_malloc0(sizeof(xbt_running_ctx_t));
410   XBT_RUNNING_CTX_INITIALIZE(process->running_ctx);
411
412   if(MC_is_active()){
413     MC_ignore_heap(process->running_ctx, sizeof(*process->running_ctx));
414   }
415
416   /* Add properties */
417   process->properties = properties;
418
419   /* Add the process to it's host process list */
420   xbt_swag_insert(process, sg_host_simix(host)->process_list);
421
422   /* Now insert it in the global process list and in the process to run list */
423   xbt_swag_insert(process, simix_global->process_list);
424   XBT_DEBUG("Inserting %s(%s) in the to_run list", process->name, sg_host_get_name(host));
425   xbt_dynar_push_as(simix_global->process_to_run, smx_process_t, process);
426
427   /* Tracing the process creation */
428   TRACE_msg_process_create(process->name, process->pid, process->host);
429
430   auto context = dynamic_cast<simgrid::simix::AttachContext*>(process->context);
431   if (!context)
432     xbt_die("Not a suitable context");
433
434   context->attach_start();
435   return process;
436 }
437
438 void SIMIX_process_detach(void)
439 {
440   auto context = dynamic_cast<simgrid::simix::AttachContext*>(SIMIX_context_self());
441   if (!context)
442     xbt_die("Not a suitable context");
443
444   simix_global->cleanup_process_function(context->process());
445
446   // Let maestro ignore we are still alive:
447   // xbt_swag_remove(context->process(), simix_global->process_list);
448
449   // TODDO, Remove from proces list:
450   //   xbt_swag_remove(process, sg_host_simix(host)->process_list);
451
452   context->attach_stop();
453   // delete context;
454 }
455
456 /**
457  * \brief Executes the processes from simix_global->process_to_run.
458  *
459  * The processes of simix_global->process_to_run are run (in parallel if
460  * possible).  On exit, simix_global->process_to_run is empty, and
461  * simix_global->process_that_ran contains the list of processes that just ran.
462  * The two lists are swapped so, be careful when using them before and after a
463  * call to this function.
464  */
465 void SIMIX_process_runall(void)
466 {
467   SIMIX_context_runall();
468
469   xbt_dynar_t tmp = simix_global->process_that_ran;
470   simix_global->process_that_ran = simix_global->process_to_run;
471   simix_global->process_to_run = tmp;
472   xbt_dynar_reset(simix_global->process_to_run);
473 }
474
475 void simcall_HANDLER_process_kill(smx_simcall_t simcall, smx_process_t process) {
476   SIMIX_process_kill(process, simcall->issuer);
477 }
478 /**
479  * \brief Internal function to kill a SIMIX process.
480  *
481  * This function may be called when a SIMCALL_PROCESS_KILL simcall occurs,
482  * or directly for SIMIX internal purposes.
483  *
484  * \param process poor victim
485  * \param issuer the process which has sent the PROCESS_KILL. Important to not schedule twice the same process.
486  */
487 void SIMIX_process_kill(smx_process_t process, smx_process_t issuer) {
488
489   XBT_DEBUG("Killing process %s on %s", process->name, sg_host_get_name(process->host));
490
491   process->context->iwannadie = 1;
492   process->blocked = 0;
493   process->suspended = 0;
494   process->doexception = 0;
495
496   /* destroy the blocking synchro if any */
497   if (process->waiting_synchro) {
498
499     simgrid::simix::Exec *exec = dynamic_cast<simgrid::simix::Exec*>(process->waiting_synchro);
500     simgrid::simix::Comm *comm = dynamic_cast<simgrid::simix::Comm*>(process->waiting_synchro);
501     simgrid::simix::Sleep *sleep = dynamic_cast<simgrid::simix::Sleep*>(process->waiting_synchro);
502     simgrid::simix::Raw *raw = dynamic_cast<simgrid::simix::Raw*>(process->waiting_synchro);
503     simgrid::simix::Io *io = dynamic_cast<simgrid::simix::Io*>(process->waiting_synchro);
504
505     if (exec != nullptr) {
506       exec->unref();
507
508     } else if (comm != nullptr) {
509       xbt_fifo_remove(process->comms, process->waiting_synchro);
510       comm->cancel();
511       xbt_fifo_remove(process->waiting_synchro->simcalls, &process->simcall);
512       comm->unref();
513
514     } else if (sleep != nullptr) {
515       SIMIX_process_sleep_destroy(process->waiting_synchro);
516
517     } else if (raw != nullptr) {
518       SIMIX_synchro_stop_waiting(process, &process->simcall);
519       delete process->waiting_synchro;
520
521     } else if (io != nullptr) {
522       SIMIX_io_destroy(process->waiting_synchro);
523     }
524
525     /*
526     switch (process->waiting_synchro->type) {
527     case SIMIX_SYNC_JOIN:
528       SIMIX_process_sleep_destroy(process->waiting_synchro);
529       break;
530     } */
531
532     process->waiting_synchro = NULL;
533   }
534   if(!xbt_dynar_member(simix_global->process_to_run, &(process)) && process != issuer) {
535     XBT_DEBUG("Inserting %s in the to_run list", process->name);
536     xbt_dynar_push_as(simix_global->process_to_run, smx_process_t, process);
537   }
538
539 }
540
541 /** @brief Ask another process to raise the given exception
542  *
543  * @param cat category of exception
544  * @param value value associated to the exception
545  * @param msg string information associated to the exception
546  */
547 void SIMIX_process_throw(smx_process_t process, xbt_errcat_t cat, int value, const char *msg) {
548   SMX_EXCEPTION(process, cat, value, msg);
549
550   if (process->suspended)
551     SIMIX_process_resume(process,SIMIX_process_self());
552
553   /* cancel the blocking synchro if any */
554   if (process->waiting_synchro) {
555
556     simgrid::simix::Exec *exec = dynamic_cast<simgrid::simix::Exec*>(process->waiting_synchro);
557     if (exec != nullptr) {
558       SIMIX_execution_cancel(process->waiting_synchro);
559     }
560
561     simgrid::simix::Comm *comm = dynamic_cast<simgrid::simix::Comm*>(process->waiting_synchro);
562     if (comm != nullptr) {
563       xbt_fifo_remove(process->comms, comm);
564       comm->cancel();
565     }
566
567     simgrid::simix::Sleep *sleep = dynamic_cast<simgrid::simix::Sleep*>(process->waiting_synchro);
568     if (sleep != nullptr) {
569       SIMIX_process_sleep_destroy(process->waiting_synchro);
570       if (!xbt_dynar_member(simix_global->process_to_run, &(process)) && process != SIMIX_process_self()) {
571         XBT_DEBUG("Inserting %s in the to_run list", process->name);
572         xbt_dynar_push_as(simix_global->process_to_run, smx_process_t, process);
573       }
574     }
575
576     simgrid::simix::Raw *raw = dynamic_cast<simgrid::simix::Raw*>(process->waiting_synchro);
577     if (raw != nullptr) {
578       SIMIX_synchro_stop_waiting(process, &process->simcall);
579     }
580
581     simgrid::simix::Io *io = dynamic_cast<simgrid::simix::Io*>(process->waiting_synchro);
582     if (io != nullptr) {
583       SIMIX_io_destroy(process->waiting_synchro);
584     }
585   }
586   process->waiting_synchro = NULL;
587
588 }
589
590 void simcall_HANDLER_process_killall(smx_simcall_t simcall, int reset_pid) {
591   SIMIX_process_killall(simcall->issuer, reset_pid);
592 }
593 /**
594  * \brief Kills all running processes.
595  * \param issuer this one will not be killed
596  */
597 void SIMIX_process_killall(smx_process_t issuer, int reset_pid)
598 {
599   smx_process_t p = NULL;
600
601   while ((p = (smx_process_t) xbt_swag_extract(simix_global->process_list))) {
602     if (p != issuer) {
603       SIMIX_process_kill(p,issuer);
604     }
605   }
606
607   if (reset_pid > 0)
608     simix_process_maxpid = reset_pid;
609
610   SIMIX_context_runall();
611
612   SIMIX_process_empty_trash();
613 }
614
615 void simcall_HANDLER_process_set_host(smx_simcall_t simcall, smx_process_t process, sg_host_t dest)
616 {
617   process->new_host = dest;
618 }
619 void SIMIX_process_change_host(smx_process_t process,
620              sg_host_t dest)
621 {
622   xbt_assert((process != NULL), "Invalid parameters");
623   xbt_swag_remove(process, sg_host_simix(process->host)->process_list);
624   process->host = dest;
625   xbt_swag_insert(process, sg_host_simix(dest)->process_list);
626 }
627
628
629 void simcall_HANDLER_process_suspend(smx_simcall_t simcall, smx_process_t process)
630 {
631   smx_synchro_t sync_suspend = SIMIX_process_suspend(process, simcall->issuer);
632
633   if (process != simcall->issuer) {
634     SIMIX_simcall_answer(simcall);
635   } else {
636     xbt_fifo_push(sync_suspend->simcalls, simcall);
637     process->waiting_synchro = sync_suspend;
638     process->waiting_synchro->suspend();
639   }
640   /* If we are suspending ourselves, then just do not finish the simcall now */
641 }
642
643 smx_synchro_t SIMIX_process_suspend(smx_process_t process, smx_process_t issuer)
644 {
645   if (process->suspended) {
646     XBT_DEBUG("Process '%s' is already suspended", process->name);
647     return NULL;
648   }
649
650   process->suspended = 1;
651
652   /* If we are suspending another process that is waiting on a sync, suspend its synchronization. */
653   if (process != issuer) {
654
655     if (process->waiting_synchro)
656       process->waiting_synchro->suspend();
657     /* If the other process is not waiting, its suspension is delayed to when the process is rescheduled. */
658
659     return NULL;
660   } else {
661     /* FIXME: computation size is zero. Is it okay that bound is zero ? */
662     return SIMIX_execution_start(process, "suspend", 0.0, 1.0, 0.0, 0);
663   }
664 }
665
666 void simcall_HANDLER_process_resume(smx_simcall_t simcall, smx_process_t process){
667   SIMIX_process_resume(process, simcall->issuer);
668 }
669
670 void SIMIX_process_resume(smx_process_t process, smx_process_t issuer)
671 {
672   XBT_IN("process = %p, issuer = %p", process, issuer);
673
674   if(process->context->iwannadie) {
675     XBT_VERB("Ignoring request to suspend a process that is currently dying.");
676     return;
677   }
678
679   if(!process->suspended) return;
680   process->suspended = 0;
681
682   /* If we are resuming another process, resume the synchronization it was waiting for
683      if any. Otherwise add it to the list of process to run in the next round. */
684   if (process != issuer) {
685
686     if (process->waiting_synchro) {
687       process->waiting_synchro->resume();
688     }
689   } else XBT_WARN("Strange. Process %p is trying to resume himself.", issuer);
690
691   XBT_OUT();
692 }
693
694 int SIMIX_process_get_maxpid(void) {
695   return simix_process_maxpid;
696 }
697
698 int SIMIX_process_count(void)
699 {
700   return xbt_swag_size(simix_global->process_list);
701 }
702
703 int SIMIX_process_get_PID(smx_process_t self){
704   if (self == NULL)
705     return 0;
706   else
707     return self->pid;
708 }
709
710 int SIMIX_process_get_PPID(smx_process_t self){
711   if (self == NULL)
712     return 0;
713   else
714     return self->ppid;
715 }
716
717 void* SIMIX_process_self_get_data()
718 {
719   smx_process_t self = SIMIX_process_self();
720
721   if (!self) {
722     return NULL;
723   }
724   return SIMIX_process_get_data(self);
725 }
726
727 void SIMIX_process_self_set_data(void *data)
728 {
729   smx_process_t self = SIMIX_process_self();
730
731   SIMIX_process_set_data(self, data);
732 }
733
734 void* SIMIX_process_get_data(smx_process_t process)
735 {
736   return process->data;
737 }
738
739 void SIMIX_process_set_data(smx_process_t process, void *data)
740 {
741   process->data = data;
742 }
743
744 sg_host_t SIMIX_process_get_host(smx_process_t process)
745 {
746   return process->host;
747 }
748
749 xbt_main_func_t SIMIX_process_get_code(void){
750   return SIMIX_process_self()->code;
751 }
752
753 /* needs to be public and without simcall because it is called
754    by exceptions and logging events */
755 const char* SIMIX_process_self_get_name(void) {
756
757   smx_process_t process = SIMIX_process_self();
758   if (process == NULL || process == simix_global->maestro_process)
759     return "maestro";
760
761   return SIMIX_process_get_name(process);
762 }
763
764 const char* SIMIX_process_get_name(smx_process_t process)
765 {
766   return process->name;
767 }
768
769 smx_process_t SIMIX_process_get_by_name(const char* name)
770 {
771   smx_process_t proc;
772
773   xbt_swag_foreach(proc, simix_global->process_list)
774   {
775     if(!strcmp(name, proc->name))
776       return proc;
777   }
778   return NULL;
779 }
780
781 int SIMIX_process_is_suspended(smx_process_t process)
782 {
783   return process->suspended;
784 }
785
786 xbt_dict_t SIMIX_process_get_properties(smx_process_t process)
787 {
788   return process->properties;
789 }
790
791 void simcall_HANDLER_process_join(smx_simcall_t simcall, smx_process_t process, double timeout)
792 {
793   smx_synchro_t sync = SIMIX_process_join(simcall->issuer, process, timeout);
794   xbt_fifo_push(sync->simcalls, simcall);
795   simcall->issuer->waiting_synchro = sync;
796 }
797
798 static int SIMIX_process_join_finish(smx_process_exit_status_t status, smx_synchro_t synchro){
799   simgrid::simix::Sleep *sleep = static_cast<simgrid::simix::Sleep*>(synchro);
800
801   if (sleep->surf_sleep) {
802     sleep->surf_sleep->cancel();
803
804     smx_simcall_t simcall;
805     while ((simcall = (smx_simcall_t) xbt_fifo_shift(sleep->simcalls))) {
806       simcall_process_sleep__set__result(simcall, SIMIX_DONE);
807       simcall->issuer->waiting_synchro = NULL;
808       if (simcall->issuer->suspended) {
809         XBT_DEBUG("Wait! This process is suspended and can't wake up now.");
810         simcall->issuer->suspended = 0;
811         simcall_HANDLER_process_suspend(simcall, simcall->issuer);
812       } else {
813         SIMIX_simcall_answer(simcall);
814       }
815     }
816     sleep->surf_sleep->unref();
817     sleep->surf_sleep = NULL;
818   }
819   delete sleep;
820   return 0;
821 }
822
823 smx_synchro_t SIMIX_process_join(smx_process_t issuer, smx_process_t process, double timeout)
824 {
825   smx_synchro_t res = SIMIX_process_sleep(issuer, timeout);
826   SIMIX_process_on_exit(process, (int_f_pvoid_pvoid_t)SIMIX_process_join_finish, res);
827   return res;
828 }
829
830 void simcall_HANDLER_process_sleep(smx_simcall_t simcall, double duration)
831 {
832   if (MC_is_active() || MC_record_replay_is_active()) {
833     MC_process_clock_add(simcall->issuer, duration);
834     simcall_process_sleep__set__result(simcall, SIMIX_DONE);
835     SIMIX_simcall_answer(simcall);
836     return;
837   }
838   smx_synchro_t sync = SIMIX_process_sleep(simcall->issuer, duration);
839   xbt_fifo_push(sync->simcalls, simcall);
840   simcall->issuer->waiting_synchro = sync;
841 }
842
843 smx_synchro_t SIMIX_process_sleep(smx_process_t process, double duration)
844 {
845   sg_host_t host = process->host;
846
847   /* check if the host is active */
848   if (host->isOff())
849     THROWF(host_error, 0, "Host %s failed, you cannot call this function", sg_host_get_name(host));
850
851   simgrid::simix::Sleep *synchro = new simgrid::simix::Sleep();
852   synchro->name = NULL;
853
854   synchro->host = host;
855   synchro->surf_sleep = surf_host_sleep(host, duration);
856   synchro->surf_sleep->setData(synchro);
857   XBT_DEBUG("Create sleep synchronization %p", synchro);
858
859   return synchro;
860 }
861
862 void SIMIX_process_sleep_destroy(smx_synchro_t synchro)
863 {
864   XBT_DEBUG("Destroy synchro %p", synchro);
865   simgrid::simix::Sleep *sleep = static_cast<simgrid::simix::Sleep*>(synchro);
866
867   if (sleep->surf_sleep) {
868     sleep->surf_sleep->unref();
869     sleep->surf_sleep = NULL;
870   }
871 }
872
873 /**
874  * \brief Calling this function makes the process to yield.
875  *
876  * Only the current process can call this function, giving back the control to
877  * maestro.
878  *
879  * \param self the current process
880  */
881 void SIMIX_process_yield(smx_process_t self)
882 {
883   XBT_DEBUG("Yield process '%s'", self->name);
884
885   /* Go into sleep and return control to maestro */
886   self->context->suspend();
887
888   /* Ok, maestro returned control to us */
889   XBT_DEBUG("Control returned to me: '%s'", self->name);
890
891   if (self->new_host) {
892     SIMIX_process_change_host(self, self->new_host);
893     self->new_host = NULL;
894   }
895
896   if (self->context->iwannadie){
897     XBT_DEBUG("I wanna die!");
898     SIMIX_process_stop(self);
899   }
900
901   if (self->suspended) {
902     XBT_DEBUG("Hey! I'm suspended.");
903     xbt_assert(!self->doexception, "Gasp! This exception may be lost by subsequent calls.");
904     self->suspended = 0;
905     SIMIX_process_suspend(self, self);
906   }
907
908   if (self->doexception) {
909     XBT_DEBUG("Wait, maestro left me an exception");
910     self->doexception = 0;
911     RETHROW;
912   }
913
914   if(SMPI_switch_data_segment && self->segment_index != -1){
915     SMPI_switch_data_segment(self->segment_index);
916   }
917 }
918
919 /* callback: context fetching */
920 xbt_running_ctx_t *SIMIX_process_get_running_context(void)
921 {
922   smx_process_t process = SIMIX_process_self();
923   if (process)
924     return process->running_ctx;
925   else
926     return nullptr;
927 }
928
929 /* callback: termination */
930 void SIMIX_process_exception_terminate(xbt_ex_t * e)
931 {
932   xbt_ex_display(e);
933   xbt_abort();
934 }
935
936 smx_context_t SIMIX_process_get_context(smx_process_t p) {
937   return p->context;
938 }
939
940 void SIMIX_process_set_context(smx_process_t p,smx_context_t c) {
941   p->context = c;
942 }
943
944 /**
945  * \brief Returns the list of processes to run.
946  */
947 xbt_dynar_t SIMIX_process_get_runnable(void)
948 {
949   return simix_global->process_to_run;
950 }
951
952 /**
953  * \brief Returns the process from PID.
954  */
955 smx_process_t SIMIX_process_from_PID(int PID)
956 {
957   smx_process_t proc;
958   xbt_swag_foreach(proc, simix_global->process_list) {
959    if (proc->pid == (unsigned long) PID)
960     return proc;
961   }
962   return NULL;
963 }
964
965 /** @brief returns a dynar containg all currently existing processes */
966 xbt_dynar_t SIMIX_processes_as_dynar(void) {
967   smx_process_t proc;
968   xbt_dynar_t res = xbt_dynar_new(sizeof(smx_process_t),NULL);
969   xbt_swag_foreach(proc, simix_global->process_list) {
970     xbt_dynar_push(res,&proc);
971   }
972   return res;
973 }
974
975
976 void SIMIX_process_on_exit_runall(smx_process_t process) {
977   s_smx_process_exit_fun_t exit_fun;
978   smx_process_exit_status_t exit_status = (process->context->iwannadie) ?
979                                          SMX_EXIT_FAILURE : SMX_EXIT_SUCCESS;
980   while (!xbt_dynar_is_empty(process->on_exit)) {
981     exit_fun = xbt_dynar_pop_as(process->on_exit,s_smx_process_exit_fun_t);
982     (exit_fun.fun)((void*)exit_status, exit_fun.arg);
983   }
984 }
985
986 void SIMIX_process_on_exit(smx_process_t process, int_f_pvoid_pvoid_t fun, void *data) {
987   xbt_assert(process, "current process not found: are you in maestro context ?");
988
989   if (!process->on_exit) {
990     process->on_exit = xbt_dynar_new(sizeof(s_smx_process_exit_fun_t), NULL);
991   }
992
993   s_smx_process_exit_fun_t exit_fun = {fun, data};
994
995   xbt_dynar_push_as(process->on_exit,s_smx_process_exit_fun_t,exit_fun);
996 }
997
998 /**
999  * \brief Sets the auto-restart status of the process.
1000  * If set to 1, the process will be automatically restarted when its host
1001  * comes back.
1002  */
1003 void SIMIX_process_auto_restart_set(smx_process_t process, int auto_restart) {
1004   process->auto_restart = auto_restart;
1005 }
1006
1007 smx_process_t simcall_HANDLER_process_restart(smx_simcall_t simcall, smx_process_t process) {
1008   return SIMIX_process_restart(process, simcall->issuer);
1009 }
1010 /** @brief Restart a process, starting it again from the beginning. */
1011 smx_process_t SIMIX_process_restart(smx_process_t process, smx_process_t issuer) {
1012   XBT_DEBUG("Restarting process %s on %s", process->name, sg_host_get_name(process->host));
1013   //retrieve the arguments of the old process
1014   //FIXME: Factorize this with SIMIX_host_add_auto_restart_process ?
1015   s_smx_process_arg_t arg;
1016   arg.code = process->code;
1017   arg.hostname = sg_host_get_name(process->host);
1018   arg.kill_time = SIMIX_timer_get_date(process->kill_timer);
1019   arg.argc = process->argc;
1020   arg.data = process->data;
1021   int i;
1022   arg.argv = xbt_new(char*,process->argc + 1);
1023   for (i = 0; i < arg.argc; i++) {
1024     arg.argv[i] = xbt_strdup(process->argv[i]);
1025   }
1026   arg.argv[process->argc] = NULL;
1027   arg.properties = NULL;
1028   arg.auto_restart = process->auto_restart;
1029   //kill the old process
1030   SIMIX_process_kill(process,issuer);
1031   //start the new process
1032   smx_process_t new_process;
1033   if (simix_global->create_process_function) {
1034     new_process = simix_global->create_process_function(
1035                                           arg.argv[0],
1036                                           arg.code,
1037                                           arg.data,
1038                                           arg.hostname,
1039                                           arg.kill_time,
1040                                           arg.argc,
1041                                           arg.argv,
1042                                           arg.properties,
1043                                           arg.auto_restart,
1044                                           NULL);
1045   } else {
1046     new_process = simcall_process_create(
1047                            arg.argv[0],
1048                            arg.code,
1049                            arg.data,
1050                            arg.hostname,
1051                            arg.kill_time,
1052                            arg.argc,
1053                            arg.argv,
1054                            arg.properties,
1055                            arg.auto_restart);
1056
1057   }
1058   return new_process;
1059 }
1060
1061 void SIMIX_segment_index_set(smx_process_t proc, int index){
1062   proc->segment_index = index;
1063 }