Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
3780793b73b89dbf5b2c192c5bc34c3fe9cb9d1d
[simgrid.git] / examples / gras / ping / ping_client.c
1 /* ping - ping/pong demo of GRAS features                                   */
2
3 /* Copyright (c) 2003, 2004, 2005 Martin Quinson. All rights reserved.      */
4
5 /* This program is free software; you can redistribute it and/or modify it
6  * under the terms of the license (GNU LGPL) which comes with this package. */
7
8 #include "ping.h"
9 XBT_LOG_EXTERNAL_DEFAULT_CATEGORY(Ping);
10
11 int client(int argc, char *argv[])
12 {
13   xbt_ex_t e;
14   gras_socket_t toserver = NULL;        /* peer */
15   int connected = 0;
16
17   gras_socket_t from;
18   int ping, pong;
19
20   const char *host = "127.0.0.1";
21   int port = 4000;
22
23   /* 1. Init the GRAS's infrastructure */
24   gras_init(&argc, argv);
25
26   /* 2. Get the server's address. The command line override defaults when specified */
27   if (argc == 3) {
28     host = argv[1];
29     port = atoi(argv[2]);
30   }
31
32   INFO2("Launch client (server on %s:%d)", host, port);
33
34   /* 3. Create a socket to speak to the server */
35   while (!connected) {
36     TRY {
37       toserver = gras_socket_client(host, port);
38       connected = 1;
39     }
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   }
64   CATCH(e) {
65     gras_socket_close(toserver);
66     RETHROW0("Failed to send PING to server: %s");
67   }
68   INFO3(">>>>>>>> Message PING(%d) sent to %s:%d <<<<<<<<",
69         ping,
70         gras_socket_peer_name(toserver), gras_socket_peer_port(toserver));
71
72   /* 7. Wait for the answer from the server, and deal with issues */
73   TRY {
74     gras_msg_wait(6000, "pong", &from, &pong);
75   }
76   CATCH(e) {
77     gras_socket_close(toserver);
78     RETHROW0("Why can't I get my PONG message like everyone else: %s");
79   }
80
81   /* 8. Keep the user informed of what's going on, again */
82   INFO3(">>>>>>>> Got PONG(%d) from %s:%d <<<<<<<<",
83         pong, gras_socket_peer_name(from), gras_socket_peer_port(from));
84
85   /* 9. Free the allocated resources, and shut GRAS down */
86   gras_socket_close(toserver);
87   INFO0("Done.");
88   gras_exit();
89   return 0;
90 }                               /* end_of_client */