X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/579c7b3bbc3945931795306ccf3a151729af5247..e2f62fd18beb9867571a81984aa9a26b4e9f48d4:/include/gras/transport.h diff --git a/include/gras/transport.h b/include/gras/transport.h index a5cc24235d..cdddc2dad5 100644 --- a/include/gras/transport.h +++ b/include/gras/transport.h @@ -1,10 +1,9 @@ -/* $Id$ */ - /* transport - low level communication (send/receive bunches of bytes) */ /* module's public interface exported to end user. */ -/* Copyright (c) 2004 Martin Quinson. All rights reserved. */ +/* Copyright (c) 2004, 2005, 2006, 2007, 2009, 2010. The SimGrid Team. + * All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it * under the terms of the license (GNU LGPL) which comes with this package. */ @@ -12,6 +11,8 @@ #ifndef GRAS_TRANSPORT_H #define GRAS_TRANSPORT_H +#include "xbt/socket.h" + /** \addtogroup GRAS_sock * \brief Socket handling * @@ -22,77 +23,39 @@ * * The main difference is that you cannot exchange arbitrary bytes on * sockets, but messages. See the \ref GRAS_msg section for details. - * + * * If you need an example of how to use sockets, check \ref GRAS_ex_ping. * */ - + /** \defgroup GRAS_sock_create Socket creation functions * \ingroup GRAS_sock * */ /* @{*/ -/** \brief Opaque type describing a socket */ -typedef struct s_gras_socket *gras_socket_t; /** \brief Simply create a client socket (to speak to a remote host) */ -gras_socket_t gras_socket_client(const char *host, unsigned short port); +XBT_PUBLIC(xbt_socket_t) gras_socket_client(const char *host, + unsigned short port); +XBT_PUBLIC(xbt_socket_t) gras_socket_client_from_string(const char *host); /** \brief Simply create a server socket (to ear from remote hosts speaking to you) */ -gras_socket_t gras_socket_server(unsigned short port); -/** \brief Close socket */ -void gras_socket_close(gras_socket_t sd); +XBT_PUBLIC(xbt_socket_t) gras_socket_server(unsigned short port); +XBT_PUBLIC(void) gras_socket_close(xbt_socket_t sd); +XBT_PUBLIC(void) gras_socket_close_voidp(void *sock); /** \brief Create a client socket, full interface to all relevant settings */ -gras_socket_t gras_socket_client_ext(const char *host, - unsigned short port, - unsigned long int bufSize, - int measurement); +XBT_PUBLIC(xbt_socket_t) gras_socket_client_ext(const char *host, + unsigned short port, + unsigned long int bufSize, + int measurement); /** \brief Create a server socket, full interface to all relevant settings */ -gras_socket_t gras_socket_server_ext(unsigned short port, - unsigned long int bufSize, - int measurement); -/* @}*/ -/** \defgroup GRAS_sock_info Retrieving data about sockets and peers - * \ingroup GRAS_sock - * - * Who are you talking to? - */ -/* @{*/ - -/** Get the port number on which this socket is connected on my side */ -int gras_socket_my_port (gras_socket_t sock); -/** Get the port number on which this socket is connected on remote side */ -int gras_socket_peer_port(gras_socket_t sock); -/** Get the host name of the remote side */ -char *gras_socket_peer_name(gras_socket_t sock); -/** Get the process name of the remote side */ -char *gras_socket_peer_proc(gras_socket_t sock); -/* @}*/ +XBT_PUBLIC(xbt_socket_t) gras_socket_server_ext(unsigned short port, + unsigned long int bufSize, + int measurement); +XBT_PUBLIC(xbt_socket_t) + gras_socket_server_range(unsigned short minport, unsigned short maxport, + unsigned long int buf_size, int measurement); -/** \defgroup GRAS_sock_meas Using measurement sockets - * \ingroup GRAS_sock - * - * You may want to use sockets not to exchange valuable data (in messages), - * but to conduct some bandwidth measurements and related experiments. If so, try those measurement sockets. - * - * You can only use those functions on sockets openned with the "measurement" boolean set to true. - * - */ -/* @{*/ - - - -int gras_socket_is_meas(gras_socket_t sock); -void gras_socket_meas_send(gras_socket_t peer, - unsigned int timeout, - unsigned long int expSize, - unsigned long int msgSize); -void gras_socket_meas_recv(gras_socket_t peer, - unsigned int timeout, - unsigned long int expSize, - unsigned long int msgSize); -gras_socket_t gras_socket_meas_accept(gras_socket_t peer); - /* @}*/ /** \defgroup GRAS_sock_file Using files as sockets @@ -107,9 +70,12 @@ gras_socket_t gras_socket_meas_accept(gras_socket_t peer); */ /* @{*/ /* debuging functions */ -gras_socket_t gras_socket_client_from_file(const char*path); -gras_socket_t gras_socket_server_from_file(const char*path); - +XBT_PUBLIC(xbt_socket_t) gras_socket_client_from_file(const char *path); +XBT_PUBLIC(xbt_socket_t) gras_socket_server_from_file(const char *path); + /* @} */ - -#endif /* GRAS_TRANSPORT_H */ + +void gras_trp_sg_setup(xbt_trp_plugin_t plug); +void gras_trp_file_setup(xbt_trp_plugin_t plug); + +#endif /* GRAS_TRANSPORT_H */