Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
3c2bc0f9115e43bfbdf71451e56a101854013cef
[simgrid.git] / teshsuite / gras / datadesc / datadesc_usage.c
1 /* datadesc: test of data description (using file transport).               */
2
3 /* Copyright (c) 2007, 2009, 2010. The SimGrid Team.
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 #ifdef __BORLANDC__
10 #pragma hdrstop
11 #endif
12
13 #include <stdio.h>
14 #include "gras.h"
15
16 #include "gras/DataDesc/datadesc_interface.h"
17 XBT_LOG_NEW_DEFAULT_CATEGORY(test, "Logging specific to this test");
18
19 #define READ  0
20 #define WRITE 1
21 #define COPY  2
22
23 const char *filename = "datadesc_usage.out";
24
25 void
26 write_read(const char *msgtype, void *src, void *dst,
27            gras_socket_t sock, int direction);
28
29 void
30 write_read(const char *msgtype, void *src, void *dst,
31            gras_socket_t sock, int direction)
32 {
33
34   switch (direction) {
35   case READ:
36     gras_msg_wait(15, msgtype, NULL, dst);
37     break;
38
39   case WRITE:
40     gras_msg_send(sock, msgtype, src);
41     break;
42
43   case COPY:
44     gras_datadesc_memcpy(gras_datadesc_by_name(msgtype), src, dst);
45     break;
46   }
47 }
48
49
50 /* defined in datadesc_structures.c, which in perl generated */
51 void register_structures(void);
52 void test_structures(gras_socket_t sock, int direction);
53
54 /************************
55  * Each and every tests *
56  ************************/
57
58 static void test_int(gras_socket_t sock, int direction)
59 {
60   int i = 5, j;
61
62   XBT_INFO("---- Test on integer ----");
63   write_read("int", &i, &j, sock, direction);
64   if (direction == READ || direction == COPY)
65     xbt_assert(i == j);
66 }
67
68 static void test_float(gras_socket_t sock, int direction)
69 {
70   float i = 5.0, j;
71
72   XBT_INFO("---- Test on float ----");
73   write_read("float", &i, &j, sock, direction);
74   if (direction == READ || direction == COPY)
75     xbt_assert(i == j, "%f != %f", i, j);
76 }
77
78 static void test_double(gras_socket_t sock, int direction)
79 {
80   double i = -3252355.1234, j;
81
82   XBT_INFO("---- Test on double ----");
83   write_read("double", &i, &j, sock, direction);
84   if (direction == READ || direction == COPY)
85     xbt_assert(i == j, "%f != %f", i, j);
86 }
87
88 #define FIXED_ARRAY_SIZE 5
89 typedef int array[FIXED_ARRAY_SIZE];
90 static void test_array(gras_socket_t sock, int direction)
91 {
92   array i = { 35212, -6226, 74337, 11414, 7733 };
93   array j;
94   int cpt;
95
96   XBT_INFO("---- Test on fixed array ----");
97
98   write_read("fixed int array", &i, &j, sock, direction);
99   if (direction == READ || direction == COPY) {
100     for (cpt = 0; cpt < FIXED_ARRAY_SIZE; cpt++) {
101       XBT_DEBUG("Test spot %d", cpt);
102       xbt_assert(i[cpt] == j[cpt], "i[%d]=%d  !=  j[%d]=%d",
103                   cpt, i[cpt], cpt, j[cpt]);
104     }
105   }
106 }
107
108 /*** Dynar of scalar ***/
109
110 static void test_dynar_scal(gras_socket_t sock, int direction)
111 {
112   xbt_dynar_t i, j;
113   int cpt;
114
115   XBT_INFO("---- Test on dynar containing integers ----");
116   i = xbt_dynar_new(sizeof(int), NULL);
117   for (cpt = 0; cpt < 64; cpt++) {
118     xbt_dynar_push_as(i, int, cpt);
119     XBT_DEBUG("Push %d, length=%lu", cpt, xbt_dynar_length(i));
120   }
121   /*  xbt_dynar_dump(i); */
122   write_read("xbt_dynar_of_int", &i, &j, sock, direction);
123   /*  xbt_dynar_dump(j); */
124   if (direction == READ || direction == COPY) {
125     for (cpt = 0; cpt < 64; cpt++) {
126       int ret = xbt_dynar_get_as(j, cpt, int);
127       if (cpt != ret) {
128         XBT_CRITICAL
129             ("The retrieved value for cpt=%d is not the same than the injected one (%d!=%d)",
130              cpt, ret, cpt);
131         xbt_abort();
132       }
133     }
134     xbt_dynar_free(&j);
135   }
136   xbt_dynar_free(&i);
137 }
138
139 /*** Empty dynar ***/
140
141 static void test_dynar_empty(gras_socket_t sock, int direction)
142 {
143   xbt_dynar_t i, j;
144
145   XBT_INFO("---- Test on empty dynar of integers ----");
146   i = xbt_dynar_new(sizeof(int), NULL);
147   write_read("xbt_dynar_of_int", &i, &j, sock, direction);
148   /*  xbt_dynar_dump(j); */
149   if (direction == READ || direction == COPY) {
150     xbt_assert(xbt_dynar_length(j) == 0);
151     xbt_dynar_free(&j);
152   }
153   xbt_dynar_free(&i);
154 }
155
156 static void test_intref(gras_socket_t sock, int direction)
157 {
158   int *i, *j;
159
160   i = xbt_new(int, 1);
161   *i = 12345;
162
163   XBT_INFO("---- Test on a reference to an integer ----");
164
165   write_read("int*", &i, &j, sock, direction);
166   if (direction == READ || direction == COPY) {
167     xbt_assert(*i == *j, "*i != *j (%d != %d)", *i, *j);
168     free(j);
169   }
170   free(i);
171 }
172
173 /***
174  *** string (dynamic array)
175  ***/
176 static void test_string(gras_socket_t sock, int direction)
177 {
178   char *i = xbt_strdup("Some data"), *j = NULL;
179   int cpt;
180
181   XBT_INFO("---- Test on string (ref to dynamic array) ----");
182   write_read("string", &i, &j, sock, direction);
183   if (direction == READ || direction == COPY) {
184     for (cpt = 0; cpt < strlen(i); cpt++) {
185       xbt_assert(i[cpt] == j[cpt], "i[%d]=%c  !=  j[%d]=%c",
186                   cpt, i[cpt], cpt, j[cpt]);
187     }
188     free(j);
189   }
190   free(i);
191 }
192
193
194 /***
195  *** homogeneous struct
196  ***/
197 typedef struct {
198   int a, b, c, d;
199 } homostruct;
200 static void test_homostruct(gras_socket_t sock, int direction)
201 {
202   homostruct *i, *j;
203
204   XBT_INFO("---- Test on homogeneous structure ----");
205   /* init a value, exchange it and check its validity */
206   i = xbt_new(homostruct, 1);
207   i->a = 2235;
208   i->b = 433425;
209   i->c = -23423;
210   i->d = -235235;
211
212   write_read("homostruct*", &i, &j, sock, direction);
213   if (direction == READ || direction == COPY) {
214     xbt_assert(i->a == j->a, "i->a=%d != j->a=%d", i->a, j->a);
215     xbt_assert(i->b == j->b);
216     xbt_assert(i->c == j->c);
217     xbt_assert(i->d == j->d);
218     free(j);
219   }
220   free(i);
221 }
222
223 /***
224  *** heterogeneous struct
225  ***/
226 typedef struct {
227   unsigned char c1;
228   unsigned long int l1;
229   unsigned char c2;
230   unsigned long int l2;
231 } hetestruct;
232 static void test_hetestruct(gras_socket_t sock, int direction)
233 {
234   hetestruct *i, *j;
235
236   XBT_INFO("---- Test on heterogeneous structure ----");
237   /* init a value, exchange it and check its validity */
238   i = xbt_new(hetestruct, 1);
239   i->c1 = 's';
240   i->l1 = 123455;
241   i->c2 = 'e';
242   i->l2 = 774531;
243
244   write_read("hetestruct*", &i, &j, sock, direction);
245   if (direction == READ || direction == COPY) {
246     xbt_assert(i->c1 == j->c1);
247     xbt_assert(i->c2 == j->c2);
248     xbt_assert(i->l1 == j->l1, "i->l1(=%ld)  !=  j->l1(=%ld)", i->l1,
249                 j->l1);
250     xbt_assert(i->l2 == j->l2);
251     free(j);
252   }
253   free(i);
254 }
255
256 static void test_hetestruct_array(gras_socket_t sock, int direction)
257 {
258   hetestruct *i, *j, *p, *q;
259   int cpt;
260
261   XBT_INFO("---- Test on heterogeneous structure arrays ----");
262   /* init a value, exchange it and check its validity */
263   i = xbt_malloc(sizeof(hetestruct) * 10);
264   for (cpt = 0, p = i; cpt < 10; cpt++, p++) {
265     p->c1 = 's' + cpt;
266     p->l1 = 123455 + cpt;
267     p->c2 = 'e' + cpt;
268     p->l2 = 774531 + cpt;
269   }
270
271   write_read("hetestruct[10]*", &i, &j, sock, direction);
272   if (direction == READ || direction == COPY) {
273     for (cpt = 0, p = i, q = j; cpt < 10; cpt++, p++, q++) {
274       xbt_assert(p->c1 == q->c1);
275       xbt_assert(p->c2 == q->c2);
276       xbt_assert(p->l1 == p->l1,
277                   "for cpt=%d i->l1(=%ld)  !=  j->l1(=%ld)", cpt, p->l1,
278                   q->l1);
279       xbt_assert(q->l2 == p->l2);
280     }
281     free(j);
282   }
283   free(i);
284 }
285
286 /***
287  *** nested struct
288  ***/
289 typedef struct {
290   hetestruct hete;
291   homostruct homo;
292 } nestedstruct;
293 static void test_nestedstruct(gras_socket_t sock, int direction)
294 {
295   nestedstruct *i, *j;
296
297   XBT_INFO("---- Test on nested structures ----");
298   /* init a value, exchange it and check its validity */
299   i = xbt_new(nestedstruct, 1);
300   i->homo.a = 235231;
301   i->homo.b = -124151;
302   i->homo.c = 211551;
303   i->homo.d = -664222;
304   i->hete.c1 = 's';
305   i->hete.l1 = 123455;
306   i->hete.c2 = 'e';
307   i->hete.l2 = 774531;
308
309   write_read("nestedstruct*", &i, &j, sock, direction);
310   if (direction == READ || direction == COPY) {
311     xbt_assert(i->homo.a == j->homo.a);
312     xbt_assert(i->homo.b == j->homo.b);
313     xbt_assert(i->homo.c == j->homo.c);
314     xbt_assert(i->homo.d == j->homo.d);
315     xbt_assert(i->hete.c1 == j->hete.c1);
316     xbt_assert(i->hete.c2 == j->hete.c2);
317     xbt_assert(i->hete.l1 == j->hete.l1);
318     xbt_assert(i->hete.l2 == j->hete.l2);
319     free(j);
320   }
321   free(i);
322 }
323
324 /***
325  *** chained list
326  ***/
327 typedef struct s_chained_list chained_list_t;
328 struct s_chained_list {
329   int v;
330   chained_list_t *l;
331 };
332 chained_list_t *cons(int v, chained_list_t * l);
333 void list_free(chained_list_t * l);
334 int list_eq(chained_list_t * i, chained_list_t * j);
335
336 chained_list_t *cons(int v, chained_list_t * l)
337 {
338   chained_list_t *nl = xbt_new(chained_list_t, 1);
339
340   nl->v = v;
341   nl->l = l;
342
343   return nl;
344 }
345
346 void list_free(chained_list_t * l)
347 {
348   if (l) {
349     list_free(l->l);
350     free(l);
351   }
352 }
353
354 int list_eq(chained_list_t * i, chained_list_t * j)
355 {
356   if (!i || !j)
357     return i == j;
358   if (i->v != j->v)
359     return 0;
360   return list_eq(i->l, j->l);
361 }
362
363 static void test_chain_list(gras_socket_t sock, int direction)
364 {
365   chained_list_t *i, *j;
366
367   XBT_INFO("---- Test on chained list ----");
368
369   /* init a value, exchange it and check its validity */
370   i = cons(12355, cons(246264, cons(23263, NULL)));
371   j = NULL;
372
373   write_read("chained_list_t*", &i, &j, sock, direction);
374   if (direction == READ || direction == COPY) {
375     xbt_assert(list_eq(i, j));
376     list_free(j);
377   }
378
379   list_free(i);
380 }
381
382 /***
383  *** graph
384  ***/
385 static void test_graph(gras_socket_t sock, int direction)
386 {
387   chained_list_t *i, *j;
388
389   XBT_INFO("---- Test on graph (cyclique chained list of 3 items) ----");
390   /* init a value, exchange it and check its validity */
391   i = cons(1151515, cons(-232362, cons(222552, NULL)));
392   i->l->l->l = i;
393   j = NULL;
394
395   write_read("chained_list_t*", &i, &j, sock, direction);
396   if (direction == READ || direction == COPY) {
397
398     XBT_DEBUG("i=%p", i);
399     XBT_DEBUG("i->l=%p", i->l);
400     XBT_DEBUG("i->l->l=%p", i->l->l);
401     XBT_DEBUG("i->l->l->l=%p", i->l->l->l);
402     XBT_DEBUG("j=%p", j);
403     XBT_DEBUG("j->l=%p", j->l);
404     XBT_DEBUG("j->l->l=%p", j->l->l);
405     XBT_DEBUG("j->l->l->l=%p", j->l->l->l);
406     xbt_assert(j->l->l->l == j,
407                 "Received list is not cyclic. j=%p != j->l->l->l=%p\n"
408                 "j=%p; &j=%p", j, j->l->l->l, j, &j);
409     j->l->l->l = NULL;
410     i->l->l->l = NULL;
411     xbt_assert(list_eq(i, j));
412
413     list_free(j);
414   }
415   i->l->l->l = NULL;            /* do this even in WRITE mode */
416   list_free(i);
417 }
418
419
420 /*** Dynar of references ***/
421 static void free_string(void *d)
422 {                               /* used to free the data in dynar */
423   free(*(void **) d);
424 }
425
426 static void test_dynar_ref(gras_socket_t sock, int direction)
427 {
428   xbt_dynar_t i, j;
429   char buf[1024];
430   char *s1, *s2;
431   int cpt;
432
433   XBT_INFO("---- Test on dynar containing integers ----");
434
435   i = xbt_dynar_new(sizeof(char *), &free_string);
436   for (cpt = 0; cpt < 64; cpt++) {
437     sprintf(buf, "%d", cpt);
438     s1 = strdup(buf);
439     xbt_dynar_push(i, &s1);
440   }
441
442   write_read("xbt_dynar_of_string", &i, &j, sock, direction);
443   if (direction == READ || direction == COPY) {
444     for (cpt = 0; cpt < 64; cpt++) {
445       sprintf(buf, "%d", cpt);
446       xbt_dynar_shift(j, &s2);
447       xbt_assert(!strcmp(buf, s2),
448                   "The retrieved value is not the same than the injected one (%s!=%s)",
449                   buf, s2);
450       free(s2);
451     }
452     xbt_dynar_free(&j);
453   }
454   xbt_dynar_free(&i);
455 }
456
457
458 /**** PBIO *****/
459 GRAS_DEFINE_TYPE(s_pbio, struct s_pbio {        /* structure presented in the IEEE article */
460                  int Cnstatv;
461                  double Cstatev[12]; int Cnprops; double Cprops[110];
462                  int Cndi[4];
463                  int Cnshr;
464                  int Cnpt; double Cdtime; double Ctime[2]; int Cntens;
465                  double Cdfgrd0[373][3];
466                  double Cdfgrd1[3][3]; double Cstress[106];
467                  double Cddsdde[106][106];
468                  };
469
470     )
471
472 typedef struct s_pbio pbio_t;
473
474 static void test_pbio(gras_socket_t sock, int direction)
475 {
476   int cpt;
477   int cpt2;
478   pbio_t i, j;
479
480   XBT_INFO
481       ("---- Test on the PBIO IEEE struct (also tests GRAS DEFINE TYPE) ----");
482   gras_datadesc_by_symbol(s_pbio); 
483
484   /* Fill in that damn struct */
485   i.Cnstatv = 325115;
486   for (cpt = 0; cpt < 12; cpt++)
487     i.Cstatev[cpt] = ((double) cpt) * -2361.11;
488   i.Cnprops = -37373;
489   for (cpt = 0; cpt < 110; cpt++)
490     i.Cprops[cpt] = cpt * 100.0;
491   for (cpt = 0; cpt < 4; cpt++)
492     i.Cndi[cpt] = cpt * 23262;
493   i.Cnshr = -4634;
494   i.Cnpt = 114142;
495   i.Cdtime = -11515.662;
496   i.Ctime[0] = 332523.226;
497   i.Ctime[1] = -26216.113;
498   i.Cntens = 235211411;
499
500   for (cpt = 0; cpt < 3; cpt++) {
501     for (cpt2 = 0; cpt2 < 373; cpt2++)
502       i.Cdfgrd0[cpt2][cpt] = ((double) cpt) * ((double) cpt2);
503     for (cpt2 = 0; cpt2 < 3; cpt2++)
504       i.Cdfgrd1[cpt][cpt2] = -((double) cpt) * ((double) cpt2);
505   }
506   for (cpt = 0; cpt < 106; cpt++) {
507     i.Cstress[cpt] = (double) cpt *22.113;
508     for (cpt2 = 0; cpt2 < 106; cpt2++)
509       i.Cddsdde[cpt][cpt2] = ((double) cpt) * ((double) cpt2);
510   }
511   write_read("s_pbio", &i, &j, sock, direction);
512   if (direction == READ || direction == COPY) {
513     /* Check that the data match */
514     xbt_assert(i.Cnstatv == j.Cnstatv);
515     for (cpt = 0; cpt < 12; cpt++)
516       xbt_assert(i.Cstatev[cpt] == j.Cstatev[cpt],
517                   "i.Cstatev[%d] (=%f) != j.Cstatev[%d] (=%f)",
518                   cpt, i.Cstatev[cpt], cpt, j.Cstatev[cpt]);
519     xbt_assert(i.Cnprops == j.Cnprops);
520     for (cpt = 0; cpt < 110; cpt++)
521       xbt_assert(i.Cprops[cpt] == j.Cprops[cpt]);
522     for (cpt = 0; cpt < 4; cpt++)
523       xbt_assert(i.Cndi[cpt] == j.Cndi[cpt]);
524     xbt_assert(i.Cnshr == j.Cnshr);
525     xbt_assert(i.Cnpt == j.Cnpt);
526     xbt_assert(i.Cdtime == j.Cdtime);
527     xbt_assert(i.Ctime[0] == j.Ctime[0]);
528     xbt_assert(i.Ctime[1] == j.Ctime[1]);
529     xbt_assert(i.Cntens == j.Cntens);
530     for (cpt = 0; cpt < 3; cpt++) {
531       for (cpt2 = 0; cpt2 < 373; cpt2++)
532         xbt_assert(i.Cdfgrd0[cpt2][cpt] == j.Cdfgrd0[cpt2][cpt]);
533       for (cpt2 = 0; cpt2 < 3; cpt2++)
534         xbt_assert(i.Cdfgrd1[cpt][cpt2] == j.Cdfgrd1[cpt][cpt2]);
535     }
536     for (cpt = 0; cpt < 106; cpt++) {
537       xbt_assert(i.Cstress[cpt] == j.Cstress[cpt]);
538       for (cpt2 = 0; cpt2 < 106; cpt2++)
539         xbt_assert(i.Cddsdde[cpt][cpt2] == j.Cddsdde[cpt][cpt2],
540                     "%f=i.Cddsdde[%d][%d] != j.Cddsdde[cpt][cpt2]=%f",
541                     i.Cddsdde[cpt][cpt2], cpt, cpt2, j.Cddsdde[cpt][cpt2]);
542     }
543   }
544 }
545
546 GRAS_DEFINE_TYPE(s_clause, struct s_clause {
547                  int num_lits;
548                  int *literals GRAS_ANNOTE(size, num_lits);     /* Tells GRAS where to find the size */
549                  };)
550
551 typedef struct s_clause Clause;
552
553 static void test_clause(gras_socket_t sock, int direction)
554 {
555   Clause *i, *j;
556   int cpt;
557
558   XBT_INFO
559       ("---- Test on struct containing dynamic array and its size (cbps test) ----");
560
561   /* create and fill the struct */
562   i = xbt_new(Clause, 1);
563
564   i->num_lits = 5432;
565   i->literals = xbt_new(int, i->num_lits);
566   for (cpt = 0; cpt < i->num_lits; cpt++)
567     i->literals[cpt] = cpt * cpt - ((cpt * cpt) / 2);
568   XBT_DEBUG("created data=%p (within %p @%p)", &(i->num_lits), i, &i);
569   XBT_DEBUG("created count=%d", i->num_lits);
570
571   write_read("Clause*", &i, &j, sock, direction);
572   if (direction == READ || direction == COPY) {
573     xbt_assert(i->num_lits == j->num_lits);
574     for (cpt = 0; cpt < i->num_lits; cpt++)
575       xbt_assert(i->literals[cpt] == j->literals[cpt]);
576
577     free(j->literals);
578     free(j);
579   }
580   free(i->literals);
581   free(i);
582 }
583
584 static void test_clause_empty(gras_socket_t sock, int direction)
585 {
586   Clause *i, *j;
587
588   XBT_INFO
589       ("---- Test on struct containing dynamic array and its size when size=0 (cbps test) ----");
590
591   /* create and fill the struct */
592   i = xbt_new(Clause, 1);
593
594   i->num_lits = 0;
595   i->literals = NULL;
596   XBT_DEBUG("created data=%p (within %p @%p)", &(i->num_lits), i, &i);
597   XBT_DEBUG("created count=%d", i->num_lits);
598
599   write_read("Clause*", &i, &j, sock, direction);
600   if (direction == READ || direction == COPY) {
601     xbt_assert(i->num_lits == j->num_lits);
602
603     free(j->literals);
604     free(j);
605   }
606   free(i->literals);
607   free(i);
608 }
609
610 static void register_types(void)
611 {
612   gras_datadesc_type_t my_type, ref_my_type;
613
614   gras_msgtype_declare("char", gras_datadesc_by_name("char"));
615   gras_msgtype_declare("int", gras_datadesc_by_name("int"));
616   gras_msgtype_declare("float", gras_datadesc_by_name("float"));
617   gras_msgtype_declare("double", gras_datadesc_by_name("double"));
618
619   my_type = gras_datadesc_array_fixed("fixed int array",
620                                       gras_datadesc_by_name("int"),
621                                       FIXED_ARRAY_SIZE);
622   gras_msgtype_declare("fixed int array", my_type);
623
624   my_type = gras_datadesc_dynar(gras_datadesc_by_name("int"), NULL);
625   gras_msgtype_declare("xbt_dynar_of_int", my_type);
626
627   my_type = gras_datadesc_ref("int*", gras_datadesc_by_name("int"));
628   gras_msgtype_declare("int*", my_type);
629
630   gras_msgtype_declare("string", gras_datadesc_by_name("string"));
631
632   my_type = gras_datadesc_struct("homostruct");
633   gras_datadesc_struct_append(my_type, "a",
634                               gras_datadesc_by_name("signed int"));
635   gras_datadesc_struct_append(my_type, "b", gras_datadesc_by_name("int"));
636   gras_datadesc_struct_append(my_type, "c", gras_datadesc_by_name("int"));
637   gras_datadesc_struct_append(my_type, "d", gras_datadesc_by_name("int"));
638   gras_datadesc_struct_close(my_type);
639   my_type =
640       gras_datadesc_ref("homostruct*",
641                         gras_datadesc_by_name("homostruct"));
642   gras_msgtype_declare("homostruct*", my_type);
643
644   my_type = gras_datadesc_struct("hetestruct");
645   gras_datadesc_struct_append(my_type, "c1",
646                               gras_datadesc_by_name("unsigned char"));
647   gras_datadesc_struct_append(my_type, "l1",
648                               gras_datadesc_by_name("unsigned long int"));
649   gras_datadesc_struct_append(my_type, "c2",
650                               gras_datadesc_by_name("unsigned char"));
651   gras_datadesc_struct_append(my_type, "l2",
652                               gras_datadesc_by_name("unsigned long int"));
653   gras_datadesc_struct_close(my_type);
654   my_type =
655       gras_datadesc_ref("hetestruct*",
656                         gras_datadesc_by_name("hetestruct"));
657   gras_msgtype_declare("hetestruct*", my_type);
658
659   my_type =
660       gras_datadesc_array_fixed("hetestruct[10]",
661                                 gras_datadesc_by_name("hetestruct"), 10);
662   my_type = gras_datadesc_ref("hetestruct[10]*", my_type);
663   gras_msgtype_declare("hetestruct[10]*", my_type);
664
665   my_type = gras_datadesc_struct("nestedstruct");
666   gras_datadesc_struct_append(my_type, "hete",
667                               gras_datadesc_by_name("hetestruct"));
668   gras_datadesc_struct_append(my_type, "homo",
669                               gras_datadesc_by_name("homostruct"));
670   gras_datadesc_struct_close(my_type);
671   my_type =
672       gras_datadesc_ref("nestedstruct*",
673                         gras_datadesc_by_name("nestedstruct"));
674   gras_msgtype_declare("nestedstruct*", my_type);
675
676   my_type = gras_datadesc_struct("chained_list_t");
677   ref_my_type = gras_datadesc_ref("chained_list_t*", my_type);
678   gras_datadesc_struct_append(my_type, "v", gras_datadesc_by_name("int"));
679   gras_datadesc_struct_append(my_type, "l", ref_my_type);
680   gras_datadesc_struct_close(my_type);
681   gras_datadesc_cycle_set(gras_datadesc_by_name("chained_list_t*"));
682   gras_msgtype_declare("chained_list_t", my_type);
683   gras_msgtype_declare("chained_list_t*", ref_my_type);
684
685   my_type =
686       gras_datadesc_dynar(gras_datadesc_by_name("string"), &free_string);
687   gras_msgtype_declare("xbt_dynar_of_string", my_type);
688
689   my_type = gras_datadesc_by_symbol(s_pbio);
690   gras_msgtype_declare("s_pbio", my_type);
691
692   my_type = gras_datadesc_by_symbol(s_clause);
693   my_type = gras_datadesc_ref("Clause*", my_type);
694   gras_msgtype_declare("Clause*", my_type);
695
696 }
697
698 #ifdef __BORLANDC__
699 #pragma argsused
700 #endif
701
702 int main(int argc, char *argv[])
703 {
704   gras_socket_t sock = NULL;
705   int direction = WRITE;
706   int cpt;
707   char local_arch, remote_arch;
708
709   gras_init(&argc, argv);
710   register_types();
711   register_structures();
712
713   for (cpt = 1; cpt < argc; cpt++) {
714     if (!strcmp(argv[cpt], "--arch")) {
715       XBT_INFO("We are on %s (#%d)",
716             gras_datadesc_arch_name(gras_arch_selfid()),
717             (int) gras_arch_selfid());
718       exit(0);
719     } else if (!strcmp(argv[cpt], "--help")) {
720       printf("Usage: datadesc_usage [option] [filename]\n");
721       printf(" --arch: display the current architecture and quit.\n");
722       printf(" --read file: reads the description from the given file\n");
723       printf(" --write file: writes the description to the given file\n");
724       printf(" --copy: copy the description in memory\n");
725       printf
726           (" --regen: write the description to the file of the current architecture\n");
727       printf(" --help: displays this message\n");
728       exit(0);
729     } else if (!strcmp(argv[cpt], "--regen")) {
730       direction = WRITE;
731       filename =
732           bprintf("datadesc.%s",
733                   gras_datadesc_arch_name(gras_arch_selfid()));
734     } else if (!strcmp(argv[cpt], "--read")) {
735       direction = READ;
736     } else if (!strcmp(argv[cpt], "--write")) {
737       direction = WRITE;
738     } else if (!strcmp(argv[cpt], "--copy")) {
739       direction = COPY;
740     } else {
741       filename = argv[cpt];
742     }
743   }
744
745   if (direction == WRITE) {
746     XBT_INFO("Write to file %s",
747           strrchr(filename, '/') ? strrchr(filename, '/') + 1 : filename);
748     sock = gras_socket_client_from_file(filename);
749   }
750   if (direction == READ) {
751     XBT_INFO("Read from file %s",
752           strrchr(filename, '/') ? strrchr(filename, '/') + 1 : filename);
753     sock = gras_socket_server_from_file(filename);
754   }
755   if (direction == COPY) {
756     XBT_INFO("Memory copy");
757   }
758
759   local_arch = gras_arch_selfid();
760   write_read("char", &local_arch, &remote_arch, sock, direction);
761   if (direction == READ)
762     XBT_VERB("This file was generated on %s (%d)",
763           gras_datadesc_arch_name(remote_arch), (int) remote_arch);
764
765
766   test_int(sock, direction);
767   test_float(sock, direction);
768   test_double(sock, direction);
769   test_array(sock, direction);
770   test_intref(sock, direction);
771
772   test_string(sock, direction);
773   test_dynar_scal(sock, direction);
774   test_dynar_empty(sock, direction);
775
776   test_structures(sock, direction);
777
778   test_homostruct(sock, direction);
779   test_hetestruct(sock, direction);
780   test_nestedstruct(sock, direction);
781   test_hetestruct_array(sock, direction);
782
783   test_chain_list(sock, direction);
784   test_graph(sock, direction);
785   test_dynar_ref(sock, direction);
786
787   test_pbio(sock, direction);
788
789   test_clause(sock, direction);
790   test_clause_empty(sock, direction);
791
792   if (direction != COPY)
793     gras_socket_close(sock);
794
795   gras_exit();
796   return 0;
797 }