Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Current state. See changelog, sorry, I'm out of time
[simgrid.git] / src / gras / Transport / transport_interface.h
index d23f05e..63e3429 100644 (file)
  ***/
 gras_error_t gras_trp_chunk_send(gras_socket_t *sd,
                                 char *data,
-                                size_t size);
+                                long int size);
 gras_error_t gras_trp_chunk_recv(gras_socket_t *sd,
                                 char *data,
-                                size_t size);
+                                long int size);
+gras_error_t gras_trp_flush(gras_socket_t *sd);
 
 /* Find which socket needs to be read next */
 gras_error_t 
@@ -29,12 +30,6 @@ gras_trp_select(double timeout,
                gras_socket_t **dst);
 
 
-/***
- *** Module declaration 
- ***/
-gras_error_t gras_trp_init(void);
-void         gras_trp_exit(void);
-
 /***
  *** Plugin mecanism 
  ***/
@@ -46,16 +41,12 @@ typedef struct gras_trp_plugin_ gras_trp_plugin_t;
 struct gras_trp_plugin_ {
   char          *name;
  
-  /* dst pointers are created and initialized with default values 
-     before call to socket_client/server*/
+  /* dst pointers are created and initialized with default values
+     before call to socket_client/server. 
+     Retrive the info you need from there. */
   gras_error_t (*socket_client)(gras_trp_plugin_t *self,
-                               const char *host,
-                               unsigned short port,
-                               int raw,
                                /* OUT */ gras_socket_t *dst);
   gras_error_t (*socket_server)(gras_trp_plugin_t *self,
-                               unsigned short port,
-                               int raw,
                                /* OUT */ gras_socket_t *dst);
    
   gras_error_t (*socket_accept)(gras_socket_t  *sock,
@@ -67,14 +58,20 @@ struct gras_trp_plugin_ {
   void         (*socket_close)(gras_socket_t *sd);
     
   gras_error_t (*chunk_send)(gras_socket_t *sd,
-                            char *data,
-                            size_t size);
+                            const char *data,
+                            long int size);
   gras_error_t (*chunk_recv)(gras_socket_t *sd,
                             char *Data,
-                            size_t size);
+                            long int size);
 
-  void          *specific;
-  void         (*free_specific)(void *);
+  /* flush has to make sure that the pending communications are achieved */
+  gras_error_t (*flush)(gras_socket_t *sd);
+
+  void          *data; /* plugin-specific data */
+   /* exit is responsible for freeing data and telling the OS this plugin goes */
+   /* exit=NULL, data gets freed. (ie exit function needed only when data contains pointers) */
+  void         (*exit)(gras_trp_plugin_t *);
 };
 
 gras_error_t