Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
[mc] Initial support MC record/replay
[simgrid.git] / src / mc / mc_request.c
1 /* Copyright (c) 2008-2014. 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 "mc_private.h"
8
9 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(mc_request, mc,
10                                 "Logging specific to MC (request)");
11
12 static char *pointer_to_string(void *pointer);
13 static char *buff_size_to_string(size_t size);
14
15 int MC_request_depend(smx_simcall_t r1, smx_simcall_t r2)
16 {
17   if (mc_reduce_kind == e_mc_reduce_none)
18     return TRUE;
19
20   if (r1->issuer == r2->issuer)
21     return FALSE;
22
23   /* Wait with timeout transitions are not considered by the independance theorem, thus we consider them as dependant with all other transitions */
24   if ((r1->call == SIMCALL_COMM_WAIT && simcall_comm_wait__get__timeout(r1) > 0)
25       || (r2->call == SIMCALL_COMM_WAIT
26           && simcall_comm_wait__get__timeout(r2) > 0))
27     return TRUE;
28
29   if (r1->call == SIMCALL_COMM_ISEND && r2->call == SIMCALL_COMM_IRECV)
30     return FALSE;
31
32   if (r1->call == SIMCALL_COMM_IRECV && r2->call == SIMCALL_COMM_ISEND)
33     return FALSE;
34
35   if ((r1->call == SIMCALL_COMM_ISEND || r1->call == SIMCALL_COMM_IRECV)
36       && r2->call == SIMCALL_COMM_WAIT) {
37
38     smx_rdv_t rdv =
39         r1->call ==
40         SIMCALL_COMM_ISEND ? simcall_comm_isend__get__rdv(r1) :
41         simcall_comm_irecv__get__rdv(r1);
42
43     if (rdv != simcall_comm_wait__get__comm(r2)->comm.rdv_cpy
44         && simcall_comm_wait__get__timeout(r2) <= 0)
45       return FALSE;
46
47     if ((r1->issuer != simcall_comm_wait__get__comm(r2)->comm.src_proc)
48         && (r1->issuer != simcall_comm_wait__get__comm(r2)->comm.dst_proc)
49         && simcall_comm_wait__get__timeout(r2) <= 0)
50       return FALSE;
51
52     if ((r1->call == SIMCALL_COMM_ISEND)
53         && (simcall_comm_wait__get__comm(r2)->comm.type == SIMIX_COMM_SEND)
54         && (simcall_comm_wait__get__comm(r2)->comm.src_buff !=
55             simcall_comm_isend__get__src_buff(r1))
56         && simcall_comm_wait__get__timeout(r2) <= 0)
57       return FALSE;
58
59     if ((r1->call == SIMCALL_COMM_IRECV)
60         && (simcall_comm_wait__get__comm(r2)->comm.type == SIMIX_COMM_RECEIVE)
61         && (simcall_comm_wait__get__comm(r2)->comm.dst_buff !=
62             simcall_comm_irecv__get__dst_buff(r1))
63         && simcall_comm_wait__get__timeout(r2) <= 0)
64       return FALSE;
65   }
66
67   if ((r2->call == SIMCALL_COMM_ISEND || r2->call == SIMCALL_COMM_IRECV)
68       && r1->call == SIMCALL_COMM_WAIT) {
69
70     smx_rdv_t rdv =
71         r2->call ==
72         SIMCALL_COMM_ISEND ? simcall_comm_isend__get__rdv(r2) :
73         simcall_comm_irecv__get__rdv(r2);
74
75     if (rdv != simcall_comm_wait__get__comm(r1)->comm.rdv_cpy
76         && simcall_comm_wait__get__timeout(r1) <= 0)
77       return FALSE;
78
79     if ((r2->issuer != simcall_comm_wait__get__comm(r1)->comm.src_proc)
80         && (r2->issuer != simcall_comm_wait__get__comm(r1)->comm.dst_proc)
81         && simcall_comm_wait__get__timeout(r1) <= 0)
82       return FALSE;
83
84     if ((r2->call == SIMCALL_COMM_ISEND)
85         && (simcall_comm_wait__get__comm(r1)->comm.type == SIMIX_COMM_SEND)
86         && (simcall_comm_wait__get__comm(r1)->comm.src_buff !=
87             simcall_comm_isend__get__src_buff(r2))
88         && simcall_comm_wait__get__timeout(r1) <= 0)
89       return FALSE;
90
91     if ((r2->call == SIMCALL_COMM_IRECV)
92         && (simcall_comm_wait__get__comm(r1)->comm.type == SIMIX_COMM_RECEIVE)
93         && (simcall_comm_wait__get__comm(r1)->comm.dst_buff !=
94             simcall_comm_irecv__get__dst_buff(r2))
95         && simcall_comm_wait__get__timeout(r1) <= 0)
96       return FALSE;
97   }
98
99   /* FIXME: the following rule assumes that the result of the
100    * isend/irecv call is not stored in a buffer used in the
101    * test call. */
102   /*if(   (r1->call == SIMCALL_COMM_ISEND || r1->call == SIMCALL_COMM_IRECV)
103      &&  r2->call == SIMCALL_COMM_TEST)
104      return FALSE; */
105
106   /* FIXME: the following rule assumes that the result of the
107    * isend/irecv call is not stored in a buffer used in the
108    * test call.*/
109   /*if(   (r2->call == SIMCALL_COMM_ISEND || r2->call == SIMCALL_COMM_IRECV)
110      && r1->call == SIMCALL_COMM_TEST)
111      return FALSE; */
112
113   if (r1->call == SIMCALL_COMM_ISEND && r2->call == SIMCALL_COMM_ISEND
114       && simcall_comm_isend__get__rdv(r1) != simcall_comm_isend__get__rdv(r2))
115     return FALSE;
116
117   if (r1->call == SIMCALL_COMM_IRECV && r2->call == SIMCALL_COMM_IRECV
118       && simcall_comm_irecv__get__rdv(r1) != simcall_comm_irecv__get__rdv(r2))
119     return FALSE;
120
121   if (r1->call == SIMCALL_COMM_WAIT
122       && (r2->call == SIMCALL_COMM_WAIT || r2->call == SIMCALL_COMM_TEST)
123       && (simcall_comm_wait__get__comm(r1)->comm.src_proc == NULL
124           || simcall_comm_wait__get__comm(r1)->comm.dst_proc == NULL))
125     return FALSE;
126
127   if (r2->call == SIMCALL_COMM_WAIT
128       && (r1->call == SIMCALL_COMM_WAIT || r1->call == SIMCALL_COMM_TEST)
129       && (simcall_comm_wait__get__comm(r2)->comm.src_proc == NULL
130           || simcall_comm_wait__get__comm(r2)->comm.dst_proc == NULL))
131     return FALSE;
132
133   if (r1->call == SIMCALL_COMM_WAIT && r2->call == SIMCALL_COMM_WAIT
134       && simcall_comm_wait__get__comm(r1)->comm.src_buff ==
135       simcall_comm_wait__get__comm(r2)->comm.src_buff
136       && simcall_comm_wait__get__comm(r1)->comm.dst_buff ==
137       simcall_comm_wait__get__comm(r2)->comm.dst_buff)
138     return FALSE;
139
140   if (r1->call == SIMCALL_COMM_WAIT && r2->call == SIMCALL_COMM_WAIT
141       && simcall_comm_wait__get__comm(r1)->comm.src_buff != NULL
142       && simcall_comm_wait__get__comm(r1)->comm.dst_buff != NULL
143       && simcall_comm_wait__get__comm(r2)->comm.src_buff != NULL
144       && simcall_comm_wait__get__comm(r2)->comm.dst_buff != NULL
145       && simcall_comm_wait__get__comm(r1)->comm.dst_buff !=
146       simcall_comm_wait__get__comm(r2)->comm.src_buff
147       && simcall_comm_wait__get__comm(r1)->comm.dst_buff !=
148       simcall_comm_wait__get__comm(r2)->comm.dst_buff
149       && simcall_comm_wait__get__comm(r2)->comm.dst_buff !=
150       simcall_comm_wait__get__comm(r1)->comm.src_buff)
151     return FALSE;
152
153   if (r1->call == SIMCALL_COMM_TEST &&
154       (simcall_comm_test__get__comm(r1) == NULL
155        || simcall_comm_test__get__comm(r1)->comm.src_buff == NULL
156        || simcall_comm_test__get__comm(r1)->comm.dst_buff == NULL))
157     return FALSE;
158
159   if (r2->call == SIMCALL_COMM_TEST &&
160       (simcall_comm_test__get__comm(r2) == NULL
161        || simcall_comm_test__get__comm(r2)->comm.src_buff == NULL
162        || simcall_comm_test__get__comm(r2)->comm.dst_buff == NULL))
163     return FALSE;
164
165   if (r1->call == SIMCALL_COMM_TEST && r2->call == SIMCALL_COMM_WAIT
166       && simcall_comm_test__get__comm(r1)->comm.src_buff ==
167       simcall_comm_wait__get__comm(r2)->comm.src_buff
168       && simcall_comm_test__get__comm(r1)->comm.dst_buff ==
169       simcall_comm_wait__get__comm(r2)->comm.dst_buff)
170     return FALSE;
171
172   if (r1->call == SIMCALL_COMM_WAIT && r2->call == SIMCALL_COMM_TEST
173       && simcall_comm_wait__get__comm(r1)->comm.src_buff ==
174       simcall_comm_test__get__comm(r2)->comm.src_buff
175       && simcall_comm_wait__get__comm(r1)->comm.dst_buff ==
176       simcall_comm_test__get__comm(r2)->comm.dst_buff)
177     return FALSE;
178
179   if (r1->call == SIMCALL_COMM_WAIT && r2->call == SIMCALL_COMM_TEST
180       && simcall_comm_wait__get__comm(r1)->comm.src_buff != NULL
181       && simcall_comm_wait__get__comm(r1)->comm.dst_buff != NULL
182       && simcall_comm_test__get__comm(r2)->comm.src_buff != NULL
183       && simcall_comm_test__get__comm(r2)->comm.dst_buff != NULL
184       && simcall_comm_wait__get__comm(r1)->comm.dst_buff !=
185       simcall_comm_test__get__comm(r2)->comm.src_buff
186       && simcall_comm_wait__get__comm(r1)->comm.dst_buff !=
187       simcall_comm_test__get__comm(r2)->comm.dst_buff
188       && simcall_comm_test__get__comm(r2)->comm.dst_buff !=
189       simcall_comm_wait__get__comm(r1)->comm.src_buff)
190     return FALSE;
191
192   if (r1->call == SIMCALL_COMM_TEST && r2->call == SIMCALL_COMM_WAIT
193       && simcall_comm_test__get__comm(r1)->comm.src_buff != NULL
194       && simcall_comm_test__get__comm(r1)->comm.dst_buff != NULL
195       && simcall_comm_wait__get__comm(r2)->comm.src_buff != NULL
196       && simcall_comm_wait__get__comm(r2)->comm.dst_buff != NULL
197       && simcall_comm_test__get__comm(r1)->comm.dst_buff !=
198       simcall_comm_wait__get__comm(r2)->comm.src_buff
199       && simcall_comm_test__get__comm(r1)->comm.dst_buff !=
200       simcall_comm_wait__get__comm(r2)->comm.dst_buff
201       && simcall_comm_wait__get__comm(r2)->comm.dst_buff !=
202       simcall_comm_test__get__comm(r1)->comm.src_buff)
203     return FALSE;
204
205
206   return TRUE;
207 }
208
209 static char *pointer_to_string(void *pointer)
210 {
211
212   if (XBT_LOG_ISENABLED(mc_request, xbt_log_priority_verbose))
213     return bprintf("%p", pointer);
214
215   return xbt_strdup("(verbose only)");
216 }
217
218 static char *buff_size_to_string(size_t buff_size)
219 {
220
221   if (XBT_LOG_ISENABLED(mc_request, xbt_log_priority_verbose))
222     return bprintf("%zu", buff_size);
223
224   return xbt_strdup("(verbose only)");
225 }
226
227
228 char *MC_request_to_string(smx_simcall_t req, int value)
229 {
230   char *type = NULL, *args = NULL, *str = NULL, *p = NULL, *bs = NULL;
231   smx_synchro_t act = NULL;
232   size_t size = 0;
233
234   switch (req->call) {
235   case SIMCALL_COMM_ISEND:
236     type = xbt_strdup("iSend");
237     p = pointer_to_string(simcall_comm_isend__get__src_buff(req));
238     bs = buff_size_to_string(simcall_comm_isend__get__src_buff_size(req));
239     if (req->issuer->smx_host)
240       args =
241           bprintf("src=(%lu)%s (%s), buff=%s, size=%s", req->issuer->pid,
242                   MSG_host_get_name(req->issuer->smx_host), req->issuer->name,
243                   p, bs);
244     else
245       args =
246           bprintf("src=(%lu)%s, buff=%s, size=%s", req->issuer->pid,
247                   req->issuer->name, p, bs);
248     break;
249   case SIMCALL_COMM_IRECV:
250     size =
251         simcall_comm_irecv__get__dst_buff_size(req) ?
252         *simcall_comm_irecv__get__dst_buff_size(req) : 0;
253     type = xbt_strdup("iRecv");
254     p = pointer_to_string(simcall_comm_irecv__get__dst_buff(req));
255     bs = buff_size_to_string(size);
256     if (req->issuer->smx_host)
257       args =
258           bprintf("dst=(%lu)%s (%s), buff=%s, size=%s", req->issuer->pid,
259                   MSG_host_get_name(req->issuer->smx_host), req->issuer->name,
260                   p, bs);
261     else
262       args =
263           bprintf("dst=(%lu)%s, buff=%s, size=%s", req->issuer->pid,
264                   req->issuer->name, p, bs);
265     break;
266   case SIMCALL_COMM_WAIT:
267     act = simcall_comm_wait__get__comm(req);
268     if (value == -1) {
269       type = xbt_strdup("WaitTimeout");
270       p = pointer_to_string(act);
271       args = bprintf("comm=%s", p);
272     } else {
273       type = xbt_strdup("Wait");
274       p = pointer_to_string(act);
275       args = bprintf("comm=%s [(%lu)%s (%s)-> (%lu)%s (%s)]", p,
276                      act->comm.src_proc ? act->comm.src_proc->pid : 0,
277                      act->comm.src_proc ? MSG_host_get_name(act->comm.src_proc->
278                                                             smx_host) : "",
279                      act->comm.src_proc ? act->comm.src_proc->name : "",
280                      act->comm.dst_proc ? act->comm.dst_proc->pid : 0,
281                      act->comm.dst_proc ? MSG_host_get_name(act->comm.dst_proc->
282                                                             smx_host) : "",
283                      act->comm.dst_proc ? act->comm.dst_proc->name : "");
284     }
285     break;
286   case SIMCALL_COMM_TEST:
287     act = simcall_comm_test__get__comm(req);
288     if (act->comm.src_proc == NULL || act->comm.dst_proc == NULL) {
289       type = xbt_strdup("Test FALSE");
290       p = pointer_to_string(act);
291       args = bprintf("comm=%s", p);
292     } else {
293       type = xbt_strdup("Test TRUE");
294       p = pointer_to_string(act);
295       args = bprintf("comm=%s [(%lu)%s (%s) -> (%lu)%s (%s)]", p,
296                      act->comm.src_proc->pid, act->comm.src_proc->name,
297                      MSG_host_get_name(act->comm.src_proc->smx_host),
298                      act->comm.dst_proc->pid, act->comm.dst_proc->name,
299                      MSG_host_get_name(act->comm.dst_proc->smx_host));
300     }
301     break;
302
303   case SIMCALL_COMM_WAITANY:
304     type = xbt_strdup("WaitAny");
305     if (!xbt_dynar_is_empty(simcall_comm_waitany__get__comms(req))) {
306       p = pointer_to_string(xbt_dynar_get_as
307                             (simcall_comm_waitany__get__comms(req), value,
308                              smx_synchro_t));
309       args =
310           bprintf("comm=%s (%d of %lu)", p, value + 1,
311                   xbt_dynar_length(simcall_comm_waitany__get__comms(req)));
312     } else {
313       args = bprintf("comm at idx %d", value);
314     }
315     break;
316
317   case SIMCALL_COMM_TESTANY:
318     if (value == -1) {
319       type = xbt_strdup("TestAny FALSE");
320       args = xbt_strdup("-");
321     } else {
322       type = xbt_strdup("TestAny");
323       args =
324           bprintf("(%d of %lu)", value + 1,
325                   xbt_dynar_length(simcall_comm_testany__get__comms(req)));
326     }
327     break;
328
329   case SIMCALL_MC_SNAPSHOT:
330     type = xbt_strdup("MC_SNAPSHOT");
331     args = NULL;
332     break;
333
334   case SIMCALL_MC_COMPARE_SNAPSHOTS:
335     type = xbt_strdup("MC_COMPARE_SNAPSHOTS");
336     args = NULL;
337     break;
338
339   case SIMCALL_MC_RANDOM:
340     type = xbt_strdup("MC_RANDOM");
341     args = bprintf("%d", value);
342     break;
343
344   default:
345     THROW_UNIMPLEMENTED;
346   }
347
348   if (args != NULL) {
349     str =
350         bprintf("[(%lu)%s (%s)] %s(%s)", req->issuer->pid,
351                 MSG_host_get_name(req->issuer->smx_host), req->issuer->name,
352                 type, args);
353   } else {
354     str =
355         bprintf("[(%lu)%s (%s)] %s ", req->issuer->pid,
356                 MSG_host_get_name(req->issuer->smx_host), req->issuer->name,
357                 type);
358   }
359
360   xbt_free(args);
361   xbt_free(type);
362   xbt_free(p);
363   xbt_free(bs);
364   return str;
365 }
366
367 unsigned int MC_request_testany_fail(smx_simcall_t req)
368 {
369   unsigned int cursor;
370   smx_synchro_t action;
371
372   xbt_dynar_foreach(simcall_comm_testany__get__comms(req), cursor, action) {
373     if (action->comm.src_proc && action->comm.dst_proc)
374       return FALSE;
375   }
376
377   return TRUE;
378 }
379
380 int MC_request_is_enabled_by_idx(smx_simcall_t req, unsigned int idx)
381 {
382   smx_synchro_t act;
383
384   switch (req->call) {
385
386   case SIMCALL_COMM_WAIT:
387     /* FIXME: check also that src and dst processes are not suspended */
388     act = simcall_comm_wait__get__comm(req);
389     return (act->comm.src_proc && act->comm.dst_proc);
390     break;
391
392   case SIMCALL_COMM_WAITANY:
393     act =
394         xbt_dynar_get_as(simcall_comm_waitany__get__comms(req), idx,
395                          smx_synchro_t);
396     return (act->comm.src_proc && act->comm.dst_proc);
397     break;
398
399   case SIMCALL_COMM_TESTANY:
400     act =
401         xbt_dynar_get_as(simcall_comm_testany__get__comms(req), idx,
402                          smx_synchro_t);
403     return (act->comm.src_proc && act->comm.dst_proc);
404     break;
405
406   default:
407     return TRUE;
408   }
409 }
410
411 int MC_process_is_enabled(smx_process_t process)
412 {
413   return MC_request_is_enabled(&process->simcall);
414 }
415
416 char *MC_request_get_dot_output(smx_simcall_t req, int value)
417 {
418
419   char *str = NULL, *label = NULL;
420   smx_synchro_t act = NULL;
421
422   switch (req->call) {
423   case SIMCALL_COMM_ISEND:
424     if (req->issuer->smx_host)
425       label =
426           bprintf("[(%lu)%s] iSend", req->issuer->pid,
427                   MSG_host_get_name(req->issuer->smx_host));
428     else
429       label = bprintf("[(%lu)] iSend", req->issuer->pid);
430     break;
431
432   case SIMCALL_COMM_IRECV:
433     if (req->issuer->smx_host)
434       label =
435           bprintf("[(%lu)%s] iRecv", req->issuer->pid,
436                   MSG_host_get_name(req->issuer->smx_host));
437     else
438       label = bprintf("[(%lu)] iRecv", req->issuer->pid);
439     break;
440
441   case SIMCALL_COMM_WAIT:
442     act = simcall_comm_wait__get__comm(req);
443     if (value == -1) {
444       if (req->issuer->smx_host)
445         label =
446             bprintf("[(%lu)%s] WaitTimeout", req->issuer->pid,
447                     MSG_host_get_name(req->issuer->smx_host));
448       else
449         label = bprintf("[(%lu)] WaitTimeout", req->issuer->pid);
450     } else {
451       if (req->issuer->smx_host)
452         label =
453             bprintf("[(%lu)%s] Wait [(%lu)->(%lu)]", req->issuer->pid,
454                     MSG_host_get_name(req->issuer->smx_host),
455                     act->comm.src_proc ? act->comm.src_proc->pid : 0,
456                     act->comm.dst_proc ? act->comm.dst_proc->pid : 0);
457       else
458         label =
459             bprintf("[(%lu)] Wait [(%lu)->(%lu)]", req->issuer->pid,
460                     act->comm.src_proc ? act->comm.src_proc->pid : 0,
461                     act->comm.dst_proc ? act->comm.dst_proc->pid : 0);
462     }
463     break;
464
465   case SIMCALL_COMM_TEST:
466     act = simcall_comm_test__get__comm(req);
467     if (act->comm.src_proc == NULL || act->comm.dst_proc == NULL) {
468       if (req->issuer->smx_host)
469         label =
470             bprintf("[(%lu)%s] Test FALSE", req->issuer->pid,
471                     MSG_host_get_name(req->issuer->smx_host));
472       else
473         label = bprintf("[(%lu)] Test FALSE", req->issuer->pid);
474     } else {
475       if (req->issuer->smx_host)
476         label =
477             bprintf("[(%lu)%s] Test TRUE", req->issuer->pid,
478                     MSG_host_get_name(req->issuer->smx_host));
479       else
480         label = bprintf("[(%lu)] Test TRUE", req->issuer->pid);
481     }
482     break;
483
484   case SIMCALL_COMM_WAITANY:
485     if (req->issuer->smx_host)
486       label =
487           bprintf("[(%lu)%s] WaitAny [%d of %lu]", req->issuer->pid,
488                   MSG_host_get_name(req->issuer->smx_host), value + 1,
489                   xbt_dynar_length(simcall_comm_waitany__get__comms(req)));
490     else
491       label =
492           bprintf("[(%lu)] WaitAny [%d of %lu]", req->issuer->pid, value + 1,
493                   xbt_dynar_length(simcall_comm_waitany__get__comms(req)));
494     break;
495
496   case SIMCALL_COMM_TESTANY:
497     if (value == -1) {
498       if (req->issuer->smx_host)
499         label =
500             bprintf("[(%lu)%s] TestAny FALSE", req->issuer->pid,
501                     MSG_host_get_name(req->issuer->smx_host));
502       else
503         label = bprintf("[(%lu)] TestAny FALSE", req->issuer->pid);
504     } else {
505       if (req->issuer->smx_host)
506         label =
507             bprintf("[(%lu)%s] TestAny TRUE [%d of %lu]", req->issuer->pid,
508                     MSG_host_get_name(req->issuer->smx_host), value + 1,
509                     xbt_dynar_length(simcall_comm_testany__get__comms(req)));
510       else
511         label =
512             bprintf("[(%lu)] TestAny TRUE [%d of %lu]", req->issuer->pid,
513                     value + 1,
514                     xbt_dynar_length(simcall_comm_testany__get__comms(req)));
515     }
516     break;
517
518   case SIMCALL_MC_RANDOM:
519     if (req->issuer->smx_host)
520       label =
521           bprintf("[(%lu)%s] MC_RANDOM (%d)", req->issuer->pid,
522                   MSG_host_get_name(req->issuer->smx_host), value);
523     else
524       label = bprintf("[(%lu)] MC_RANDOM (%d)", req->issuer->pid, value);
525     break;
526
527   case SIMCALL_MC_SNAPSHOT:
528     if (req->issuer->smx_host)
529       label =
530           bprintf("[(%lu)%s] MC_SNAPSHOT", req->issuer->pid,
531                   MSG_host_get_name(req->issuer->smx_host));
532     else
533       label = bprintf("[(%lu)] MC_SNAPSHOT", req->issuer->pid);
534     break;
535
536   case SIMCALL_MC_COMPARE_SNAPSHOTS:
537     if (req->issuer->smx_host)
538       label =
539           bprintf("[(%lu)%s] MC_COMPARE_SNAPSHOTS", req->issuer->pid,
540                   MSG_host_get_name(req->issuer->smx_host));
541     else
542       label = bprintf("[(%lu)] MC_COMPARE_SNAPSHOTS", req->issuer->pid);
543     break;
544
545   default:
546     THROW_UNIMPLEMENTED;
547   }
548
549   str =
550       bprintf("label = \"%s\", color = %s, fontcolor = %s", label,
551               colors[req->issuer->pid - 1], colors[req->issuer->pid - 1]);
552   xbt_free(label);
553   return str;
554
555 }