Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
an hexadecimal printer I sometime use for debugging
[simgrid.git] / src / gras / DataDesc / ddt_create.c
1 /* $Id$ */
2
3 /* ddt_new - creation/deletion of datatypes structs (private to this module)*/
4
5 /* Copyright (c) 2003 Olivier Aumage.                                       */
6 /* Copyright (c) 2003, 2004 Martin Quinson.                                 */
7 /* All rights reserved.                                                     */
8
9 /* This program is free software; you can redistribute it and/or modify it
10  * under the terms of the license (GNU LGPL) which comes with this package. */
11
12 #include "xbt/misc.h" /* min()/max() */
13 #include "gras/DataDesc/datadesc_private.h"
14
15 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(ddt_create,datadesc,"Creating new datadescriptions");
16
17 /**
18  * gras_ddt_freev:
19  *
20  * gime that memory back, dude. I mean it.
21  */
22 void gras_ddt_freev(void *ddt) {
23   gras_datadesc_type_t type= (gras_datadesc_type_t)ddt;
24   
25   if (type) {
26     gras_datadesc_free(&type);
27   }
28 }
29
30 static gras_datadesc_type_t gras_ddt_new(const char *name) {
31   gras_datadesc_type_t res;
32
33   XBT_IN1("(%s)",name);
34   res=xbt_new0(s_gras_datadesc_type_t,1);
35
36   res->name = (char*)strdup(name);
37   res->name_len = strlen(name);
38   res->cycle = 0;
39       
40   xbt_set_add(gras_datadesc_set_local,
41                (xbt_set_elm_t)res,&gras_ddt_freev);
42   XBT_OUT;
43   return res;
44 }
45
46 /**
47  * This returns NULL when no type of this name can be found
48  */
49 gras_datadesc_type_t gras_datadesc_by_name(const char *name) {
50
51   gras_datadesc_type_t type;
52
53   XBT_IN1("(%s)",name);
54   if (xbt_set_get_by_name(gras_datadesc_set_local,
55                            name,(xbt_set_elm_t*)&type) == no_error) {
56     XBT_OUT;
57     return type;
58   } else { 
59     XBT_OUT;
60     return NULL;
61   }
62 }
63
64 /**
65  * Retrieve a type from its code
66  */
67 xbt_error_t gras_datadesc_by_id(long int              code,
68                                  gras_datadesc_type_t *type) {
69   XBT_IN;
70   return xbt_set_get_by_id(gras_datadesc_set_local,
71                             code,(xbt_set_elm_t*)type);
72 }
73
74 /**
75  * Create a new scalar and give a pointer to it 
76  */
77 gras_datadesc_type_t 
78   gras_datadesc_scalar(const char                      *name,
79                        gras_ddt_scalar_type_t           type,
80                        enum e_gras_dd_scalar_encoding   encoding) {
81
82   gras_datadesc_type_t res;
83   long int arch;
84
85   XBT_IN;
86   res = gras_datadesc_by_name(name);
87   if (res) {
88     xbt_assert1(res->category_code == e_gras_datadesc_type_cat_scalar,
89                  "Redefinition of type %s does not match", name);
90     xbt_assert1(res->category.scalar_data.encoding == encoding,
91                  "Redefinition of type %s does not match", name);
92     xbt_assert1(res->category.scalar_data.type == type,
93                  "Redefinition of type %s does not match", name);
94     VERB1("Discarding redefinition of %s",name);
95     return res;
96   }
97   res = gras_ddt_new(name);
98
99   for (arch = 0; arch < gras_arch_count; arch ++) {
100     res->size[arch]         = gras_arches[arch].sizeofs[type];
101     res->alignment[arch]    = gras_arches[arch].boundaries[type];
102     res->aligned_size[arch] = aligned(res->size[arch], res->alignment[arch]);
103   }
104
105   res->category_code                 = e_gras_datadesc_type_cat_scalar;
106   res->category.scalar_data.encoding = encoding;
107   res->category.scalar_data.type     = type;
108   XBT_OUT;
109   
110   return res;
111 }
112
113
114 /** Frees one struct or union field */
115 void gras_dd_cat_field_free(void *f) {
116   gras_dd_cat_field_t field = *(gras_dd_cat_field_t *)f;
117   XBT_IN;
118   if (field) {
119     if (field->name) 
120       free(field->name);
121     free(field);
122   }
123   XBT_OUT;
124 }
125
126 /** \brief Declare a new structure description */
127 gras_datadesc_type_t 
128   gras_datadesc_struct(const char            *name) {
129
130   gras_datadesc_type_t res;
131   long int arch;
132   
133   XBT_IN1("(%s)",name);
134   res = gras_datadesc_by_name(name);
135   if (res) {
136     /* FIXME: Check that field redefinition matches */
137     xbt_assert1(res->category_code == e_gras_datadesc_type_cat_struct,
138                  "Redefinition of type %s does not match", name);
139     VERB1("Discarding redefinition of %s",name);
140     return res;
141   }
142   res = gras_ddt_new(name);
143
144   for (arch=0; arch<gras_arch_count; arch ++) {
145     res->size[arch] = 0;
146     res->alignment[arch] = 0;
147     res->aligned_size[arch] = 0;
148   }
149   res->category_code = e_gras_datadesc_type_cat_struct;
150   res->category.struct_data.fields = 
151        xbt_dynar_new(sizeof(gras_dd_cat_field_t),
152                       &gras_dd_cat_field_free);
153
154   XBT_OUT;
155   return res;
156 }
157
158 /** \brief Append a new field to a structure description */
159 void
160 gras_datadesc_struct_append(gras_datadesc_type_t struct_type,
161                             const char          *name,
162                             gras_datadesc_type_t field_type) {
163
164   gras_dd_cat_field_t field;
165   int arch;
166
167   xbt_assert2(field_type,
168                "Cannot add the field '%s' into struct '%s': its type is NULL. Typo in get_by_name?",
169                name,struct_type->name);
170   XBT_IN3("(%s %s.%s;)",field_type->name,struct_type->name,name);
171   if (struct_type->category.struct_data.closed) {
172     VERB1("Ignoring request to add field to struct %s (closed. Redefinition?)",
173           struct_type->name);
174     return;
175   }
176
177   xbt_assert1(field_type->size != 0,
178                "Cannot add a dynamically sized field in structure %s",
179                struct_type->name);
180     
181   field=xbt_new(s_gras_dd_cat_field_t,1);
182   field->name   = (char*)strdup(name);
183
184   DEBUG0("----------------");
185   DEBUG3("PRE s={size=%ld,align=%ld,asize=%ld}",
186          struct_type->size[GRAS_THISARCH], 
187          struct_type->alignment[GRAS_THISARCH], 
188          struct_type->aligned_size[GRAS_THISARCH]);
189      
190      
191   for (arch=0; arch<gras_arch_count; arch ++) {
192     field->offset[arch] = aligned(struct_type->size[arch],
193                                   field_type->alignment[arch]);
194
195     struct_type->size[arch] = field->offset[arch] + field_type->size[arch];
196     struct_type->alignment[arch] = max(struct_type->alignment[arch],
197                                        field_type->alignment[arch]);
198     struct_type->aligned_size[arch] = aligned(struct_type->size[arch],
199                                               struct_type->alignment[arch]);
200   }
201   field->type   = field_type;
202   field->pre    = NULL;
203   field->post   = NULL;
204   
205   xbt_dynar_push(struct_type->category.struct_data.fields, &field);
206
207   DEBUG3("Push a %s into %s at offset %ld.",
208          field_type->name, struct_type->name,field->offset[GRAS_THISARCH]);
209   DEBUG3("  f={size=%ld,align=%ld,asize=%ld}",
210          field_type->size[GRAS_THISARCH], 
211          field_type->alignment[GRAS_THISARCH], 
212          field_type->aligned_size[GRAS_THISARCH]);
213   DEBUG3("  s={size=%ld,align=%ld,asize=%ld}",
214          struct_type->size[GRAS_THISARCH], 
215          struct_type->alignment[GRAS_THISARCH], 
216          struct_type->aligned_size[GRAS_THISARCH]);
217   XBT_OUT;
218 }
219
220 /** \brief Close a structure description
221  * 
222  * No new field can be added afterward, and it is mandatory to close the structure before using it.
223  */
224 void
225 gras_datadesc_struct_close(gras_datadesc_type_t struct_type) {
226   XBT_IN;
227   struct_type->category.struct_data.closed = 1;
228   DEBUG4("structure %s closed. size=%ld,align=%ld,asize=%ld",
229          struct_type->name,
230          struct_type->size[GRAS_THISARCH], 
231          struct_type->alignment[GRAS_THISARCH], 
232          struct_type->aligned_size[GRAS_THISARCH]);
233 }
234
235 /**
236  * gras_datadesc_cycle_set:
237  * 
238  * Tell GRAS that the pointers of the type described by ddt may present
239  * some loop, and that the cycle detection mechanism is needed.
240  *
241  * Note that setting this option when not needed have a rather bad effect 
242  * on the performance (several times slower on big data).
243  */
244 void
245 gras_datadesc_cycle_set(gras_datadesc_type_t ddt) {
246   ddt->cycle = 1;
247 }
248
249 /**
250  * gras_datadesc_cycle_unset:
251  * 
252  * Tell GRAS that the pointers of the type described by ddt do not present
253  * any loop and that cycle detection mechanism are not needed.
254  * (default)
255  */
256 void
257 gras_datadesc_cycle_unset(gras_datadesc_type_t ddt) {
258   ddt->cycle = 0;
259 }
260
261 /** \brief Declare a new union description */
262 gras_datadesc_type_t 
263   gras_datadesc_union(const char                   *name,
264                       gras_datadesc_type_cb_int_t   selector) {
265
266   gras_datadesc_type_t res;
267   int arch;
268
269   XBT_IN1("(%s)",name);
270   xbt_assert0(selector,
271                "Attempt to creat an union without field_count function");
272
273   res = gras_datadesc_by_name(name);
274   if (res) {
275     /* FIXME: Check that field redefinition matches */
276     xbt_assert1(res->category_code == e_gras_datadesc_type_cat_union,
277                  "Redefinition of type %s does not match", name);
278     xbt_assert1(res->category.union_data.selector == selector,
279                  "Redefinition of type %s does not match", name);
280     VERB1("Discarding redefinition of %s",name);
281     return res;
282   }
283
284   res = gras_ddt_new(name);
285
286   for (arch=0; arch<gras_arch_count; arch ++) {
287      res->size[arch] = 0;
288      res->alignment[arch] = 0;
289      res->aligned_size[arch] = 0;
290   }
291
292   res->category_code            = e_gras_datadesc_type_cat_union;
293   res->category.union_data.fields =
294      xbt_dynar_new(sizeof(gras_dd_cat_field_t*),
295                     &gras_dd_cat_field_free);
296   res->category.union_data.selector = selector;
297
298   return res;
299 }
300
301 /** \brief Append a new field to an union description */
302 void gras_datadesc_union_append(gras_datadesc_type_t  union_type,
303                                 const char           *name,
304                                 gras_datadesc_type_t  field_type) {
305
306   gras_dd_cat_field_t field;
307   int arch;
308
309   XBT_IN3("(%s %s.%s;)",field_type->name,union_type->name,name);
310   xbt_assert1(field_type->size != 0,
311                "Cannot add a dynamically sized field in union %s",
312                union_type->name);
313
314   if (union_type->category.union_data.closed) {
315     VERB1("Ignoring request to add field to union %s (closed)",
316            union_type->name);
317     return;
318   }
319     
320   field=xbt_new0(s_gras_dd_cat_field_t,1);
321
322   field->name   = (char*)strdup(name);
323   field->type   = field_type;
324   /* All offset are left to 0 in an union */
325   
326   xbt_dynar_push(union_type->category.union_data.fields, &field);
327
328   for (arch=0; arch<gras_arch_count; arch ++) {
329     union_type->size[arch] = max(union_type->size[arch],
330                                  field_type->size[arch]);
331     union_type->alignment[arch] = max(union_type->alignment[arch],
332                                       field_type->alignment[arch]);
333     union_type->aligned_size[arch] = aligned(union_type->size[arch],
334                                              union_type->alignment[arch]);
335   }
336 }
337
338
339 /** \brief Close an union description 
340  *
341  * No new field can be added afterward, and it is mandatory to close the union before using it.
342  */
343 void
344 gras_datadesc_union_close(gras_datadesc_type_t union_type) {
345    union_type->category.union_data.closed = 1;
346 }
347
348 /** \brief Declare a new type being a reference to the one passed in arg */
349 gras_datadesc_type_t 
350   gras_datadesc_ref(const char           *name,
351                     gras_datadesc_type_t  referenced_type) {
352
353   gras_datadesc_type_t res;
354   gras_datadesc_type_t pointer_type = gras_datadesc_by_name("data pointer");
355   int arch;
356
357   XBT_IN1("(%s)",name);
358   res = gras_datadesc_by_name(name);
359   if (res) {
360     xbt_assert1(res->category_code == e_gras_datadesc_type_cat_ref,
361                  "Redefinition of %s does not match",name);
362     xbt_assert1(res->category.ref_data.type == referenced_type,
363                  "Redefinition of %s does not match",name);
364     xbt_assert1(res->category.ref_data.selector == NULL,
365                  "Redefinition of %s does not match",name);
366     VERB1("Discarding redefinition of %s",name);
367     return res;
368   }
369
370   res = gras_ddt_new(name);
371
372   xbt_assert0(pointer_type, "Cannot get the description of data pointer");
373       
374   for (arch=0; arch<gras_arch_count; arch ++){
375     res->size[arch] = pointer_type->size[arch];
376     res->alignment[arch] = pointer_type->alignment[arch];
377     res->aligned_size[arch] = pointer_type->aligned_size[arch];
378   }
379   
380   res->category_code              = e_gras_datadesc_type_cat_ref;
381   res->category.ref_data.type     = referenced_type;
382   res->category.ref_data.selector = NULL;
383
384   return res;
385 }
386 /** \brief Declare a new type being a generic reference.
387  * 
388  * The callback passed in argument is to be used to select which type is currently used.
389  * So, when GRAS wants to send a generic reference, it passes the current data to the selector 
390  * callback and expects it to return the type description to use. 
391  */
392 gras_datadesc_type_t 
393   gras_datadesc_ref_generic(const char                *name,
394                             gras_datadesc_selector_t   selector) {
395
396   gras_datadesc_type_t res;
397   gras_datadesc_type_t pointer_type = gras_datadesc_by_name("data pointer");
398   int arch;
399
400   XBT_IN1("(%s)",name);
401   res = gras_datadesc_by_name(name);
402   if (res) {
403     xbt_assert1(res->category_code == e_gras_datadesc_type_cat_ref,
404                  "Redefinition of type %s does not match", name);
405     xbt_assert1(res->category.ref_data.type == NULL,
406                  "Redefinition of type %s does not match", name);
407     xbt_assert1(res->category.ref_data.selector == selector,
408                  "Redefinition of type %s does not match", name);
409     VERB1("Discarding redefinition of %s",name);
410     return res;
411   }
412   res = gras_ddt_new(name);
413
414   xbt_assert0(pointer_type, "Cannot get the description of data pointer");
415       
416   for (arch=0; arch<gras_arch_count; arch ++) {
417     res->size[arch] = pointer_type->size[arch];
418     res->alignment[arch] = pointer_type->alignment[arch];
419     res->aligned_size[arch] = pointer_type->aligned_size[arch];
420   }
421
422   res->category_code            = e_gras_datadesc_type_cat_ref;
423
424   res->category.ref_data.type     = NULL;
425   res->category.ref_data.selector = selector;
426
427   return res;
428 }
429
430 /** \brief Declare a new type being an array of fixed size and content */
431 gras_datadesc_type_t 
432   gras_datadesc_array_fixed(const char           *name,
433                             gras_datadesc_type_t  element_type,
434                             long int              fixed_size) {
435
436   gras_datadesc_type_t res;
437   int arch;
438
439   XBT_IN1("(%s)",name);
440   res = gras_datadesc_by_name(name);
441   if (res) {
442     xbt_assert1(res->category_code == e_gras_datadesc_type_cat_array,
443                  "Redefinition of type %s does not match", name);
444      
445     if (res->category.array_data.type != element_type) {
446        ERROR1("Redefinition of type %s does not match: array elements differ", name);
447        gras_datadesc_type_dump(res->category.array_data.type);
448        gras_datadesc_type_dump(element_type);
449     }
450      
451     xbt_assert1(res->category.array_data.fixed_size == fixed_size,
452                  "Redefinition of type %s does not match", name);
453     xbt_assert1(res->category.array_data.dynamic_size == NULL,
454                  "Redefinition of type %s does not match", name);
455     VERB1("Discarding redefinition of %s",name);
456
457     return res;
458   }
459   res = gras_ddt_new(name);
460
461   xbt_assert1(fixed_size > 0, "'%s' is a array of null fixed size",name);
462   for (arch=0; arch<gras_arch_count; arch ++) {
463     res->size[arch] = fixed_size * element_type->aligned_size[arch];
464     res->alignment[arch] = element_type->alignment[arch];
465     res->aligned_size[arch] = res->size[arch];
466   }  
467
468   res->category_code            = e_gras_datadesc_type_cat_array;
469
470   res->category.array_data.type         = element_type;
471   res->category.array_data.fixed_size   = fixed_size;
472   res->category.array_data.dynamic_size = NULL;
473
474   return res;
475 }
476
477 /** \brief Declare a new type being an array of fixed size, but accepting several content types. */
478 gras_datadesc_type_t gras_datadesc_array_dyn(const char                 *name,
479                                              gras_datadesc_type_t        element_type,
480                                              gras_datadesc_type_cb_int_t dynamic_size) {
481
482   gras_datadesc_type_t res;
483   int arch;
484
485   XBT_IN1("(%s)",name);
486   xbt_assert1(dynamic_size,
487                "'%s' is a dynamic array without size discriminant",
488                name);
489
490   res = gras_datadesc_by_name(name);
491   if (res) {
492     xbt_assert1(res->category_code == e_gras_datadesc_type_cat_array,
493                  "Redefinition of type %s does not match", name);
494     xbt_assert1(res->category.array_data.type == element_type,
495                  "Redefinition of type %s does not match", name);
496     xbt_assert1(res->category.array_data.fixed_size == 0,
497                  "Redefinition of type %s does not match", name);
498     xbt_assert1(res->category.array_data.dynamic_size == dynamic_size,
499                  "Redefinition of type %s does not match", name);
500     VERB1("Discarding redefinition of %s",name);
501
502     return res;
503   }
504
505   res = gras_ddt_new(name);
506
507   for (arch=0; arch<gras_arch_count; arch ++) {
508     res->size[arch] = 0; /* make sure it indicates "dynamic" */
509     res->alignment[arch] = element_type->alignment[arch];
510     res->aligned_size[arch] = 0; /*FIXME: That was so in GS, but looks stupid*/
511   }
512
513   res->category_code            = e_gras_datadesc_type_cat_array;
514
515   res->category.array_data.type         = element_type;
516   res->category.array_data.fixed_size   = 0;
517   res->category.array_data.dynamic_size = dynamic_size;
518
519   return res;
520 }
521
522 /** \brief Declare a new type being an array which size can be found with \ref gras_cbps_i_pop 
523  * 
524  * Most of the time, you want to include a reference in your structure which
525  * is a pointer to a dynamic array whose size is fixed by another field of 
526  * your structure.
527  *
528  * This case pops up so often that this function was created to take care of
529  * this case. It creates a dynamic array type whose size is poped from the 
530  * current cbps, and then create a reference to it.
531  *
532  * The name of the created datatype will be the name of the element type, with
533  * '[]*' appended to it.
534  *
535  * Then to use it, you just have to make sure that your structure pre-callback
536  * does push the size of the array in the cbps (using #gras_cbps_i_push), and 
537  * you are set. 
538  *
539  * But be remember that this is a stack. If you have two different pop_arr, you
540  * should push the second one first, so that the first one is on the top of the 
541  * list when the first field gets transfered.
542  *
543  */
544 gras_datadesc_type_t 
545   gras_datadesc_ref_pop_arr(gras_datadesc_type_t element_type) {
546
547   gras_datadesc_type_t res;
548   char *name=(char*)xbt_malloc(strlen(element_type->name) + 4);
549
550   sprintf(name,"%s[]",element_type->name);
551
552   res = gras_datadesc_array_dyn(name,element_type,
553                                 gras_datadesc_cb_pop);
554
555   sprintf(name,"%s[]*",element_type->name);
556   res = gras_datadesc_ref(name,res);
557
558   free(name);
559
560   return res;
561 }
562 xbt_error_t
563 gras_datadesc_import_nws(const char           *name,
564                          const DataDescriptor *desc,
565                          unsigned long         howmany,
566                /* OUT */ gras_datadesc_type_t *dst) {
567   RAISE_UNIMPLEMENTED;
568 }
569
570 /**
571  * (useful to push the sizes of the upcoming arrays, for example)
572  */
573 void gras_datadesc_cb_send (gras_datadesc_type_t          type,
574                             gras_datadesc_type_cb_void_t  send) {
575   type->send = send;
576 }
577 /**
578  * (useful to put the function pointers to the rigth value, for example)
579  */
580 void gras_datadesc_cb_recv(gras_datadesc_type_t          type,
581                            gras_datadesc_type_cb_void_t  recv) {
582   type->recv = recv;
583 }
584 /*
585  * gras_dd_find_field:
586  * 
587  * Returns the type descriptor of the given field. Abort on error.
588  */
589 static gras_datadesc_type_t 
590   gras_dd_find_field(gras_datadesc_type_t  type,
591                      const char           *field_name) {
592    xbt_dynar_t         field_array;
593    
594    gras_dd_cat_field_t  field=NULL;
595    int                  field_num;
596    
597    if (type->category_code == e_gras_datadesc_type_cat_union) {
598       field_array = type->category.union_data.fields;
599    } else if (type->category_code == e_gras_datadesc_type_cat_struct) {
600       field_array = type->category.struct_data.fields;
601    } else {
602       ERROR2("%s (%p) is not a struct nor an union. There is no field.", type->name,(void*)type);
603       xbt_abort();
604    }
605    xbt_dynar_foreach(field_array,field_num,field) {
606       if (!strcmp(field_name,field->name)) {
607          return field->type;
608       }
609    }
610    ERROR2("No field nammed %s in %s",field_name,type->name);
611    xbt_abort();
612
613 }
614                                   
615 /**
616  * The given datadesc must be a struct or union (abort if not).
617  * (useful to push the sizes of the upcoming arrays, for example)
618  */
619 void gras_datadesc_cb_field_send (gras_datadesc_type_t          type,
620                                   const char                   *field_name,
621                                   gras_datadesc_type_cb_void_t  send) {
622    
623    gras_datadesc_type_t sub_type=gras_dd_find_field(type,field_name);   
624    sub_type->send = send;
625 }
626
627 /**
628  * The value, which must be an int, unsigned int, long int or unsigned long int
629  * is pushed to the stacks of sizes and can then be retrieved with 
630  * \ref gras_datadesc_ref_pop_arr or directly with \ref gras_cbps_i_pop.
631  */
632 void gras_datadesc_cb_field_push (gras_datadesc_type_t  type,
633                                   const char           *field_name) {
634    
635    gras_datadesc_type_t sub_type=gras_dd_find_field(type,field_name);
636    if (!strcmp("int",sub_type->name)) {
637       sub_type->send = gras_datadesc_cb_push_int;
638    } else if (!strcmp("unsigned int",sub_type->name)) {
639       sub_type->send = gras_datadesc_cb_push_uint;
640    } else if (!strcmp("long int",sub_type->name)) {
641       sub_type->send = gras_datadesc_cb_push_lint;
642    } else if (!strcmp("unsigned long int",sub_type->name)) {
643       sub_type->send = gras_datadesc_cb_push_ulint;
644    } else {
645       ERROR1("Field %s is not an int, unsigned int, long int neither unsigned long int",
646              sub_type->name);
647       xbt_abort();
648    }
649 }
650 /**
651  * The given datadesc must be a struct or union (abort if not).
652  * (useful to put the function pointers to the right value, for example)
653  */
654 void gras_datadesc_cb_field_recv(gras_datadesc_type_t          type,
655                                  const char                   *field_name,
656                                  gras_datadesc_type_cb_void_t  recv) {
657    
658    gras_datadesc_type_t sub_type=gras_dd_find_field(type,field_name);   
659    sub_type->recv = recv;
660 }
661
662 /*
663  * Free a datadesc. Should only be called at xbt_exit. 
664  */
665 void gras_datadesc_free(gras_datadesc_type_t *type) {
666
667   DEBUG1("Let's free ddt %s",(*type)->name);
668   
669   switch ((*type)->category_code) {
670   case e_gras_datadesc_type_cat_scalar:
671   case e_gras_datadesc_type_cat_ref:
672   case e_gras_datadesc_type_cat_array:
673     /* nothing to free in there */
674     break;
675     
676   case e_gras_datadesc_type_cat_ignored:
677     if ((*type)->category.ignored_data.free_func) {
678       (*type)->category.ignored_data.free_func
679         ((*type)->category.ignored_data.default_value);
680     }
681     break;
682     
683   case e_gras_datadesc_type_cat_struct:
684     xbt_dynar_free(&( (*type)->category.struct_data.fields ));
685     break;
686     
687   case e_gras_datadesc_type_cat_union:
688     xbt_dynar_free(&( (*type)->category.union_data.fields ));
689     break;
690     
691   default:
692     /* datadesc was invalid. Killing it is like euthanasy, I guess */
693     break;
694   }
695   free((*type)->name);
696   free(*type);
697   type=NULL;
698 }
699
700 /**
701  * gras_datadesc_type_cmp:
702  *
703  * Compares two datadesc types with the same semantic than strcmp.
704  *
705  * This comparison does not take the set headers into account (name and ID), 
706  * but only the payload (actual type description).
707  */
708 int gras_datadesc_type_cmp(const gras_datadesc_type_t d1,
709                            const gras_datadesc_type_t d2) {
710   int ret,cpt;
711   gras_dd_cat_field_t field1,field2;
712   gras_datadesc_type_t field_desc_1,field_desc_2;
713
714   if (d1 == d2) return 0; /* easy optimization */
715
716   if (!d1 && d2) {
717     DEBUG0("ddt_cmp: !d1 && d2 => 1");
718     return 1;
719   }
720   if (!d1 && !d2) {
721     DEBUG0("ddt_cmp: !d1 && !d2 => 0");
722     return 0;
723   }
724   if ( d1 && !d2) {
725     DEBUG0("ddt_cmp: d1 && !d2 => -1");
726     return -1;
727   }
728
729   for (cpt=0; cpt<gras_arch_count; cpt++) {
730     if (d1->size[cpt] != d2->size[cpt]) {
731       DEBUG5("ddt_cmp: %s->size=%ld  !=  %s->size=%ld (on %s)",
732              d1->name,d1->size[cpt],d2->name,d2->size[cpt],
733              gras_arches[cpt].name);
734       return d1->size[cpt] >  d2->size[cpt] ? 1 : -1;
735     }
736
737     if (d1->alignment[cpt] != d2->alignment[cpt]) {
738       DEBUG5("ddt_cmp: %s->alignment=%ld  !=  %s->alignment=%ld (on %s)",
739              d1->name,d1->alignment[cpt],d2->name,d2->alignment[cpt],
740              gras_arches[cpt].name);
741       return d1->alignment[cpt] > d2->alignment[cpt] ? 1 : -1;
742     }
743
744     if (d1->aligned_size[cpt] != d2->aligned_size[cpt]) {
745       DEBUG5("ddt_cmp: %s->aligned_size=%ld  !=  %s->aligned_size=%ld (on %s)",
746              d1->name,d1->aligned_size[cpt],d2->name,d2->aligned_size[cpt],
747              gras_arches[cpt].name);
748       return d1->aligned_size[cpt] > d2->aligned_size[cpt] ? 1 : -1;
749     }
750   }
751
752   if (d1->category_code != d2->category_code) {
753     DEBUG4("ddt_cmp: %s->cat=%s  !=  %s->cat=%s",
754            d1->name,gras_datadesc_cat_names[d1->category_code],
755            d2->name,gras_datadesc_cat_names[d2->category_code]);
756     return d1->category_code > d2->category_code ? 1 : -1;
757   }
758
759   if (d1->send != d2->send) {
760     DEBUG4("ddt_cmp: %s->send=%p  !=  %s->send=%p",
761            d1->name,(void*)d1->send, d2->name,(void*)d2->send);
762     return 1; /* ISO C forbids ordered comparisons of pointers to functions */
763   }
764
765   if (d1->recv != d2->recv) {
766     DEBUG4("ddt_cmp: %s->recv=%p  !=  %s->recv=%p",
767            d1->name,(void*)d1->recv, d2->name,(void*)d2->recv);
768     return 1; /* ISO C forbids ordered comparisons of pointers to functions */
769   }
770
771   switch (d1->category_code) {
772   case e_gras_datadesc_type_cat_scalar:
773     if (d1->category.scalar_data.encoding != d2->category.scalar_data.encoding)
774       return d1->category.scalar_data.encoding > d2->category.scalar_data.encoding ? 1 : -1 ;
775     break;
776     
777   case e_gras_datadesc_type_cat_struct:    
778     if (xbt_dynar_length(d1->category.struct_data.fields) != 
779         xbt_dynar_length(d2->category.struct_data.fields)) {
780       DEBUG4("ddt_cmp: %s (having %lu fields) !=  %s (having %lu fields)",
781              d1->name, xbt_dynar_length(d1->category.struct_data.fields),
782              d2->name, xbt_dynar_length(d2->category.struct_data.fields));
783       
784       return xbt_dynar_length(d1->category.struct_data.fields) >
785         xbt_dynar_length(d2->category.struct_data.fields) ?
786         1 : -1;
787     }
788     xbt_dynar_foreach(d1->category.struct_data.fields, cpt, field1) {
789       
790       field2 = xbt_dynar_get_as(d2->category.struct_data.fields, cpt, gras_dd_cat_field_t);
791       field_desc_1 = field1->type;
792       field_desc_2 = field2->type;
793       ret = gras_datadesc_type_cmp(field_desc_1,field_desc_2);
794       if (ret) {
795         DEBUG6("%s->field[%d]=%s != %s->field[%d]=%s",
796                d1->name,cpt,field1->name,              
797                d2->name,cpt,field2->name);
798         return ret;
799       }
800       
801     }
802     break;
803     
804   case e_gras_datadesc_type_cat_union:
805     if (d1->category.union_data.selector != d2->category.union_data.selector) 
806       return 1;  /* ISO C forbids ordered comparisons of pointers to functions */
807     
808     if (xbt_dynar_length(d1->category.union_data.fields) != 
809         xbt_dynar_length(d2->category.union_data.fields))
810       return xbt_dynar_length(d1->category.union_data.fields) >
811              xbt_dynar_length(d2->category.union_data.fields) ?
812         1 : -1;
813     
814     xbt_dynar_foreach(d1->category.union_data.fields, cpt, field1) {
815       
816       field2 = xbt_dynar_get_as(d2->category.union_data.fields, cpt, gras_dd_cat_field_t);
817       field_desc_1 = field1->type;
818       field_desc_2 = field2->type;
819       ret = gras_datadesc_type_cmp(field_desc_1,field_desc_2);
820       if (ret)
821         return ret;
822       
823     }
824     break;
825     
826     
827   case e_gras_datadesc_type_cat_ref:
828     if (d1->category.ref_data.selector != d2->category.ref_data.selector) 
829       return 1; /* ISO C forbids ordered comparisons of pointers to functions */
830     
831     if (d1->category.ref_data.type != d2->category.ref_data.type) 
832       return d1->category.ref_data.type > d2->category.ref_data.type ? 1 : -1;
833     break;
834     
835   case e_gras_datadesc_type_cat_array:
836     if (d1->category.array_data.type != d2->category.array_data.type) 
837       return d1->category.array_data.type > d2->category.array_data.type ? 1 : -1;
838     
839     if (d1->category.array_data.fixed_size != d2->category.array_data.fixed_size) 
840       return d1->category.array_data.fixed_size > d2->category.array_data.fixed_size ? 1 : -1;
841     
842     if (d1->category.array_data.dynamic_size != d2->category.array_data.dynamic_size) 
843       return 1; /* ISO C forbids ordered comparisons of pointers to functions */
844     
845     break;
846     
847   case e_gras_datadesc_type_cat_ignored:
848     /* That's ignored... */
849   default:
850     /* two stupidly created ddt are equally stupid ;) */
851     break;
852   }
853   return 0;
854   
855 }