s3-messages: only include messages.h where needed.
[kai/samba.git] / source3 / torture / msgtest.c
1 /* 
2    Unix SMB/CIFS implementation.
3    Copyright (C) Andrew Tridgell 2000
4
5    This program is free software; you can redistribute it and/or modify
6    it under the terms of the GNU General Public License as published by
7    the Free Software Foundation; either version 3 of the License, or
8    (at your option) any later version.
9
10    This program is distributed in the hope that it will be useful,
11    but WITHOUT ANY WARRANTY; without even the implied warranty of
12    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13    GNU General Public License for more details.
14
15    You should have received a copy of the GNU General Public License
16    along with this program.  If not, see <http://www.gnu.org/licenses/>.
17 */
18
19 /*
20   test code for internal messaging
21  */
22
23 #include "includes.h"
24 #include "librpc/gen_ndr/messaging.h"
25 #include "messages.h"
26
27 static int pong_count;
28
29
30 /****************************************************************************
31 a useful function for testing the message system
32 ****************************************************************************/
33 static void pong_message(struct messaging_context *msg_ctx,
34                          void *private_data, 
35                          uint32_t msg_type, 
36                          struct server_id pid,
37                          DATA_BLOB *data)
38 {
39         pong_count++;
40 }
41
42  int main(int argc, char *argv[])
43 {
44         struct tevent_context *evt_ctx;
45         struct messaging_context *msg_ctx;
46         pid_t pid;
47         int i, n;
48         char buf[12];
49         int ret;
50
51         load_case_tables();
52
53         setup_logging(argv[0], DEBUG_STDOUT);
54
55         lp_load(get_dyn_CONFIGFILE(),False,False,False,True);
56
57         if (!(evt_ctx = tevent_context_init(NULL)) ||
58             !(msg_ctx = messaging_init(NULL, procid_self(), evt_ctx))) {
59                 fprintf(stderr, "could not init messaging context\n");
60                 exit(1);
61         }
62
63         if (argc != 3) {
64                 fprintf(stderr, "%s: Usage - %s pid count\n", argv[0],
65                         argv[0]);
66                 exit(1);
67         }
68
69         pid = atoi(argv[1]);
70         n = atoi(argv[2]);
71
72         messaging_register(msg_ctx, NULL, MSG_PONG, pong_message);
73
74         for (i=0;i<n;i++) {
75                 messaging_send(msg_ctx, pid_to_procid(pid), MSG_PING,
76                                &data_blob_null);
77         }
78
79         while (pong_count < i) {
80                 ret = tevent_loop_once(evt_ctx);
81                 if (ret != 0) {
82                         break;
83                 }
84         }
85
86         /* Now test that the duplicate filtering code works. */
87         pong_count = 0;
88
89         safe_strcpy(buf, "1234567890", sizeof(buf)-1);
90
91         for (i=0;i<n;i++) {
92                 messaging_send(msg_ctx, messaging_server_id(msg_ctx), MSG_PING,
93                                &data_blob_null);
94                 messaging_send_buf(msg_ctx, messaging_server_id(msg_ctx),
95                                    MSG_PING,(uint8 *)buf, 11);
96         }
97
98         for (i=0;i<n;i++) {
99                 ret = tevent_loop_once(evt_ctx);
100                 if (ret != 0) {
101                         break;
102                 }
103         }
104
105         if (pong_count != 2) {
106                 fprintf(stderr, "Duplicate filter failed (%d).\n", pong_count);
107         }
108
109         /* Speed testing */
110
111         pong_count = 0;
112
113         {
114                 struct timeval tv = timeval_current();
115                 size_t timelimit = n;
116                 size_t ping_count = 0;
117
118                 printf("Sending pings for %d seconds\n", (int)timelimit);
119                 while (timeval_elapsed(&tv) < timelimit) {              
120                         if(NT_STATUS_IS_OK(messaging_send_buf(
121                                                    msg_ctx, pid_to_procid(pid),
122                                                    MSG_PING,
123                                                    (uint8 *)buf, 11)))
124                            ping_count++;
125                         if(NT_STATUS_IS_OK(messaging_send(
126                                                    msg_ctx, pid_to_procid(pid),
127                                                    MSG_PING, &data_blob_null)))
128                            ping_count++;
129
130                         while (ping_count > pong_count + 20) {
131                                 ret = tevent_loop_once(evt_ctx);
132                                 if (ret != 0) {
133                                         break;
134                                 }
135                         }
136                 }
137
138                 printf("waiting for %d remaining replies (done %d)\n", 
139                        (int)(ping_count - pong_count), pong_count);
140                 while (timeval_elapsed(&tv) < 30 && pong_count < ping_count) {
141                         ret = tevent_loop_once(evt_ctx);
142                         if (ret != 0) {
143                                 break;
144                         }
145                 }
146
147                 if (ping_count != pong_count) {
148                         fprintf(stderr, "ping test failed! received %d, sent "
149                                 "%d\n", pong_count, (int)ping_count);
150                 }
151
152                 printf("ping rate of %.0f messages/sec\n", 
153                        (ping_count+pong_count)/timeval_elapsed(&tv));
154         }
155
156         return (0);
157 }
158