Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
6230b70c369fe06e69070c222517f0c876c740d8
[simgrid.git] / examples / gras / ping / ping_client.c
1 /* $Id$ */
2
3 /* ping - ping/pong demo of GRAS features                                   */
4
5 /* Copyright (c) 2003, 2004, 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 #include "ping.h"
11 XBT_LOG_EXTERNAL_DEFAULT_CATEGORY(Ping);
12
13 int client(int argc,char *argv[]) {
14   xbt_ex_t e; 
15   gras_socket_t toserver=NULL; /* peer */
16   int connected = 0;
17
18   gras_socket_t from;
19   int ping, pong;
20
21   const char *host = "127.0.0.1";
22         int   port = 4000;
23
24   /* 1. Init the GRAS's infrastructure */
25   gras_init(&argc, argv);
26    
27   /* 2. Get the server's address. The command line override defaults when specified */
28   if (argc == 3) {
29     host=argv[1];
30     port=atoi(argv[2]);
31   } 
32
33   INFO2("Launch client (server on %s:%d)",host,port);
34    
35   /* 3. Wait for the server startup */
36   gras_os_sleep(1);
37    
38   /* 4. Create a socket to speak to the server */
39   while (!connected) {
40      TRY {
41         toserver=gras_socket_client(host,port);
42         connected = 1;
43      } CATCH(e) {
44         if (e.category != system_error)
45           /* dunno what happened, let the exception go through */
46           RETHROW0("Unable to connect to the server: %s");
47         xbt_ex_free(e);
48         gras_os_sleep(0.05);
49      }
50   }
51
52   INFO2("Connected to %s:%d.",host,port);    
53
54   /* 5. Register the messages. 
55         See, it doesn't have to be done completely at the beginning, only before use */
56   ping_register_messages();
57
58   /* 6. Keep the user informed of what's going on */
59   INFO2(">>>>>>>> Connected to server which is on %s:%d <<<<<<<<", 
60         gras_socket_peer_name(toserver),gras_socket_peer_port(toserver));
61
62   /* 7. Prepare and send the ping message to the server */
63   ping = 1234;
64   TRY {
65     gras_msg_send(toserver, "ping", &ping);
66   } CATCH(e) {
67     gras_socket_close(toserver);
68     RETHROW0("Failed to send PING to server: %s");
69   }
70   INFO3(">>>>>>>> Message PING(%d) sent to %s:%d <<<<<<<<",
71         ping,
72         gras_socket_peer_name(toserver),gras_socket_peer_port(toserver));
73
74   /* 8. Wait for the answer from the server, and deal with issues */
75   TRY {
76     gras_msg_wait(6000,"pong", &from,&pong);
77   } CATCH(e) {
78     gras_socket_close(toserver);
79     RETHROW0("Why can't I get my PONG message like everyone else: %s");
80   }
81
82   /* 9. Keep the user informed of what's going on, again */
83   INFO3(">>>>>>>> Got PONG(%d) from %s:%d <<<<<<<<", 
84         pong,
85         gras_socket_peer_name(from),gras_socket_peer_port(from));
86
87   /* 10. Free the allocated resources, and shut GRAS down */
88   gras_socket_close(toserver);
89   INFO0("Done.");
90   gras_exit();
91   return 0;
92 } /* end_of_client */