Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
09c70c4a5c5f65f0cd61915b43424c0f1d18a82e
[simgrid.git] / examples / gras / ping / ping_server.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
12 XBT_LOG_EXTERNAL_DEFAULT_CATEGORY(Ping);
13
14 /* Global private data */
15 typedef struct {
16   gras_socket_t sock;
17   int endcondition;
18 } server_data_t;
19
20
21 static int server_cb_ping_handler(gras_msg_cb_ctx_t ctx, void *payload)
22 {
23
24   xbt_ex_t e;
25   /* 1. Get the payload into the msg variable, and retrieve my caller */
26   int msg = *(int *) payload;
27   gras_socket_t expeditor = gras_msg_cb_ctx_from(ctx);
28
29   /* 2. Retrieve the server's state (globals) */
30
31   server_data_t *globals = (server_data_t *) gras_userdata_get();
32   globals->endcondition = 0;
33
34   /* 3. Log which client connected */
35   INFO3(">>>>>>>> Got message PING(%d) from %s:%d <<<<<<<<",
36         msg,
37         gras_socket_peer_name(expeditor), gras_socket_peer_port(expeditor));
38
39   /* 4. Change the value of the msg variable */
40   msg = 4321;
41   /* 5. Send it back as payload of a pong message to the expeditor */
42   TRY {
43     gras_msg_send(expeditor, "pong", &msg);
44
45     /* 6. Deal with errors: add some details to the exception */
46   } CATCH(e) {
47     gras_socket_close(globals->sock);
48     RETHROW0("Unable answer with PONG: %s");
49   }
50
51   INFO0(">>>>>>>> Answered with PONG(4321) <<<<<<<<");
52
53   /* 7. Set the endcondition boolean to true (and make sure the server stops after receiving it). */
54   globals->endcondition = 1;
55
56   /* 8. Tell GRAS that we consummed this message */
57   return 0;
58 }                               /* end_of_server_cb_ping_handler */
59
60 int server(int argc, char *argv[])
61 {
62   server_data_t *globals;
63
64   int port = 4000;
65
66   /* 1. Init the GRAS infrastructure and declare my globals */
67   gras_init(&argc, argv);
68   globals = gras_userdata_new(server_data_t);
69
70   /* 2. Get the port I should listen on from the command line, if specified */
71   if (argc == 2) {
72     port = atoi(argv[1]);
73   }
74
75   INFO1("Launch server (port=%d)", port);
76
77   /* 3. Create my master socket */
78   globals->sock = gras_socket_server(port);
79
80   /* 4. Register the known messages. This function is called twice here, but it's because
81      this file also acts as regression test, no need to do so yourself of course. */
82   ping_register_messages();
83   ping_register_messages();     /* just to make sure it works ;) */
84
85   /* 5. Register my callback */
86   gras_cb_register("ping", &server_cb_ping_handler);
87
88   INFO1(">>>>>>>> Listening on port %d <<<<<<<<",
89         gras_socket_my_port(globals->sock));
90   globals->endcondition = 0;
91
92   /* 6. Wait up to 10 minutes for an incomming message to handle */
93   gras_msg_handle(10.0);
94
95   /* 7. Housekeeping */
96   if (!globals->endcondition)
97     WARN0("An error occured, the endcondition was not set by the callback");
98
99   /* 8. Free the allocated resources, and shut GRAS down */
100   gras_socket_close(globals->sock);
101   free(globals);
102   INFO0("Done.");
103   gras_exit();
104
105   return 0;
106 }                               /* end_of_server */