Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Remove the old crufty navigation bars
[simgrid.git] / include / amok / bandwidth.h
1 /* $Id$ */
2
3 /* amok_bandwidth - Bandwidth test facilities                               */
4
5 /* Copyright (c) 2003-2005 Martin Quinson. All rights reserved.             */
6
7 /* This program is free software; you can redistribute it and/or modify it
8  * under the terms of the license (GNU LGPL) which comes with this package. */
9
10 #ifndef AMOK_BANDWIDTH_H
11 #define AMOK_BANDWIDTH_H
12
13 #include "amok/base.h"
14
15 /* module handling */
16
17    
18 /** \addtogroup AMOK_bw
19  *  \brief Test the bandwidth between two nodes
20  *
21  *  This module allows you to retrieve the bandwidth between to arbitrary hosts, 
22  *  provided that they run some GRAS process which initialized this module. 
23  * 
24  *  Retrieving the bandwidth is usually done by active measurment: one send
25  *  a packet of known size, time how long it needs to go back and forth,
26  *  and you get the bandwidth in Kb/s available on the wire.
27  * 
28  *  This is not as easy as it first seems to do so in GRAS. The first issue
29  *  is that GRAS messages can get buffered, or the receiver cannot be
30  *  waiting for the message when it arrives. This results in extra delays
31  *  impacting the measurement quality. You thus have to setup a rendez-vous
32  *  protocol. The second issue is that GRAS message do have an header, so
33  *  figuring out their size is not trivial. Moreover, they get converted
34  *  when the sender and receiver processor architecture are different,
35  *  inducing extra delays. For this, GRAS provide the so-called measurement
36  *  sockets. On them, you can send raw data which is not converted (see
37  *  \ref GRAS_sock_meas). 
38  *
39  *  Solving all these problems is quite error prone and anoying, so we
40  *  implemented this in the current module so that you don't have to do it
41  *  yourself. The API is very simple. Use amok_bw_test() to get the BW
42  *  between the local host and the specified peer, or amok_bw_request() to
43  *  get the BW between two remote hosts. The elapsed time, as long as the
44  *  achieved bandwidth is returned in the last arguments of the functions.
45  * 
46  *  All sizes are in kilo bytes. The \a buf_size is the size of the buffer
47  *   (this is a socket parameter set automatically). The \a exp_size is the
48  *   amount of data to send during an experiment. \a msg_size is the size
49  *   of each message sent. These values allow you to study phenomenon such
50  *   as TCP slow start (which are not correctly modelized by \ref SURF_API,
51  *   yet). They are mimicked from the NWS API, and default values could be
52  *   buf_size=32k, msg_size=16k and exp_size=64k. That means that the
53  *   socket will be prepared to accept 32k in its buffer and then four
54  *   messages of 16k will be sent (so that the total amount of data equals
55  *   64k). Of course, you can use other values if you want to.
56  * 
57  *  \todo Cleanup and implement the link saturation stuff.
58  *
59  *  @{
60  */
61
62 void amok_bw_init(void);
63 void amok_bw_exit(void);
64
65 void amok_bw_test(gras_socket_t peer,
66                   unsigned long int buf_size,unsigned long int exp_size,unsigned long int msg_size,
67           /*OUT*/ double *sec, double *bw);
68
69 void amok_bw_request(const char* from_name,unsigned int from_port,
70                      const char* to_name,unsigned int to_port,
71                      unsigned long int buf_size,unsigned long int exp_size,unsigned long int msg_size,
72              /*OUT*/ double *sec, double*bw);
73
74 /** @} */
75 #if 0   
76
77 /* ***************************************************************************
78  * Link saturation
79  * ***************************************************************************/
80
81 /**
82  * grasbw_saturate_start:
83  * @from_name: Name of the host we are asking to do a experiment with (to_name:to_port)
84  * @from_port: port on which the process we are asking for an experiment is listening
85  * (for message, do not give a raw socket here. The needed raw socket will be negociated 
86  * between the peers)
87  * @to_name: Name of the host with which we should conduct the experiment
88  * @to_port: port on which the peer process is listening for message
89  * @msgSize: Size of each message sent.
90  * @timeout: How long in maximum should be the saturation.
91  *
92  * Ask the process 'from_name:from_port' to start to saturate the link between itself
93  * and to_name:to_name.
94  */
95 void grasbw_saturate_start(const char* from_name,unsigned int from_port,
96                                   const char* to_name,unsigned int to_port,
97                                   unsigned int msgSize, unsigned int timeout);
98
99 /**
100  * grasbw_saturate_stop:
101  * @from_name: Name of the host we are asking to do a experiment with (to_name:to_port)
102  * @from_port: port on which the process we are asking for an experiment is listening
103  * (for message, do not give a raw socket here. The needed raw socket will be negociated 
104  * between the peers)
105  * @to_name: Name of the host with which we should conduct the experiment
106  * @to_port: port on which the peer process is listening for message
107  *
108  * Ask the process 'from_name:from_port' to stop saturating the link between itself
109  * and to_name:to_name.
110  */
111 void grasbw_saturate_stop(const char* from_name,unsigned int from_port,
112                                  const char* to_name,unsigned int to_port);
113
114
115 #endif /* if 0 */
116 #endif /* AMOK_BANDWIDTH_H */