Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Change the prototype of xbt_thread_create(), sorry.
[simgrid.git] / include / gras / transport.h
1
2 /* $Id$ */
3
4 /* transport - low level communication (send/receive bunches of bytes)      */
5 /* module's public interface exported to end user.                          */
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_TRANSPORT_H
13 #define GRAS_TRANSPORT_H
14
15 /** \addtogroup GRAS_sock
16  *  \brief Socket handling
17  *
18  * The model of communications in GRAS is very close to the BSD socket one.
19  * To get two hosts exchanging data, one of them need to open a
20  * <i>server</i> socket on which it can listen for incoming messages and the
21  * other one must connect a <i>client</i> socket onto the server one.
22  *
23  * The main difference is that you cannot exchange arbitrary bytes on
24  * sockets, but messages. See the \ref GRAS_msg section for details.
25  * 
26  * If you need an example of how to use sockets, check \ref GRAS_ex_ping.
27  *
28  */
29
30 /** \defgroup GRAS_sock_create Socket creation functions
31  *  \ingroup GRAS_sock
32  *
33  */
34 /* @{*/
35 /** \brief Opaque type describing a socket */
36 typedef struct s_gras_socket *gras_socket_t;
37
38 /** \brief Simply create a client socket (to speak to a remote host) */
39 XBT_PUBLIC(gras_socket_t) gras_socket_client(const char *host,
40                                              unsigned short port);
41 XBT_PUBLIC(gras_socket_t) gras_socket_client_from_string(const char *host);
42 /** \brief Simply create a server socket (to ear from remote hosts speaking to you) */
43 XBT_PUBLIC(gras_socket_t) gras_socket_server(unsigned short port);
44 XBT_PUBLIC(void) gras_socket_close(gras_socket_t sd);
45 XBT_PUBLIC(void) gras_socket_close_voidp(void *sock);
46
47 /** \brief Create a client socket, full interface to all relevant settings */
48 XBT_PUBLIC(gras_socket_t) gras_socket_client_ext(const char *host,
49                                                  unsigned short port,
50                                                  unsigned long int bufSize,
51                                                  int measurement);
52 /** \brief Create a server socket, full interface to all relevant settings */
53 XBT_PUBLIC(gras_socket_t) gras_socket_server_ext(unsigned short port,
54                                                  unsigned long int bufSize,
55                                                  int measurement);
56 XBT_PUBLIC(gras_socket_t)
57   gras_socket_server_range(unsigned short minport, unsigned short maxport,
58                          unsigned long int buf_size, int measurement);
59
60 /* @}*/
61 /** \defgroup GRAS_sock_info Retrieving data about sockets and peers 
62  *  \ingroup GRAS_sock
63  * 
64  * Who are you talking to? 
65  */
66 /* @{*/
67
68 /** Get the port number on which this socket is connected on my side */
69 XBT_PUBLIC(int) gras_socket_my_port(gras_socket_t sock);
70 /** @brief Get the port number on which this socket is connected on remote side 
71  *
72  * This is the port declared on remote side with the
73  * gras_socket_master() function (if any, or a random number being uniq on 
74  * the remote host). If remote used gras_socket_master() more than once, the 
75  * lastly declared number will be used here.
76  *
77  * Note to BSD sockets experts: With BSD sockets, the sockaddr 
78  * structure allows you to retrieve the port of the client socket on
79  * remote side, but it is of no use (from user perspective, it is
80  * some random number above 6000). That is why GRAS sockets differ
81  * from BSD ones here. 
82  */
83
84 XBT_PUBLIC(int) gras_socket_peer_port(gras_socket_t sock);
85 /** Get the host name of the remote side */
86 XBT_PUBLIC(char *) gras_socket_peer_name(gras_socket_t sock);
87 /** Get the process name of the remote side */
88 XBT_PUBLIC(char *) gras_socket_peer_proc(gras_socket_t sock);
89 /* @}*/
90
91 /** \defgroup GRAS_sock_meas Using measurement sockets
92  *  \ingroup GRAS_sock
93  * 
94  * You may want to use sockets not to exchange valuable data (in messages), 
95  * but to conduct some bandwidth measurements and related experiments. If so, try those measurement sockets.
96  * 
97  * You can only use those functions on sockets openned with the "measurement" boolean set to true.
98  * 
99  */
100 /* @{*/
101
102
103
104 XBT_PUBLIC(int) gras_socket_is_meas(gras_socket_t sock);
105 XBT_PUBLIC(void) gras_socket_meas_send(gras_socket_t peer,
106                                        unsigned int timeout,
107                                        unsigned long int msgSize,
108                                        unsigned long int msgAmount);
109 XBT_PUBLIC(void) gras_socket_meas_recv(gras_socket_t peer,
110                                        unsigned int timeout,
111                                        unsigned long int msgSize,
112                                        unsigned long int msgAmount);
113 XBT_PUBLIC(gras_socket_t) gras_socket_meas_accept(gras_socket_t peer);
114
115 /* @}*/
116
117 /** \defgroup GRAS_sock_file Using files as sockets
118  *  \ingroup GRAS_sock
119  * 
120  *
121  * For debugging purpose, it is possible to deal with files as if they were sockets.
122  * It can even be useful to store stuff in a portable manner, but writing messages to a file
123  * may be strange...
124  * 
125  * \bug Don't use '-' on windows. this file represents stdin or stdout, but I failed to deal with it on windows.
126  */
127 /* @{*/
128 /* debuging functions */
129 XBT_PUBLIC(gras_socket_t) gras_socket_client_from_file(const char *path);
130 XBT_PUBLIC(gras_socket_t) gras_socket_server_from_file(const char *path);
131
132 /* @} */
133
134 #endif /* GRAS_TRANSPORT_H */