Move #define for random() into the test applications where needed
[platform/upstream/libwebsockets.git] / test-server / test-client.c
1 /*
2  * libwebsockets-test-client - libwebsockets test implementation
3  *
4  * Copyright (C) 2011 Andy Green <andy@warmcat.com>
5  *
6  *  This library is free software; you can redistribute it and/or
7  *  modify it under the terms of the GNU Lesser General Public
8  *  License as published by the Free Software Foundation:
9  *  version 2.1 of the License.
10  *
11  *  This library is distributed in the hope that it will be useful,
12  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
13  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  *  Lesser General Public License for more details.
15  *
16  *  You should have received a copy of the GNU Lesser General Public
17  *  License along with this library; if not, write to the Free Software
18  *  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
19  *  MA  02110-1301  USA
20  */
21
22 #include <stdio.h>
23 #include <stdlib.h>
24 #include <getopt.h>
25 #include <string.h>
26 #include <signal.h>
27
28 #ifdef _WIN32
29 #define random rand
30 #else
31 #include <unistd.h>
32 #endif
33
34 #ifdef CMAKE_BUILD
35 #include "lws_config.h"
36 #endif
37
38 #include "../lib/libwebsockets.h"
39
40 static unsigned int opts;
41 static int was_closed;
42 static int deny_deflate;
43 static int deny_mux;
44 static struct libwebsocket *wsi_mirror;
45 static int mirror_lifetime = 0;
46 static volatile int force_exit = 0;
47 static int longlived = 0;
48
49 /*
50  * This demo shows how to connect multiple websockets simultaneously to a
51  * websocket server (there is no restriction on their having to be the same
52  * server just it simplifies the demo).
53  *
54  *  dumb-increment-protocol:  we connect to the server and print the number
55  *                              we are given
56  *
57  *  lws-mirror-protocol: draws random circles, which are mirrored on to every
58  *                              client (see them being drawn in every browser
59  *                              session also using the test server)
60  */
61
62 enum demo_protocols {
63
64         PROTOCOL_DUMB_INCREMENT,
65         PROTOCOL_LWS_MIRROR,
66
67         /* always last */
68         DEMO_PROTOCOL_COUNT
69 };
70
71
72 /* dumb_increment protocol */
73
74 static int
75 callback_dumb_increment(struct libwebsocket_context *this,
76                         struct libwebsocket *wsi,
77                         enum libwebsocket_callback_reasons reason,
78                                                void *user, void *in, size_t len)
79 {
80         switch (reason) {
81
82         case LWS_CALLBACK_CLIENT_ESTABLISHED:
83                 fprintf(stderr, "callback_dumb_increment: LWS_CALLBACK_CLIENT_ESTABLISHED\n");
84                 break;
85
86         case LWS_CALLBACK_CLIENT_CONNECTION_ERROR:
87                 fprintf(stderr, "LWS_CALLBACK_CLIENT_CONNECTION_ERROR\n");
88                 was_closed = 1;
89                 break;
90
91         case LWS_CALLBACK_CLOSED:
92                 fprintf(stderr, "LWS_CALLBACK_CLOSED\n");
93                 was_closed = 1;
94                 break;
95
96         case LWS_CALLBACK_CLIENT_RECEIVE:
97                 ((char *)in)[len] = '\0';
98                 fprintf(stderr, "rx %d '%s'\n", (int)len, (char *)in);
99                 break;
100
101         /* because we are protocols[0] ... */
102
103         case LWS_CALLBACK_CLIENT_CONFIRM_EXTENSION_SUPPORTED:
104                 if ((strcmp(in, "deflate-stream") == 0) && deny_deflate) {
105                         fprintf(stderr, "denied deflate-stream extension\n");
106                         return 1;
107                 }
108                 if ((strcmp(in, "deflate-frame") == 0) && deny_deflate) {
109                         fprintf(stderr, "denied deflate-frame extension\n");
110                         return 1;
111                 }
112                 if ((strcmp(in, "x-google-mux") == 0) && deny_mux) {
113                         fprintf(stderr, "denied x-google-mux extension\n");
114                         return 1;
115                 }
116
117                 break;
118
119         default:
120                 break;
121         }
122
123         return 0;
124 }
125
126
127 /* lws-mirror_protocol */
128
129
130 static int
131 callback_lws_mirror(struct libwebsocket_context *context,
132                         struct libwebsocket *wsi,
133                         enum libwebsocket_callback_reasons reason,
134                                                void *user, void *in, size_t len)
135 {
136         unsigned char buf[LWS_SEND_BUFFER_PRE_PADDING + 4096 +
137                                                   LWS_SEND_BUFFER_POST_PADDING];
138         int l = 0;
139         int n;
140
141         switch (reason) {
142
143         case LWS_CALLBACK_CLIENT_ESTABLISHED:
144
145                 fprintf(stderr, "callback_lws_mirror: LWS_CALLBACK_CLIENT_ESTABLISHED\n");
146
147                 mirror_lifetime = 10 + (random() & 1023);
148                 /* useful to test single connection stability */
149                 if (longlived)
150                         mirror_lifetime += 50000;
151
152                 fprintf(stderr, "opened mirror connection with "
153                                      "%d lifetime\n", mirror_lifetime);
154
155                 /*
156                  * mirror_lifetime is decremented each send, when it reaches
157                  * zero the connection is closed in the send callback.
158                  * When the close callback comes, wsi_mirror is set to NULL
159                  * so a new connection will be opened
160                  */
161
162                 /*
163                  * start the ball rolling,
164                  * LWS_CALLBACK_CLIENT_WRITEABLE will come next service
165                  */
166
167                 libwebsocket_callback_on_writable(context, wsi);
168                 break;
169
170         case LWS_CALLBACK_CLOSED:
171                 fprintf(stderr, "mirror: LWS_CALLBACK_CLOSED mirror_lifetime=%d\n", mirror_lifetime);
172                 wsi_mirror = NULL;
173                 break;
174
175         case LWS_CALLBACK_CLIENT_RECEIVE:
176 /*              fprintf(stderr, "rx %d '%s'\n", (int)len, (char *)in); */
177                 break;
178
179         case LWS_CALLBACK_CLIENT_WRITEABLE:
180
181                 for (n = 0; n < 1; n++)
182                         l += sprintf((char *)&buf[LWS_SEND_BUFFER_PRE_PADDING + l],
183                                         "c #%06X %d %d %d;",
184                                         (int)random() & 0xffffff,
185                                         (int)random() % 500,
186                                         (int)random() % 250,
187                                         (int)random() % 24);
188
189                 n = libwebsocket_write(wsi,
190                    &buf[LWS_SEND_BUFFER_PRE_PADDING], l, opts | LWS_WRITE_TEXT);
191
192                 if (n < 0)
193                         return -1;
194                 if (n < l) {
195                         lwsl_err("Partial write LWS_CALLBACK_CLIENT_WRITEABLE\n");
196                         return -1;
197                 }
198
199                 mirror_lifetime--;
200                 if (!mirror_lifetime) {
201                         fprintf(stderr, "closing mirror session\n");
202                         return -1;
203                 } else
204                         /* get notified as soon as we can write again */
205                         libwebsocket_callback_on_writable(context, wsi);
206                 break;
207
208         default:
209                 break;
210         }
211
212         return 0;
213 }
214
215
216 /* list of supported protocols and callbacks */
217
218 static struct libwebsocket_protocols protocols[] = {
219         {
220                 "dumb-increment-protocol",
221                 callback_dumb_increment,
222                 0,
223                 20,
224         },
225         {
226                 "lws-mirror-protocol",
227                 callback_lws_mirror,
228                 0,
229                 128,
230         },
231         { NULL, NULL, 0, 0 } /* end */
232 };
233
234 void sighandler(int sig)
235 {
236         force_exit = 1;
237 }
238
239 static struct option options[] = {
240         { "help",       no_argument,            NULL, 'h' },
241         { "debug",      required_argument,      NULL, 'd' },
242         { "port",       required_argument,      NULL, 'p' },
243         { "ssl",        no_argument,            NULL, 's' },
244         { "version",    required_argument,      NULL, 'v' },
245         { "undeflated", no_argument,            NULL, 'u' },
246         { "nomux",      no_argument,            NULL, 'n' },
247         { "longlived",  no_argument,            NULL, 'l' },
248         { NULL, 0, 0, 0 }
249 };
250
251
252 int main(int argc, char **argv)
253 {
254         int n = 0;
255         int ret = 0;
256         int port = 7681;
257         int use_ssl = 0;
258         struct libwebsocket_context *context;
259         const char *address;
260         struct libwebsocket *wsi_dumb;
261         int ietf_version = -1; /* latest */
262         struct lws_context_creation_info info;
263
264         memset(&info, 0, sizeof info);
265
266         fprintf(stderr, "libwebsockets test client\n"
267                         "(C) Copyright 2010-2013 Andy Green <andy@warmcat.com> "
268                                                     "licensed under LGPL2.1\n");
269
270         if (argc < 2)
271                 goto usage;
272
273         while (n >= 0) {
274                 n = getopt_long(argc, argv, "nuv:hsp:d:l", options, NULL);
275                 if (n < 0)
276                         continue;
277                 switch (n) {
278                 case 'd':
279                         lws_set_log_level(atoi(optarg), NULL);
280                         break;
281                 case 's':
282                         use_ssl = 2; /* 2 = allow selfsigned */
283                         break;
284                 case 'p':
285                         port = atoi(optarg);
286                         break;
287                 case 'l':
288                         longlived = 1;
289                         break;
290                 case 'v':
291                         ietf_version = atoi(optarg);
292                         break;
293                 case 'u':
294                         deny_deflate = 1;
295                         break;
296                 case 'n':
297                         deny_mux = 1;
298                         break;
299                 case 'h':
300                         goto usage;
301                 }
302         }
303
304         if (optind >= argc)
305                 goto usage;
306
307         signal(SIGINT, sighandler);
308
309         address = argv[optind];
310
311         /*
312          * create the websockets context.  This tracks open connections and
313          * knows how to route any traffic and which protocol version to use,
314          * and if each connection is client or server side.
315          *
316          * For this client-only demo, we tell it to not listen on any port.
317          */
318
319         info.port = CONTEXT_PORT_NO_LISTEN;
320         info.protocols = protocols;
321 #ifndef LWS_NO_EXTENSIONS
322         info.extensions = libwebsocket_get_internal_extensions();
323 #endif
324         info.gid = -1;
325         info.uid = -1;
326
327         context = libwebsocket_create_context(&info);
328         if (context == NULL) {
329                 fprintf(stderr, "Creating libwebsocket context failed\n");
330                 return 1;
331         }
332
333         /* create a client websocket using dumb increment protocol */
334
335         wsi_dumb = libwebsocket_client_connect(context, address, port, use_ssl,
336                         "/", argv[optind], argv[optind],
337                          protocols[PROTOCOL_DUMB_INCREMENT].name, ietf_version);
338
339         if (wsi_dumb == NULL) {
340                 fprintf(stderr, "libwebsocket connect failed\n");
341                 ret = 1;
342                 goto bail;
343         }
344
345         fprintf(stderr, "Waiting for connect...\n");
346
347         /*
348          * sit there servicing the websocket context to handle incoming
349          * packets, and drawing random circles on the mirror protocol websocket
350          * nothing happens until the client websocket connection is
351          * asynchronously established
352          */
353
354         n = 0;
355         while (n >= 0 && !was_closed && !force_exit) {
356                 n = libwebsocket_service(context, 10);
357
358                 if (n < 0)
359                         continue;
360
361                 if (wsi_mirror)
362                         continue;
363
364                 /* create a client websocket using mirror protocol */
365
366                 wsi_mirror = libwebsocket_client_connect(context,
367                         address, port, use_ssl,  "/",
368                         argv[optind], argv[optind],
369                         protocols[PROTOCOL_LWS_MIRROR].name, ietf_version);
370
371                 if (wsi_mirror == NULL) {
372                         fprintf(stderr, "libwebsocket "
373                                               "mirror connect failed\n");
374                         ret = 1;
375                         goto bail;
376                 }
377         }
378
379 bail:
380         fprintf(stderr, "Exiting\n");
381
382         libwebsocket_context_destroy(context);
383
384         return ret;
385
386 usage:
387         fprintf(stderr, "Usage: libwebsockets-test-client "
388                                 "<server address> [--port=<p>] "
389                                 "[--ssl] [-k] [-v <ver>] "
390                                 "[-d <log bitfield>] [-l]\n");
391         return 1;
392 }