Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
no need to sleep(1), it slows down my tests
[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. Create a socket to speak to the server */
36   while (!connected) {
37      TRY {
38         toserver=gras_socket_client(host,port);
39         connected = 1;
40      } CATCH(e) {
41         if (e.category != system_error)
42           /* dunno what happened, let the exception go through */
43           RETHROW0("Unable to connect to the server: %s");
44         xbt_ex_free(e);
45         gras_os_sleep(0.05);
46      }
47   }
48
49   INFO2("Connected to %s:%d.",host,port);
50
51   /* 4. Register the messages.
52         See, it doesn't have to be done completely at the beginning, only before use */
53   ping_register_messages();
54
55   /* 5. Keep the user informed of what's going on */
56   INFO2(">>>>>>>> Connected to server which is on %s:%d <<<<<<<<",
57         gras_socket_peer_name(toserver),gras_socket_peer_port(toserver));
58
59   /* 6. Prepare and send the ping message to the server */
60   ping = 1234;
61   TRY {
62     gras_msg_send(toserver, "ping", &ping);
63   } CATCH(e) {
64     gras_socket_close(toserver);
65     RETHROW0("Failed to send PING to server: %s");
66   }
67   INFO3(">>>>>>>> Message PING(%d) sent to %s:%d <<<<<<<<",
68         ping,
69         gras_socket_peer_name(toserver),gras_socket_peer_port(toserver));
70
71   /* 7. Wait for the answer from the server, and deal with issues */
72   TRY {
73     gras_msg_wait(6000,"pong", &from,&pong);
74   } CATCH(e) {
75     gras_socket_close(toserver);
76     RETHROW0("Why can't I get my PONG message like everyone else: %s");
77   }
78
79   /* 8. Keep the user informed of what's going on, again */
80   INFO3(">>>>>>>> Got PONG(%d) from %s:%d <<<<<<<<",
81         pong,
82         gras_socket_peer_name(from),gras_socket_peer_port(from));
83
84   /* 9. Free the allocated resources, and shut GRAS down */
85   gras_socket_close(toserver);
86   INFO0("Done.");
87   gras_exit();
88   return 0;
89 } /* end_of_client */