Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Fix warnings about clobbered variables in amok/bandwidth example.
[simgrid.git] / examples / amok / bandwidth / bandwidth.c
index 1988e26..354eeb7 100644 (file)
@@ -1,8 +1,7 @@
-/* $Id$ */
-
 /* bandwidth - bandwidth test demo of GRAS features                         */
 
-/* Copyright (c) 2003, 2004 Martin Quinson. All rights reserved.            */
+/* Copyright (c) 2005, 2006, 2007, 2008, 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. */
 
 #include "gras.h"
 #include "amok/bandwidth.h"
+#include "amok/peermanagement.h"
 
-XBT_LOG_NEW_DEFAULT_CATEGORY(Bandwidth,"Messages specific to this example");
+XBT_LOG_NEW_DEFAULT_CATEGORY(Bandwidth,
+                             "Messages specific to this example");
 
 /* **********************************************************************
  * Sensor code
  * **********************************************************************/
 
-/* Global private data */
-typedef struct {
-  gras_socket_t sock;
-  int done;
-} s_sensor_data_t,*sensor_data_t;
-
-static int sensor_cb_quit(gras_msg_cb_ctx_t ctx, void *payload) {
-  sensor_data_t globals=(sensor_data_t)gras_userdata_get();
-                          
-  globals->done = 1;                  
-  return 1;         
+static gras_socket_t try_gras_socket_client_from_string(const char *host)
+{
+  volatile gras_socket_t sock = NULL;
+  xbt_ex_t e;
+  TRY {
+    sock = gras_socket_client_from_string(host);
+  }
+  CATCH(e) {
+    xbt_ex_free(e);
+  }
+  return sock;
 }
 
 /* Function prototypes */
-int sensor (int argc,char *argv[]);
+int sensor(int argc, char *argv[]);
 
-int sensor (int argc,char *argv[]) {
-  sensor_data_t g;
+int sensor(int argc, char *argv[])
+{
+  gras_socket_t mysock;
+  gras_socket_t master = NULL;
+  int connection_try = 10;
 
   gras_init(&argc, argv);
-  g=gras_userdata_new(s_sensor_data_t);  
   amok_bw_init();
-   
-  g->sock=gras_socket_server(atoi(argv[1]));
-  g->done = 0;
-  
-  gras_msgtype_declare("quit",NULL);
-  gras_cb_register(gras_msgtype_by_name("quit"),&sensor_cb_quit);
-  
-  while (! g->done )
-    gras_msg_handle(60.0);
-
-  gras_socket_close(g->sock);
+  amok_pm_init();
+
+  mysock = gras_socket_server_range(3000, 9999, 0, 0);
+  XBT_INFO("Sensor starting (on port %d)", gras_os_myport());
+  while (connection_try > 0 &&
+         !(master = try_gras_socket_client_from_string(argv[1]))) {
+    connection_try--;
+    gras_os_sleep(0.5);       /* let the master get ready */
+  }
+
+  amok_pm_group_join(master, "bandwidth");
+  amok_pm_mainloop(60);
+
+  gras_socket_close(mysock);
+  gras_socket_close(master);
   gras_exit();
   return 0;
 }
@@ -58,61 +65,74 @@ int sensor (int argc,char *argv[]) {
  * Maestro code
  * **********************************************************************/
 
-/* Global private data */
-typedef struct {
-  gras_socket_t sock;
-} s_maestro_data_t,*maestro_data_t;
-
 /* Function prototypes */
-int maestro (int argc,char *argv[]);
+int maestro(int argc, char *argv[]);
 
-int maestro(int argc,char *argv[]) {
-  maestro_data_t g;
+int maestro(int argc, char *argv[])
+{
   double sec, bw;
-  int buf_size=32      *1024;
-  int exp_size=1024*50 *1024;
-  int msg_size=512     *1024;
+  int buf_size = 32 * 1024;
+  int msg_size = 512 * 1024;
+  int msg_amount = 1;
   double min_duration = 1;
+
   gras_socket_t peer;
+  gras_socket_t mysock;
+  xbt_peer_t h1, h2, h_temp;
+  xbt_dynar_t group;
 
   gras_init(&argc, argv);
-  g=gras_userdata_new(s_maestro_data_t);
   amok_bw_init();
+  amok_pm_init();
 
-  if (argc != 5) {
-     ERROR0("Usage: maestro host port host port\n");
-     return 1;
+  XBT_INFO("Maestro starting");
+  if (argc != 2) {
+    XBT_ERROR("Usage: maestro port\n");
+    return 1;
+  }
+  mysock = gras_socket_server(atoi(argv[1]));
+  group = amok_pm_group_new("bandwidth");
+  XBT_INFO("Wait for peers for 5 sec");
+  gras_msg_handleall(5);        /* friends, we're ready. Come and play */
+
+  if (xbt_dynar_length(group) < 2) {
+    amok_pm_group_shutdown("bandwidth");
+    xbt_die("Not enough peers arrived. Expected 2 got %ld",
+            xbt_dynar_length(group));
+  }
+  h1 = *(xbt_peer_t *) xbt_dynar_get_ptr(group, 0);
+  h2 = *(xbt_peer_t *) xbt_dynar_get_ptr(group, 1);
+  /* sort peers in right order to keep output right */
+  if (strcmp(h1->name, h2->name) < 0 || h1->port > h2->port) {
+    h_temp = h1;
+    h1 = h2;
+    h2 = h_temp;
   }
 
-  /* wait to ensure that all server sockets are there before starting the experiment */        
-  gras_os_sleep(0.5);
-  
-  peer = gras_socket_client(argv[1],atoi(argv[2]));
-
-  INFO0("Test the BW between me and one of the sensors");  
-  amok_bw_test(peer,buf_size,exp_size,msg_size,min_duration,&sec,&bw);
-  INFO6("Experience between me and %s:%d (%d bytes in msgs of %d bytes) took %f sec, achieving %f kb/s",
-       argv[1],atoi(argv[2]),
-       exp_size,msg_size,
-       sec,((double)bw)/1024.0);
-
-  INFO4("Test the BW between %s:%s and %s:%s",argv[1],argv[2],argv[3],argv[4]);
-  amok_bw_request(argv[1],atoi(argv[2]),argv[3],atoi(argv[4]),
-                 buf_size,exp_size,msg_size,&sec,&bw); 
-  INFO6("Experience between %s:%s and %s:%s took took %f sec, achieving %f kb/s",
-       argv[1],argv[2],argv[3],argv[4],
-       sec,((double)bw)/1024.0);
-
-  /* ask sensors to quit */                    
-  gras_msgtype_declare("quit",NULL);
-  gras_msg_send(peer,gras_msgtype_by_name("quit"), NULL);
-  gras_socket_close(peer);
-
-  peer = gras_socket_client(argv[3],atoi(argv[4]));
-  gras_msg_send(peer,gras_msgtype_by_name("quit"), NULL);
-  gras_socket_close(peer);
-
-  gras_socket_close(g->sock);
+  XBT_INFO("Contact %s:%d", h1->name, h1->port);
+  peer = gras_socket_client(h1->name, h1->port);
+
+  XBT_INFO("Test the BW between me and one of the sensors");
+  amok_bw_test(peer, buf_size, msg_size, msg_amount, min_duration, &sec,
+               &bw);
+  XBT_INFO
+      ("Experience between me and %s:%d (initially %d msgs of %d bytes, maybe modified to fill the pipe at least %.1fs) took %f sec, achieving %f kb/s",
+       h1->name, h1->port, msg_amount, msg_size, min_duration, sec,
+       ((double) bw) / 1024.0);
+
+  XBT_INFO("Test the BW between %s:%d and %s:%d", h1->name, h1->port,
+        h2->name, h2->port);
+  amok_bw_request(h1->name, h1->port, h2->name, h2->port, buf_size,
+                  msg_size, msg_amount, min_duration, &sec, &bw);
+  XBT_INFO
+      ("Experience between %s:%d and %s:%d took took %f sec, achieving %f kb/s",
+       h1->name, h1->port, h2->name, h2->port, sec,
+       ((double) bw) / 1024.0);
+
+  /* Game is over, friends */
+  amok_pm_group_shutdown("bandwidth");
+
+  gras_socket_close(mysock);
   gras_exit();
   return 0;
 }