Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Fixed licence and copyright. No more reference to da GRAS possee or the
[simgrid.git] / src / gras / Msg / msg_private.h
1 /* $Id$ */
2
3 /* messaging - high level communication (send/receive messages)             */
4
5 /* module's private interface masked even to other parts of GRAS.           */
6
7 /* Copyright (c) 2004 Martin Quinson. 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 #ifndef GRAS_MESSAGE_PRIVATE_H
13 #define GRAS_MESSAGE_PRIVATE_H
14
15 #include "gras_config.h"
16
17 #include "xbt/sysdep.h"
18 #include "xbt/log.h"
19 #include "xbt/error.h"
20 #include "xbt/dynar.h"
21 #include "xbt/set.h"
22 #include "gras/transport.h"
23 #include "gras/datadesc.h"
24 #include "gras/virtu.h"
25
26 #include "gras/messages.h"
27 #include "gras_modinter.h"
28
29 #include "gras/Msg/msg_interface.h"
30
31 /**
32  * gras_msgtype_t:
33  *
34  * Message type descriptor. There one of these for each registered version.
35  */
36 typedef struct s_gras_msgtype {
37   /* headers for the data set */
38   unsigned int   code;
39   char          *name;
40   unsigned int   name_len;
41         
42   /* payload */
43   short int version;
44   gras_datadesc_type_t ctn_type;
45 } s_gras_msgtype_t;
46
47 extern xbt_set_t _gras_msgtype_set; /* of gras_msgtype_t */
48 void gras_msgtype_free(void *msgtype);
49
50
51 xbt_error_t gras_msg_recv(gras_socket_t    sock,
52                            gras_msgtype_t  *msgtype,
53                            void           **payload,
54                            int             *payload_size);
55
56 /**
57  * gras_cblist_t:
58  *
59  * association between msg ID and cb list for a given process
60  */
61 struct s_gras_cblist {
62   long int id;
63   xbt_dynar_t cbs; /* of gras_msg_cb_t */
64 };
65
66 void gras_cblist_free(void *cbl);
67
68 #endif  /* GRAS_MESSAGE_PRIVATE_H */