Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
5fd7b60100b579b27fc56e071480cf2c04173e11
[simgrid.git] / src / simix / smx_user.c
1 #include "private.h"
2
3 XBT_LOG_EXTERNAL_DEFAULT_CATEGORY(simix);
4
5 static const char* request_names[] = {
6 #undef SIMIX_REQ_ENUM_ELEMENT
7 #define SIMIX_REQ_ENUM_ELEMENT(x) #x /* generate strings from the enumeration values */
8 SIMIX_REQ_LIST
9 #undef SIMIX_REQ_ENUM_ELEMENT
10 };
11
12 /**
13  * \brief Returns a host given its name.
14  *
15  * \param name The name of the host to get
16  * \return The corresponding host
17  */
18 smx_host_t SIMIX_req_host_get_by_name(const char *name)
19 {
20   smx_req_t req = SIMIX_req_mine();
21
22   req->call = REQ_HOST_GET_BY_NAME;
23   req->host_get_by_name.name = name;
24   SIMIX_request_push();
25   return req->host_get_by_name.result;
26 }
27
28 /**
29  * \brief Returns the name of a host.
30  *
31  * \param host A SIMIX host
32  * \return The name of this host
33  */
34 const char* SIMIX_req_host_get_name(smx_host_t host)
35 {
36   smx_req_t req = SIMIX_req_mine();
37
38   req->call = REQ_HOST_GET_NAME;
39   req->host_get_name.host = host;
40   SIMIX_request_push();
41   return req->host_get_name.result;
42 }
43
44 /**
45  * \brief Returns a dict of the properties assigned to a host.
46  *
47  * \param host A host
48  * \return The properties of this host
49  */
50 xbt_dict_t SIMIX_req_host_get_properties(smx_host_t host)
51 {
52   smx_req_t req = SIMIX_req_mine();
53
54   req->call = REQ_HOST_GET_PROPERTIES;
55   req->host_get_properties.host = host;
56   SIMIX_request_push();
57   return req->host_get_properties.result;
58 }
59
60 /**
61  * \brief Returns the speed of the processor.
62  *
63  * The speed returned does not take into account the current load on the machine.
64  * \param host A SIMIX host
65  * \return The speed of this host (in Mflop/s)
66  */
67 double SIMIX_req_host_get_speed(smx_host_t host)
68 {
69   smx_req_t req = SIMIX_req_mine();
70
71   req->call = REQ_HOST_GET_SPEED;
72   req->host_get_speed.host = host;
73   SIMIX_request_push();
74   return req->host_get_speed.result;
75 }
76
77 /**
78  * \brief Returns the available speed of the processor.
79  *
80  * \return Speed currently available (in Mflop/s)
81  */
82 double SIMIX_req_host_get_available_speed(smx_host_t host)
83 {
84   smx_req_t req = SIMIX_req_mine();
85
86   req->call = REQ_HOST_GET_AVAILABLE_SPEED;
87   req->host_get_available_speed.host = host;
88   SIMIX_request_push();
89   return req->host_get_available_speed.result;
90 }
91
92 /**
93  * \brief Returns the state of a host.
94  *
95  * Two states are possible: 1 if the host is active or 0 if it has crashed.
96  * \param host A SIMIX host
97  * \return 1 if the host is available, 0 otherwise
98  */
99 int SIMIX_req_host_get_state(smx_host_t host)
100 {
101   smx_req_t req = SIMIX_req_mine();
102
103   req->call = REQ_HOST_GET_STATE;
104   req->host_get_state.host = host;
105   SIMIX_request_push();
106   return req->host_get_state.result;
107 }
108
109 /**
110  * \brief Returns the user data associated to a host.
111  *
112  * \param host SIMIX host
113  * \return the user data of this host
114  */
115 void* SIMIX_req_host_get_data(smx_host_t host)
116 {
117   smx_req_t req = SIMIX_req_mine();
118
119   req->call = REQ_HOST_GET_DATA;
120   req->host_get_data.host = host;
121   SIMIX_request_push();
122   return req->host_get_data.result;
123 }
124
125 /**
126  * \brief Sets the user data associated to a host.
127  *
128  * The host must not have previous user data associated to it.
129  * \param A host SIMIX host
130  * \param data The user data to set
131  */
132 void SIMIX_req_host_set_data(smx_host_t host, void *data)
133 {
134   smx_req_t req = SIMIX_req_mine();
135
136   req->call = REQ_HOST_SET_DATA;
137   req->host_set_data.host = host;
138   req->host_set_data.data = data;
139   SIMIX_request_push();
140 }
141
142 /** \brief Creates an action that executes some computation of an host.
143  *
144  * This function creates a SURF action and allocates the data necessary
145  * to create the SIMIX action. It can raise a host_error exception if the host crashed.
146  *
147  * \param name Name of the execution action to create
148  * \param host SIMIX host where the action will be executed
149  * \param amount Computation amount (in bytes)
150  * \return A new SIMIX execution action
151  */
152 smx_action_t SIMIX_req_host_execute(const char *name, smx_host_t host,
153                                     double computation_amount,
154                                     double priority)
155 {
156   smx_req_t req = SIMIX_req_mine();
157
158   req->call = REQ_HOST_EXECUTE;
159   req->host_execute.name = name;
160   req->host_execute.host = host;
161   req->host_execute.computation_amount = computation_amount;
162   req->host_execute.priority = priority;
163   SIMIX_request_push();
164   return req->host_execute.result;
165 }
166
167 /** \brief Creates an action that may involve parallel computation on
168  * several hosts and communication between them.
169  *
170  * \param name Name of the execution action to create
171  * \param host_nb Number of hosts where the action will be executed
172  * \param host_list Array (of size host_nb) of hosts where the action will be executed
173  * \param computation_amount Array (of size host_nb) of computation amount of hosts (in bytes)
174  * \param communication_amount Array (of size host_nb * host_nb) representing the communication
175  * amount between each pair of hosts
176  * \param amount the SURF action amount
177  * \param rate the SURF action rate
178  * \return A new SIMIX execution action
179  */
180 smx_action_t SIMIX_req_host_parallel_execute(const char *name,
181                                          int host_nb,
182                                          smx_host_t *host_list,
183                                          double *computation_amount,
184                                          double *communication_amount,
185                                          double amount,
186                                          double rate)
187 {
188   smx_req_t req = SIMIX_req_mine();
189
190   req->call = REQ_HOST_PARALLEL_EXECUTE;
191   req->host_parallel_execute.name = name;
192   req->host_parallel_execute.host_nb = host_nb;
193   req->host_parallel_execute.host_list = host_list;
194   req->host_parallel_execute.computation_amount = computation_amount;
195   req->host_parallel_execute.communication_amount = communication_amount;
196   req->host_parallel_execute.amount = amount;
197   req->host_parallel_execute.rate = rate;
198   SIMIX_request_push();
199   return req->host_parallel_execute.result;
200 }
201
202 /**
203  * \brief Destroys an execution action.
204  *
205  * Destroys an action, freing its memory. This function cannot be called if there are a conditional waiting for it.
206  * \param action The execution action to destroy
207  */
208 void SIMIX_req_host_execution_destroy(smx_action_t execution)
209 {
210   smx_req_t req = SIMIX_req_mine();
211
212   req->call = REQ_HOST_EXECUTION_DESTROY;
213   req->host_execution_destroy.execution = execution;
214   SIMIX_request_push();
215 }
216
217 /**
218  * \brief Cancels an execution action.
219  *
220  * This functions stops the execution. It calls a surf function.
221  * \param action The execution action to cancel
222  */
223 void SIMIX_req_host_execution_cancel(smx_action_t execution)
224 {
225   smx_req_t req = SIMIX_req_mine();
226
227   req->call = REQ_HOST_EXECUTION_CANCEL;
228   req->host_execution_cancel.execution = execution;
229   SIMIX_request_push();
230 }
231
232 /**
233  * \brief Returns how much of an execution action remains to be done.
234  *
235  * \param Action The execution action
236  * \return The remaining amount
237  */
238 double SIMIX_req_host_execution_get_remains(smx_action_t execution)
239 {
240   smx_req_t req = SIMIX_req_mine();
241
242   req->call = REQ_HOST_EXECUTION_GET_REMAINS;
243   req->host_execution_get_remains.execution = execution;
244   SIMIX_request_push();
245   return req->host_execution_get_remains.result;
246 }
247
248 /**
249  * \brief Returns the state of an execution action.
250  *
251  * \param execution The execution action
252  * \return The state
253  */
254 e_smx_state_t SIMIX_req_host_execution_get_state(smx_action_t execution)
255 {
256   smx_req_t req = SIMIX_req_mine();
257
258   req->call = REQ_HOST_EXECUTION_GET_STATE;
259   req->host_execution_get_state.execution = execution;
260   SIMIX_request_push();
261   return req->host_execution_get_state.result;
262 }
263
264 /**
265  * \brief Changes the priority of an execution action.
266  *
267  * This functions changes the priority only. It calls a surf function.
268  * \param execution The execution action
269  * \param priority The new priority
270  */
271 void SIMIX_req_host_execution_set_priority(smx_action_t execution, double priority)
272 {
273   smx_req_t req = SIMIX_req_mine();
274
275   req->call = REQ_HOST_EXECUTION_SET_PRIORITY;
276   req->host_execution_set_priority.execution = execution;
277   req->host_execution_set_priority.priority = priority;
278   SIMIX_request_push();
279 }
280
281 /**
282  * \brief Waits for the completion of an execution action and destroy it.
283  *
284  * \param execution The execution action
285  */
286 e_smx_state_t SIMIX_req_host_execution_wait(smx_action_t execution)
287 {
288   smx_req_t req = SIMIX_req_mine();
289
290   req->call = REQ_HOST_EXECUTION_WAIT;
291   req->host_execution_wait.execution = execution;
292   SIMIX_request_push();
293   return req->host_execution_wait.result;
294 }
295
296 /**
297  * \brief Creates and runs a new SIMIX process.
298  *
299  * The structure and the corresponding thread are created and put in the list of ready processes.
300  *
301  * \param process the process created will be stored in this pointer
302  * \param name a name for the process. It is for user-level information and can be NULL.
303  * \param code the main function of the process
304  * \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.
305  * It can be retrieved with the function \ref SIMIX_req_process_get_data.
306  * \param hostname name of the host where the new agent is executed.
307  * \param argc first argument passed to \a code
308  * \param argv second argument passed to \a code
309  * \param properties the properties of the process
310  */
311 void SIMIX_req_process_create(smx_process_t *process, const char *name,
312                               xbt_main_func_t code,
313                               void *data,
314                               const char *hostname,
315                               int argc, char **argv,
316                               xbt_dict_t properties)
317 {
318   smx_req_t req = SIMIX_req_mine();
319
320   req->call = REQ_PROCESS_CREATE;
321   req->process_create.process = process;
322   req->process_create.name = name;
323   req->process_create.code = code;
324   req->process_create.data = data;
325   req->process_create.hostname = hostname;
326   req->process_create.argc = argc;
327   req->process_create.argv = argv;
328   req->process_create.properties = properties;
329   SIMIX_request_push();
330 }
331
332 /** \brief Kills a SIMIX process.
333  *
334  * This function simply kills a  process.
335  *
336  * \param process poor victim
337  */
338 void SIMIX_req_process_kill(smx_process_t process)
339 {
340   smx_req_t req = SIMIX_req_mine();
341
342   req->call = REQ_PROCESS_KILL;
343   req->process_kill.process = process;
344   SIMIX_request_push();
345 }
346
347 /**
348  * \brief Migrates an agent to another location.
349  *
350  * This function changes the value of the host on which \a process is running.
351  *
352  * \param process the process to migrate
353  * \param source name of the previous host
354  * \param dest name of the new host
355  */
356 void SIMIX_req_process_change_host(smx_process_t process, const char *source, const char *dest)
357 {
358   smx_req_t req = SIMIX_req_mine();
359
360   req->call = REQ_PROCESS_CHANGE_HOST;
361   req->process_change_host.process = process;
362   req->process_change_host.source = source;
363   req->process_change_host.dest = dest;
364   SIMIX_request_push();
365 }
366
367 /**
368  * \brief Suspends a process.
369  *
370  * This function suspends the process by suspending the action
371  * it was waiting for completion.
372  *
373  * \param process a SIMIX process
374  */
375 void SIMIX_req_process_suspend(smx_process_t process)
376 {
377   xbt_assert0(process, "Invalid parameters");
378
379   smx_req_t req = SIMIX_req_mine();
380
381   req->call = REQ_PROCESS_SUSPEND;
382   req->process_suspend.process = process;
383   SIMIX_request_push();
384 }
385
386 /**
387  * \brief Resumes a suspended process.
388  *
389  * This function resumes a suspended process by resuming the action
390  * it was waiting for completion.
391  *
392  * \param process a SIMIX process
393  */
394 void SIMIX_req_process_resume(smx_process_t process)
395 {
396   smx_req_t req = SIMIX_req_mine();
397
398   req->call = REQ_PROCESS_RESUME;
399   req->process_resume.process = process;
400   SIMIX_request_push();
401 }
402
403 /**
404  * \brief Returns the amount of SIMIX processes in the system
405  *
406  * Maestro internal process is not counted, only user code processes are
407  */
408 int SIMIX_req_process_count(void)
409 {
410   smx_req_t req = SIMIX_req_mine();
411
412   req->call = REQ_PROCESS_COUNT;
413   SIMIX_request_push();
414   return req->process_count.result;
415 }
416
417 /**
418  * \brief Return the user data of a #smx_process_t.
419  *
420  * This functions checks whether \a process is a valid pointer or not and return the user data associated to \a process if it is possible.
421  * \param process SIMIX process
422  * \return A void pointer to the user data
423  */
424 void* SIMIX_req_process_get_data(smx_process_t process)
425 {
426   smx_req_t req = SIMIX_req_mine();
427
428   req->call = REQ_PROCESS_GET_DATA;
429   req->process_get_data.process = process;
430   SIMIX_request_push();
431   return req->process_get_data.result;
432 }
433
434 /**
435  * \brief Set the user data of a #m_process_t.
436  *
437  * This functions checks whether \a process is a valid pointer or not and set the user data associated to \a process if it is possible.
438  * \param process SIMIX process
439  * \param data User data
440  */
441 void SIMIX_req_process_set_data(smx_process_t process, void *data)
442 {
443   smx_req_t req = SIMIX_req_mine();
444
445   req->call = REQ_PROCESS_SET_DATA;
446   req->process_set_data.process = process;
447   req->process_set_data.data = data;
448   SIMIX_request_push();
449 }
450
451 /**
452  * \brief Return the location on which an agent is running.
453  *
454  * This functions checks whether \a process is a valid pointer or not and return the m_host_t corresponding to the location on which \a process is running.
455  * \param process SIMIX process
456  * \return SIMIX host
457  */
458 smx_host_t SIMIX_req_process_get_host(smx_process_t process)
459 {
460   smx_req_t req = SIMIX_req_mine();
461
462   req->call = REQ_PROCESS_GET_HOST;
463   req->process_get_host.process = process;
464   SIMIX_request_push();
465   return req->process_get_host.result;
466 }
467
468 /**
469  * \brief Return the name of an agent.
470  *
471  * This functions checks whether \a process is a valid pointer or not and return its name.
472  * \param process SIMIX process
473  * \return The process name
474  */
475 const char* SIMIX_req_process_get_name(smx_process_t process)
476 {
477   smx_req_t req = SIMIX_req_mine();
478
479   req->call = REQ_PROCESS_GET_NAME;
480   req->process_get_name.process = process;
481   SIMIX_request_push();
482   return req->process_get_name.result;
483 }
484
485 /**
486  * \brief Returns true if the process is suspended .
487  *
488  * This checks whether a process is suspended or not by inspecting the task on which it was waiting for the completion.
489  * \param process SIMIX process
490  * \return 1, if the process is suspended, else 0.
491  */
492 int SIMIX_req_process_is_suspended(smx_process_t process)
493 {
494   smx_req_t req = SIMIX_req_mine();
495
496   req->call = REQ_PROCESS_IS_SUSPENDED;
497   req->process_is_suspended.process = process;
498   SIMIX_request_push();
499   return req->process_is_suspended.result;
500 }
501
502 /** \ingroup m_process_management
503  * \brief Return the properties
504  *
505  * This functions returns the properties associated with this process
506  */
507 xbt_dict_t SIMIX_req_process_get_properties(smx_process_t process)
508 {
509   smx_req_t req = SIMIX_req_mine();
510
511   req->call = REQ_PROCESS_GET_PROPERTIES;
512   req->process_get_properties.process = process;
513   SIMIX_request_push();
514   return req->process_get_properties.result;
515 }
516
517 /** \brief Creates a new sleep SIMIX action.
518  *
519  * This function creates a SURF action and allocates the data necessary
520  * to create the SIMIX action. It can raise a host_error exception if the
521  * host crashed. The default SIMIX name of the action is "sleep".
522  *
523  *      \param duration Time duration of the sleep.
524  *      \return A result telling whether the sleep was successful
525  */
526 e_smx_state_t SIMIX_req_process_sleep(double duration)
527 {
528   smx_req_t req = SIMIX_req_mine();
529
530   req->call = REQ_PROCESS_SLEEP;
531   req->process_sleep.duration = duration;
532   SIMIX_request_push();
533   return req->process_sleep.result;
534 }
535
536 /**
537  *  \brief Creates a new rendez-vous point
538  *  \param name The name of the rendez-vous point
539  *  \return The created rendez-vous point
540  */
541 smx_rdv_t SIMIX_req_rdv_create(const char *name)
542 {
543   smx_req_t req = SIMIX_req_mine();
544
545   req->call = REQ_RDV_CREATE;
546   req->rdv_create.name = name;
547
548   SIMIX_request_push();
549   return req->rdv_create.result;
550 }
551
552
553 /**
554  *  \brief Destroy a rendez-vous point
555  *  \param name The rendez-vous point to destroy
556  */
557 void SIMIX_req_rdv_destroy(smx_rdv_t rdv)
558 {
559   smx_req_t req = SIMIX_req_mine();
560
561   req->call = REQ_RDV_DESTROY;
562   req->rdv_destroy.rdv = rdv;
563
564   SIMIX_request_push();
565 }
566
567 smx_rdv_t SIMIX_req_rdv_get_by_name(const char *name)
568 {
569   xbt_assert0(name != NULL, "Invalid parameter for SIMIX_req_rdv_get_by_name (name is NULL)");
570
571   /* FIXME: this is a horrible lost of performance, so we hack it out by
572    * skipping the request (for now). It won't work on distributed but
573    * probably we will change MSG for that. */
574 /*
575   smx_req_t req = SIMIX_req_mine();
576   req->call = REQ_RDV_GEY_BY_NAME;
577   req->rdv_get_by_name.name = name;
578   SIMIX_request_push();
579   return req->rdv_get_by_name.result;*/
580
581   return SIMIX_rdv_get_by_name(name);
582 }
583
584 /**
585  *  \brief counts the number of communication requests of a given host pending
586  *         on a rendez-vous point
587  *  \param rdv The rendez-vous point
588  *  \param host The host to be counted
589  *  \return The number of comm request pending in the rdv
590  */
591 int SIMIX_req_rdv_comm_count_by_host(smx_rdv_t rdv, smx_host_t host)
592 {
593   smx_req_t req = SIMIX_req_mine();
594
595   req->call = REQ_RDV_COMM_COUNT_BY_HOST;
596   req->rdv_comm_count_by_host.rdv = rdv;
597   req->rdv_comm_count_by_host.host = host;
598
599   SIMIX_request_push();
600   return req->rdv_comm_count_by_host.result;
601 }
602
603 /**
604  *  \brief returns the communication at the head of the rendez-vous
605  *  \param rdv The rendez-vous point
606  *  \return The communication or NULL if empty
607  */
608 smx_action_t SIMIX_req_rdv_get_head(smx_rdv_t rdv)
609 {
610   smx_req_t req = SIMIX_req_mine();
611
612   req->call = REQ_RDV_GET_HEAD;
613   req->rdv_get_head.rdv = rdv;
614
615   SIMIX_request_push();
616   return req->rdv_get_head.result;
617 }
618
619 smx_action_t SIMIX_req_comm_isend(smx_rdv_t rdv, double task_size, double rate,
620                               void *src_buff, size_t src_buff_size,
621                               int (*match_fun)(void *, void *), void *data,
622                               int detached)
623 {
624   smx_req_t req = SIMIX_req_mine();
625
626   xbt_assert0(rdv, "No rendez-vous point defined for isend");
627
628   req->call = REQ_COMM_ISEND;
629   req->comm_isend.rdv = rdv;
630   req->comm_isend.task_size = task_size;
631   req->comm_isend.rate = rate;
632   req->comm_isend.src_buff = src_buff;
633   req->comm_isend.src_buff_size = src_buff_size;
634   req->comm_isend.match_fun = match_fun;
635   req->comm_isend.data = data;
636   req->comm_isend.detached = detached;
637
638   SIMIX_request_push();
639   return req->comm_isend.result;
640 }
641
642 smx_action_t SIMIX_req_comm_irecv(smx_rdv_t rdv, void *dst_buff, size_t * dst_buff_size,
643                                                                   int (*match_fun)(void *, void *), void *data)
644 {
645   smx_req_t req = SIMIX_req_mine();
646
647   xbt_assert0(rdv, "No rendez-vous point defined for isend");
648
649   req->call = REQ_COMM_IRECV;
650   req->comm_irecv.rdv = rdv;
651   req->comm_irecv.dst_buff = dst_buff;
652   req->comm_irecv.dst_buff_size = dst_buff_size;
653   req->comm_irecv.match_fun = match_fun;
654   req->comm_irecv.data = data;
655
656   SIMIX_request_push();
657   return req->comm_irecv.result;
658 }
659
660 void SIMIX_req_comm_destroy(smx_action_t comm)
661 {
662   xbt_assert0(comm, "Invalid parameter");
663
664   /* FIXME remove this request type: comms are auto-destroyed now,
665    * but what happens with unfinished comms? */
666
667   /*
668   smx_req_t req = SIMIX_req_mine();
669
670   req->call = REQ_COMM_DESTROY;
671   req->comm_destroy.comm = comm;
672
673   SIMIX_request_push();
674   */
675 }
676
677 void SIMIX_req_comm_cancel(smx_action_t comm)
678 {
679   smx_req_t req = SIMIX_req_mine();
680
681   req->call = REQ_COMM_CANCEL;
682   req->comm_cancel.comm = comm;
683
684   SIMIX_request_push();
685 }
686
687 unsigned int SIMIX_req_comm_waitany(xbt_dynar_t comms)
688 {
689   smx_req_t req = SIMIX_req_mine();
690
691   req->call = REQ_COMM_WAITANY;
692   req->comm_waitany.comms = comms;
693
694   SIMIX_request_push();
695   return req->comm_waitany.result;
696 }
697
698 int SIMIX_req_comm_testany(xbt_dynar_t comms)
699 {
700   smx_req_t req = SIMIX_req_mine();
701   if (xbt_dynar_length(comms)==0)
702     return -1;
703
704   req->call = REQ_COMM_TESTANY;
705   req->comm_testany.comms = comms;
706
707   SIMIX_request_push();
708   return req->comm_testany.result;
709 }
710
711 void SIMIX_req_comm_wait(smx_action_t comm, double timeout)
712 {
713   smx_req_t req = SIMIX_req_mine();
714
715   req->call = REQ_COMM_WAIT;
716   req->comm_wait.comm = comm;
717   req->comm_wait.timeout = timeout;
718
719   SIMIX_request_push();
720 }
721
722 #ifdef HAVE_TRACING
723 /**
724  * \brief Set the category of an action.
725  *
726  * This functions changes the category only. It calls a surf function.
727  * \param execution The execution action
728  * \param category The tracing category
729  */
730 void SIMIX_req_set_category(smx_action_t action, const char *category)
731 {
732   if (category == NULL) {
733     return;
734   }
735
736   smx_req_t req = SIMIX_req_mine();
737
738   req->call = REQ_SET_CATEGORY;
739   req->set_category.action = action;
740   req->set_category.category = category;
741
742   SIMIX_request_push();
743 }
744 #endif
745
746 int SIMIX_req_comm_test(smx_action_t comm)
747 {
748   smx_req_t req = SIMIX_req_mine();
749
750   req->call = REQ_COMM_TEST;
751   req->comm_test.comm = comm;
752
753   SIMIX_request_push();
754   return req->comm_test.result;
755 }
756
757 double SIMIX_req_comm_get_remains(smx_action_t comm)
758 {
759   smx_req_t req = SIMIX_req_mine();
760
761   req->call = REQ_COMM_GET_REMAINS;
762   req->comm_get_remains.comm = comm;
763
764   SIMIX_request_push();
765   return req->comm_get_remains.result;
766 }
767
768 e_smx_state_t SIMIX_req_comm_get_state(smx_action_t comm)
769 {
770   smx_req_t req = SIMIX_req_mine();
771
772   req->call = REQ_COMM_GET_STATE;
773   req->comm_get_state.comm = comm;
774
775   SIMIX_request_push();
776   return req->comm_get_state.result;
777 }
778
779 void *SIMIX_req_comm_get_src_data(smx_action_t comm)
780 {
781   smx_req_t req = SIMIX_req_mine();
782
783   req->call = REQ_COMM_GET_SRC_DATA;
784   req->comm_get_src_data.comm = comm;
785
786   SIMIX_request_push();
787   return req->comm_get_src_data.result;
788 }
789
790 void *SIMIX_req_comm_get_dst_data(smx_action_t comm)
791 {
792   smx_req_t req = SIMIX_req_mine();
793
794   req->call = REQ_COMM_GET_DST_DATA;
795   req->comm_get_dst_data.comm = comm;
796
797   SIMIX_request_push();
798   return req->comm_get_dst_data.result;
799 }
800
801 smx_process_t SIMIX_req_comm_get_src_proc(smx_action_t comm)
802 {
803   smx_req_t req = SIMIX_req_mine();
804
805   req->call = REQ_COMM_GET_SRC_PROC;
806   req->comm_get_src_proc.comm = comm;
807
808   SIMIX_request_push();
809   return req->comm_get_src_proc.result;
810 }
811
812 smx_process_t SIMIX_req_comm_get_dst_proc(smx_action_t comm)
813 {
814   smx_req_t req = SIMIX_req_mine();
815
816   req->call = REQ_COMM_GET_DST_PROC;
817   req->comm_get_dst_proc.comm = comm;
818
819   SIMIX_request_push();
820   return req->comm_get_dst_proc.result;
821 }
822
823 #ifdef HAVE_LATENCY_BOUND_TRACKING
824 int SIMIX_req_comm_is_latency_bounded(smx_action_t comm)
825 {
826   smx_req_t req = SIMIX_req_mine();
827
828   req->call = REQ_COMM_IS_LATENCY_BOUNDED;
829   req->comm_is_latency_bounded.comm = comm;
830
831   SIMIX_request_push();
832   return req->comm_is_latency_bounded.result;
833 }
834 #endif
835
836 smx_mutex_t SIMIX_req_mutex_init(void)
837 {
838   smx_req_t req = SIMIX_req_mine();
839
840   req->call = REQ_MUTEX_INIT;
841
842   SIMIX_request_push();
843   return req->mutex_init.result;
844 }
845
846 void SIMIX_req_mutex_destroy(smx_mutex_t mutex)
847 {
848   smx_req_t req = SIMIX_req_mine();
849
850   req->call = REQ_MUTEX_DESTROY;
851   req->mutex_destroy.mutex = mutex;
852
853   SIMIX_request_push();
854 }
855
856 void SIMIX_req_mutex_lock(smx_mutex_t mutex)
857 {
858   smx_req_t req = SIMIX_req_mine();
859
860   req->call = REQ_MUTEX_LOCK;
861   req->mutex_lock.mutex = mutex;
862
863   SIMIX_request_push();
864 }
865
866 int SIMIX_req_mutex_trylock(smx_mutex_t mutex)
867 {
868   smx_req_t req = SIMIX_req_mine();
869
870   req->call = REQ_MUTEX_TRYLOCK;
871   req->mutex_trylock.mutex = mutex;
872
873   SIMIX_request_push();
874   return req->mutex_trylock.result;
875 }
876
877 void SIMIX_req_mutex_unlock(smx_mutex_t mutex)
878 {
879   smx_req_t req = SIMIX_req_mine();
880
881   req->call = REQ_MUTEX_UNLOCK;
882   req->mutex_unlock.mutex = mutex;
883
884   SIMIX_request_push();
885 }
886
887
888 smx_cond_t SIMIX_req_cond_init(void)
889 {
890   smx_req_t req = SIMIX_req_mine();
891
892   req->call = REQ_COND_INIT;
893
894   SIMIX_request_push();
895   return req->cond_init.result;
896 }
897
898 void SIMIX_req_cond_destroy(smx_cond_t cond)
899 {
900   smx_req_t req = SIMIX_req_mine();
901
902   req->call = REQ_COND_DESTROY;
903   req->cond_destroy.cond = cond;
904
905   SIMIX_request_push();
906 }
907
908 void SIMIX_req_cond_signal(smx_cond_t cond)
909 {
910   smx_req_t req = SIMIX_req_mine();
911
912   req->call = REQ_COND_SIGNAL;
913   req->cond_signal.cond = cond;
914
915   SIMIX_request_push();
916 }
917
918 void SIMIX_req_cond_wait(smx_cond_t cond, smx_mutex_t mutex)
919 {
920   smx_req_t req = SIMIX_req_mine();
921
922   req->call = REQ_COND_WAIT;
923   req->cond_wait.cond = cond;
924   req->cond_wait.mutex = mutex;
925
926   SIMIX_request_push();
927 }
928
929 void SIMIX_req_cond_wait_timeout(smx_cond_t cond,
930                                  smx_mutex_t mutex,
931                                  double timeout)
932 {
933   smx_req_t req = SIMIX_req_mine();
934
935   req->call = REQ_COND_WAIT_TIMEOUT;
936   req->cond_wait_timeout.cond = cond;
937   req->cond_wait_timeout.mutex = mutex;
938   req->cond_wait_timeout.timeout = timeout;
939
940   SIMIX_request_push();
941 }
942
943 void SIMIX_req_cond_broadcast(smx_cond_t cond)
944 {
945   smx_req_t req = SIMIX_req_mine();
946
947   req->call = REQ_COND_BROADCAST;
948   req->cond_broadcast.cond = cond;
949
950   SIMIX_request_push();
951 }
952
953
954 smx_sem_t SIMIX_req_sem_init(int capacity)
955 {
956   smx_req_t req = SIMIX_req_mine();
957
958   req->call = REQ_SEM_INIT;
959   req->sem_init.capacity = capacity;
960
961   SIMIX_request_push();
962   return req->sem_init.result;
963 }
964
965 void SIMIX_req_sem_destroy(smx_sem_t sem)
966 {
967   smx_req_t req = SIMIX_req_mine();
968
969   req->call = REQ_SEM_DESTROY;
970   req->sem_destroy.sem = sem;
971
972   SIMIX_request_push();
973 }
974
975 void SIMIX_req_sem_release(smx_sem_t sem)
976 {
977   smx_req_t req = SIMIX_req_mine();
978
979   req->call = REQ_SEM_RELEASE;
980   req->sem_release.sem = sem;
981
982   SIMIX_request_push();
983 }
984
985 int SIMIX_req_sem_would_block(smx_sem_t sem)
986 {
987   smx_req_t req = SIMIX_req_mine();
988
989   req->call = REQ_SEM_WOULD_BLOCK;
990   req->sem_would_block.sem = sem;
991
992   SIMIX_request_push();
993   return req->sem_would_block.result;
994 }
995
996 void SIMIX_req_sem_acquire(smx_sem_t sem)
997 {
998   smx_req_t req = SIMIX_req_mine();
999
1000   req->call = REQ_SEM_ACQUIRE;
1001   req->sem_acquire.sem = sem;
1002
1003   SIMIX_request_push();
1004 }
1005
1006 void SIMIX_req_sem_acquire_timeout(smx_sem_t sem, double timeout)
1007 {
1008   smx_req_t req = SIMIX_req_mine();
1009
1010   req->call = REQ_SEM_ACQUIRE_TIMEOUT;
1011   req->sem_acquire_timeout.sem = sem;
1012   req->sem_acquire_timeout.timeout = timeout;
1013
1014   SIMIX_request_push();
1015 }
1016
1017 int SIMIX_req_sem_get_capacity(smx_sem_t sem)
1018 {
1019   smx_req_t req = SIMIX_req_mine();
1020
1021   req->call = REQ_SEM_GET_CAPACITY;
1022   req->sem_get_capacity.sem = sem;
1023
1024   SIMIX_request_push();
1025   return req->sem_get_capacity.result;
1026 }
1027 /* ************************************************************************** */
1028
1029 /** @brief returns a printable string representing the request kind */
1030 const char *SIMIX_request_name(int kind) {
1031   return request_names[kind];
1032 }