Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
revalidate 64bit outputs
[simgrid.git] / examples / gras / mmrpc / mmrpc_server.c
1 /* $Id$ */
2
3 /* GridRPC - Fake Grid RPC thingy doing matrix multiplications (as expected)*/
4
5 /* Copyright (c) 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 #define GRAS_DEFINE_TYPE_EXTERN
11 #include "xbt/matrix.h"
12 #include "mmrpc.h"
13
14 XBT_LOG_EXTERNAL_DEFAULT_CATEGORY(MatMult);
15
16
17 typedef xbt_matrix_t request_t[2];
18 static int server_cb_request_handler(gras_msg_cb_ctx_t ctx, 
19                                      void *payload_data) {
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   xbt_ex_t e; 
43   gras_socket_t sock=NULL;
44   int port = 4000;
45   
46   /* 1. Init the GRAS infrastructure */
47   gras_init(&argc,argv);
48    
49   /* 2. Get the port I should listen on from the command line, if specified */
50   if (argc == 2) {
51     port=atoi(argv[1]);
52   }
53
54   /* 3. Create my master socket */
55   INFO1("Launch server (port=%d)", port);
56   TRY {
57     sock = gras_socket_server(port);
58   } CATCH(e) {
59     RETHROW0("Unable to establish a server socket: %s");
60   }
61
62   /* 4. Register the known messages and payloads. */
63   mmrpc_register_messages();
64    
65   /* 5. Register my callback */
66   gras_cb_register("request",&server_cb_request_handler);
67
68   /* 6. Wait up to 10 minutes for an incomming message to handle */
69   gras_msg_handle(600.0);
70    
71   /* 7. Free the allocated resources, and shut GRAS down */
72   gras_socket_close(sock);
73   gras_exit();
74    
75   return 0;
76 } /* end_of_server */