Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
7008ec30fe7eb24d9a0ce4eb40c60bbddc334d78
[simgrid.git] / src / simix / smx_network.c
1 /*      $Id$     */
2
3 /* Copyright (c) 2009 Cristian Rosa.
4    All rights reserved.                                          */
5
6 /* This program is free software; you can redistribute it and/or modify it
7  * under the terms of the license (GNU LGPL) which comes with this package. */
8
9 #include "private.h"
10 #include "xbt/log.h"
11
12 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(simix_network, simix,
13                                 "Logging specific to SIMIX (network)");
14
15 /******************************************************************************/
16 /*                           Rendez-Vous Points                               */
17 /******************************************************************************/ 
18
19 /**
20  *  \brief Creates a new rendez-vous point
21  *  \param name The name of the rendez-vous point
22  *  \return The created rendez-vous point
23  */
24 smx_rdv_t SIMIX_rdv_create(const char *name)
25 {
26   smx_rdv_t rdv = xbt_new0(s_smx_rvpoint_t, 1);
27   rdv->name = name ? xbt_strdup(name) : NULL;
28   rdv->read = SIMIX_mutex_init();
29   rdv->write = SIMIX_mutex_init();
30   rdv->comm_fifo = xbt_fifo_new();
31
32   return rdv;
33 }
34
35 /**
36  *  \brief Destroy a rendez-vous point
37  *  \param name The rendez-vous point to destroy
38  */
39 void SIMIX_rdv_destroy(smx_rdv_t rdv)
40 {
41   if(rdv->name)
42     xbt_free(rdv->name);
43   SIMIX_mutex_destroy(rdv->read);
44   SIMIX_mutex_destroy(rdv->write);
45   xbt_fifo_free(rdv->comm_fifo);
46   xbt_free(rdv);
47 }
48
49 /**
50  *  \brief Push a communication request into a rendez-vous point
51  *  \param rdv The rendez-vous point
52  *  \param comm The communication request
53  */
54 static inline void SIMIX_rdv_push(smx_rdv_t rdv, smx_comm_t comm)
55 {
56   xbt_fifo_push(rdv->comm_fifo, comm);
57   comm->rdv = rdv;
58 }
59
60 /**
61  *  \brief Remove a communication request from a rendez-vous point
62  *  \param rdv The rendez-vous point
63  *  \param comm The communication request
64  */
65 static inline void SIMIX_rdv_remove(smx_rdv_t rdv, smx_comm_t comm)
66 {
67   xbt_fifo_remove(rdv->comm_fifo, comm);
68   comm->rdv = NULL;
69 }
70   
71 /**
72  *  \brief Checks if there is a communication request queued in a rendez-vous matching our needs
73  *  \param type The type of communication we are looking for (comm_send, comm_recv)
74  *  \return The communication request if found, NULL otherwise.
75  */
76 smx_comm_t SIMIX_rdv_get_request(smx_rdv_t rdv, smx_comm_type_t type)
77 {
78   smx_comm_t comm = (smx_comm_t)xbt_fifo_get_item_content(
79                                   xbt_fifo_get_first_item(rdv->comm_fifo));
80
81   if(comm && comm->type == type){
82     DEBUG0("Communication request found!");
83     xbt_fifo_shift(rdv->comm_fifo);
84     SIMIX_communication_use(comm);
85     comm->rdv = NULL;    
86     return comm;
87   }
88
89   /* no relevant request found. Return NULL */
90   DEBUG0("Communication request not found");
91   return NULL;
92 }
93
94 /**
95  *  \brief counts the number of communication requests of a given host pending
96  *         on a rendez-vous point
97  *  \param rdv The rendez-vous point
98  *  \param host The host to be counted
99  *  \return The number of comm request pending in the rdv
100  */
101 int 
102 SIMIX_rdv_get_count_waiting_comm(smx_rdv_t rdv, smx_host_t host)
103 {
104   smx_comm_t comm = NULL;
105   xbt_fifo_item_t item = NULL;
106   int count = 0;
107
108   xbt_fifo_foreach(rdv->comm_fifo, item, comm, smx_comm_t) {
109     if (comm->src_proc->smx_host == host)
110       count++;
111   }
112
113   return count;
114 }
115
116 /**
117  *  \brief returns the communication at the head of the rendez-vous
118  *  \param rdv The rendez-vous point
119  *  \return The communication or NULL if empty
120  */
121 smx_comm_t SIMIX_rdv_get_head(smx_rdv_t rdv)
122 {
123   return (smx_comm_t)xbt_fifo_get_item_content(xbt_fifo_get_first_item(rdv->comm_fifo));
124 }
125
126 /** @brief adds some API-related data to the rendez-vous point */
127 void SIMIX_rdv_set_data(smx_rdv_t rdv,void *data) {
128   rdv->data=data;
129 }
130 /** @brief gets API-related data from the rendez-vous point */
131 void *SIMIX_rdv_get_data(smx_rdv_t rdv) {
132   return rdv->data;
133 }
134
135 /******************************************************************************/
136 /*                           Communication Requests                           */
137 /******************************************************************************/ 
138
139 /**
140  *  \brief Creates a new communication request
141  *  \param type The type of communication (comm_send, comm_recv)
142  *  \return The new communication request
143  */  
144 smx_comm_t SIMIX_communication_new(smx_comm_type_t type)
145 {
146   /* alloc structures */
147   smx_comm_t comm = xbt_new0(s_smx_comm_t, 1);
148   comm->type = type;
149   comm->sem = SIMIX_sem_init(0);
150   comm->refcount = 1;
151   
152   return comm;
153 }
154
155 /**
156  *  \brief Destroy a communication request
157  *  \param comm The request to be destroyed
158  */
159 void SIMIX_communication_destroy(smx_comm_t comm)
160 {
161   comm->refcount--;
162   if(comm->refcount > 0)
163     return;
164
165   if(comm->sem){
166     SIMIX_sem_destroy(comm->sem);
167     comm->sem = NULL;
168   }
169   
170   if(comm->act){
171     SIMIX_action_destroy(comm->act);
172     comm->act = NULL;
173   }
174   
175   xbt_free(comm);
176 }
177
178 /**
179  *  \brief Increase the number of users of the communication.
180  *  \param comm The communication request
181  *  Each communication request can be used by more than one process, so it is
182  *  necessary to know number of them at destroy time, to avoid freeing stuff that
183  *  maybe is in use by others.
184  *  \
185  */
186 static inline void SIMIX_communication_use(smx_comm_t comm)
187 {
188   comm->refcount++;
189 }
190
191 /**
192  *  \brief Start the simulation of a communication request
193  *  \param comm The   comm->rdv = NULL;communication request
194  */
195 static inline void SIMIX_communication_start(smx_comm_t comm)
196 {
197   /* If both the sender and the receiver are already there, start the communication */
198   if(comm->src_proc && comm->dst_proc){
199     DEBUG1("Starting communication %p", comm);
200     comm->act = SIMIX_action_communicate(comm->src_proc->smx_host, 
201                                          comm->dst_proc->smx_host, NULL, 
202                                          comm->task_size, comm->rate);
203
204     /* If any of the process is suspend, create the action but stop its execution,
205        it will be restarted when the sender process resume */
206     if(SIMIX_process_is_suspended(comm->src_proc) || 
207        SIMIX_process_is_suspended(comm->dst_proc)) {
208       SIMIX_action_set_priority(comm->act, 0);
209     }
210     
211     /* Add the communication as user data of the action */
212     comm->act->data = comm;
213
214     /* The semaphore will only get signaled once, but since the first unlocked guy will
215      * release_forever() the semaphore, that will unlock the second (and any other)
216      * communication partner */
217     SIMIX_register_action_to_semaphore(comm->act, comm->sem);
218   }
219 }
220
221 /**
222  *  \brief Waits for communication completion and performs error checking
223  *  \param comm The communication
224  *  \param timeout The max amount of time to wait for the communication to finish
225  *
226  *  Throws:
227  *   - host_error if peer failed
228  *   - timeout_error if communication reached the timeout specified
229  *   - network_error if network failed or peer issued a timeout
230  */
231 static inline void SIMIX_communication_wait_for_completion(smx_comm_t comm, double timeout)
232 {
233   xbt_ex_t e;
234
235   DEBUG1("Waiting for the completion of communication %p", comm);
236   
237   if(timeout > 0){
238     TRY{
239       SIMIX_sem_acquire_timeout(comm->sem, timeout);
240     }
241     CATCH(e){
242       /* If there is a timeout then cancel the communication if it is running or 
243          remove it from the rendez-vous otherwise. Then signal the other peer,
244          destroy the communication and retrow the exception. */
245       if(e.category == timeout_error){
246         DEBUG1("Communication timeout! %p", comm);
247         if(comm->act && SIMIX_action_get_state(comm->act) == SURF_ACTION_RUNNING)
248           SIMIX_communication_cancel(comm);
249         else
250           SIMIX_rdv_remove(comm->rdv, comm);
251
252         /* Make sure that everyone sleeping on that semaphore is awake, and that nobody will ever block on it */
253         SIMIX_sem_release_forever(comm->sem);
254         SIMIX_communication_destroy(comm);
255       }
256       RETHROW;
257     }
258   } else {
259     SIMIX_sem_acquire(comm->sem);
260   }
261
262   DEBUG1("Communication %p complete! Let's check for errors", comm);
263
264   /* Make sure that everyone sleeping on that semaphore is awake, and that nobody will ever block on it */
265   SIMIX_sem_release_forever(comm->sem);
266   
267   /* Check for errors other than timeouts (they are catched above) */
268   if(!SIMIX_host_get_state(SIMIX_host_self())){
269     if(comm->rdv)
270       SIMIX_rdv_remove(comm->rdv, comm);
271     SIMIX_communication_destroy(comm);
272     THROW0(host_error, 0, "Host failed");
273   } else if (SIMIX_action_get_state(comm->act) == SURF_ACTION_FAILED){
274     SIMIX_communication_destroy(comm);
275     THROW0(network_error, 0, "Link failure");
276   }
277 }
278
279 /**
280  *  \brief Cancels a communication
281  *  \brief comm The communication to cancel
282  */
283 void SIMIX_communication_cancel(smx_comm_t comm)
284 {
285   SIMIX_action_cancel(comm->act);
286 }
287
288 /**
289  *  \brief get the amount remaining from the communication
290  *  \param comm The communication
291  */
292 double SIMIX_communication_get_remains(smx_comm_t comm)
293 {
294   return SIMIX_action_get_remains(comm->act);
295 }  
296
297 /**
298  *  \brief Copy the communication data from the sender's buffer to the receiver's one
299  *  \param comm The communication
300  */
301 void SIMIX_network_copy_data(smx_comm_t comm)
302 {
303   /* If there is no data to be copy then return */
304   if(!comm->src_buff || !comm->dst_buff)
305     return;
306   
307   size_t src_buff_size = comm->src_buff_size;
308   size_t dst_buff_size = *comm->dst_buff_size;
309   
310   /* Copy at most dst_buff_size bytes of the message to receiver's buffer */
311   dst_buff_size = MIN(dst_buff_size, src_buff_size);
312   
313   /* Update the receiver's buffer size to the copied amount */
314   if (comm->dst_buff_size)
315     *comm->dst_buff_size = dst_buff_size;
316
317   if(dst_buff_size == 0)
318     return;
319
320   memcpy(comm->dst_buff, comm->src_buff, dst_buff_size);
321
322   DEBUG4("Copying comm %p data from %s -> %s (%zu bytes)", 
323          comm, comm->src_proc->smx_host->name, comm->dst_proc->smx_host->name,
324          dst_buff_size);
325 }
326
327 /**
328  *  \brief Return the user data associated to the communication
329  *  \param comm The communication
330  *  \return the user data
331  */
332 void *SIMIX_communication_get_data(smx_comm_t comm)
333 {
334   return comm->data;
335 }
336
337 /******************************************************************************/
338 /*                        Synchronous Communication                           */
339 /******************************************************************************/
340 /**
341  *  \brief Put a send communication request in a rendez-vous point and waits for
342  *         its completion (blocking)
343  *  \param rdv The rendez-vous point
344  *  \param task_size The size of the communication action (for surf simulation)
345  *  \param rate The rate of the communication action (for surf)
346  *  \param timeout The timeout used for the waiting the completion 
347  *  \param src_buff The source buffer containing the message to be sent
348  *  \param src_buff_size The size of the source buffer
349  *  \param comm_ref The communication object used for the send  (useful if someone else wants to cancel this communication afterward)
350  *  \param data User data associated to the communication object
351  *  Throws:
352  *   - host_error if peer failed
353  *   - timeout_error if communication reached the timeout specified
354  *   - network_error if network failed or peer issued a timeout
355  */
356 void SIMIX_network_send(smx_rdv_t rdv, double task_size, double rate, 
357                         double timeout, void *src_buff, size_t src_buff_size,
358                         smx_comm_t *comm_ref, void *data)
359 {
360   *comm_ref = SIMIX_network_isend(rdv,task_size,rate,src_buff,src_buff_size,data);
361   SIMIX_network_wait(*comm_ref,timeout);
362 }
363
364 /**
365  *  \brief Put a receive communication request in a rendez-vous point and waits
366  *         for its completion (blocking)
367  *  \param rdv The rendez-vous point
368  *  \param timeout The timeout used for the waiting the completion 
369  *  \param dst_buff The destination buffer to copy the received message
370  *  \param src_buff_size The size of the destination buffer
371  *  \param comm_ref The communication object used for the send (useful if someone else wants to cancel this communication afterward)
372  *  Throws:
373  *   - host_error if peer failed
374  *   - timeout_error if communication reached the timeout specified
375  *   - network_error if network failed or peer issued a timeout
376  */
377 void SIMIX_network_recv(smx_rdv_t rdv, double timeout, void *dst_buff, 
378                         size_t *dst_buff_size, smx_comm_t *comm_ref)
379 {
380   *comm_ref = SIMIX_network_irecv(rdv,dst_buff,dst_buff_size);
381   SIMIX_network_wait(*comm_ref,timeout);
382 }
383
384 /******************************************************************************/
385 /*                        Asynchronous Communication                          */
386 /******************************************************************************/
387 smx_comm_t SIMIX_network_isend(smx_rdv_t rdv, double task_size, double rate,
388     void *src_buff, size_t src_buff_size, void *data)
389 {
390   smx_comm_t comm;
391
392   /* Look for communication request matching our needs.
393      If it is not found then create it and push it into the rendez-vous point */
394   comm = SIMIX_rdv_get_request(rdv, comm_recv);
395
396   if(!comm){
397     comm = SIMIX_communication_new(comm_send);
398     SIMIX_rdv_push(rdv, comm);
399   }
400
401   /* Setup the communication request */
402   comm->src_proc = SIMIX_process_self();
403   comm->task_size = task_size;
404   comm->rate = rate;
405   comm->src_buff = src_buff;
406   comm->src_buff_size = src_buff_size;
407   comm->data = data;
408
409   SIMIX_communication_start(comm);
410   return comm;
411 }
412
413 smx_comm_t SIMIX_network_irecv(smx_rdv_t rdv, void *dst_buff, size_t *dst_buff_size) {
414   smx_comm_t comm;
415
416   /* Look for communication request matching our needs.
417      If it is not found then create it and push it into the rendez-vous point */
418   comm = SIMIX_rdv_get_request(rdv, comm_send);
419
420   if(!comm){
421     comm = SIMIX_communication_new(comm_recv);
422     SIMIX_rdv_push(rdv, comm);
423   }
424
425   /* Setup communication request */
426   comm->dst_proc = SIMIX_process_self();
427   comm->dst_buff = dst_buff;
428   comm->dst_buff_size = dst_buff_size;
429
430   SIMIX_communication_start(comm);
431   return comm;
432 }
433
434 /** @brief blocks until the communication terminates or the timeout occurs */
435 void SIMIX_network_wait(smx_comm_t comm, double timeout) {
436   /* Wait for communication completion */
437   SIMIX_communication_wait_for_completion(comm, timeout);
438
439   SIMIX_communication_destroy(comm);
440 }
441
442 /** @Returns whether the (asynchronous) communication is done yet or not */
443 int SIMIX_network_test(smx_comm_t comm) {
444   return comm->sem?SIMIX_sem_would_block(comm->sem):0;
445 }
446
447 /** @brief wait for the completion of any communication of a set
448  *
449  *  @Returns the rank in the dynar of communication which finished; destroy it after identifying which one it is
450  */
451 unsigned int SIMIX_network_waitany(xbt_dynar_t comms) {
452   xbt_dynar_t sems = xbt_dynar_new(sizeof(smx_sem_t),NULL);
453   unsigned int cursor, found_comm=-1;
454   smx_comm_t comm,comm_finished=NULL;
455
456   xbt_dynar_foreach(comms,cursor,comm){
457     xbt_dynar_push(sems,&(comm->sem));
458   }
459
460   DEBUG1("Waiting for the completion of communication set %p", comms);
461
462   found_comm = SIMIX_sem_acquire_any(sems);
463   xbt_assert0(found_comm!=-1,"Cannot find which communication finished");
464   xbt_dynar_get_cpy(comms,found_comm,&comm_finished);
465
466   DEBUG1("Communication %p complete! Let's check for errors", comm_finished);
467
468   /* Make sure that everyone sleeping on that semaphore is awake,
469    * and that nobody will ever block on it */
470   SIMIX_sem_release_forever(comm_finished->sem);
471
472   /* Check for errors */
473   if(!SIMIX_host_get_state(SIMIX_host_self())){
474     if(comm_finished->rdv)
475       SIMIX_rdv_remove(comm_finished->rdv, comm_finished);
476     SIMIX_communication_destroy(comm_finished);
477     THROW0(host_error, 0, "Host failed");
478   } else if (SIMIX_action_get_state(comm_finished->act) == SURF_ACTION_FAILED){
479     SIMIX_communication_destroy(comm_finished);
480     THROW0(network_error, 0, "Link failure");
481   }
482
483   return found_comm;
484 }