Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Gras_stub_generator does not produce the same files as it used to
[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, gras_msgtype_by_name("answer"), &result);
32
33   /* 4. Cleanups */
34   xbt_matrix_free(request[0]);
35   xbt_matrix_free(request[1]);
36   xbt_matrix_free(result);
37   gras_socket_close(expeditor);
38    
39   return 1;
40 } /* end_of_server_cb_request_handler */
41
42 int server (int argc,char *argv[]) {
43   xbt_ex_t e; 
44   gras_socket_t sock=NULL;
45   int port = 4000;
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   INFO1("Launch server (port=%d)", port);
57   TRY {
58     sock = gras_socket_server(port);
59   } CATCH(e) {
60     RETHROW0("Unable to establish a server socket: %s");
61   }
62
63   /* 4. Register the known messages and payloads. */
64   mmrpc_register_messages();
65    
66   /* 5. Register my callback */
67   gras_cb_register(gras_msgtype_by_name("request"),&server_cb_request_handler);
68
69   /* 6. Wait up to 10 minutes for an incomming message to handle */
70   gras_msg_handle(600.0);
71    
72   /* 7. Free the allocated resources, and shut GRAS down */
73   gras_socket_close(sock);
74   gras_exit();
75    
76   INFO0("Done.");
77   return 0;
78 } /* end_of_server */