Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
roots of a generic surf_resource_t type
[simgrid.git] / teshsuite / gras / datadesc / datadesc_usage.c
1 /* $Id$ */
2
3 /* datadesc: test of data description (using file transport).               */
4
5 /* Copyright (c) 2004-2007 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 #ifdef __BORLANDC__
11 #pragma hdrstop
12 #endif
13
14 #include <stdio.h>
15 #include "gras.h"
16
17 #include "gras/DataDesc/datadesc_interface.h"
18 XBT_LOG_NEW_DEFAULT_CATEGORY(test, "Logging specific to this test");
19
20 #define READ  0
21 #define WRITE 1
22 #define COPY  2
23
24 const char *filename = "datadesc_usage.out";
25
26 void
27 write_read(const char *msgtype, void *src, void *dst,
28            gras_socket_t sock, int direction);
29
30 void
31 write_read(const char *msgtype, void *src, void *dst,
32            gras_socket_t sock, int direction)
33 {
34
35   switch (direction) {
36   case READ:
37     gras_msg_wait(15, msgtype, NULL, dst);
38     break;
39
40   case WRITE:
41     gras_msg_send(sock, msgtype, src);
42     break;
43
44   case COPY:
45     gras_datadesc_memcpy(gras_datadesc_by_name(msgtype), src, dst);
46     break;
47   }
48 }
49
50
51 /* defined in datadesc_structures.c, which in perl generated */
52 void register_structures(void);
53 void test_structures(gras_socket_t sock, int direction);
54
55 /************************
56  * Each and every tests *
57  ************************/
58
59 static void test_int(gras_socket_t sock, int direction)
60 {
61   int i = 5, j;
62
63   INFO0("---- Test on integer ----");
64   write_read("int", &i, &j, sock, direction);
65   if (direction == READ || direction == COPY)
66     xbt_assert(i == j);
67 }
68
69 static void test_float(gras_socket_t sock, int direction)
70 {
71   float i = 5.0, j;
72
73   INFO0("---- Test on float ----");
74   write_read("float", &i, &j, sock, direction);
75   if (direction == READ || direction == COPY)
76     xbt_assert2(i == j, "%f != %f", i, j);
77 }
78
79 static void test_double(gras_socket_t sock, int direction)
80 {
81   double i = -3252355.1234, j;
82
83   INFO0("---- Test on double ----");
84   write_read("double", &i, &j, sock, direction);
85   if (direction == READ || direction == COPY)
86     xbt_assert2(i == j, "%f != %f", i, j);
87 }
88
89 #define FIXED_ARRAY_SIZE 5
90 typedef int array[FIXED_ARRAY_SIZE];
91 static void test_array(gras_socket_t sock, int direction)
92 {
93   array i = { 35212, -6226, 74337, 11414, 7733 };
94   array j;
95   int cpt;
96
97   INFO0("---- Test on fixed array ----");
98
99   write_read("fixed int array", &i, &j, sock, direction);
100   if (direction == READ || direction == COPY) {
101     for (cpt = 0; cpt < FIXED_ARRAY_SIZE; cpt++) {
102       DEBUG1("Test spot %d", cpt);
103       xbt_assert4(i[cpt] == j[cpt], "i[%d]=%d  !=  j[%d]=%d",
104                   cpt, i[cpt], cpt, j[cpt]);
105     }
106   }
107 }
108
109 /*** Dynar of scalar ***/
110
111 static void test_dynar_scal(gras_socket_t sock, int direction)
112 {
113   xbt_dynar_t i, j;
114   int cpt;
115
116   INFO0("---- Test on dynar containing integers ----");
117   i = xbt_dynar_new(sizeof(int), NULL);
118   for (cpt = 0; cpt < 64; cpt++) {
119     xbt_dynar_push_as(i, int, cpt);
120     DEBUG2("Push %d, length=%lu", cpt, xbt_dynar_length(i));
121   }
122   /*  xbt_dynar_dump(i); */
123   write_read("xbt_dynar_of_int", &i, &j, sock, direction);
124   /*  xbt_dynar_dump(j); */
125   if (direction == READ || direction == COPY) {
126     for (cpt = 0; cpt < 64; cpt++) {
127       int ret = xbt_dynar_get_as(j, cpt, int);
128       if (cpt != ret) {
129         CRITICAL3
130           ("The retrieved value for cpt=%d is not the same than the injected one (%d!=%d)",
131            cpt, ret, cpt);
132         xbt_abort();
133       }
134     }
135     xbt_dynar_free(&j);
136   }
137   xbt_dynar_free(&i);
138 }
139
140 /*** Empty dynar ***/
141
142 static void test_dynar_empty(gras_socket_t sock, int direction)
143 {
144   xbt_dynar_t i, j;
145
146   INFO0("---- Test on empty dynar of integers ----");
147   i = xbt_dynar_new(sizeof(int), NULL);
148   write_read("xbt_dynar_of_int", &i, &j, sock, direction);
149   /*  xbt_dynar_dump(j); */
150   if (direction == READ || direction == COPY) {
151     xbt_assert(xbt_dynar_length(j) == 0);
152     xbt_dynar_free(&j);
153   }
154   xbt_dynar_free(&i);
155 }
156
157 static void test_intref(gras_socket_t sock, int direction)
158 {
159   int *i, *j;
160
161   i = xbt_new(int, 1);
162   *i = 12345;
163
164   INFO0("---- Test on a reference to an integer ----");
165
166   write_read("int*", &i, &j, sock, direction);
167   if (direction == READ || direction == COPY) {
168     xbt_assert2(*i == *j, "*i != *j (%d != %d)", *i, *j);
169     free(j);
170   }
171   free(i);
172 }
173
174 /***
175  *** string (dynamic array)
176  ***/
177 static void test_string(gras_socket_t sock, int direction)
178 {
179   char *i = xbt_strdup("Some data"), *j = NULL;
180   int cpt;
181
182   INFO0("---- Test on string (ref to dynamic array) ----");
183   write_read("string", &i, &j, sock, direction);
184   if (direction == READ || direction == COPY) {
185     for (cpt = 0; cpt < strlen(i); cpt++) {
186       xbt_assert4(i[cpt] == j[cpt], "i[%d]=%c  !=  j[%d]=%c",
187                   cpt, i[cpt], cpt, j[cpt]);
188     }
189     free(j);
190   }
191   free(i);
192 }
193
194
195 /***
196  *** homogeneous struct
197  ***/
198 typedef struct {
199   int a, b, c, d;
200 } homostruct;
201 static void test_homostruct(gras_socket_t sock, int direction)
202 {
203   homostruct *i, *j;
204
205   INFO0("---- Test on homogeneous structure ----");
206   /* init a value, exchange it and check its validity */
207   i = xbt_new(homostruct, 1);
208   i->a = 2235;
209   i->b = 433425;
210   i->c = -23423;
211   i->d = -235235;
212
213   write_read("homostruct*", &i, &j, sock, direction);
214   if (direction == READ || direction == COPY) {
215     xbt_assert2(i->a == j->a, "i->a=%d != j->a=%d", i->a, j->a);
216     xbt_assert(i->b == j->b);
217     xbt_assert(i->c == j->c);
218     xbt_assert(i->d == j->d);
219     free(j);
220   }
221   free(i);
222 }
223
224 /***
225  *** heterogeneous struct
226  ***/
227 typedef struct {
228   unsigned char c1;
229   unsigned long int l1;
230   unsigned char c2;
231   unsigned long int l2;
232 } hetestruct;
233 static void test_hetestruct(gras_socket_t sock, int direction)
234 {
235   hetestruct *i, *j;
236
237   INFO0("---- Test on heterogeneous structure ----");
238   /* init a value, exchange it and check its validity */
239   i = xbt_new(hetestruct, 1);
240   i->c1 = 's';
241   i->l1 = 123455;
242   i->c2 = 'e';
243   i->l2 = 774531;
244
245   write_read("hetestruct*", &i, &j, sock, direction);
246   if (direction == READ || direction == COPY) {
247     xbt_assert(i->c1 == j->c1);
248     xbt_assert(i->c2 == j->c2);
249     xbt_assert2(i->l1 == j->l1, "i->l1(=%ld)  !=  j->l1(=%ld)", i->l1, 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   INFO0("---- 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_assert3(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   INFO0("---- 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   INFO0("---- 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   INFO0("---- 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     DEBUG1("i=%p", i);
399     DEBUG1("i->l=%p", i->l);
400     DEBUG1("i->l->l=%p", i->l->l);
401     DEBUG1("i->l->l->l=%p", i->l->l->l);
402     DEBUG1("j=%p", j);
403     DEBUG1("j->l=%p", j->l);
404     DEBUG1("j->l->l=%p", j->l->l);
405     DEBUG1("j->l->l->l=%p", j->l->l->l);
406     xbt_assert4(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   INFO0("---- 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_assert2(!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];
462                  int Cnprops;
463                  double Cprops[110];
464                  int Cndi[4];
465                  int Cnshr;
466                  int Cnpt;
467                  double Cdtime;
468                  double Ctime[2];
469                  int Cntens;
470                  double Cdfgrd0[373][3];
471                  double Cdfgrd1[3][3]; double Cstress[106];
472                  double Cddsdde[106][106];
473                  };
474
475   )
476      typedef struct s_pbio pbio_t;
477
478      static void test_pbio(gras_socket_t sock, int direction)
479 {
480   int cpt;
481   int cpt2;
482   gras_datadesc_type_t pbio_type;
483   pbio_t i, j;
484
485   INFO0
486     ("---- Test on the PBIO IEEE struct (also tests GRAS DEFINE TYPE) ----");
487   pbio_type = gras_datadesc_by_symbol(s_pbio);
488
489   /* Fill in that damn struct */
490   i.Cnstatv = 325115;
491   for (cpt = 0; cpt < 12; cpt++)
492     i.Cstatev[cpt] = ((double) cpt) * -2361.11;
493   i.Cnprops = -37373;
494   for (cpt = 0; cpt < 110; cpt++)
495     i.Cprops[cpt] = cpt * 100.0;
496   for (cpt = 0; cpt < 4; cpt++)
497     i.Cndi[cpt] = cpt * 23262;
498   i.Cnshr = -4634;
499   i.Cnpt = 114142;
500   i.Cdtime = -11515.662;
501   i.Ctime[0] = 332523.226;
502   i.Ctime[1] = -26216.113;
503   i.Cntens = 235211411;
504
505   for (cpt = 0; cpt < 3; cpt++) {
506     for (cpt2 = 0; cpt2 < 373; cpt2++)
507       i.Cdfgrd0[cpt2][cpt] = ((double) cpt) * ((double) cpt2);
508     for (cpt2 = 0; cpt2 < 3; cpt2++)
509       i.Cdfgrd1[cpt][cpt2] = -((double) cpt) * ((double) cpt2);
510   }
511   for (cpt = 0; cpt < 106; cpt++) {
512     i.Cstress[cpt] = (double) cpt *22.113;
513     for (cpt2 = 0; cpt2 < 106; cpt2++)
514       i.Cddsdde[cpt][cpt2] = ((double) cpt) * ((double) cpt2);
515   }
516   write_read("s_pbio", &i, &j, sock, direction);
517   if (direction == READ || direction == COPY) {
518     /* Check that the data match */
519     xbt_assert(i.Cnstatv == j.Cnstatv);
520     for (cpt = 0; cpt < 12; cpt++)
521       xbt_assert4(i.Cstatev[cpt] == j.Cstatev[cpt],
522                   "i.Cstatev[%d] (=%f) != j.Cstatev[%d] (=%f)",
523                   cpt, i.Cstatev[cpt], cpt, j.Cstatev[cpt]);
524     xbt_assert(i.Cnprops == j.Cnprops);
525     for (cpt = 0; cpt < 110; cpt++)
526       xbt_assert(i.Cprops[cpt] == j.Cprops[cpt]);
527     for (cpt = 0; cpt < 4; cpt++)
528       xbt_assert(i.Cndi[cpt] == j.Cndi[cpt]);
529     xbt_assert(i.Cnshr == j.Cnshr);
530     xbt_assert(i.Cnpt == j.Cnpt);
531     xbt_assert(i.Cdtime == j.Cdtime);
532     xbt_assert(i.Ctime[0] == j.Ctime[0]);
533     xbt_assert(i.Ctime[1] == j.Ctime[1]);
534     xbt_assert(i.Cntens == j.Cntens);
535     for (cpt = 0; cpt < 3; cpt++) {
536       for (cpt2 = 0; cpt2 < 373; cpt2++)
537         xbt_assert(i.Cdfgrd0[cpt2][cpt] == j.Cdfgrd0[cpt2][cpt]);
538       for (cpt2 = 0; cpt2 < 3; cpt2++)
539         xbt_assert(i.Cdfgrd1[cpt][cpt2] == j.Cdfgrd1[cpt][cpt2]);
540     }
541     for (cpt = 0; cpt < 106; cpt++) {
542       xbt_assert(i.Cstress[cpt] == j.Cstress[cpt]);
543       for (cpt2 = 0; cpt2 < 106; cpt2++)
544         xbt_assert4(i.Cddsdde[cpt][cpt2] == j.Cddsdde[cpt][cpt2],
545                     "%f=i.Cddsdde[%d][%d] != j.Cddsdde[cpt][cpt2]=%f",
546                     i.Cddsdde[cpt][cpt2], cpt, cpt2, j.Cddsdde[cpt][cpt2]);
547     }
548   }
549 }
550
551 GRAS_DEFINE_TYPE(s_clause, struct s_clause {
552                  int num_lits;
553                  int *literals GRAS_ANNOTE(size, num_lits);     /* Tells GRAS where to find the size */
554                  };)
555
556      typedef struct s_clause Clause;
557
558      static void test_clause(gras_socket_t sock, int direction)
559 {
560   Clause *i, *j;
561   int cpt;
562
563   INFO0
564     ("---- Test on struct containing dynamic array and its size (cbps test) ----");
565
566   /* create and fill the struct */
567   i = xbt_new(Clause, 1);
568
569   i->num_lits = 5432;
570   i->literals = xbt_new(int, i->num_lits);
571   for (cpt = 0; cpt < i->num_lits; cpt++)
572     i->literals[cpt] = cpt * cpt - ((cpt * cpt) / 2);
573   DEBUG3("created data=%p (within %p @%p)", &(i->num_lits), i, &i);
574   DEBUG1("created count=%d", i->num_lits);
575
576   write_read("Clause*", &i, &j, sock, direction);
577   if (direction == READ || direction == COPY) {
578     xbt_assert(i->num_lits == j->num_lits);
579     for (cpt = 0; cpt < i->num_lits; cpt++)
580       xbt_assert(i->literals[cpt] == j->literals[cpt]);
581
582     free(j->literals);
583     free(j);
584   }
585   free(i->literals);
586   free(i);
587 }
588
589 static void test_clause_empty(gras_socket_t sock, int direction)
590 {
591   Clause *i, *j;
592
593   INFO0
594     ("---- Test on struct containing dynamic array and its size when size=0 (cbps test) ----");
595
596   /* create and fill the struct */
597   i = xbt_new(Clause, 1);
598
599   i->num_lits = 0;
600   i->literals = NULL;
601   DEBUG3("created data=%p (within %p @%p)", &(i->num_lits), i, &i);
602   DEBUG1("created count=%d", i->num_lits);
603
604   write_read("Clause*", &i, &j, sock, direction);
605   if (direction == READ || direction == COPY) {
606     xbt_assert(i->num_lits == j->num_lits);
607
608     free(j->literals);
609     free(j);
610   }
611   free(i->literals);
612   free(i);
613 }
614
615 static void register_types(void)
616 {
617   gras_datadesc_type_t my_type, ref_my_type;
618
619   gras_msgtype_declare("char", gras_datadesc_by_name("char"));
620   gras_msgtype_declare("int", gras_datadesc_by_name("int"));
621   gras_msgtype_declare("float", gras_datadesc_by_name("float"));
622   gras_msgtype_declare("double", gras_datadesc_by_name("double"));
623
624   my_type = gras_datadesc_array_fixed("fixed int array",
625                                       gras_datadesc_by_name("int"),
626                                       FIXED_ARRAY_SIZE);
627   gras_msgtype_declare("fixed int array", my_type);
628
629   my_type = gras_datadesc_dynar(gras_datadesc_by_name("int"), NULL);
630   gras_msgtype_declare("xbt_dynar_of_int", my_type);
631
632   my_type = gras_datadesc_ref("int*", gras_datadesc_by_name("int"));
633   gras_msgtype_declare("int*", my_type);
634
635   gras_msgtype_declare("string", gras_datadesc_by_name("string"));
636
637   my_type = gras_datadesc_struct("homostruct");
638   gras_datadesc_struct_append(my_type, "a",
639                               gras_datadesc_by_name("signed int"));
640   gras_datadesc_struct_append(my_type, "b", gras_datadesc_by_name("int"));
641   gras_datadesc_struct_append(my_type, "c", gras_datadesc_by_name("int"));
642   gras_datadesc_struct_append(my_type, "d", gras_datadesc_by_name("int"));
643   gras_datadesc_struct_close(my_type);
644   my_type =
645     gras_datadesc_ref("homostruct*", gras_datadesc_by_name("homostruct"));
646   gras_msgtype_declare("homostruct*", my_type);
647
648   my_type = gras_datadesc_struct("hetestruct");
649   gras_datadesc_struct_append(my_type, "c1",
650                               gras_datadesc_by_name("unsigned char"));
651   gras_datadesc_struct_append(my_type, "l1",
652                               gras_datadesc_by_name("unsigned long int"));
653   gras_datadesc_struct_append(my_type, "c2",
654                               gras_datadesc_by_name("unsigned char"));
655   gras_datadesc_struct_append(my_type, "l2",
656                               gras_datadesc_by_name("unsigned long int"));
657   gras_datadesc_struct_close(my_type);
658   my_type =
659     gras_datadesc_ref("hetestruct*", gras_datadesc_by_name("hetestruct"));
660   gras_msgtype_declare("hetestruct*", my_type);
661
662   my_type =
663     gras_datadesc_array_fixed("hetestruct[10]",
664                               gras_datadesc_by_name("hetestruct"), 10);
665   my_type = gras_datadesc_ref("hetestruct[10]*", my_type);
666   gras_msgtype_declare("hetestruct[10]*", my_type);
667
668   my_type = gras_datadesc_struct("nestedstruct");
669   gras_datadesc_struct_append(my_type, "hete",
670                               gras_datadesc_by_name("hetestruct"));
671   gras_datadesc_struct_append(my_type, "homo",
672                               gras_datadesc_by_name("homostruct"));
673   gras_datadesc_struct_close(my_type);
674   my_type =
675     gras_datadesc_ref("nestedstruct*", gras_datadesc_by_name("nestedstruct"));
676   gras_msgtype_declare("nestedstruct*", my_type);
677
678   my_type = gras_datadesc_struct("chained_list_t");
679   ref_my_type = gras_datadesc_ref("chained_list_t*", my_type);
680   gras_datadesc_struct_append(my_type, "v", gras_datadesc_by_name("int"));
681   gras_datadesc_struct_append(my_type, "l", ref_my_type);
682   gras_datadesc_struct_close(my_type);
683   gras_datadesc_cycle_set(gras_datadesc_by_name("chained_list_t*"));
684   gras_msgtype_declare("chained_list_t", my_type);
685   gras_msgtype_declare("chained_list_t*", ref_my_type);
686
687   my_type =
688     gras_datadesc_dynar(gras_datadesc_by_name("string"), &free_string);
689   gras_msgtype_declare("xbt_dynar_of_string", my_type);
690
691   my_type = gras_datadesc_by_symbol(s_pbio);
692   gras_msgtype_declare("s_pbio", my_type);
693
694   my_type = gras_datadesc_by_symbol(s_clause);
695   my_type = gras_datadesc_ref("Clause*", my_type);
696   gras_msgtype_declare("Clause*", my_type);
697
698 }
699
700 #ifdef __BORLANDC__
701 #pragma argsused
702 #endif
703
704 int main(int argc, char *argv[])
705 {
706   gras_socket_t sock = NULL;
707   int direction = WRITE;
708   int cpt;
709   char local_arch, remote_arch;
710
711   gras_init(&argc, argv);
712   register_types();
713   register_structures();
714
715   for (cpt = 1; cpt < argc; cpt++) {
716     if (!strcmp(argv[cpt], "--arch")) {
717       INFO2("We are on %s (#%d)",
718             gras_datadesc_arch_name(gras_arch_selfid()),
719             (int) gras_arch_selfid());
720       exit(0);
721     } else if (!strcmp(argv[cpt], "--help")) {
722       printf("Usage: datadesc_usage [option] [filename]\n");
723       printf(" --arch: display the current architecture and quit.\n");
724       printf(" --read file: reads the description from the given file\n");
725       printf(" --write file: writes the description to the given file\n");
726       printf(" --copy: copy the description in memory\n");
727       printf
728         (" --regen: write the description to the file of the current architecture\n");
729       printf(" --help: displays this message\n");
730       exit(0);
731     } else if (!strcmp(argv[cpt], "--regen")) {
732       direction = WRITE;
733       filename =
734         bprintf("datadesc.%s", gras_datadesc_arch_name(gras_arch_selfid()));
735     } else if (!strcmp(argv[cpt], "--read")) {
736       direction = READ;
737     } else if (!strcmp(argv[cpt], "--write")) {
738       direction = WRITE;
739     } else if (!strcmp(argv[cpt], "--copy")) {
740       direction = COPY;
741     } else {
742       filename = argv[cpt];
743     }
744   }
745
746   if (direction == WRITE) {
747     INFO1("Write to file %s", filename);
748     sock = gras_socket_client_from_file(filename);
749   }
750   if (direction == READ) {
751     INFO1("Read from file %s", filename);
752     sock = gras_socket_server_from_file(filename);
753   }
754   if (direction == COPY) {
755     INFO0("Memory copy");
756   }
757
758   local_arch = gras_arch_selfid();
759   write_read("char", &local_arch, &remote_arch, sock, direction);
760   if (direction == READ)
761     VERB2("This file was generated on %s (%d)",
762           gras_datadesc_arch_name(remote_arch), (int) remote_arch);
763
764
765   test_int(sock, direction);
766   test_float(sock, direction);
767   test_double(sock, direction);
768   test_array(sock, direction);
769   test_intref(sock, direction);
770
771   test_string(sock, direction);
772   test_dynar_scal(sock, direction);
773   test_dynar_empty(sock, direction);
774
775   test_structures(sock, direction);
776
777   test_homostruct(sock, direction);
778   test_hetestruct(sock, direction);
779   test_nestedstruct(sock, direction);
780   test_hetestruct_array(sock, direction);
781
782   test_chain_list(sock, direction);
783   test_graph(sock, direction);
784   test_dynar_ref(sock, direction);
785
786   test_pbio(sock, direction);
787
788   test_clause(sock, direction);
789   test_clause_empty(sock, direction);
790
791   if (direction != COPY)
792     gras_socket_close(sock);
793
794   gras_exit();
795   return 0;
796 }