blob: 348196be897ebb285825307c76124059260a7b72 [file] [log] [blame]
Andy Green4739e5c2011-01-22 12:51:57 +00001/*
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 <unistd.h>
25#include <getopt.h>
26#include <string.h>
27
Andy Green4739e5c2011-01-22 12:51:57 +000028#include "../lib/libwebsockets.h"
Andy Green4739e5c2011-01-22 12:51:57 +000029
Andy Green990d5062011-01-30 21:04:24 +000030static unsigned int opts;
Andy Greenb3ae0a32011-02-14 20:25:43 +000031static int was_closed;
Andy Green775884e2011-03-06 13:32:53 +000032static int deny_deflate;
Andy Green7448c7e2011-05-24 22:06:17 +010033static int deny_mux;
Andy Green4084af12011-05-24 22:06:17 +010034static struct libwebsocket *wsi_mirror;
Andy Green990d5062011-01-30 21:04:24 +000035
Andy Green4739e5c2011-01-22 12:51:57 +000036/*
37 * This demo shows how to connect multiple websockets simultaneously to a
38 * websocket server (there is no restriction on their having to be the same
39 * server just it simplifies the demo).
40 *
41 * dumb-increment-protocol: we connect to the server and print the number
Andy Green90c7cbc2011-01-27 06:26:52 +000042 * we are given
Andy Green4739e5c2011-01-22 12:51:57 +000043 *
44 * lws-mirror-protocol: draws random circles, which are mirrored on to every
Andy Green90c7cbc2011-01-27 06:26:52 +000045 * client (see them being drawn in every browser
46 * session also using the test server)
Andy Green4739e5c2011-01-22 12:51:57 +000047 */
48
49enum demo_protocols {
50
51 PROTOCOL_DUMB_INCREMENT,
52 PROTOCOL_LWS_MIRROR,
53
54 /* always last */
55 DEMO_PROTOCOL_COUNT
56};
57
58
59/* dumb_increment protocol */
60
61static int
Andy Green6ee372f2012-04-09 15:09:01 +080062callback_dumb_increment(struct libwebsocket_context *this,
Andy Green62c54d22011-02-14 09:14:25 +000063 struct libwebsocket *wsi,
Andy Green4739e5c2011-01-22 12:51:57 +000064 enum libwebsocket_callback_reasons reason,
65 void *user, void *in, size_t len)
66{
67 switch (reason) {
68
Andy Green4084af12011-05-24 22:06:17 +010069 case LWS_CALLBACK_CLOSED:
70 fprintf(stderr, "LWS_CALLBACK_CLOSED\n");
71 was_closed = 1;
72 break;
73
Andy Green4739e5c2011-01-22 12:51:57 +000074 case LWS_CALLBACK_CLIENT_RECEIVE:
Andy Green90c7cbc2011-01-27 06:26:52 +000075 ((char *)in)[len] = '\0';
76 fprintf(stderr, "rx %d '%s'\n", (int)len, (char *)in);
Andy Green4739e5c2011-01-22 12:51:57 +000077 break;
78
Andy Green775884e2011-03-06 13:32:53 +000079 /* because we are protocols[0] ... */
80
81 case LWS_CALLBACK_CLIENT_CONFIRM_EXTENSION_SUPPORTED:
Andy Green7448c7e2011-05-24 22:06:17 +010082 if ((strcmp(in, "deflate-stream") == 0) && deny_deflate) {
83 fprintf(stderr, "denied deflate-stream extension\n");
84 return 1;
85 }
86 if ((strcmp(in, "x-google-mux") == 0) && deny_mux) {
87 fprintf(stderr, "denied x-google-mux extension\n");
88 return 1;
89 }
90
Andy Green775884e2011-03-06 13:32:53 +000091 break;
92
Andy Green4739e5c2011-01-22 12:51:57 +000093 default:
94 break;
95 }
96
97 return 0;
98}
99
100
101/* lws-mirror_protocol */
102
Andy Green4739e5c2011-01-22 12:51:57 +0000103
104static int
Andy Green6ee372f2012-04-09 15:09:01 +0800105callback_lws_mirror(struct libwebsocket_context *this,
Andy Green62c54d22011-02-14 09:14:25 +0000106 struct libwebsocket *wsi,
Andy Green4739e5c2011-01-22 12:51:57 +0000107 enum libwebsocket_callback_reasons reason,
108 void *user, void *in, size_t len)
109{
Andy Green90c7cbc2011-01-27 06:26:52 +0000110 unsigned char buf[LWS_SEND_BUFFER_PRE_PADDING + 4096 +
111 LWS_SEND_BUFFER_POST_PADDING];
Andy Green3182ece2013-01-20 17:08:31 +0800112 int l = 0;
113 int n;
Andy Green90c7cbc2011-01-27 06:26:52 +0000114
Andy Green4739e5c2011-01-22 12:51:57 +0000115 switch (reason) {
116
Andy Greenb3ae0a32011-02-14 20:25:43 +0000117 case LWS_CALLBACK_CLOSED:
Andy Green4084af12011-05-24 22:06:17 +0100118 fprintf(stderr, "mirror: LWS_CALLBACK_CLOSED\n");
119 wsi_mirror = NULL;
Andy Greenb3ae0a32011-02-14 20:25:43 +0000120 break;
121
Andy Green90c7cbc2011-01-27 06:26:52 +0000122 case LWS_CALLBACK_CLIENT_ESTABLISHED:
123
124 /*
125 * start the ball rolling,
Andy Greenb6e6ebe2011-01-27 06:36:39 +0000126 * LWS_CALLBACK_CLIENT_WRITEABLE will come next service
Andy Green90c7cbc2011-01-27 06:26:52 +0000127 */
128
Andy Green62c54d22011-02-14 09:14:25 +0000129 libwebsocket_callback_on_writable(this, wsi);
Andy Green90c7cbc2011-01-27 06:26:52 +0000130 break;
131
Andy Green4739e5c2011-01-22 12:51:57 +0000132 case LWS_CALLBACK_CLIENT_RECEIVE:
Andy Green90c7cbc2011-01-27 06:26:52 +0000133/* fprintf(stderr, "rx %d '%s'\n", (int)len, (char *)in); */
134 break;
135
136 case LWS_CALLBACK_CLIENT_WRITEABLE:
137
Andy Green3182ece2013-01-20 17:08:31 +0800138 for (n = 0; n < 1; n++)
139 l += sprintf((char *)&buf[LWS_SEND_BUFFER_PRE_PADDING + l],
Andy Green90c7cbc2011-01-27 06:26:52 +0000140 "c #%06X %d %d %d;",
141 (int)random() & 0xffffff,
142 (int)random() % 500,
143 (int)random() % 250,
144 (int)random() % 24);
145
146 libwebsocket_write(wsi,
Andy Green990d5062011-01-30 21:04:24 +0000147 &buf[LWS_SEND_BUFFER_PRE_PADDING], l, opts | LWS_WRITE_TEXT);
Andy Green90c7cbc2011-01-27 06:26:52 +0000148
149 /* get notified as soon as we can write again */
150
Andy Green62c54d22011-02-14 09:14:25 +0000151 libwebsocket_callback_on_writable(this, wsi);
Andy Green4739e5c2011-01-22 12:51:57 +0000152 break;
153
154 default:
155 break;
156 }
157
158 return 0;
159}
160
161
162/* list of supported protocols and callbacks */
163
164static struct libwebsocket_protocols protocols[] = {
Peter Hinz56885f32011-03-02 22:03:47 +0000165 {
166 "dumb-increment-protocol",
167 callback_dumb_increment,
168 0,
Andy Green4739e5c2011-01-22 12:51:57 +0000169 },
Peter Hinz56885f32011-03-02 22:03:47 +0000170 {
171 "lws-mirror-protocol",
172 callback_lws_mirror,
173 0,
Andy Green4739e5c2011-01-22 12:51:57 +0000174 },
Peter Hinz56885f32011-03-02 22:03:47 +0000175 { /* end of list */
176 NULL,
177 NULL,
178 0
Andy Green4739e5c2011-01-22 12:51:57 +0000179 }
180};
181
182static struct option options[] = {
Andy Green90c7cbc2011-01-27 06:26:52 +0000183 { "help", no_argument, NULL, 'h' },
Andy Green46ef0cf2013-01-10 22:28:59 +0800184 { "debug", required_argument, NULL, 'd' },
Andy Green90c7cbc2011-01-27 06:26:52 +0000185 { "port", required_argument, NULL, 'p' },
186 { "ssl", no_argument, NULL, 's' },
Andy Green990d5062011-01-30 21:04:24 +0000187 { "killmask", no_argument, NULL, 'k' },
Andy Greenbfb051f2011-02-09 08:49:14 +0000188 { "version", required_argument, NULL, 'v' },
Andy Green775884e2011-03-06 13:32:53 +0000189 { "undeflated", no_argument, NULL, 'u' },
Andy Green7448c7e2011-05-24 22:06:17 +0100190 { "nomux", no_argument, NULL, 'n' },
Andy Green43063dd2013-01-13 11:58:18 +0800191 { "longlived", no_argument, NULL, 'l' },
Andy Green4739e5c2011-01-22 12:51:57 +0000192 { NULL, 0, 0, 0 }
193};
194
195
196int main(int argc, char **argv)
197{
198 int n = 0;
199 int port = 7681;
200 int use_ssl = 0;
201 struct libwebsocket_context *context;
Andy Green1efb63c2011-02-06 17:42:06 +0000202 const char *address;
Andy Green4739e5c2011-01-22 12:51:57 +0000203 struct libwebsocket *wsi_dumb;
Andy Greenbfb051f2011-02-09 08:49:14 +0000204 int ietf_version = -1; /* latest */
Andy Green4084af12011-05-24 22:06:17 +0100205 int mirror_lifetime = 0;
Andy Green43063dd2013-01-13 11:58:18 +0800206 int longlived = 0;
Andy Green90c7cbc2011-01-27 06:26:52 +0000207
Andy Green4739e5c2011-01-22 12:51:57 +0000208 fprintf(stderr, "libwebsockets test client\n"
Andy Green46ef0cf2013-01-10 22:28:59 +0800209 "(C) Copyright 2010-2013 Andy Green <andy@warmcat.com> "
Andy Green4739e5c2011-01-22 12:51:57 +0000210 "licensed under LGPL2.1\n");
211
212 if (argc < 2)
213 goto usage;
214
Andy Green4739e5c2011-01-22 12:51:57 +0000215 while (n >= 0) {
Andy Green43063dd2013-01-13 11:58:18 +0800216 n = getopt_long(argc, argv, "nuv:khsp:d:l", options, NULL);
Andy Green4739e5c2011-01-22 12:51:57 +0000217 if (n < 0)
218 continue;
219 switch (n) {
Andy Green46ef0cf2013-01-10 22:28:59 +0800220 case 'd':
Andy Greende8f27a2013-01-12 09:17:42 +0800221 lws_set_log_level(atoi(optarg), NULL);
Andy Green46ef0cf2013-01-10 22:28:59 +0800222 break;
Andy Green4739e5c2011-01-22 12:51:57 +0000223 case 's':
Andy Green90c7cbc2011-01-27 06:26:52 +0000224 use_ssl = 2; /* 2 = allow selfsigned */
Andy Green4739e5c2011-01-22 12:51:57 +0000225 break;
226 case 'p':
227 port = atoi(optarg);
228 break;
Andy Green43063dd2013-01-13 11:58:18 +0800229 case 'l':
230 longlived = 1;
231 break;
Andy Green990d5062011-01-30 21:04:24 +0000232 case 'k':
233 opts = LWS_WRITE_CLIENT_IGNORE_XOR_MASK;
234 break;
Andy Greenbfb051f2011-02-09 08:49:14 +0000235 case 'v':
236 ietf_version = atoi(optarg);
237 break;
Andy Green775884e2011-03-06 13:32:53 +0000238 case 'u':
239 deny_deflate = 1;
240 break;
Andy Green7448c7e2011-05-24 22:06:17 +0100241 case 'n':
242 deny_mux = 1;
243 break;
Andy Green4739e5c2011-01-22 12:51:57 +0000244 case 'h':
245 goto usage;
246 }
247 }
248
Andy Green1efb63c2011-02-06 17:42:06 +0000249 if (optind >= argc)
250 goto usage;
251
252 address = argv[optind];
253
Andy Green4739e5c2011-01-22 12:51:57 +0000254 /*
255 * create the websockets context. This tracks open connections and
256 * knows how to route any traffic and which protocol version to use,
257 * and if each connection is client or server side.
258 *
259 * For this client-only demo, we tell it to not listen on any port.
260 */
261
Andy Green32375b72011-02-19 08:32:53 +0000262 context = libwebsocket_create_context(CONTEXT_PORT_NO_LISTEN, NULL,
Andy Green3182ece2013-01-20 17:08:31 +0800263 protocols,
264#ifndef LWS_NO_EXTENSIONS
265 libwebsocket_internal_extensions,
266#else
267 NULL,
268#endif
David Galeano2f82be82013-01-09 16:25:54 +0800269 NULL, NULL, NULL, -1, -1, 0, NULL);
Andy Green4739e5c2011-01-22 12:51:57 +0000270 if (context == NULL) {
271 fprintf(stderr, "Creating libwebsocket context failed\n");
272 return 1;
273 }
274
Andy Green4739e5c2011-01-22 12:51:57 +0000275 /* create a client websocket using dumb increment protocol */
276
Andy Green90c7cbc2011-01-27 06:26:52 +0000277 wsi_dumb = libwebsocket_client_connect(context, address, port, use_ssl,
Andy Green1efb63c2011-02-06 17:42:06 +0000278 "/", argv[optind], argv[optind],
Andy Greenbfb051f2011-02-09 08:49:14 +0000279 protocols[PROTOCOL_DUMB_INCREMENT].name, ietf_version);
Andy Green4739e5c2011-01-22 12:51:57 +0000280
281 if (wsi_dumb == NULL) {
282 fprintf(stderr, "libwebsocket dumb connect failed\n");
283 return -1;
284 }
285
Andy Green4739e5c2011-01-22 12:51:57 +0000286 fprintf(stderr, "Websocket connections opened\n");
287
288 /*
289 * sit there servicing the websocket context to handle incoming
290 * packets, and drawing random circles on the mirror protocol websocket
291 */
292
293 n = 0;
Andy Green4084af12011-05-24 22:06:17 +0100294 while (n >= 0 && !was_closed) {
Andy Green90c7cbc2011-01-27 06:26:52 +0000295 n = libwebsocket_service(context, 1000);
Andy Green4739e5c2011-01-22 12:51:57 +0000296
Andy Green3928f612012-07-20 12:58:38 +0800297 if (n < 0)
298 continue;
299
Andy Green4084af12011-05-24 22:06:17 +0100300 if (wsi_mirror == NULL) {
301
302 /* create a client websocket using mirror protocol */
303
Andy Green6ee372f2012-04-09 15:09:01 +0800304 wsi_mirror = libwebsocket_client_connect(context,
305 address, port, use_ssl, "/",
306 argv[optind], argv[optind],
307 protocols[PROTOCOL_LWS_MIRROR].name,
308 ietf_version);
Andy Green4084af12011-05-24 22:06:17 +0100309
310 if (wsi_mirror == NULL) {
Andy Green6ee372f2012-04-09 15:09:01 +0800311 fprintf(stderr, "libwebsocket "
312 "dumb connect failed\n");
Andy Green4084af12011-05-24 22:06:17 +0100313 return -1;
314 }
315
316 mirror_lifetime = 10 + (random() & 1023);
Andy Green43063dd2013-01-13 11:58:18 +0800317 /* useful to test single connection stability */
318 if (longlived)
319 mirror_lifetime += 50000;
Andy Green4084af12011-05-24 22:06:17 +0100320
Andy Green6ee372f2012-04-09 15:09:01 +0800321 fprintf(stderr, "opened mirror connection with "
322 "%d lifetime\n", mirror_lifetime);
Andy Green4084af12011-05-24 22:06:17 +0100323
324 } else {
325
326 mirror_lifetime--;
327 if (mirror_lifetime == 0) {
328 fprintf(stderr, "closing mirror session\n");
329 libwebsocket_close_and_free_session(context,
330 wsi_mirror, LWS_CLOSE_STATUS_GOINGAWAY);
331
332 /*
333 * wsi_mirror will get set to NULL in
334 * callback when close completes
335 */
336 }
337 }
338 }
339
Andy Greenb3ae0a32011-02-14 20:25:43 +0000340 fprintf(stderr, "Exiting\n");
341
Andy Green6964bb52011-01-23 16:50:33 +0000342 libwebsocket_context_destroy(context);
343
Andy Green4739e5c2011-01-22 12:51:57 +0000344 return 0;
345
346usage:
347 fprintf(stderr, "Usage: libwebsockets-test-client "
Andy Green46ef0cf2013-01-10 22:28:59 +0800348 "<server address> [--port=<p>] "
349 "[--ssl] [-k] [-v <ver>] "
Andy Green43063dd2013-01-13 11:58:18 +0800350 "[-d <log bitfield>] [-l]\n");
Andy Green4739e5c2011-01-22 12:51:57 +0000351 return 1;
352}