blob: 942dd8bb6cdc5ce612ab31c5515f5eb28e1f53c3 [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 Green8e0c9842013-02-09 14:10:04 +080035static int mirror_lifetime = 0;
Andy Green990d5062011-01-30 21:04:24 +000036
Andy Green4739e5c2011-01-22 12:51:57 +000037/*
38 * This demo shows how to connect multiple websockets simultaneously to a
39 * websocket server (there is no restriction on their having to be the same
40 * server just it simplifies the demo).
41 *
42 * dumb-increment-protocol: we connect to the server and print the number
Andy Green90c7cbc2011-01-27 06:26:52 +000043 * we are given
Andy Green4739e5c2011-01-22 12:51:57 +000044 *
45 * lws-mirror-protocol: draws random circles, which are mirrored on to every
Andy Green90c7cbc2011-01-27 06:26:52 +000046 * client (see them being drawn in every browser
47 * session also using the test server)
Andy Green4739e5c2011-01-22 12:51:57 +000048 */
49
50enum demo_protocols {
51
52 PROTOCOL_DUMB_INCREMENT,
53 PROTOCOL_LWS_MIRROR,
54
55 /* always last */
56 DEMO_PROTOCOL_COUNT
57};
58
59
60/* dumb_increment protocol */
61
62static int
Andy Green6ee372f2012-04-09 15:09:01 +080063callback_dumb_increment(struct libwebsocket_context *this,
Andy Green62c54d22011-02-14 09:14:25 +000064 struct libwebsocket *wsi,
Andy Green4739e5c2011-01-22 12:51:57 +000065 enum libwebsocket_callback_reasons reason,
66 void *user, void *in, size_t len)
67{
68 switch (reason) {
69
Andy Green4084af12011-05-24 22:06:17 +010070 case LWS_CALLBACK_CLOSED:
71 fprintf(stderr, "LWS_CALLBACK_CLOSED\n");
72 was_closed = 1;
73 break;
74
Andy Green4739e5c2011-01-22 12:51:57 +000075 case LWS_CALLBACK_CLIENT_RECEIVE:
Andy Green90c7cbc2011-01-27 06:26:52 +000076 ((char *)in)[len] = '\0';
77 fprintf(stderr, "rx %d '%s'\n", (int)len, (char *)in);
Andy Green4739e5c2011-01-22 12:51:57 +000078 break;
79
Andy Green775884e2011-03-06 13:32:53 +000080 /* because we are protocols[0] ... */
81
82 case LWS_CALLBACK_CLIENT_CONFIRM_EXTENSION_SUPPORTED:
Andy Green7448c7e2011-05-24 22:06:17 +010083 if ((strcmp(in, "deflate-stream") == 0) && deny_deflate) {
84 fprintf(stderr, "denied deflate-stream extension\n");
85 return 1;
86 }
87 if ((strcmp(in, "x-google-mux") == 0) && deny_mux) {
88 fprintf(stderr, "denied x-google-mux extension\n");
89 return 1;
90 }
91
Andy Green775884e2011-03-06 13:32:53 +000092 break;
93
Andy Green4739e5c2011-01-22 12:51:57 +000094 default:
95 break;
96 }
97
98 return 0;
99}
100
101
102/* lws-mirror_protocol */
103
Andy Green4739e5c2011-01-22 12:51:57 +0000104
105static int
Andy Green8e0c9842013-02-09 14:10:04 +0800106callback_lws_mirror(struct libwebsocket_context *context,
Andy Green62c54d22011-02-14 09:14:25 +0000107 struct libwebsocket *wsi,
Andy Green4739e5c2011-01-22 12:51:57 +0000108 enum libwebsocket_callback_reasons reason,
109 void *user, void *in, size_t len)
110{
Andy Green90c7cbc2011-01-27 06:26:52 +0000111 unsigned char buf[LWS_SEND_BUFFER_PRE_PADDING + 4096 +
112 LWS_SEND_BUFFER_POST_PADDING];
Andy Green3182ece2013-01-20 17:08:31 +0800113 int l = 0;
114 int n;
Andy Green90c7cbc2011-01-27 06:26:52 +0000115
Andy Green4739e5c2011-01-22 12:51:57 +0000116 switch (reason) {
117
Andy Greenb3ae0a32011-02-14 20:25:43 +0000118 case LWS_CALLBACK_CLOSED:
Andy Green4084af12011-05-24 22:06:17 +0100119 fprintf(stderr, "mirror: LWS_CALLBACK_CLOSED\n");
120 wsi_mirror = NULL;
Andy Greenb3ae0a32011-02-14 20:25:43 +0000121 break;
122
Andy Green90c7cbc2011-01-27 06:26:52 +0000123 case LWS_CALLBACK_CLIENT_ESTABLISHED:
124
125 /*
126 * start the ball rolling,
Andy Greenb6e6ebe2011-01-27 06:36:39 +0000127 * LWS_CALLBACK_CLIENT_WRITEABLE will come next service
Andy Green90c7cbc2011-01-27 06:26:52 +0000128 */
129
Andy Green8e0c9842013-02-09 14:10:04 +0800130 libwebsocket_callback_on_writable(context, wsi);
Andy Green90c7cbc2011-01-27 06:26:52 +0000131 break;
132
Andy Green4739e5c2011-01-22 12:51:57 +0000133 case LWS_CALLBACK_CLIENT_RECEIVE:
Andy Green90c7cbc2011-01-27 06:26:52 +0000134/* fprintf(stderr, "rx %d '%s'\n", (int)len, (char *)in); */
135 break;
136
137 case LWS_CALLBACK_CLIENT_WRITEABLE:
138
Andy Green3182ece2013-01-20 17:08:31 +0800139 for (n = 0; n < 1; n++)
140 l += sprintf((char *)&buf[LWS_SEND_BUFFER_PRE_PADDING + l],
Andy Green90c7cbc2011-01-27 06:26:52 +0000141 "c #%06X %d %d %d;",
142 (int)random() & 0xffffff,
143 (int)random() % 500,
144 (int)random() % 250,
145 (int)random() % 24);
146
147 libwebsocket_write(wsi,
Andy Green990d5062011-01-30 21:04:24 +0000148 &buf[LWS_SEND_BUFFER_PRE_PADDING], l, opts | LWS_WRITE_TEXT);
Andy Green90c7cbc2011-01-27 06:26:52 +0000149
Andy Green8e0c9842013-02-09 14:10:04 +0800150 mirror_lifetime--;
151 if (!mirror_lifetime) {
152 fprintf(stderr, "closing mirror session\n");
153 libwebsocket_close_and_free_session(context,
154 wsi_mirror, LWS_CLOSE_STATUS_GOINGAWAY);
155 } else
156 /* get notified as soon as we can write again */
157 libwebsocket_callback_on_writable(context, wsi);
Andy Green4739e5c2011-01-22 12:51:57 +0000158 break;
159
160 default:
161 break;
162 }
163
164 return 0;
165}
166
167
168/* list of supported protocols and callbacks */
169
170static struct libwebsocket_protocols protocols[] = {
Peter Hinz56885f32011-03-02 22:03:47 +0000171 {
172 "dumb-increment-protocol",
173 callback_dumb_increment,
174 0,
Andy Green54495112013-02-06 21:10:16 +0900175 20,
Andy Green4739e5c2011-01-22 12:51:57 +0000176 },
Peter Hinz56885f32011-03-02 22:03:47 +0000177 {
178 "lws-mirror-protocol",
179 callback_lws_mirror,
180 0,
Andy Greene7c97e82013-02-09 14:07:32 +0800181 128,
Andy Green4739e5c2011-01-22 12:51:57 +0000182 },
Andy Green54495112013-02-06 21:10:16 +0900183 { NULL, NULL, 0, 0 } /* end */
Andy Green4739e5c2011-01-22 12:51:57 +0000184};
185
186static struct option options[] = {
Andy Green90c7cbc2011-01-27 06:26:52 +0000187 { "help", no_argument, NULL, 'h' },
Andy Green46ef0cf2013-01-10 22:28:59 +0800188 { "debug", required_argument, NULL, 'd' },
Andy Green90c7cbc2011-01-27 06:26:52 +0000189 { "port", required_argument, NULL, 'p' },
190 { "ssl", no_argument, NULL, 's' },
Andy Greenbfb051f2011-02-09 08:49:14 +0000191 { "version", required_argument, NULL, 'v' },
Andy Green775884e2011-03-06 13:32:53 +0000192 { "undeflated", no_argument, NULL, 'u' },
Andy Green7448c7e2011-05-24 22:06:17 +0100193 { "nomux", no_argument, NULL, 'n' },
Andy Green43063dd2013-01-13 11:58:18 +0800194 { "longlived", no_argument, NULL, 'l' },
Andy Green4739e5c2011-01-22 12:51:57 +0000195 { NULL, 0, 0, 0 }
196};
197
198
199int main(int argc, char **argv)
200{
201 int n = 0;
202 int port = 7681;
203 int use_ssl = 0;
204 struct libwebsocket_context *context;
Andy Green1efb63c2011-02-06 17:42:06 +0000205 const char *address;
Andy Green4739e5c2011-01-22 12:51:57 +0000206 struct libwebsocket *wsi_dumb;
Andy Greenbfb051f2011-02-09 08:49:14 +0000207 int ietf_version = -1; /* latest */
Andy Green43063dd2013-01-13 11:58:18 +0800208 int longlived = 0;
Andy Green1b265272013-02-09 14:01:09 +0800209 struct lws_context_creation_info info;
210
211 memset(&info, 0, sizeof info);
Andy Green90c7cbc2011-01-27 06:26:52 +0000212
Andy Green4739e5c2011-01-22 12:51:57 +0000213 fprintf(stderr, "libwebsockets test client\n"
Andy Green46ef0cf2013-01-10 22:28:59 +0800214 "(C) Copyright 2010-2013 Andy Green <andy@warmcat.com> "
Andy Green4739e5c2011-01-22 12:51:57 +0000215 "licensed under LGPL2.1\n");
216
217 if (argc < 2)
218 goto usage;
219
Andy Green4739e5c2011-01-22 12:51:57 +0000220 while (n >= 0) {
Andy Green5738c0e2013-01-21 09:53:35 +0800221 n = getopt_long(argc, argv, "nuv:hsp:d:l", options, NULL);
Andy Green4739e5c2011-01-22 12:51:57 +0000222 if (n < 0)
223 continue;
224 switch (n) {
Andy Green46ef0cf2013-01-10 22:28:59 +0800225 case 'd':
Andy Greende8f27a2013-01-12 09:17:42 +0800226 lws_set_log_level(atoi(optarg), NULL);
Andy Green46ef0cf2013-01-10 22:28:59 +0800227 break;
Andy Green4739e5c2011-01-22 12:51:57 +0000228 case 's':
Andy Green90c7cbc2011-01-27 06:26:52 +0000229 use_ssl = 2; /* 2 = allow selfsigned */
Andy Green4739e5c2011-01-22 12:51:57 +0000230 break;
231 case 'p':
232 port = atoi(optarg);
233 break;
Andy Green43063dd2013-01-13 11:58:18 +0800234 case 'l':
235 longlived = 1;
236 break;
Andy Greenbfb051f2011-02-09 08:49:14 +0000237 case 'v':
238 ietf_version = atoi(optarg);
239 break;
Andy Green775884e2011-03-06 13:32:53 +0000240 case 'u':
241 deny_deflate = 1;
242 break;
Andy Green7448c7e2011-05-24 22:06:17 +0100243 case 'n':
244 deny_mux = 1;
245 break;
Andy Green4739e5c2011-01-22 12:51:57 +0000246 case 'h':
247 goto usage;
248 }
249 }
250
Andy Green1efb63c2011-02-06 17:42:06 +0000251 if (optind >= argc)
252 goto usage;
253
254 address = argv[optind];
255
Andy Green4739e5c2011-01-22 12:51:57 +0000256 /*
257 * create the websockets context. This tracks open connections and
258 * knows how to route any traffic and which protocol version to use,
259 * and if each connection is client or server side.
260 *
261 * For this client-only demo, we tell it to not listen on any port.
262 */
263
Andy Green1b265272013-02-09 14:01:09 +0800264 info.port = CONTEXT_PORT_NO_LISTEN;
265 info.protocols = protocols;
Andy Green3182ece2013-01-20 17:08:31 +0800266#ifndef LWS_NO_EXTENSIONS
Andy Green1b265272013-02-09 14:01:09 +0800267 info.extensions = libwebsocket_internal_extensions;
Andy Green3182ece2013-01-20 17:08:31 +0800268#endif
Andy Green1b265272013-02-09 14:01:09 +0800269 info.gid = -1;
270 info.uid = -1;
271
272 context = libwebsocket_create_context(&info);
Andy Green4739e5c2011-01-22 12:51:57 +0000273 if (context == NULL) {
274 fprintf(stderr, "Creating libwebsocket context failed\n");
275 return 1;
276 }
277
Andy Green4739e5c2011-01-22 12:51:57 +0000278 /* create a client websocket using dumb increment protocol */
279
Andy Green90c7cbc2011-01-27 06:26:52 +0000280 wsi_dumb = libwebsocket_client_connect(context, address, port, use_ssl,
Andy Green1efb63c2011-02-06 17:42:06 +0000281 "/", argv[optind], argv[optind],
Andy Greenbfb051f2011-02-09 08:49:14 +0000282 protocols[PROTOCOL_DUMB_INCREMENT].name, ietf_version);
Andy Green4739e5c2011-01-22 12:51:57 +0000283
284 if (wsi_dumb == NULL) {
285 fprintf(stderr, "libwebsocket dumb connect failed\n");
286 return -1;
287 }
288
Andy Green4739e5c2011-01-22 12:51:57 +0000289 fprintf(stderr, "Websocket connections opened\n");
290
291 /*
292 * sit there servicing the websocket context to handle incoming
293 * packets, and drawing random circles on the mirror protocol websocket
294 */
295
296 n = 0;
Andy Green4084af12011-05-24 22:06:17 +0100297 while (n >= 0 && !was_closed) {
Andy Green8e0c9842013-02-09 14:10:04 +0800298 n = libwebsocket_service(context, 10);
Andy Green4739e5c2011-01-22 12:51:57 +0000299
Andy Green3928f612012-07-20 12:58:38 +0800300 if (n < 0)
301 continue;
302
Andy Green8e0c9842013-02-09 14:10:04 +0800303 if (wsi_mirror)
304 continue;
305
306 /* create a client websocket using mirror protocol */
307
308 wsi_mirror = libwebsocket_client_connect(context,
309 address, port, use_ssl, "/",
310 argv[optind], argv[optind],
311 protocols[PROTOCOL_LWS_MIRROR].name, ietf_version);
312
Andy Green4084af12011-05-24 22:06:17 +0100313 if (wsi_mirror == NULL) {
Andy Green8e0c9842013-02-09 14:10:04 +0800314 fprintf(stderr, "libwebsocket "
315 "dumb connect failed\n");
316 return -1;
Andy Green4084af12011-05-24 22:06:17 +0100317 }
Andy Green8e0c9842013-02-09 14:10:04 +0800318
319 mirror_lifetime = 10 + (random() & 1023);
320 /* useful to test single connection stability */
321 if (longlived)
322 mirror_lifetime += 50000;
323
324 fprintf(stderr, "opened mirror connection with "
325 "%d lifetime\n", mirror_lifetime);
326
327 /*
328 * mirror_lifetime is decremented each send, when it reaches
329 * zero the connection is closed in the send callback.
330 * When the close callback comes, wsi_mirror is set to NULL
331 * so a new connection will be opened
332 */
Andy Green4084af12011-05-24 22:06:17 +0100333 }
334
Andy Greenb3ae0a32011-02-14 20:25:43 +0000335 fprintf(stderr, "Exiting\n");
336
Andy Green6964bb52011-01-23 16:50:33 +0000337 libwebsocket_context_destroy(context);
338
Andy Green4739e5c2011-01-22 12:51:57 +0000339 return 0;
340
341usage:
342 fprintf(stderr, "Usage: libwebsockets-test-client "
Andy Green46ef0cf2013-01-10 22:28:59 +0800343 "<server address> [--port=<p>] "
344 "[--ssl] [-k] [-v <ver>] "
Andy Green43063dd2013-01-13 11:58:18 +0800345 "[-d <log bitfield>] [-l]\n");
Andy Green4739e5c2011-01-22 12:51:57 +0000346 return 1;
347}