Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
MPI_Allreduce()
[simgrid.git] / include / gras / datadesc.h
1 /* $Id$ */
2
3 /* gras/datadesc.h - Describing the data you want to exchange               */
4
5 /* Copyright (c) 2003, 2004 Martin Quinson. All rights reserved.            */
6
7 /* This program is free software; you can redistribute it and/or modify it
8  * under the terms of the license (GNU LGPL) which comes with this package. */
9
10 #ifndef GRAS_DATADESC_H
11 #define GRAS_DATADESC_H
12
13 #include "xbt/misc.h"           /* SG_BEGIN_DECL */
14 #include "xbt/dynar.h"          /* void_f_pvoid_t */
15
16 SG_BEGIN_DECL()
17
18 /** @addtogroup GRAS_dd Data description
19  *  @brief Describing data to be exchanged
20  *
21  * Since GRAS takes care of potential representation conversion when the platform is heterogeneous, 
22  * any data which transits on the network must be described beforehand.
23  * 
24  * There is several possible interfaces for this, ranging from the really completely automatic parsing to 
25  * completely manual. Let's study each of them from the simplest to the more advanced:
26  * 
27  *   - Section \ref GRAS_dd_basic presents how to retrieve and use an already described type.
28  *   - Section \ref GRAS_dd_auto shows how to get GRAS parsing your type description automagically. This
29  *     is unfortunately not always possible (only works for some structures), but if it is for your data,
30  *     this is definitly the way to go.
31  *   - Section \ref GRAS_dd_manual presents how to build a description manually. This is useful when you want
32  *     to describe an array or a pointer of pre-defined structures.
33  *   - You sometimes need to exchange informations between descriptions at send or receive time. This is 
34  *     for example useful when your structure contains an array which size is given by another field of the 
35  *     structure.
36  *     - Section \ref GRAS_dd_cb_simple provides a simple interface to do so, allowing to share integers stored on a stack.
37  *     - Section \ref GRAS_dd_cb_full provides a full featured interface to do so, but it may reveal somehow difficult to use.
38  **/
39 /** @defgroup GRAS_dd_basic Basic operations on data descriptions
40  *  @ingroup GRAS_dd
41  * \htmlonly <!-- DOXYGEN_NAVBAR_LABEL="Basics" --> \endhtmlonly
42  *
43  * If you only want to send pre-existing types, simply retrieve the pre-defined description with 
44  * the \ref gras_datadesc_by_name function. Existing types entail:
45  *  - char (both signed and unsigned)
46  *  - int (short, regular, long and long long, both signed and unsigned)
47  *  - float and double
48  *  - string (which is indeed a reference to a dynamically sized array of char, strlen being used to retrieve the size)
49  * 
50  * Example:\verbatim gras_datadesc_type_t i = gras_datadesc_by_name("int");
51  gras_datadesc_type_t uc = gras_datadesc_by_name("unsigned char");
52  gras_datadesc_type_t str = gras_datadesc_by_name("string");\endverbatim
53  *
54  */
55 /* @{ */
56 /** @brief Opaque type describing a type description. */
57      typedef struct s_gras_datadesc_type *gras_datadesc_type_t;
58
59 /** \brief Search a type description from its name */
60 XBT_PUBLIC(gras_datadesc_type_t) gras_datadesc_by_name(const char *name);
61 XBT_PUBLIC(gras_datadesc_type_t) gras_datadesc_by_name_or_null(const char
62                                                                *name);
63
64 /* @} */
65
66 /** @defgroup GRAS_dd_auto Automatic parsing of data descriptions
67  *  @ingroup GRAS_dd
68  * \htmlonly <!-- DOXYGEN_NAVBAR_LABEL="Automatic parsing" --> \endhtmlonly
69  * 
70  *  If you need to declare a new datatype, this is the simplest way to describe it to GRAS. Simply
71  *  enclose its type definition  into a \ref GRAS_DEFINE_TYPE macro call, and you're set. Here is 
72  *  an type declaration  example: \verbatim GRAS_DEFINE_TYPE(mytype,struct mytype {
73    int myfirstfield;
74    char mysecondfield;
75  });\endverbatim
76  *  The type is then both copied verbatim into your source file and stored for further parsing. This allows
77  *  you to let GRAS parse the exact version you are actually using in your program.
78  *  You can then retrieve the corresponding type description with \ref gras_datadesc_by_symbol.
79  *  Don't worry too much for the performances, the type is only parsed once and a binary representation 
80  *  is stored and used in any subsequent calls.
81  * 
82  *  If your structure contains any pointer, you have to explain GRAS the size of the pointed array. This
83  *  can be 1 in the case of simple references, or more in the case of regular arrays. For that, use the 
84  *  \ref GRAS_ANNOTE macro within the type declaration you are passing to \ref GRAS_DEFINE_TYPE. This macro
85  *  rewrites itself to nothing in the declaration (so they won't pollute the type definition copied verbatim
86  *  into your code), and give some information to GRAS about your pointer. 
87  
88  *  GRAS_ANNOTE takes two arguments being the key name and the key value. For now, the only accepted key name 
89  *  is "size", to specify the length of the pointed array. It can either be:
90  *    - the string "1" (without the quote),
91  *    - the name of another field of the structure
92  *    - a sort of computed expression for multidimensional arrays (see below -- pay attention to the warnings below).
93  *  
94  *  Here is an example:\verbatim GRAS_DEFINE_TYPE(s_clause,
95   struct s_array {
96     xbt_string_t name;
97     struct s_array *father GRAS_ANNOTE(size,1);
98     int length;
99     int *data GRAS_ANNOTE(size,length);
100     int rows;
101     int cols;
102     int *matrix GRAS_ANNOTE(size,rows*cols);
103  }
104 ;)\endverbatim
105  * It specifies that the structure s_array contains six fields, that the \a name field is a classical null-terminated 
106  * char* string (#xbt_string_t is just an helper type defined exactly to help the parsing macro to specify the semantic of the pointer),
107  * that \a father field is a simple reference, that the size of the array pointed by \a data is the \a length field, and that the 
108  * \a matrix field is an arraywhich size is the result of \a rows times \a cols.
109  *
110  *  \warning Since GRAS_DEFINE_TYPE is a macro, you shouldn't put any comma in your type definition 
111  *  (comma separates macro args). For example, change \verbatim int a, b;\endverbatim to \verbatim int a;
112 int b;\endverbatim
113  * 
114  * \section gras_dd_define \#define and fixed size array
115  *
116  * If you want to exchange arrays which size is given at compilation time by a
117  * \#defined constant, you need to keep GRAS informed. It would be done the
118  * following way:
119
120 \verbatim #define BLOCK_SIZE 32
121 GRAS_DEFINE_TYPE(s_toto,
122 struct {
123   double data[BLOCK_SIZE];
124 } s_toto;)
125
126 void register_messages() { 
127   gras_datadesc_type_t toto_type;
128
129   gras_datadesc_set_const("BLOCK_SIZE",BLOCK_SIZE);
130   toto_type = gras_datadesc_by_symbol(s_toto); 
131 }\endverbatim
132  *
133  * The form <tt>gras_datadesc_set_const("BLOCK_SIZE",BLOCK_SIZE);</tt> ensures
134  * that when you change the definition of the constant, GRAS keeps informed of
135  * the right value. Passing the numerical value of the constant as second
136  * argument would be a bad idea to that regard. Of course, the call to
137  * gras_datadesc_set_const() should come before any gras_datadesc_by_symbol()
138  * containing references to it.
139  *
140  * \section GRAS_dd_multidim Defining multidimentional arrays
141  * 
142  *  The mecanism for multidimensional arrays is known to be fragile and cumbersome. If you want to use it, 
143  *  you have to understand how it is implemented: the multiplication is performed using the sizes stack. In previous example,
144  *  a \ref gras_datadesc_cb_push_int callback is added to the \a rows field and a \ref gras_datadesc_cb_push_int_mult one is 
145  *  added to \a cols. So, when the structure is sent, the \a rows field push its value onto the stack, then the \a cols field 
146  *  retrieve this value from the stack, compute (and push) the multiplication value. The \a matrix field can then retrieve this
147  *  value by poping the array. There is several ways for this to go wrong:
148  *   - if the matrix field is placed before the sizes, the right value won't get pushed into the stack soon enough. 
149  *     Reorder your structure fields if needed.
150  *   - if you write GRAS_ANNOTE(size,cols*rows); in previous example (inverting rows and cols in annotation),
151  *     \a rows will be given a \ref gras_datadesc_cb_push_int_mult. This cannot work since it will try to 
152  *     pop the value which will be pushed by \a cols <i>afterward</i>.
153  *   - if you have more than one matrix in your structure, don't interleave the size. They are pushed/poped in the structure order.
154  *   - if some of the sizes are used in more than one matrix, you cannot use this mecanism -- sorry. 
155  *
156  * If you cannot express your datadescs with this mechanism, you'll have to use the more advanced 
157  * (and somehow complex) one described in the \ref GRAS_dd_cb_full.
158  *
159  * \section GRAS_dd_multifile Projects spanning over multiple files
160  * 
161  * GRAS_DEFINE_TYPE declares some symbols to work, it needs some special
162  * care when used in several files. In such case, you want the regular type
163  * definition in all files, but the gras specific symbol defined in only
164  * one file. For example, consider the following gras project sketch.
165  * 
166 \verbatim #include <gras.h>
167
168 GRAS_DEFINE_TYPE(my_type,struct my_type {
169   int a;
170   int b;
171   double c;
172 });
173
174 int client(int argc, char *argv[]) {
175  ...
176 }
177
178 int server(int argc, char *argv[]) {
179  ...
180 }\endverbatim
181  * 
182  * If you want to split this in two files (one for each kind of processes),
183  * you need to put the GRAS_DEFINE_TYPE block in a separate header (so that
184  * each process kind see the associated C type definition). But
185  * then you cannot include this right away in all files because the extra
186  * symbols containing the GRAS definition would be dupplicated.
187  * 
188  * You thus have to decide in which C file the symbols will live. In that
189  * file, include the header without restriction:
190  * 
191 \verbatim #include "my_header.h"
192
193 int client(int argc, char *argv[]) {
194   ...
195 }\endverbatim
196
197  * And in the other files needing the C definitions without the extra GRAS
198  * symbols, declare the symbol GRAS_DEFINE_TYPE_EXTERN before loading gras.h:
199  * 
200 \verbatim #define GRAS_DEFINE_TYPE_EXTERN
201 #include <gras.h>
202 #include "my_header.h"
203
204 int server(int argc, char *argv[]) {
205   ...
206 }\endverbatim
207
208  * 
209  * Sometimes, the situation is even more complicated: There is some shared
210  * messages that you want to see from every file, and some private messages 
211  * that you want to be defined only in one C file.
212  * In that case, use the previous trick for common messages, and use 
213  * #GRAS_DEFINE_TYPE_LOCAL for the private messages. 
214  *
215  * For now, there is no way to have semi-private symbols (for example shared 
216  * in all files of a library), sorry. Use functions as interface to your 
217  * library instead of publishing directly the messages.
218  * 
219  */
220 /** @{ */
221
222
223 /**   @brief Automatically parse C code
224  *    @hideinitializer
225  */
226 #define GRAS_DEFINE_TYPE(name,def) \
227   const char * _gras_this_type_symbol_does_not_exist__##name=#def; def
228
229 #ifndef DOXYGEN_SKIP            /* doxygen don't like macro fun too much */
230 #  ifdef GRAS_DEFINE_TYPE_EXTERN
231 #    undef  GRAS_DEFINE_TYPE
232 #    define GRAS_DEFINE_TYPE(name,def)  def
233 #    undef GRAS_DEFINE_TYPE_EXTERN
234 #  endif
235 #endif
236
237 /**   @brief if this symbol is defined, the \a GRAS_DEFINE_TYPE symbols live in another file.
238  *    @hideinitializer
239  */
240 #define GRAS_DEFINE_TYPE_EXTERN 1
241 /* leave the fun of declaring this to the user */
242 #undef GRAS_DEFINE_TYPE_EXTERN
243
244 /** @brief Define a symbol to be automatically parsed, disregarding #GRAS_DEFINE_TYPE_EXTERN
245  *  @hideinitializer
246  * 
247  *  Call this macro instead of #GRAS_DEFINE_TYPE if you had to define #GRAS_DEFINE_TYPE_EXTERN
248  *  to load some external symbols, but if you now want to automatically parse the content of 
249  *  your private messages.
250  */
251 #define GRAS_DEFINE_TYPE_LOCAL(name, def) \
252   const char * _gras_this_type_symbol_does_not_exist__##name=#def; def
253
254 /** @brief Retrieve a datadesc which was previously parsed 
255  *  @hideinitializer
256  */
257 #define gras_datadesc_by_symbol(name)  \
258   (gras_datadesc_by_name_or_null(#name) ?      \
259    gras_datadesc_by_name_or_null(#name) :      \
260      gras_datadesc_parse(#name,        \
261                          _gras_this_type_symbol_does_not_exist__##name) \
262   )
263
264 /** @def GRAS_ANNOTE
265  *  @brief Add an annotation to a type to be automatically parsed
266  */
267 #define GRAS_ANNOTE(key,val)
268
269 /** @brief Defines the value of a define to the datatype parsing infrastructure
270  */
271 XBT_PUBLIC(void) gras_datadesc_set_const(const char *name, int value);
272
273 /* @} */
274
275 XBT_PUBLIC(gras_datadesc_type_t)
276   gras_datadesc_parse(const char *name, const char *C_statement);
277
278 /** @defgroup GRAS_dd_manual Simple manual data description
279  *  @ingroup GRAS_dd
280  * 
281  * Here are the functions to use if you want to declare your description manually. 
282  * The function names should be self-explanatory in most cases.
283  * 
284  * You can add callbacks to the datatypes doing any kind of action you may want. Usually, 
285  * pre-send callbacks are used to prepare the type expedition while post-receive callbacks 
286  * are used to fix any issue after the receive.
287  * 
288  * If your types are dynamic, you'll need to add some extra callback. For example, there is a
289  * specific callback for the string type which is in charge of computing the length of the char
290  * array. This is done with the cbps mechanism, explained in next section.
291  * 
292  * If your types may contain pointer cycle, you must specify it to GRAS using the @ref gras_datadesc_cycle_set. 
293  * 
294  * Example:\verbatim
295  typedef struct {
296    unsigned char c1;
297    unsigned long int l1;
298    unsigned char c2;
299    unsigned long int l2;
300  } mystruct;
301  [...]
302   my_type=gras_datadesc_struct("mystruct");
303   gras_datadesc_struct_append(my_type,"c1", gras_datadesc_by_name("unsigned char"));
304   gras_datadesc_struct_append(my_type,"l1", gras_datadesc_by_name("unsigned long"));
305   gras_datadesc_struct_append(my_type,"c2", gras_datadesc_by_name("unsigned char"));
306   gras_datadesc_struct_append(my_type,"l2", gras_datadesc_by_name("unsigned long int"));
307   gras_datadesc_struct_close(my_type);
308
309   my_type=gras_datadesc_ref("mystruct*", gras_datadesc_by_name("mystruct"));
310   
311   [Use my_type to send pointers to mystruct data]\endverbatim
312  */
313 /* @{ */
314
315
316 /** \brief Opaque type describing a type description callback persistant state. */
317      typedef struct s_gras_cbps *gras_cbps_t;
318
319 /* callbacks prototypes */
320 /** \brief Prototype of type callbacks returning nothing. */
321      typedef void (*gras_datadesc_type_cb_void_t) (gras_datadesc_type_t
322                                                    typedesc, gras_cbps_t vars,
323                                                    void *data);
324 /** \brief Prototype of type callbacks returning an int. */
325      typedef int (*gras_datadesc_type_cb_int_t) (gras_datadesc_type_t
326                                                  typedesc, gras_cbps_t vars,
327                                                  void *data);
328 /** \brief Prototype of type callbacks selecting a type. */
329      typedef
330
331       
332        gras_datadesc_type_t(*gras_datadesc_selector_t) (gras_datadesc_type_t
333                                                         typedesc,
334                                                         gras_cbps_t vars,
335                                                         void *data);
336
337
338 /******************************************
339  **** Declare datadescription yourself ****
340  ******************************************/
341
342 XBT_PUBLIC(gras_datadesc_type_t) gras_datadesc_struct(const char *name);
343 XBT_PUBLIC(void) gras_datadesc_struct_append(gras_datadesc_type_t struct_type,
344                                              const char *name,
345                                              gras_datadesc_type_t field_type);
346 XBT_PUBLIC(void) gras_datadesc_struct_close(gras_datadesc_type_t struct_type);
347
348
349 XBT_PUBLIC(gras_datadesc_type_t) gras_datadesc_union(const char *name,
350                                                      gras_datadesc_type_cb_int_t
351                                                      selector);
352 XBT_PUBLIC(void) gras_datadesc_union_append(gras_datadesc_type_t union_type,
353                                             const char *name,
354                                             gras_datadesc_type_t field_type);
355 XBT_PUBLIC(void) gras_datadesc_union_close(gras_datadesc_type_t union_type);
356
357
358 XBT_PUBLIC(gras_datadesc_type_t)
359   gras_datadesc_ref(const char *name, gras_datadesc_type_t referenced_type);
360 XBT_PUBLIC(gras_datadesc_type_t)
361   gras_datadesc_copy(const char *name, gras_datadesc_type_t copied_type);
362 XBT_PUBLIC(gras_datadesc_type_t)
363   gras_datadesc_ref_generic(const char *name,
364                           gras_datadesc_selector_t selector);
365
366 XBT_PUBLIC(gras_datadesc_type_t)
367   gras_datadesc_array_fixed(const char *name,
368                           gras_datadesc_type_t element_type,
369                           long int fixed_size);
370 XBT_PUBLIC(gras_datadesc_type_t)
371   gras_datadesc_array_dyn(const char *name,
372                         gras_datadesc_type_t element_type,
373                         gras_datadesc_type_cb_int_t dynamic_size);
374 XBT_PUBLIC(gras_datadesc_type_t)
375   gras_datadesc_ref_pop_arr(gras_datadesc_type_t element_type);
376
377 XBT_PUBLIC(gras_datadesc_type_t)
378   gras_datadesc_dynar(gras_datadesc_type_t elm_t, void_f_pvoid_t free_func);
379 XBT_PUBLIC(gras_datadesc_type_t)
380   gras_datadesc_matrix(gras_datadesc_type_t elm_t, void_f_pvoid_t const free_f);
381
382 /*********************************
383  * Change stuff within datadescs *
384  *********************************/
385
386 /** \brief Specify that this type may contain cycles */
387 XBT_PUBLIC(void) gras_datadesc_cycle_set(gras_datadesc_type_t type);
388 /** \brief Specify that this type do not contain any cycles (default) */
389 XBT_PUBLIC(void) gras_datadesc_cycle_unset(gras_datadesc_type_t type);
390 /** \brief Add a pre-send callback to this datadesc. */
391 XBT_PUBLIC(void) gras_datadesc_cb_send(gras_datadesc_type_t type,
392                                        gras_datadesc_type_cb_void_t pre);
393 /** \brief Add a post-receive callback to this datadesc.*/
394 XBT_PUBLIC(void) gras_datadesc_cb_recv(gras_datadesc_type_t type,
395                                        gras_datadesc_type_cb_void_t post);
396 /** \brief Add a pre-send callback to the given field of the datadesc */
397 XBT_PUBLIC(void) gras_datadesc_cb_field_send(gras_datadesc_type_t type,
398                                              const char *field_name,
399                                              gras_datadesc_type_cb_void_t
400                                              pre);
401 /** \brief Add a post-receive callback to the given field of the datadesc */
402 XBT_PUBLIC(void) gras_datadesc_cb_field_recv(gras_datadesc_type_t type,
403                                              const char *field_name,
404                                              gras_datadesc_type_cb_void_t
405                                              post);
406 /** \brief Add a pre-send callback to the given field resulting in its value to be pushed */
407 XBT_PUBLIC(void) gras_datadesc_cb_field_push(gras_datadesc_type_t type,
408                                              const char *field_name);
409 /** \brief Add a pre-send callback to the given field resulting in its value multiplied to any previously pushed value and then pushed back */
410 XBT_PUBLIC(void) gras_datadesc_cb_field_push_multiplier(gras_datadesc_type_t
411                                                         type, const char
412                                                         *field_name);
413
414 /******************************
415  * Get stuff within datadescs *
416  ******************************/
417 /** \brief Returns the name of a datadescription */
418 XBT_PUBLIC(const char *) gras_datadesc_get_name(gras_datadesc_type_t ddt);
419 /** \brief Returns the identifier of a datadescription */
420 XBT_PUBLIC(int) gras_datadesc_get_id(gras_datadesc_type_t ddt);
421
422 /* @} */
423
424 /** @defgroup GRAS_dd_cb_simple Data description with Callback Persistant State: Simple push/pop mechanism
425  *  @ingroup GRAS_dd
426  * 
427  * Sometimes, one of the callbacks need to leave information for the next ones. If this is a simple integer (such as
428  * an array size), you can use the functions described here. If not, you'll have to play with the complete cbps interface.
429  *
430  * \htmlonly <!--  DOXYGEN_NAVBAR_LABEL="Simple push/pop Callback State" -->\endhtmlonly      
431  * 
432  * Here is an example:\verbatim
433 struct s_array {
434   int length;
435   int *data;
436 }
437 [...]
438 my_type=gras_datadesc_struct("s_array");
439 gras_datadesc_struct_append(my_type,"length", gras_datadesc_by_name("int"));
440 gras_datadesc_cb_field_send (my_type, "length", gras_datadesc_cb_push_int);
441
442 gras_datadesc_struct_append(my_type,"data",
443                             gras_datadesc_array_dyn ("s_array::data",gras_datadesc_by_name("int"), gras_datadesc_cb_pop));
444 gras_datadesc_struct_close(my_type);
445 \endverbatim
446
447  *
448  * The *_mult versions are intended for multi-dimensional arrays: They multiply their value to the previously pushed one 
449  * (by another field callback) and push the result of the multiplication back. An example of use follows. Please note
450  * that the first field needs a regular push callback, not a multiplier one. Think of it as a stacked calculator (man dc(1)).\verbatim
451 struct s_matrix {
452   int row;
453   int col;
454   int *data;
455 }
456 [...]
457 my_type=gras_datadesc_struct("s_matrix");
458 gras_datadesc_struct_append(my_type,"row", gras_datadesc_by_name("int"));
459 gras_datadesc_cb_field_send (my_type, "length", gras_datadesc_cb_push_int);
460 gras_datadesc_struct_append(my_type,"col", gras_datadesc_by_name("int"));
461 gras_datadesc_cb_field_send (my_type, "length", gras_datadesc_cb_push_int_mult);
462
463 gras_datadesc_struct_append(my_type,"data",
464                             gras_datadesc_array_dyn ("s_matrix::data",gras_datadesc_by_name("int"), gras_datadesc_cb_pop));
465 gras_datadesc_struct_close(my_type);
466 \endverbatim
467  
468  */
469 /* @{ */
470
471 XBT_PUBLIC(void) gras_cbps_i_push(gras_cbps_t ps, int val);
472 XBT_PUBLIC(int) gras_cbps_i_pop(gras_cbps_t ps);
473
474 XBT_PUBLIC(int) gras_datadesc_cb_pop(gras_datadesc_type_t typedesc,
475                                      gras_cbps_t vars, void *data);
476
477 XBT_PUBLIC(void) gras_datadesc_cb_push_int(gras_datadesc_type_t typedesc,
478                                            gras_cbps_t vars, void *data);
479 XBT_PUBLIC(void) gras_datadesc_cb_push_uint(gras_datadesc_type_t typedesc,
480                                             gras_cbps_t vars, void *data);
481 XBT_PUBLIC(void) gras_datadesc_cb_push_lint(gras_datadesc_type_t typedesc,
482                                             gras_cbps_t vars, void *data);
483 XBT_PUBLIC(void) gras_datadesc_cb_push_ulint(gras_datadesc_type_t typedesc,
484                                              gras_cbps_t vars, void *data);
485
486 XBT_PUBLIC(void) gras_datadesc_cb_push_int_mult(gras_datadesc_type_t typedesc,
487                                                 gras_cbps_t vars, void *data);
488 XBT_PUBLIC(void) gras_datadesc_cb_push_uint_mult(gras_datadesc_type_t
489                                                  typedesc, gras_cbps_t vars,
490                                                  void *data);
491 XBT_PUBLIC(void) gras_datadesc_cb_push_lint_mult(gras_datadesc_type_t
492                                                  typedesc, gras_cbps_t vars,
493                                                  void *data);
494 XBT_PUBLIC(void) gras_datadesc_cb_push_ulint_mult(gras_datadesc_type_t
495                                                   typedesc, gras_cbps_t vars,
496                                                   void *data);
497
498
499 /* @} */
500
501 /** @defgroup GRAS_dd_cb_full Data description with Callback Persistant State: Full featured interface
502  *  @ingroup GRAS_dd
503  * 
504  * Sometimes, one of the callbacks need to leave information for the next
505  * ones. If the simple push/pop mechanism introduced in previous section
506  * isn't enough, you can always use this full featured one. The bad point is
507  * that it is quite badly documented...
508  *
509  * \htmlonly <!--  DOXYGEN_NAVBAR_LABEL="Full featured Callback State" -->\endhtmlonly      
510  *
511  */
512
513 /* @{ */
514
515 XBT_PUBLIC(void) gras_cbps_v_pop(gras_cbps_t ps, const char *name,
516                                  /* OUT */ gras_datadesc_type_t * ddt,
517                                  /* OUT */ void **res);
518 XBT_PUBLIC(void) gras_cbps_v_push(gras_cbps_t ps,
519                                   const char *name,
520                                   void *data, gras_datadesc_type_t ddt);
521 XBT_PUBLIC(void) gras_cbps_v_set(gras_cbps_t ps,
522                                  const char *name,
523                                  void *data, gras_datadesc_type_t ddt);
524
525 XBT_PUBLIC(void *) gras_cbps_v_get(gras_cbps_t ps, const char *name,
526                                    /* OUT */ gras_datadesc_type_t * ddt);
527
528 XBT_PUBLIC(void) gras_cbps_block_begin(gras_cbps_t ps);
529 XBT_PUBLIC(void) gras_cbps_block_end(gras_cbps_t ps);
530
531 /* @} */
532 /* @} */
533
534
535 /*******************************
536  **** About data convertion ****
537  *******************************/
538 XBT_PUBLIC(int) gras_arch_selfid(void); /* ID of this arch */
539
540
541 /*****************************
542  **** NWS datadescription * FIXME: obsolete?
543  *****************************/
544
545 /**
546  * Basic types we can embeed in DataDescriptors.
547  */
548      typedef enum
549        { CHAR_TYPE, DOUBLE_TYPE, FLOAT_TYPE, INT_TYPE, LONG_TYPE, SHORT_TYPE,
550        UNSIGNED_INT_TYPE, UNSIGNED_LONG_TYPE, UNSIGNED_SHORT_TYPE, STRUCT_TYPE
551      } DataTypes;
552 #define SIMPLE_TYPE_COUNT 9
553
554 /**  \brief Describe a collection of data.
555  * 
556 ** A description of a collection of \a type data.  \a repetitions is used only
557 ** for arrays; it contains the number of elements.  \a offset is used only for
558 ** struct members in host format; it contains the offset of the member from the
559 ** beginning of the struct, taking into account internal padding added by the
560 ** compiler for alignment purposes.  \a members, \a length, and \a tailPadding are
561 ** used only for STRUCT_TYPE data; the \a length -long array \a members describes
562 ** the members of the nested struct, and \a tailPadding indicates how many
563 ** padding bytes the compiler adds to the end of the structure.
564 */
565
566      typedef struct DataDescriptorStruct {
567        DataTypes type;
568        size_t repetitions;
569        size_t offset;
570        /*@null@ */ struct DataDescriptorStruct *members;
571        size_t length;
572        size_t tailPadding;
573      } DataDescriptor;
574 /** DataDescriptor for an array */
575 #define SIMPLE_DATA(type,repetitions) \
576   {type, repetitions, 0, NULL, 0, 0}
577 /** DataDescriptor for an structure member */
578 #define SIMPLE_MEMBER(type,repetitions,offset) \
579   {type, repetitions, offset, NULL, 0, 0}
580 /** DataDescriptor for padding bytes */
581 #define PAD_BYTES(structType,lastMember,memberType,repetitions) \
582   sizeof(structType) - offsetof(structType, lastMember) - \
583   sizeof(memberType) * repetitions
584
585 XBT_PUBLIC(gras_datadesc_type_t)
586   gras_datadesc_import_nws(const char *name,
587                          const DataDescriptor * desc, unsigned long howmany);
588
589
590 SG_END_DECL()
591 #endif /* GRAS_DATADESC_H */