Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
956f6b5847f014783164fa3c124c3018d089da7f
[simgrid.git] / doc / gtut-files / 04-callback.c
1 /* Copyright (c) 2006, 2007, 2010. The SimGrid Team.
2  * All rights reserved.                                                     */
3
4 /* This program is free software; you can redistribute it and/or modify it
5   * under the terms of the license (GNU LGPL) which comes with this package. */
6
7 #include <stdio.h>
8 #include <gras.h>
9
10 int server_hello_cb(gras_msg_cb_ctx_t ctx, void *payload) {
11   gras_socket_t client = gras_msg_cb_ctx_from(ctx);
12
13   fprintf(stderr,"Cool, we received the message from %s:%d.\n",
14           gras_socket_peer_name(client), gras_socket_peer_port(client));
15   
16   return 0;
17 } /* end_of_callback */
18
19 int server(int argc, char *argv[]) {
20   gras_socket_t mysock;   /* socket on which I listen */
21   
22   gras_init(&argc,argv);
23
24   gras_msgtype_declare("hello", NULL);
25   mysock = gras_socket_server(atoi(argv[1]));
26    
27   gras_cb_register("hello",&server_hello_cb);   
28   gras_msg_handle(60);
29     
30   gras_exit();
31   return 0;
32 }
33
34 int client(int argc, char *argv[]) {
35   gras_socket_t mysock;   /* socket on which I listen */
36   gras_socket_t toserver; /* socket used to write to the server */
37
38   gras_init(&argc,argv);
39
40   gras_msgtype_declare("hello", NULL);
41   mysock = gras_socket_server_range(1024, 10000, 0, 0);
42   
43   fprintf(stderr,"Client ready; listening on %d\n", gras_socket_my_port(mysock));
44   
45   gras_os_sleep(1.5); /* sleep 1 second and half */
46   toserver = gras_socket_client(argv[1], atoi(argv[2]));
47   
48   gras_msg_send(toserver,"hello", NULL);
49   fprintf(stderr,"That's it, we sent the data to the server on %s\n", gras_socket_peer_name(toserver));
50
51   gras_exit();
52   return 0;
53 }