Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Use new style logging macros.
[simgrid.git] / examples / gras / mmrpc / mmrpc_server.c
1 /* GridRPC - Fake Grid RPC thingy doing matrix multiplications (as expected)*/
2
3 /* Copyright (c) 2006, 2007, 2009, 2010. The SimGrid Team.
4  * All rights reserved.                                                     */
5
6 /* This program is free software; you can redistribute it and/or modify it
7  * under the terms of the license (GNU LGPL) which comes with this package. */
8
9 #define GRAS_DEFINE_TYPE_EXTERN
10 #include "xbt/matrix.h"
11 #include "mmrpc.h"
12
13 XBT_LOG_EXTERNAL_DEFAULT_CATEGORY(MatMult);
14
15
16 typedef xbt_matrix_t request_t[2];
17 static int server_cb_request_handler(gras_msg_cb_ctx_t ctx,
18                                      void *payload_data)
19 {
20
21   gras_socket_t expeditor = gras_msg_cb_ctx_from(ctx);
22
23   /* 1. Get the payload into the data variable */
24   xbt_matrix_t *request = (xbt_matrix_t *) payload_data;
25   xbt_matrix_t result;
26
27   /* 2. Do the computation */
28   result = xbt_matrix_double_new_mult(request[0], request[1]);
29
30   /* 3. Send it back as payload of a pong message to the expeditor */
31   gras_msg_send(expeditor, "answer", &result);
32
33   /* 4. Cleanups */
34   xbt_matrix_free(request[0]);
35   xbt_matrix_free(request[1]);
36   xbt_matrix_free(result);
37
38   return 0;
39 }                               /* end_of_server_cb_request_handler */
40
41 int server(int argc, char *argv[])
42 {
43   xbt_ex_t e;
44   gras_socket_t sock = NULL;
45   int port = 4002;
46
47   /* 1. Init the GRAS infrastructure */
48   gras_init(&argc, argv);
49
50   /* 2. Get the port I should listen on from the command line, if specified */
51   if (argc == 2) {
52     port = atoi(argv[1]);
53   }
54
55   /* 3. Create my master socket */
56   XBT_INFO("Launch server (port=%d)", port);
57   TRY {
58     sock = gras_socket_server(port);
59   }
60   CATCH(e) {
61     RETHROW0("Unable to establish a server socket: %s");
62   }
63
64   /* 4. Register the known messages and payloads. */
65   mmrpc_register_messages();
66
67   /* 5. Register my callback */
68   gras_cb_register("request", &server_cb_request_handler);
69
70   /* 6. Wait up to 10 minutes for an incomming message to handle */
71   gras_msg_handle(600.0);
72
73   /* 7. Free the allocated resources, and shut GRAS down */
74   gras_socket_close(sock);
75   gras_exit();
76
77   return 0;
78 }                               /* end_of_server */