Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Change the way we specify the sizes of bandwidth tests to be able to send really...
[simgrid.git] / include / gras / messages.h
index 293de52..fd26c02 100644 (file)
@@ -32,7 +32,9 @@ SG_BEGIN_DECL()
  *  it. If it arrives when before or after \ref gras_msg_wait, it will be
  *  passed to the callback.
  * 
- *  For an example of use, please refer to \ref GRAS_ex_ping.
+ *  For an example of use, please refer to \ref GRAS_ex_ping. The archive
+ *  contains much more examples, but their are not properly integrated into
+ *  this documentation yet. 
  */
 
 /** @defgroup GRAS_msg_decl Message declaration and retrival 
@@ -59,37 +61,19 @@ SG_BEGIN_DECL()
 /** \brief Opaque type */
 typedef struct s_gras_msgtype *gras_msgtype_t;
 
-  void gras_msgtype_declare  (const char           *name,
+  XBT_PUBLIC void gras_msgtype_declare  (const char           *name,
                              gras_datadesc_type_t  payload);
-  void gras_msgtype_declare_v(const char           *name,
+  XBT_PUBLIC void gras_msgtype_declare_v(const char           *name,
                              short int             version,
                              gras_datadesc_type_t  payload);
 
-  gras_msgtype_t gras_msgtype_by_name (const char *name);
-  gras_msgtype_t gras_msgtype_by_namev(const char *name, short int version);
-  gras_msgtype_t gras_msgtype_by_id(int id);
-
-/** @} */  
-/** @defgroup GRAS_msg_rpcdecl RPC declaration
- *  @ingroup  GRAS_msg
- *
- * Remote Procedure Call (RPC) are a classical mecanism to request a service
- * from a remote host. Using this set of functions, you let GRAS doing most of
- * the work of sending the request, wait for an answer, make sure it is the
- * right answer from the right host and so on.  Any exception raised on the
- * server is also passed over the network to the client.
- */
-/** @{ */
-
-void gras_msgtype_declare_rpc(const char           *name,
-                             gras_datadesc_type_t  payload_request,
-                             gras_datadesc_type_t  payload_answer);
-
-void gras_msgtype_declare_rpc_v(const char           *name,
-                               short int             version,
-                               gras_datadesc_type_t  payload_request,
-                               gras_datadesc_type_t  payload_answer);
+  XBT_PUBLIC gras_msgtype_t gras_msgtype_by_name (const char *name);
+  XBT_PUBLIC gras_msgtype_t gras_msgtype_by_name_or_null (const char *name);
+  XBT_PUBLIC gras_msgtype_t gras_msgtype_by_namev(const char *name, short int version);
+  XBT_PUBLIC gras_msgtype_t gras_msgtype_by_id(int id);
 
+  XBT_PUBLIC void gras_msgtype_dumpall(void);
+   
 
 /** @} */  
 /** @defgroup GRAS_msg_cb Callback declaration and use
@@ -108,11 +92,12 @@ void gras_msgtype_declare_rpc_v(const char           *name,
  * @{
  */
  
-  /** \brief Context of callbacks (opaque structure) */
+  /** \brief Context of callbacks (opaque structure, created by the middleware only, never by user) */
   typedef struct s_gras_msg_cb_ctx *gras_msg_cb_ctx_t;
 
-gras_socket_t gras_msg_cb_ctx_from(gras_msg_cb_ctx_t ctx);
-
+XBT_PUBLIC void gras_msg_cb_ctx_free(gras_msg_cb_ctx_t ctx) ;
+XBT_PUBLIC gras_socket_t gras_msg_cb_ctx_from(gras_msg_cb_ctx_t ctx);   
+   
   /** \brief Type of message callback functions. 
    *
    * \param expeditor: a socket to contact who sent this message
@@ -131,45 +116,75 @@ gras_socket_t gras_msg_cb_ctx_from(gras_msg_cb_ctx_t ctx);
   typedef int (*gras_msg_cb_t)(gras_msg_cb_ctx_t  ctx,
                               void             *payload);
 
-  void gras_cb_register  (gras_msgtype_t msgtype, gras_msg_cb_t cb);
-  void gras_cb_unregister(gras_msgtype_t msgtype, gras_msg_cb_t cb);
+  XBT_PUBLIC void gras_cb_register  (gras_msgtype_t msgtype, gras_msg_cb_t cb);
+  XBT_PUBLIC void gras_cb_unregister(gras_msgtype_t msgtype, gras_msg_cb_t cb);
 
 /** @} */  
 
-/** @defgroup GRAS_msg_rpc RPC specific functions
+/** @defgroup GRAS_msg_exchange Message exchange 
  *  @ingroup  GRAS_msg
+ *
  */
 /** @{ */
 
-/* client side */
-void gras_msg_rpccall(gras_socket_t server,
-                     double timeOut,
-                     gras_msgtype_t msgtype,
-                     void *request, void *answer);
-
-/* server side */
-void gras_msg_rpcreturn(double timeOut, gras_msg_cb_ctx_t ctx,void *answer);
 
+  XBT_PUBLIC void gras_msg_send(gras_socket_t   sock,
+                    gras_msgtype_t  msgtype,
+                    void           *payload);
+  XBT_PUBLIC void gras_msg_wait(double          timeout,    
+                    gras_msgtype_t  msgt_want,
+                    gras_socket_t  *expeditor,
+                    void           *payload);
+  XBT_PUBLIC void gras_msg_handleall(double period);   
+  XBT_PUBLIC void gras_msg_handle(double timeOut);
 
 /** @} */
 
-/** @defgroup GRAS_msg_exchange Message exchange 
+/** @defgroup GRAS_msg_rpc RPC specific functions
  *  @ingroup  GRAS_msg
  *
+ * Remote Procedure Call (RPC) are a classical mecanism to request a service
+ * from a remote host. Using this set of functions, you let GRAS doing most of
+ * the work of sending the request, wait for an answer, make sure it is the
+ * right answer from the right host and so on.  Any exception raised on the
+ * server is also passed over the network to the client.
+ * 
+ * Callbacks are attached to RPC incomming messages the regular way using
+ * \ref gras_cb_register.
+ * 
+ * For an example of use, check the examples/gras/rpc directory of the distribution.
  */
 /** @{ */
 
+/* declaration */
+XBT_PUBLIC void gras_msgtype_declare_rpc(const char           *name,
+                             gras_datadesc_type_t  payload_request,
+                             gras_datadesc_type_t  payload_answer);
+
+XBT_PUBLIC void gras_msgtype_declare_rpc_v(const char           *name,
+                               short int             version,
+                               gras_datadesc_type_t  payload_request,
+                               gras_datadesc_type_t  payload_answer);
+
+/* client side */
+XBT_PUBLIC void gras_msg_rpccall(gras_socket_t server,
+                     double timeOut,
+                     gras_msgtype_t msgtype,
+                     void *request, void *answer);
+XBT_PUBLIC gras_msg_cb_ctx_t
+gras_msg_rpc_async_call(gras_socket_t server,
+                       double timeOut,
+                       gras_msgtype_t msgtype,
+                       void *request);
+XBT_PUBLIC void gras_msg_rpc_async_wait(gras_msg_cb_ctx_t ctx,
+                            void *answer);
+
+/* server side */
+XBT_PUBLIC void gras_msg_rpcreturn(double timeOut, gras_msg_cb_ctx_t ctx,void *answer);
 
-  void gras_msg_send(gras_socket_t   sock,
-                    gras_msgtype_t  msgtype,
-                    void           *payload);
-  void gras_msg_wait(double          timeout,    
-                    gras_msgtype_t  msgt_want,
-                    gras_socket_t  *expeditor,
-                    void           *payload);
-  void gras_msg_handle(double timeOut);
 
 /** @} */
+
 /** @defgroup GRAS_msg_exchangeadv Message exchange (advanced interface)
  *  @ingroup  GRAS_msg
  *
@@ -211,12 +226,18 @@ typedef struct {
 
 typedef int (*gras_msg_filter_t)(gras_msg_t msg,void *ctx);
 
-  void gras_msg_wait_ext(double           timeout,    
-                        gras_msgtype_t   msgt_want,
-                        gras_socket_t    expe_want,
-                        gras_msg_filter_t filter,
-                        void             *filter_ctx, 
-                        gras_msg_t       msg_got);
+XBT_PUBLIC void gras_msg_wait_ext(double           timeout,    
+                      gras_msgtype_t   msgt_want,
+                      gras_socket_t    expe_want,
+                      gras_msg_filter_t filter,
+                      void             *filter_ctx, 
+                      gras_msg_t       msg_got);
+
+XBT_PUBLIC void gras_msg_wait_or(double         timeout,    
+                     xbt_dynar_t    msgt_want,
+                     gras_msg_cb_ctx_t *ctx,
+                     int           *msgt_got,
+                     void          *payload);
 
 
 /* @} */