Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
ec047a4eee4adc404305c80ec2ab4cb92a98e964
[simgrid.git] / src / gras / Msg / msg.c
1 /* $Id$ */
2
3 /* messaging - Function related to messaging (code shared between RL and SG)*/
4
5 /* Copyright (c) 2003, 2004 Martin Quinson. All rights reserved.            */
6
7 /* This program is free software; you can redistribute it and/or modify it
8  * under the terms of the license (GNU LGPL) which comes with this package. */
9
10 #include "xbt/ex.h"
11 #include "xbt/ex_interface.h"
12 #include "gras/Msg/msg_private.h"
13 #include "gras/Virtu/virtu_interface.h"
14 #include "gras/DataDesc/datadesc_interface.h"
15 #include "gras/Transport/transport_interface.h" /* gras_select */
16 #include "portable.h" /* execinfo when available to propagate exceptions */
17
18 #ifndef MIN
19 #define MIN(a,b) ((a) < (b) ? (a) : (b))
20 #endif
21
22 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(gras_msg,gras,"High level messaging");
23
24 xbt_set_t _gras_msgtype_set = NULL;
25 static char *make_namev(const char *name, short int ver);
26 char _GRAS_header[6];
27 const char *e_gras_msg_kind_names[e_gras_msg_kind_count]=
28   {"UNKNOWN","ONEWAY","RPC call","RPC answer","RPC error"};
29
30 /*
31  * Creating procdata for this module
32  */
33 static void *gras_msg_procdata_new() {
34    gras_msg_procdata_t res = xbt_new(s_gras_msg_procdata_t,1);
35    
36    res->name = xbt_strdup("gras_msg");
37    res->name_len = 0;
38    res->msg_queue = xbt_dynar_new(sizeof(s_gras_msg_t),   NULL);
39    res->cbl_list  = xbt_dynar_new(sizeof(gras_cblist_t *),gras_cbl_free);
40    res->timers    = xbt_dynar_new(sizeof(s_gras_timer_t), NULL);
41    
42    return (void*)res;
43 }
44
45 /*
46  * Freeing procdata for this module
47  */
48 static void gras_msg_procdata_free(void *data) {
49    gras_msg_procdata_t res = (gras_msg_procdata_t)data;
50    
51    xbt_dynar_free(&( res->msg_queue ));
52    xbt_dynar_free(&( res->cbl_list ));
53    xbt_dynar_free(&( res->timers ));
54
55    free(res->name);
56    free(res);
57 }
58
59 /*
60  * Module registration
61  */
62 int gras_msg_libdata_id;
63 void gras_msg_register() {
64    gras_msg_libdata_id = gras_procdata_add("gras_msg",gras_msg_procdata_new, gras_msg_procdata_free);
65 }
66
67 /*
68  * Initialize this submodule.
69  */
70 void gras_msg_init(void) {
71   /* only initialize once */
72   if (_gras_msgtype_set != NULL)
73     return;
74
75   VERB0("Initializing Msg");
76   
77   _gras_msgtype_set = xbt_set_new();
78
79   memcpy(_GRAS_header,"GRAS", 4);
80   _GRAS_header[4]=GRAS_PROTOCOL_VERSION;
81   _GRAS_header[5]=(char)GRAS_THISARCH;
82 }
83
84 /*
85  * Finalize the msg module
86  */
87 void
88 gras_msg_exit(void) {
89   VERB0("Exiting Msg");
90   xbt_set_free(&_gras_msgtype_set);
91 }
92
93 /*
94  * Reclamed memory
95  */
96 void gras_msgtype_free(void *t) {
97   gras_msgtype_t msgtype=(gras_msgtype_t)t;
98   if (msgtype) {
99     free(msgtype->name);
100     free(msgtype);
101   }
102 }
103
104 /**
105  * make_namev:
106  *
107  * Returns the versionned name of the message. If the version is 0, that's 
108  * the name unchanged. Pay attention to this before free'ing the result.
109  */
110 static char *make_namev(const char *name, short int ver) {
111   char *namev;
112
113   if (!ver)
114     return (char *)name;
115
116   namev = (char*)xbt_malloc(strlen(name)+2+3+1);
117
118   if (namev)
119       sprintf(namev,"%s_v%d",name,ver);
120
121   return namev;
122 }
123
124 /* Internal function doing the crude work of registering messages */
125 void 
126 gras_msgtype_declare_ext(const char           *name,
127                          short int             version,
128                          e_gras_msg_kind_t     kind, 
129                          gras_datadesc_type_t  payload_request,
130                          gras_datadesc_type_t  payload_answer) {
131
132   gras_msgtype_t msgtype=NULL;
133   char *namev=make_namev(name,version);
134   volatile int found = 0;
135   xbt_ex_t e;    
136   
137   TRY {
138     msgtype = (gras_msgtype_t)xbt_set_get_by_name(_gras_msgtype_set,namev);
139     found = 1;
140   } CATCH(e) {
141     if (e.category != not_found_error)
142       RETHROW;
143     xbt_ex_free(e);
144   }
145
146   if (found) {
147     VERB2("Re-register version %d of message '%s' (same kind & payload, ignored).",
148           version, name);
149     xbt_assert3(msgtype->kind == kind,
150                 "Message %s re-registered as a %s (it was known as a %s)",
151                 namev,e_gras_msg_kind_names[kind],e_gras_msg_kind_names[msgtype->kind]);
152     xbt_assert3(!gras_datadesc_type_cmp(msgtype->ctn_type, payload_request),
153                  "Message %s re-registred with another payload (%s was %s)",
154                  namev,gras_datadesc_get_name(payload_request),
155                  gras_datadesc_get_name(msgtype->ctn_type));
156
157     xbt_assert3(!gras_datadesc_type_cmp(msgtype->answer_type, payload_answer),
158              "Message %s re-registred with another answer payload (%s was %s)",
159                  namev,gras_datadesc_get_name(payload_answer),
160                  gras_datadesc_get_name(msgtype->answer_type));
161
162     return ; /* do really ignore it */
163
164   }
165
166   VERB4("Register version %d of message '%s' "
167         "(payload: %s; answer payload: %s).", 
168         version, name, gras_datadesc_get_name(payload_request),
169         gras_datadesc_get_name(payload_answer));    
170
171   msgtype = xbt_new(s_gras_msgtype_t,1);
172   msgtype->name = (namev == name ? strdup(name) : namev);
173   msgtype->name_len = strlen(namev);
174   msgtype->version = version;
175   msgtype->kind = kind;
176   msgtype->ctn_type = payload_request;
177   msgtype->answer_type = payload_answer;
178
179   xbt_set_add(_gras_msgtype_set, (xbt_set_elm_t)msgtype,
180                &gras_msgtype_free);
181 }
182
183
184 /** @brief declare a new message type of the given name. It only accepts the given datadesc as payload
185  *
186  * @param name: name as it should be used for logging messages (must be uniq)
187  * @param payload: datadescription of the payload
188  */
189 void gras_msgtype_declare(const char           *name,
190                           gras_datadesc_type_t  payload) {
191    gras_msgtype_declare_ext(name, 0, e_gras_msg_kind_oneway, payload, NULL);
192 }
193
194
195
196 /** @brief declare a new versionned message type of the given name and payload
197  *
198  * @param name: name as it should be used for logging messages (must be uniq)
199  * @param version: something like versionning symbol
200  * @param payload: datadescription of the payload
201  *
202  * Registers a message to the GRAS mechanism. Use this version instead of 
203  * gras_msgtype_declare when you change the semantic or syntax of a message and
204  * want your programs to be able to deal with both versions. Internally, each
205  * will be handled as an independent message type, so you can register 
206  * differents for each of them.
207  */
208 void
209 gras_msgtype_declare_v(const char           *name,
210                        short int             version,
211                        gras_datadesc_type_t  payload) {
212  
213    gras_msgtype_declare_ext(name, version, 
214                             e_gras_msg_kind_oneway, payload, NULL);
215 }
216
217 /** @brief retrieve an existing message type from its name. */
218 gras_msgtype_t gras_msgtype_by_name (const char *name) {
219   return gras_msgtype_by_namev(name,0);
220 }
221
222 /** @brief retrieve an existing message type from its name and version. */
223 gras_msgtype_t gras_msgtype_by_namev(const char      *name,
224                                      short int        version) {
225   gras_msgtype_t res = NULL;
226   char *namev = make_namev(name,version); 
227   xbt_ex_t e;
228
229   TRY {
230     res = (gras_msgtype_t)xbt_set_get_by_name(_gras_msgtype_set, namev);
231   } CATCH(e) {
232     xbt_ex_free(e);
233     THROW1(not_found_error,0,"No registred message of that name: %s",name);
234   }
235   if (name != namev) 
236     free(namev);
237   
238   return res;
239 }
240 /** @brief retrieve an existing message type from its name and version. */
241 gras_msgtype_t gras_msgtype_by_id(int id) {
242   return (gras_msgtype_t)xbt_set_get_by_id(_gras_msgtype_set, id);
243 }
244
245 /** \brief Waits for a message to come in over a given socket. 
246  *
247  * @param timeout: How long should we wait for this message.
248  * @param msgt_want: type of awaited msg (or NULL if I'm enclined to accept any message)
249  * @param expe_want: awaited expeditot (match on hostname, not port; NULL if not relevant)
250  * @param filter: function returning true or false when passed a payload. Messages for which it returns false are not selected. (NULL if not relevant)
251  * @param filter_ctx: context passed as second argument of the filter (a pattern to match?)
252  * @param[out] msg_got: where to write the message we got
253  *
254  * Every message of another type received before the one waited will be queued
255  * and used by subsequent call to this function or gras_msg_handle().
256  */
257
258 void
259 gras_msg_wait_ext(double           timeout,    
260
261                   gras_msgtype_t   msgt_want,
262                   gras_socket_t    expe_want,
263                   gras_msg_filter_t filter,
264                   void             *filter_ctx, 
265
266                   gras_msg_t       msg_got) {
267
268   s_gras_msg_t msg;
269   double start, now;
270   gras_msg_procdata_t pd=(gras_msg_procdata_t)gras_libdata_by_id(gras_msg_libdata_id);
271   int cpt;
272
273   xbt_assert0(msg_got,"msg_got is an output parameter");
274
275   VERB1("Waiting for message '%s'",msgt_want?msgt_want->name:"(any)");
276
277   start = now = gras_os_time();
278
279   xbt_dynar_foreach(pd->msg_queue,cpt,msg){
280     if ( (   !msgt_want || (msg.type->code == msgt_want->code)) 
281          && (!expe_want || (!strcmp( gras_socket_peer_name(msg.expe),
282                                      gras_socket_peer_name(expe_want))))
283          && (!filter || filter(&msg,filter_ctx))) {
284
285       memcpy(msg_got,&msg,sizeof(s_gras_msg_t));
286       xbt_dynar_cursor_rm(pd->msg_queue, &cpt);
287       VERB0("The waited message was queued");
288       return;
289     }
290   }
291
292   while (1) {
293     memset(&msg,sizeof(msg),0);
294
295     msg.expe = gras_trp_select(timeout ? timeout - now + start : 0);
296     gras_msg_recv(msg.expe, &msg);
297     DEBUG0("Got a message from the socket");
298
299     if ( (   !msgt_want || (msg.type->code == msgt_want->code)) 
300          && (!expe_want || (!strcmp( gras_socket_peer_name(msg.expe),
301                                      gras_socket_peer_name(expe_want))))
302          && (!filter || filter(&msg,filter_ctx))) {
303
304       memcpy(msg_got,&msg,sizeof(s_gras_msg_t));
305       DEBUG0("Message matches expectations. Use it.");
306       return;
307     }
308     DEBUG0("Message does not match expectations. Queue it.");
309
310     /* not expected msg type. Queue it for later */
311     xbt_dynar_push(pd->msg_queue,&msg);
312     
313     now=gras_os_time();
314     if (now - start + 0.001 > timeout) {
315       THROW1(timeout_error,  now-start+0.001-timeout,
316              "Timeout while waiting for msg '%s'",
317              msgt_want?msgt_want->name:"(any)");
318     }
319   }
320
321   THROW_IMPOSSIBLE;
322 }
323 /** \brief Waits for a message to come in over a given socket. 
324  *
325  * @param timeout: How long should we wait for this message.
326  * @param msgt_want: type of awaited msg
327  * @param[out] expeditor: where to create a socket to answer the incomming message
328  * @param[out] payload: where to write the payload of the incomming message
329  * @return the error code (or no_error).
330  *
331  * Every message of another type received before the one waited will be queued
332  * and used by subsequent call to this function or gras_msg_handle().
333  */
334 void
335 gras_msg_wait(double           timeout,    
336               gras_msgtype_t   msgt_want,
337               gras_socket_t   *expeditor,
338               void            *payload) {
339   s_gras_msg_t msg;
340
341   gras_msg_wait_ext(timeout,
342                     msgt_want, NULL,      NULL, NULL,
343                     &msg);
344
345   if (msgt_want->ctn_type) {
346     xbt_assert1(payload,
347                 "Message type '%s' convey a payload you must accept",
348                 msgt_want->name);
349   } else {
350     xbt_assert1(!payload,
351                 "No payload was declared for message type '%s'",
352                 msgt_want->name);
353   }
354
355   if (payload) {
356     memcpy(payload,msg.payl,msg.payl_size);
357     free(msg.payl);
358   }
359
360   if (expeditor)
361     *expeditor = msg.expe;
362 }
363
364 static int gras_msg_wait_or_filter(gras_msg_t msg, void *ctx) {
365   xbt_dynar_t dyn=(xbt_dynar_t)ctx;
366   int res =  xbt_dynar_member(dyn,msg->type);
367   if (res)
368     VERB1("Got matching message (type=%s)",msg->type->name);
369   else
370     VERB0("Got message not matching our expectations");
371   return res;
372 }
373 /** \brief Waits for a message to come in over a given socket. 
374  *
375  * @param timeout: How long should we wait for this message.
376  * @param msgt_want: a dynar containing all accepted message type
377  * @param[out] ctx: the context of received message (in case it's a RPC call we want to answer to)
378  * @param[out] msgt_got: indice in the dynar of the type of the received message 
379  * @param[out] payload: where to write the payload of the incomming message
380  * @return the error code (or no_error).
381  *
382  * Every message of a type not in the accepted list received before the one
383  * waited will be queued and used by subsequent call to this function or
384  * gras_msg_handle().
385  *
386  * If you are interested in the context, pass the address of a s_gras_msg_cb_ctx_t variable.
387  */
388 void gras_msg_wait_or(double         timeout,
389                       xbt_dynar_t    msgt_want,
390                       gras_msg_cb_ctx_t *ctx,
391                       int           *msgt_got,
392                       void          *payload) {
393   s_gras_msg_t msg;
394
395   VERB1("Wait %f seconds for several message types",timeout);
396   gras_msg_wait_ext(timeout,
397                     NULL, NULL,      
398                     &gras_msg_wait_or_filter, (void*)msgt_want,
399                     &msg);
400
401   if (msg.type->ctn_type) {
402     xbt_assert1(payload,
403                 "Message type '%s' convey a payload you must accept",
404                 msg.type->name);
405   } /* don't check the other side since some of the types may have a payload */
406
407   if (payload && msg.type->ctn_type) {
408     memcpy(payload,msg.payl,msg.payl_size);
409     free(msg.payl);
410   }
411
412   if (ctx) 
413     *ctx=gras_msg_cb_ctx_new(msg.expe,msg.type,msg.ID,60);
414
415   if (msgt_got)
416     *msgt_got = xbt_dynar_search(msgt_want,msg.type);
417 }
418
419
420 /** \brief Send the data pointed by \a payload as a message of type
421  * \a msgtype to the peer \a sock */
422 void
423 gras_msg_send(gras_socket_t   sock,
424               gras_msgtype_t  msgtype,
425               void           *payload) {
426
427   if (msgtype->ctn_type) {
428     xbt_assert1(payload,
429                 "Message type '%s' convey a payload you must provide",
430                 msgtype->name);
431   } else {
432     xbt_assert1(!payload,
433                 "No payload was declared for message type '%s'",
434                 msgtype->name);
435   }
436
437   DEBUG2("Send a oneway message of type '%s'. Payload=%p",
438          msgtype->name,payload);
439   gras_msg_send_ext(sock, e_gras_msg_kind_oneway,0, msgtype, payload);
440   VERB2("Sent a oneway message of type '%s'. Payload=%p",
441         msgtype->name,payload);
442 }
443
444 /** @brief Handle all messages arriving within the given period
445  *
446  * @param timeOut: How long to wait for incoming messages (in seconds)
447  * @return the error code (or no_error).
448  *
449  * Messages are dealed with just like gras_msg_handle() would do. The
450  * difference is that gras_msg_handle() handles at most one message (or wait up
451  * to timeout second when no message arrives) while this function handles any
452  * amount of messages, and lasts the given period in any case.
453  */
454 void 
455 gras_msg_handleall(double period) {
456   xbt_ex_t e;
457   double begin=gras_os_time();
458   double now;
459
460   do {
461     now=gras_os_time();
462     TRY{
463       gras_msg_handle(period - now + begin);
464     } CATCH(e) {
465       if (e.category != timeout_error) 
466         RETHROW0("Error while waiting for messages: %s");
467       xbt_ex_free(e);
468     }
469   } while (now - begin < period);
470 }
471 /** @brief Handle an incomming message or timer (or wait up to \a timeOut seconds)
472  *
473  * @param timeOut: How long to wait for incoming messages (in seconds)
474  * @return the error code (or no_error).
475  *
476  * Messages are passed to the callbacks. See also gras_msg_handleall().
477  */
478 void
479 gras_msg_handle(double timeOut) {
480   
481   double          untiltimer;
482    
483   int             cpt, ran_ok;
484
485   s_gras_msg_t    msg;
486
487   gras_msg_procdata_t pd=(gras_msg_procdata_t)gras_libdata_by_id(gras_msg_libdata_id);
488   gras_cblist_t  *list=NULL;
489   gras_msg_cb_t       cb;
490   s_gras_msg_cb_ctx_t ctx;
491    
492   int timerexpected, timeouted;
493   xbt_ex_t e;
494
495   VERB1("Handling message within the next %.2fs",timeOut);
496   
497   untiltimer = gras_msg_timer_handle();
498   DEBUG1("Next timer in %f sec", untiltimer);
499   if (untiltimer == 0.0) {
500      /* A timer was already elapsed and handled */
501      return;
502   }
503   if (untiltimer != -1.0) {
504      timerexpected = 1;
505      timeOut = MIN(timeOut, untiltimer);
506   } else {
507      timerexpected = 0;
508   }
509    
510   /* get a message (from the queue or from the net) */
511   timeouted = 0;
512   if (xbt_dynar_length(pd->msg_queue)) {
513     DEBUG0("Get a message from the queue");
514     xbt_dynar_shift(pd->msg_queue,&msg);
515   } else {
516     TRY {
517       msg.expe = gras_trp_select(timeOut);
518     } CATCH(e) {
519       if (e.category != timeout_error)
520         RETHROW;
521       xbt_ex_free(e);
522       timeouted = 1;
523     }
524
525     if (!timeouted) {
526       TRY {
527         /* FIXME: if not the right kind, queue it and recall ourself or goto >:-) */
528         gras_msg_recv(msg.expe, &msg);
529         DEBUG1("Received a msg from the socket kind:%s",
530                e_gras_msg_kind_names[msg.kind]);
531     
532       } CATCH(e) {
533         RETHROW4("Error while receiving a message on select()ed socket %p to [%s]%s:%d: %s",
534                  msg.expe,
535                  gras_socket_peer_proc(msg.expe),gras_socket_peer_name(msg.expe),
536                  gras_socket_peer_port(msg.expe));
537       }
538     }
539   }
540
541   if (timeouted) {
542      if (timerexpected) {
543           
544         /* A timer elapsed before the arrival of any message even if we select()ed a bit */
545         untiltimer = gras_msg_timer_handle();
546         if (untiltimer == 0.0) {
547           /* we served a timer, we're done */
548           return;
549         } else {
550            xbt_assert1(untiltimer>0, "Negative timer (%f). I'm 'puzzeled'", untiltimer);
551            WARN1("No timer elapsed, in contrary to expectations (next in %f sec)",
552                   untiltimer);
553            THROW1(timeout_error,0,
554                   "No timer elapsed, in contrary to expectations (next in %f sec)",
555                   untiltimer);
556         }
557         
558      } else {
559         /* select timeouted, and no timer elapsed. Nothing to do */
560        THROW1(timeout_error, 0, "No new message or timer (delay was %f)",
561               timeOut);
562      }
563      
564   }
565    
566   /* A message was already there or arrived in the meanwhile. handle it */
567   xbt_dynar_foreach(pd->cbl_list,cpt,list) {
568     if (list->id == msg.type->code) {
569       break;
570     } else {
571       list=NULL;
572     }
573   }
574   if (!list) {
575     INFO3("No callback for the incomming '%s' message (from %s:%d). Discarded.", 
576           msg.type->name,
577           gras_socket_peer_name(msg.expe),gras_socket_peer_port(msg.expe));
578     WARN0("FIXME: gras_datadesc_free not implemented => leaking the payload");
579     return;
580   }
581   
582   ctx.expeditor = msg.expe;
583   ctx.ID = msg.ID;
584   ctx.msgtype = msg.type;
585
586   switch (msg.kind) {
587   case e_gras_msg_kind_oneway:
588   case e_gras_msg_kind_rpccall:
589     ran_ok=0;
590     TRY {
591       xbt_dynar_foreach(list->cbs,cpt,cb) { 
592         if (!ran_ok) {
593           DEBUG4("Use the callback #%d (@%p) for incomming msg %s (payload_size=%d)",
594                 cpt+1,cb,msg.type->name,msg.payl_size);
595           if ((*cb)(&ctx,msg.payl)) {
596             /* cb handled the message */
597             free(msg.payl);
598             ran_ok = 1;
599           }
600         }
601       }
602     } CATCH(e) {
603       free(msg.payl);
604       if (msg.type->kind == e_gras_msg_kind_rpccall) {
605         /* The callback raised an exception, propagate it on the network */
606         if (!e.remote) { /* the exception is born on this machine */
607           e.host = (char*)gras_os_myname();
608           xbt_ex_setup_backtrace(&e);
609         } 
610         VERB5("Propagate %s exception ('%s') from '%s' RPC cb back to %s:%d",
611               (e.remote ? "remote" : "local"),
612               e.msg,
613               msg.type->name,
614               gras_socket_peer_name(msg.expe),
615               gras_socket_peer_port(msg.expe));
616         gras_msg_send_ext(msg.expe, e_gras_msg_kind_rpcerror,
617                           msg.ID, msg.type, &e);
618         xbt_ex_free(e);
619         ran_ok=1;
620       } else {
621         RETHROW0("Callback raised an exception: %s");
622       }
623     }
624     if (!ran_ok)
625       THROW1(mismatch_error,0,
626              "Message '%s' refused by all registered callbacks", msg.type->name);
627     /* FIXME: gras_datadesc_free not implemented => leaking the payload */
628     break;
629
630
631   case e_gras_msg_kind_rpcanswer:
632     INFO1("Unexpected RPC answer discarded (type: %s)", msg.type->name);
633     WARN0("FIXME: gras_datadesc_free not implemented => leaking the payload");
634     return;
635
636   case e_gras_msg_kind_rpcerror:
637     INFO1("Unexpected RPC error discarded (type: %s)", msg.type->name);
638     WARN0("FIXME: gras_datadesc_free not implemented => leaking the payload");
639     return;
640
641   default:
642     THROW1(unknown_error,0,
643            "Cannot handle messages of kind %d yet",msg.type->kind);
644   }
645
646 }
647
648 void
649 gras_cbl_free(void *data){
650   gras_cblist_t *list=*(void**)data;
651   if (list) {
652     xbt_dynar_free(&( list->cbs ));
653     free(list);
654   }
655 }
656
657 /** \brief Bind the given callback to the given message type 
658  *
659  * Several callbacks can be attached to a given message type. The lastly added one will get the message first, and 
660  * if it returns false, the message will be passed to the second one. 
661  * And so on until one of the callbacks accepts the message.
662  */
663 void
664 gras_cb_register(gras_msgtype_t msgtype,
665                  gras_msg_cb_t cb) {
666   gras_msg_procdata_t pd=(gras_msg_procdata_t)gras_libdata_by_id(gras_msg_libdata_id);
667   gras_cblist_t *list=NULL;
668   int cpt;
669
670   DEBUG2("Register %p as callback to '%s'",cb,msgtype->name);
671
672   /* search the list of cb for this message on this host (creating if NULL) */
673   xbt_dynar_foreach(pd->cbl_list,cpt,list) {
674     if (list->id == msgtype->code) {
675       break;
676     } else {
677       list=NULL;
678     }
679   }
680   if (!list) {
681     /* First cb? Create room */
682     list = xbt_new(gras_cblist_t,1);
683     list->id = msgtype->code;
684     list->cbs = xbt_dynar_new(sizeof(gras_msg_cb_t), NULL);
685     xbt_dynar_push(pd->cbl_list,&list);
686   }
687
688   /* Insert the new one into the set */
689   xbt_dynar_insert_at(list->cbs,0,&cb);
690 }
691
692 /** \brief Unbind the given callback from the given message type */
693 void
694 gras_cb_unregister(gras_msgtype_t msgtype,
695                    gras_msg_cb_t cb) {
696
697   gras_msg_procdata_t pd=(gras_msg_procdata_t)gras_libdata_by_id(gras_msg_libdata_id);
698   gras_cblist_t *list;
699   gras_msg_cb_t cb_cpt;
700   int cpt;
701   int found = 0;
702
703   /* search the list of cb for this message on this host */
704   xbt_dynar_foreach(pd->cbl_list,cpt,list) {
705     if (list->id == msgtype->code) {
706       break;
707     } else {
708       list=NULL;
709     }
710   }
711
712   /* Remove it from the set */
713   if (list) {
714     xbt_dynar_foreach(list->cbs,cpt,cb_cpt) {
715       if (cb == cb_cpt) {
716         xbt_dynar_cursor_rm(list->cbs, &cpt);
717         found = 1;
718       }
719     }
720   }
721   if (!found)
722     VERB1("Ignoring removal of unexisting callback to msg id %d",
723           msgtype->code);
724 }
725
726 /** \brief Retrieve the expeditor of the message */
727 gras_socket_t gras_msg_cb_ctx_from(gras_msg_cb_ctx_t ctx) {
728   return ctx->expeditor;
729 }
730 /* \brief Creates a new message exchange context (user should never have to) */
731 gras_msg_cb_ctx_t gras_msg_cb_ctx_new(gras_socket_t expe, 
732                                       gras_msgtype_t msgtype,
733                                       unsigned long int ID,
734                                       double timeout) {
735   gras_msg_cb_ctx_t res=xbt_new(s_gras_msg_cb_ctx_t,1);
736   res->expeditor = expe;
737   res->msgtype = msgtype;
738   res->ID = ID;
739   res->timeout = timeout;
740   return res;
741 }
742 /* \brief Frees a message exchange context 
743  *
744  * This function is mainly useful with \ref gras_msg_wait_or, ie seldom.
745  */
746 void gras_msg_cb_ctx_free(gras_msg_cb_ctx_t ctx) {
747   free(ctx);
748 }