Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
generate sources into CMAKE_CURRENT_BINARY_DIR.
[simgrid.git] / teshsuite / gras / msg_handle / msg_handle.c
1 /* $Id: mmrpc.c 3399 2007-04-11 19:34:43Z cherierm $ */
2
3 /* msg_handle - ensures the semantic of gras_msg_handle(i) for i<0,=0 or >0 */
4
5 /* Copyright (c) 2007, 2008, 2009, 2010. The SimGrid Team.
6  * All rights reserved.                                                     */
7 /* Thanks to Flavien Vernier for reporting an issue around this             */
8
9 /* This program is free software; you can redistribute it and/or modify it
10  * under the terms of the license (GNU LGPL) which comes with this package. */
11
12 #include "gras.h"
13
14 XBT_LOG_NEW_DEFAULT_CATEGORY(test, "Messages specific to this test");
15
16 int server(int argc, char *argv[]);
17 int client(int argc, char *argv[]);
18
19 static int server_cb_hello_handler(gras_msg_cb_ctx_t ctx,
20                                    void *payload_data)
21 {
22   INFO0("Got the message");
23   return 0;
24 }
25
26 int server(int argc, char *argv[])
27 {
28   gras_socket_t me = NULL, pal = NULL;
29   int myport;
30   char *palstr;
31
32   xbt_ex_t e;
33   int got_expected;
34   double now;
35
36
37   gras_init(&argc, argv);
38
39   xbt_assert0(argc == 3, "Usage: server <myport> <client>");
40   myport = atoi(argv[1]);
41   palstr = argv[2];
42
43   gras_msgtype_declare("hello", NULL);
44   gras_cb_register("hello", &server_cb_hello_handler);
45
46   INFO1("Launch server (port=%d)", myport);
47   TRY {
48     me = gras_socket_server(myport);
49   } CATCH(e) {
50     RETHROW0("Unable to establish a server socket: %s");
51   }
52   gras_os_sleep(1);             /* Wait for pal to startup */
53   TRY {
54     pal = gras_socket_client_from_string(palstr);
55   } CATCH(e) {
56     RETHROW1("Unable to establish a socket to %s: %s", palstr);
57   }
58   INFO0("Initialization done.");
59   now = gras_os_time();
60
61   /* Launch handle(0) when there is no message. Timeout expected */
62   got_expected = 0;
63   TRY {
64     gras_msg_handle(0);
65   } CATCH(e) {
66     if (e.category == timeout_error) {
67       got_expected = 1;
68       xbt_ex_free(e);
69     } else {
70       RETHROW0("Didn't got the expected timeout: %s");
71     }
72   }
73   xbt_assert0(got_expected,
74               "gras_msg_handle(0) do not lead to any timeout exception");
75   xbt_assert1(gras_os_time() - now < 0.01,
76               "gras_msg_handle(0) do not anwser immediately (%.4fsec)",
77               gras_os_time() - now);
78   INFO0("gras_msg_handle(0) works as expected (immediate timeout)");
79   /* Launch handle(0) when there is no message. Timeout expected */
80   got_expected = 0;
81   TRY {
82     gras_msg_handle(1);
83   }
84   CATCH(e) {
85     if (e.category == timeout_error) {
86       got_expected = 1;
87       xbt_ex_free(e);
88     } else {
89       RETHROW0("Didn't got the expected timeout: %s");
90     }
91   }
92   xbt_assert0(got_expected,
93               "gras_msg_handle(1) do not lead to any timeout exception");
94   xbt_assert1(gras_os_time() - now < 1.5,
95               "gras_msg_handle(1) needs more than 1.5 sec to answer (%.4fsec)",
96               gras_os_time() - now);
97   xbt_assert1(gras_os_time() - now >= 1.0,
98               "gras_msg_handle(1) answers in less than one second (%.4fsec)",
99               gras_os_time() - now);
100   INFO0("gras_msg_handle(1) works as expected (delayed timeout)");
101   gras_os_sleep(3);
102
103   /* Send an hello to the client to unlock it */
104   INFO0("Unlock pal");
105   gras_msg_send(pal, "hello", NULL);
106
107   /* Frees the allocated resources, and shut GRAS down */
108   gras_socket_close(me);
109   gras_socket_close(pal);
110   gras_exit();
111   return 0;
112 }
113
114 int client(int argc, char *argv[])
115 {
116   gras_socket_t me = NULL, pal = NULL;
117   int myport;
118   char *palstr;
119
120   xbt_ex_t e;
121   int got_expected;
122
123
124   gras_init(&argc, argv);
125   xbt_assert0(argc == 3, "Usage: client <myport> <server>");
126   myport = atoi(argv[1]);
127   palstr = argv[2];
128
129   gras_msgtype_declare("hello", NULL);
130   gras_cb_register("hello", &server_cb_hello_handler);
131
132   INFO1("Launch client (port=%d)", myport);
133   TRY {
134     me = gras_socket_server(myport);
135   } CATCH(e) {
136     RETHROW0("Unable to establish a server socket: %s");
137   }
138   gras_os_sleep(1);             /* Wait for pal to startup */
139   TRY {
140     pal = gras_socket_client_from_string(palstr);
141   } CATCH(e) {
142     RETHROW1("Unable to establish a socket to %s: %s", palstr);
143   }
144   INFO0("Initialization done.");
145
146   /* Launch handle(-1). Lock until message from server expected */
147   got_expected = 0;
148   TRY {
149     gras_msg_handle(-1);
150   } CATCH(e) {
151     RETHROW0("No exception expected during handle(-1), but got %s");
152   }
153   INFO0("gras_msg_handle(-1) works as expected (locked)");
154
155   /* Frees the allocated resources, and shut GRAS down */
156   gras_socket_close(me);
157   gras_socket_close(pal);
158   gras_exit();
159   return 0;
160 }